summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--misc/texscythe/contrib/helpers/texmf-docs20
-rw-r--r--misc/texscythe/contrib/helpers/texmf-extra30
-rw-r--r--misc/texscythe/contrib/helpers/texmf-src20
-rw-r--r--misc/texscythe/contrib/helpers/texmf-tetexish41
-rw-r--r--misc/texscythe/contrib/make-slackware-plists.sh125
-rw-r--r--misc/texscythe/contrib/texlive.tlpdb37726
6 files changed, 26994 insertions, 10968 deletions
diff --git a/misc/texscythe/contrib/helpers/texmf-docs b/misc/texscythe/contrib/helpers/texmf-docs
new file mode 100644
index 0000000000..97c3568b00
--- /dev/null
+++ b/misc/texscythe/contrib/helpers/texmf-docs
@@ -0,0 +1,20 @@
+#/bin/sh
+
+texscyther \
+ --output-plist $TMP/$(basename $0) \
+ --tlpdb $CWD/texlive.tlpdb \
+ --skip-missing-archpkgs \
+ --nodirs \
+ --subset \
+ --include \
+ scheme-full:doc
+
+cat $TMP/$(basename $0) | \
+ grep "texmf-dist/" | \
+ grep -v "win32" | \
+ grep -v "context/stubs/mswin/" | \
+ grep -v "win32" | \
+ grep -v "MinGW" | \
+ sort -u \
+ > $PACKLISTS/$(basename $0)-packlist
+
diff --git a/misc/texscythe/contrib/helpers/texmf-extra b/misc/texscythe/contrib/helpers/texmf-extra
new file mode 100644
index 0000000000..eb753ce575
--- /dev/null
+++ b/misc/texscythe/contrib/helpers/texmf-extra
@@ -0,0 +1,30 @@
+#/bin/sh
+
+texscyther \
+ --output-plist $TMP/$(basename $0) \
+ --tlpdb $CWD/texlive.tlpdb \
+ --skip-missing-archpkgs \
+ --nodirs \
+ --subset \
+ --include \
+ scheme-full \
+ --exclude \
+ scheme-full:doc \
+ scheme-full:src \
+ scheme-context \
+ scheme-gust \
+ scheme-tetex \
+ scheme-xml \
+ collection-bibtexextra \
+ collection-latexextra \
+ ctex
+
+cat $TMP/$(basename $0) | \
+ grep "texmf-dist/" | \
+ grep -v "win32" | \
+ grep -v "context/stubs/mswin/" | \
+ grep -v "win32" | \
+ grep -v "MinGW" | \
+ sort -u \
+ > $PACKLISTS/$(basename $0)-packlist
+
diff --git a/misc/texscythe/contrib/helpers/texmf-src b/misc/texscythe/contrib/helpers/texmf-src
new file mode 100644
index 0000000000..43e6d0d246
--- /dev/null
+++ b/misc/texscythe/contrib/helpers/texmf-src
@@ -0,0 +1,20 @@
+#/bin/sh
+
+texscyther \
+ --output-plist $TMP/$(basename $0) \
+ --tlpdb $CWD/texlive.tlpdb \
+ --skip-missing-archpkgs \
+ --nodirs \
+ --subset \
+ --include \
+ scheme-full:src
+
+cat $TMP/$(basename $0) | \
+ grep "texmf-dist/" | \
+ grep -v "win32" | \
+ grep -v "context/stubs/mswin/" | \
+ grep -v "win32" | \
+ grep -v "MinGW" | \
+ sort -u \
+ > $PACKLISTS/$(basename $0)-packlist
+
diff --git a/misc/texscythe/contrib/helpers/texmf-tetexish b/misc/texscythe/contrib/helpers/texmf-tetexish
new file mode 100644
index 0000000000..96fe56ea3d
--- /dev/null
+++ b/misc/texscythe/contrib/helpers/texmf-tetexish
@@ -0,0 +1,41 @@
+#!/bin/sh
+
+texscyther \
+ --output-plist $TMP/$(basename $0) \
+ --tlpdb $CWD/texlive.tlpdb \
+ --skip-missing-archpkgs \
+ --nodirs \
+ --subset \
+ --include \
+ scheme-context \
+ scheme-gust \
+ scheme-tetex \
+ scheme-xml \
+ collection-bibtexextra \
+ collection-latexextra \
+ ctex \
+ --exclude \
+ scheme-context:doc \
+ scheme-context:src \
+ scheme-gust:doc \
+ scheme-gust:src \
+ scheme-tetex:doc \
+ scheme-tetex:src \
+ scheme-xml:doc \
+ scheme-xml:src \
+ collection-bibtexextra:doc \
+ collection-bibtexextra:src \
+ collection-latexextra:doc \
+ collection-latexextra:src \
+ ctex:doc \
+ ctex:src
+
+cat $TMP/$(basename $0) | \
+ grep -e "texmf-dist/" -e "tlpkg/TeXLive/" | \
+ grep -v "win32" | \
+ grep -v "context/stubs/mswin/" | \
+ grep -v "win32" | \
+ grep -v "MinGW" | \
+ sort -u \
+ > $PACKLISTS/$(basename $0)-packlist
+
diff --git a/misc/texscythe/contrib/make-slackware-plists.sh b/misc/texscythe/contrib/make-slackware-plists.sh
index f250380661..01c5cb07a5 100644
--- a/misc/texscythe/contrib/make-slackware-plists.sh
+++ b/misc/texscythe/contrib/make-slackware-plists.sh
@@ -1,9 +1,11 @@
#!/bin/sh
-# This only requires the big texlive-$VERSION-texmf.tar.xz and
+# This requires the texlive-$VERSION-texmf.tar.xz (large) and
# texlive-$VERSION-extra.tar.xz tarballs to be present in $CWD
+# ftp://tug.org/historic/systems/texlive/2014/texlive-20140525-texmf.tar.xz
+# ftp://tug.org/historic/systems/texlive/2014/texlive-20140525-extra.tar.xz
-# If texlive.tlpdb is not present, it will have to be obtained from
+# If texlive.tlpdb is not present, it will have to be obtained from
# subversion (based on the # release date), e.g.
# svn co -r {20140525} svn://tug.org/texlive/trunk/Master/tlpkg
# You can then copy tlpkg/texlive.tlpdb to $CWD
@@ -12,99 +14,54 @@ set -eu
VERSION=20140525
+pkglist=${pkglist:-"texmf-tetexish texmf-extra texmf-docs texmf-src"}
+
CWD=$(pwd)
+TMP=${TMP:-$CWD/tmplists}
+PACKLISTS=${PACKLISTS:-$CWD/packlists}
+TARBALLS=${TARBALLS:-$CWD/tarballs}
+
+export CWD TMP PACKLISTS TARBALLS
+
TMF="$CWD/texlive-$VERSION-texmf";
if [ ! -e $CWD/texlive.tlpdb ] ; then
printf "\nYou need texlive.tlpdb in $CWD - get it here:\n"
- printf "http://ftp.ctex.org/mirrors/CTAN/systems/texlive/tlnet/tlpkg/texlive.tlpdb\n\n"
- exit 1
+ printf "http://harrier.slackbuilds.org/texlive-2014/texscythe/contrib/texlive.tlpdb\n\n"
+ exit 1
fi
-rm -rf tmplists ; mkdir tmplists
+printf "\nMaking these tarballs: $pkglist\n\n" ; sleep 2
+
+rm -rf $TMP $PACKLISTS
+mkdir -p $TMP $PACKLISTS
# Initialize the texscyther db
-texscyther --initdb
-
-# Build a packaging list for all of the texmf stuff, but exclude docs and src
-texscyther \
- --tlpdb $CWD/texlive.tlpdb \
- --nodirs \
- --subset \
- --include scheme-full \
- --exclude scheme-full:doc scheme-full:src \
- --output-plist tmplists/full
-
-# Build a packaging list for the docs (bibarts is for DOS)
-texscyther \
- --tlpdb $CWD/texlive.tlpdb \
- --nodirs \
- --subset \
- --include scheme-full:doc \
- --exclude scheme-full:src bibarts \
- --output-plist tmplists/docs
-
-# Build a packaging list for the texmf sources
-texscyther \
- --tlpdb $CWD/texlive.tlpdb \
- --nodirs \
- --subset \
- --include scheme-full:src \
- --exclude bibarts \
- --output-plist tmplists/src
-
-# These next bits could probably be done using the --regex option passed to
-# texscyther, but I already know how to do it this way :-)
-
-# Filter some stuff out of texmf (build a ladder over UUOC if needed)
-cat tmplists/full | \
- grep "texmf-dist/" | \
- grep -v "win32" \
- > full-packlist
-
-# Filter some stuff out of docs (use that ladder again)
-cat tmplists/docs | \
- grep "texmf-dist/" | \
- grep -v "context/stubs/mswin/" | \
- grep -v "win32" | \
- grep -v "MinGW" \
- > docs-packlist
-
-# No filtering (for now) of src stuff
-cat $CWD/tmplists/src | \
- > $CWD/src-packlist
-
-printf "Generating tarballs - please be patient...\n"
-
-rm -rf $TMF
-
-tar xf texlive-$VERSION-texmf.tar.xz
-tar xf texlive-$VERSION-extra.tar.xz
-mv texlive-$VERSION-extra/* $TMF && rmdir texlive-$VERSION-extra
-
-rm -rf tarballs ; mkdir tarballs
-
-printf "\tCreating tarballs/texlive-texmf-$VERSION.tar\n"
-tar cf \
- tarballs/texlive-texmf-$VERSION.tar \
- -C $TMF \
- -T full-packlist
-
-printf "\tCreating tarballs/texlive-docs-$VERSION.tar\n"
-tar cf \
- tarballs/texlive-docs-$VERSION.tar \
- -C $TMF \
- -T docs-packlist
-
-printf "\tCreating tarballs/texlive-src-$VERSION.tar\n"
-tar cf \
- tarballs/texlive-src-$VERSION.tar \
- -C $TMF \
- -T src-packlist
+if [ ! -r $CWD/$CWD/texscythe.db ]; then
+ texscyther --initdb --sqldb $CWD/texscythe.db
+fi
+
+for pkg in $(printf "$pkglist") ; do ./helpers/$pkg ; done
+
+if [ ! -d $TMF ]; then
+ printf "Extracting sources to create tarballs - please be patient...\n"
+ tar xf texlive-$VERSION-texmf.tar.xz
+ tar xf texlive-$VERSION-extra.tar.xz
+ mv texlive-$VERSION-extra/* $TMF && rmdir texlive-$VERSION-extra
+fi
+
+printf "Creating tarballs - please be moar patient...\n"
+rm -rf $TARBALLS ; mkdir -p $TARBALLS
+
+for pkg in $(printf "$pkglist") ; do \
+ printf "\tCreating $TARBALLS/texlive-$pkg-$VERSION.tar\n"
+ tar cf $TARBALLS/texlive-$pkg-$VERSION.tar -C $TMF \
+ -T $PACKLISTS/$pkg-packlist
+done
printf "Compressing tarballs - please be MOAR patient...\n"
-xz -9 tarballs/*.tar
+xz -9 $TARBALLS/*.tar
# Cleanup the leftovers
-rm -rf tmplists $TMF {full,docs,src}-packlist *.db
+rm -rf $TMP $PACKLISTS #$TMF #leave TMF for now
diff --git a/misc/texscythe/contrib/texlive.tlpdb b/misc/texscythe/contrib/texlive.tlpdb
index e9ede36275..5ff2f3ea29 100644
--- a/misc/texscythe/contrib/texlive.tlpdb
+++ b/misc/texscythe/contrib/texlive.tlpdb
@@ -22,13 +22,13 @@ longdesc 00texlive.installation(.tlpsrc)
depend container_format/xz
depend container_split_doc_files/1
depend container_split_src_files/1
-depend minrelease/2013
-depend release/2013
-depend revision/30816
+depend minrelease/2014
+depend release/2014
+depend revision/34251
name 00texlive.image
category TLCore
-revision 30814
+revision 34251
shortdesc TeX Live files only in the source repository
longdesc The files here are not copied by the installer and containers
longdesc are not built for them; they exist only in the source
@@ -38,7 +38,7 @@ longdesc IgnorePatterns in the check_files routine in tlmgr.pl augment
longdesc this list. Those are not included in the source/ tarball. For
longdesc information on the 00texlive prefix see
longdesc 00texlive.installation(.tlpsrc)
-runfiles size=2556
+runfiles size=2623
.mkisofsrc
autorun.inf
texmf-dist/README
@@ -181,6 +181,8 @@ runfiles size=2556
tlpkg/doc/texlive2011.png
tlpkg/doc/texlive2012.png
tlpkg/doc/texlive2013-horizontal.png
+ tlpkg/doc/texlive2014-horizontal.png
+ tlpkg/doc/texlive2014.png
tlpkg/doc/tlmgr-keyword-search-interface.txt
tlpkg/doc/tlmgr.ico
tlpkg/doc/tlmgr.svg
@@ -198,6 +200,8 @@ runfiles size=2556
tlpkg/libexec/norasi-c90.pl
tlpkg/libexec/place
tlpkg/libexec/svnchangelog.sed
+ tlpkg/libexec/tl-merge-tlpdb
+ tlpkg/libexec/udfhd.pl
tlpkg/tlpsrc/00texlive.autopatterns.tlpsrc
tlpkg/tlpsrc/00texlive.config.tlpsrc
tlpkg/tlpsrc/00texlive.image.tlpsrc
@@ -228,6 +232,7 @@ runfiles size=2556
tlpkg/tlpsrc/abraces.tlpsrc
tlpkg/tlpsrc/abstract.tlpsrc
tlpkg/tlpsrc/abstyles.tlpsrc
+ tlpkg/tlpsrc/accanthis.tlpsrc
tlpkg/tlpsrc/accfonts.tlpsrc
tlpkg/tlpsrc/achemso.tlpsrc
tlpkg/tlpsrc/acmconf.tlpsrc
@@ -254,8 +259,10 @@ runfiles size=2556
tlpkg/tlpsrc/aguplus.tlpsrc
tlpkg/tlpsrc/aiaa.tlpsrc
tlpkg/tlpsrc/aichej.tlpsrc
+ tlpkg/tlpsrc/ajl.tlpsrc
tlpkg/tlpsrc/akktex.tlpsrc
tlpkg/tlpsrc/akletter.tlpsrc
+ tlpkg/tlpsrc/alegreya.tlpsrc
tlpkg/tlpsrc/aleph.tlpsrc
tlpkg/tlpsrc/alg.tlpsrc
tlpkg/tlpsrc/algorithm2e.tlpsrc
@@ -280,6 +287,7 @@ runfiles size=2556
tlpkg/tlpsrc/amsthdoc-it.tlpsrc
tlpkg/tlpsrc/animate.tlpsrc
tlpkg/tlpsrc/anonchap.tlpsrc
+ tlpkg/tlpsrc/anonymouspro.tlpsrc
tlpkg/tlpsrc/answers.tlpsrc
tlpkg/tlpsrc/antiqua.tlpsrc
tlpkg/tlpsrc/antomega.tlpsrc
@@ -287,6 +295,7 @@ runfiles size=2556
tlpkg/tlpsrc/anufinalexam.tlpsrc
tlpkg/tlpsrc/anyfontsize.tlpsrc
tlpkg/tlpsrc/anysize.tlpsrc
+ tlpkg/tlpsrc/aobs-tikz.tlpsrc
tlpkg/tlpsrc/aomart.tlpsrc
tlpkg/tlpsrc/apa.tlpsrc
tlpkg/tlpsrc/apa6.tlpsrc
@@ -305,9 +314,11 @@ runfiles size=2556
tlpkg/tlpsrc/archaic.tlpsrc
tlpkg/tlpsrc/arcs.tlpsrc
tlpkg/tlpsrc/arev.tlpsrc
+ tlpkg/tlpsrc/armtex.tlpsrc
tlpkg/tlpsrc/around-the-bend.tlpsrc
tlpkg/tlpsrc/arphic.tlpsrc
tlpkg/tlpsrc/arrayjobx.tlpsrc
+ tlpkg/tlpsrc/arraysort.tlpsrc
tlpkg/tlpsrc/arsclassica.tlpsrc
tlpkg/tlpsrc/articleingud.tlpsrc
tlpkg/tlpsrc/arydshln.tlpsrc
@@ -315,6 +326,7 @@ runfiles size=2556
tlpkg/tlpsrc/ascelike.tlpsrc
tlpkg/tlpsrc/ascii-chart.tlpsrc
tlpkg/tlpsrc/ascii-font.tlpsrc
+ tlpkg/tlpsrc/askmaps.tlpsrc
tlpkg/tlpsrc/aspectratio.tlpsrc
tlpkg/tlpsrc/assignment.tlpsrc
tlpkg/tlpsrc/astro.tlpsrc
@@ -323,6 +335,7 @@ runfiles size=2556
tlpkg/tlpsrc/asymptote-faq-zh-cn.tlpsrc
tlpkg/tlpsrc/asymptote-manual-zh-cn.tlpsrc
tlpkg/tlpsrc/asymptote.tlpsrc
+ tlpkg/tlpsrc/asypictureb.tlpsrc
tlpkg/tlpsrc/attachfile.tlpsrc
tlpkg/tlpsrc/augie.tlpsrc
tlpkg/tlpsrc/auncial-new.tlpsrc
@@ -353,6 +366,7 @@ runfiles size=2556
tlpkg/tlpsrc/babel-french.tlpsrc
tlpkg/tlpsrc/babel-friulan.tlpsrc
tlpkg/tlpsrc/babel-galician.tlpsrc
+ tlpkg/tlpsrc/babel-georgian.tlpsrc
tlpkg/tlpsrc/babel-german.tlpsrc
tlpkg/tlpsrc/babel-greek.tlpsrc
tlpkg/tlpsrc/babel-hebrew.tlpsrc
@@ -395,6 +409,7 @@ runfiles size=2556
tlpkg/tlpsrc/bartel-chess-fonts.tlpsrc
tlpkg/tlpsrc/bashful.tlpsrc
tlpkg/tlpsrc/baskervald.tlpsrc
+ tlpkg/tlpsrc/baskervaldx.tlpsrc
tlpkg/tlpsrc/basque-book.tlpsrc
tlpkg/tlpsrc/basque-date.tlpsrc
tlpkg/tlpsrc/bbcard.tlpsrc
@@ -415,12 +430,14 @@ runfiles size=2556
tlpkg/tlpsrc/beamertheme-upenn-bc.tlpsrc
tlpkg/tlpsrc/beamerthemejltree.tlpsrc
tlpkg/tlpsrc/beamerthemenirma.tlpsrc
+ tlpkg/tlpsrc/beamerthemephnompenh.tlpsrc
tlpkg/tlpsrc/beebe.tlpsrc
tlpkg/tlpsrc/begriff.tlpsrc
tlpkg/tlpsrc/belleek.tlpsrc
tlpkg/tlpsrc/bengali.tlpsrc
tlpkg/tlpsrc/bera.tlpsrc
tlpkg/tlpsrc/berenisadf.tlpsrc
+ tlpkg/tlpsrc/besjournals.tlpsrc
tlpkg/tlpsrc/betababel.tlpsrc
tlpkg/tlpsrc/beton.tlpsrc
tlpkg/tlpsrc/bez123.tlpsrc
@@ -446,6 +463,7 @@ runfiles size=2556
tlpkg/tlpsrc/biblatex-ieee.tlpsrc
tlpkg/tlpsrc/biblatex-juradiss.tlpsrc
tlpkg/tlpsrc/biblatex-luh-ipw.tlpsrc
+ tlpkg/tlpsrc/biblatex-manuscripts-philology.tlpsrc
tlpkg/tlpsrc/biblatex-mla.tlpsrc
tlpkg/tlpsrc/biblatex-musuos.tlpsrc
tlpkg/tlpsrc/biblatex-nature.tlpsrc
@@ -454,8 +472,10 @@ runfiles size=2556
tlpkg/tlpsrc/biblatex-phys.tlpsrc
tlpkg/tlpsrc/biblatex-publist.tlpsrc
tlpkg/tlpsrc/biblatex-science.tlpsrc
+ tlpkg/tlpsrc/biblatex-source-division.tlpsrc
tlpkg/tlpsrc/biblatex-swiss-legal.tlpsrc
tlpkg/tlpsrc/biblatex-trad.tlpsrc
+ tlpkg/tlpsrc/biblatex-true-citepages-omit.tlpsrc
tlpkg/tlpsrc/biblatex.tlpsrc
tlpkg/tlpsrc/bibleref-french.tlpsrc
tlpkg/tlpsrc/bibleref-german.tlpsrc
@@ -511,6 +531,7 @@ runfiles size=2556
tlpkg/tlpsrc/braids.tlpsrc
tlpkg/tlpsrc/braille.tlpsrc
tlpkg/tlpsrc/braket.tlpsrc
+ tlpkg/tlpsrc/brandeis-dissertation.tlpsrc
tlpkg/tlpsrc/breakcites.tlpsrc
tlpkg/tlpsrc/breakurl.tlpsrc
tlpkg/tlpsrc/bropd.tlpsrc
@@ -520,6 +541,7 @@ runfiles size=2556
tlpkg/tlpsrc/burmese.tlpsrc
tlpkg/tlpsrc/bussproofs.tlpsrc
tlpkg/tlpsrc/bxbase.tlpsrc
+ tlpkg/tlpsrc/bxcjkjatype.tlpsrc
tlpkg/tlpsrc/bxdpx-beamer.tlpsrc
tlpkg/tlpsrc/bxeepic.tlpsrc
tlpkg/tlpsrc/bxjscls.tlpsrc
@@ -553,6 +575,7 @@ runfiles size=2556
tlpkg/tlpsrc/catechis.tlpsrc
tlpkg/tlpsrc/catoptions.tlpsrc
tlpkg/tlpsrc/cbcoptic.tlpsrc
+ tlpkg/tlpsrc/cbfonts-fd.tlpsrc
tlpkg/tlpsrc/cbfonts.tlpsrc
tlpkg/tlpsrc/cc-pl.tlpsrc
tlpkg/tlpsrc/ccaption.tlpsrc
@@ -602,6 +625,7 @@ runfiles size=2556
tlpkg/tlpsrc/chronology.tlpsrc
tlpkg/tlpsrc/chronosys.tlpsrc
tlpkg/tlpsrc/chscite.tlpsrc
+ tlpkg/tlpsrc/cinzel.tlpsrc
tlpkg/tlpsrc/circ.tlpsrc
tlpkg/tlpsrc/circuitikz.tlpsrc
tlpkg/tlpsrc/cite.tlpsrc
@@ -612,6 +636,8 @@ runfiles size=2556
tlpkg/tlpsrc/cjkutils.tlpsrc
tlpkg/tlpsrc/classics.tlpsrc
tlpkg/tlpsrc/classicthesis.tlpsrc
+ tlpkg/tlpsrc/classpack.tlpsrc
+ tlpkg/tlpsrc/clearsans.tlpsrc
tlpkg/tlpsrc/clefval.tlpsrc
tlpkg/tlpsrc/cleveref.tlpsrc
tlpkg/tlpsrc/clipboard.tlpsrc
@@ -633,6 +659,8 @@ runfiles size=2556
tlpkg/tlpsrc/cmpj.tlpsrc
tlpkg/tlpsrc/cmsd.tlpsrc
tlpkg/tlpsrc/cmtiup.tlpsrc
+ tlpkg/tlpsrc/cnbwp.tlpsrc
+ tlpkg/tlpsrc/cnltx.tlpsrc
tlpkg/tlpsrc/cns.tlpsrc
tlpkg/tlpsrc/codedoc.tlpsrc
tlpkg/tlpsrc/codepage.tlpsrc
@@ -654,6 +682,7 @@ runfiles size=2556
tlpkg/tlpsrc/collection-humanities.tlpsrc
tlpkg/tlpsrc/collection-langafrican.tlpsrc
tlpkg/tlpsrc/collection-langarabic.tlpsrc
+ tlpkg/tlpsrc/collection-langchinese.tlpsrc
tlpkg/tlpsrc/collection-langcjk.tlpsrc
tlpkg/tlpsrc/collection-langcyrillic.tlpsrc
tlpkg/tlpsrc/collection-langczechslovak.tlpsrc
@@ -664,6 +693,8 @@ runfiles size=2556
tlpkg/tlpsrc/collection-langgreek.tlpsrc
tlpkg/tlpsrc/collection-langindic.tlpsrc
tlpkg/tlpsrc/collection-langitalian.tlpsrc
+ tlpkg/tlpsrc/collection-langjapanese.tlpsrc
+ tlpkg/tlpsrc/collection-langkorean.tlpsrc
tlpkg/tlpsrc/collection-langother.tlpsrc
tlpkg/tlpsrc/collection-langpolish.tlpsrc
tlpkg/tlpsrc/collection-langportuguese.tlpsrc
@@ -691,6 +722,7 @@ runfiles size=2556
tlpkg/tlpsrc/colortab.tlpsrc
tlpkg/tlpsrc/colortbl.tlpsrc
tlpkg/tlpsrc/colorwav.tlpsrc
+ tlpkg/tlpsrc/colorweb.tlpsrc
tlpkg/tlpsrc/colourchange.tlpsrc
tlpkg/tlpsrc/combelow.tlpsrc
tlpkg/tlpsrc/combine.tlpsrc
@@ -795,6 +827,7 @@ runfiles size=2556
tlpkg/tlpsrc/custom-bib.tlpsrc
tlpkg/tlpsrc/cutwin.tlpsrc
tlpkg/tlpsrc/cv.tlpsrc
+ tlpkg/tlpsrc/cv4tw.tlpsrc
tlpkg/tlpsrc/cweb-latex.tlpsrc
tlpkg/tlpsrc/cweb.tlpsrc
tlpkg/tlpsrc/cyklop.tlpsrc
@@ -805,11 +838,13 @@ runfiles size=2556
tlpkg/tlpsrc/dashbox.tlpsrc
tlpkg/tlpsrc/dashrule.tlpsrc
tlpkg/tlpsrc/dashundergaps.tlpsrc
+ tlpkg/tlpsrc/dataref.tlpsrc
tlpkg/tlpsrc/datatool.tlpsrc
tlpkg/tlpsrc/dateiliste.tlpsrc
tlpkg/tlpsrc/datenumber.tlpsrc
tlpkg/tlpsrc/datetime.tlpsrc
tlpkg/tlpsrc/dblfloatfix.tlpsrc
+ tlpkg/tlpsrc/dccpaper.tlpsrc
tlpkg/tlpsrc/dcpic.tlpsrc
tlpkg/tlpsrc/de-macro.tlpsrc
tlpkg/tlpsrc/decimal.tlpsrc
@@ -819,6 +854,7 @@ runfiles size=2556
tlpkg/tlpsrc/delim.tlpsrc
tlpkg/tlpsrc/delimtxt.tlpsrc
tlpkg/tlpsrc/detex.tlpsrc
+ tlpkg/tlpsrc/detlev-cm.tlpsrc
tlpkg/tlpsrc/devnag.tlpsrc
tlpkg/tlpsrc/dhua.tlpsrc
tlpkg/tlpsrc/diagbox.tlpsrc
@@ -827,6 +863,7 @@ runfiles size=2556
tlpkg/tlpsrc/dialogl.tlpsrc
tlpkg/tlpsrc/dice.tlpsrc
tlpkg/tlpsrc/dichokey.tlpsrc
+ tlpkg/tlpsrc/dickimaw.tlpsrc
tlpkg/tlpsrc/dictsym.tlpsrc
tlpkg/tlpsrc/digiconfigs.tlpsrc
tlpkg/tlpsrc/din1505.tlpsrc
@@ -842,6 +879,7 @@ runfiles size=2556
tlpkg/tlpsrc/dnaseq.tlpsrc
tlpkg/tlpsrc/dnp.tlpsrc
tlpkg/tlpsrc/doc-pictex.tlpsrc
+ tlpkg/tlpsrc/docbytex.tlpsrc
tlpkg/tlpsrc/docmfp.tlpsrc
tlpkg/tlpsrc/docmute.tlpsrc
tlpkg/tlpsrc/documentation.tlpsrc
@@ -912,6 +950,7 @@ runfiles size=2556
tlpkg/tlpsrc/ecclesiastic.tlpsrc
tlpkg/tlpsrc/ecltree.tlpsrc
tlpkg/tlpsrc/eco.tlpsrc
+ tlpkg/tlpsrc/economic.tlpsrc
tlpkg/tlpsrc/ecv.tlpsrc
tlpkg/tlpsrc/ed.tlpsrc
tlpkg/tlpsrc/edfnotes.tlpsrc
@@ -920,6 +959,7 @@ runfiles size=2556
tlpkg/tlpsrc/ednotes.tlpsrc
tlpkg/tlpsrc/eemeir.tlpsrc
tlpkg/tlpsrc/eepic.tlpsrc
+ tlpkg/tlpsrc/efbox.tlpsrc
tlpkg/tlpsrc/egameps.tlpsrc
tlpkg/tlpsrc/egplot.tlpsrc
tlpkg/tlpsrc/eiad-ltx.tlpsrc
@@ -939,6 +979,7 @@ runfiles size=2556
tlpkg/tlpsrc/eltex.tlpsrc
tlpkg/tlpsrc/elvish.tlpsrc
tlpkg/tlpsrc/emarks.tlpsrc
+ tlpkg/tlpsrc/embedall.tlpsrc
tlpkg/tlpsrc/embrac.tlpsrc
tlpkg/tlpsrc/emp.tlpsrc
tlpkg/tlpsrc/emptypage.tlpsrc
@@ -1010,14 +1051,17 @@ runfiles size=2556
tlpkg/tlpsrc/euxm.tlpsrc
tlpkg/tlpsrc/everyhook.tlpsrc
tlpkg/tlpsrc/everypage.tlpsrc
+ tlpkg/tlpsrc/exam-n.tlpsrc
tlpkg/tlpsrc/exam.tlpsrc
tlpkg/tlpsrc/examdesign.tlpsrc
+ tlpkg/tlpsrc/example.tlpsrc
tlpkg/tlpsrc/examplep.tlpsrc
tlpkg/tlpsrc/exceltex.tlpsrc
tlpkg/tlpsrc/excludeonly.tlpsrc
tlpkg/tlpsrc/exercise.tlpsrc
tlpkg/tlpsrc/exp-testopt.tlpsrc
tlpkg/tlpsrc/expdlist.tlpsrc
+ tlpkg/tlpsrc/expex.tlpsrc
tlpkg/tlpsrc/export.tlpsrc
tlpkg/tlpsrc/expressg.tlpsrc
tlpkg/tlpsrc/exsheets.tlpsrc
@@ -1040,7 +1084,9 @@ runfiles size=2556
tlpkg/tlpsrc/fancytabs.tlpsrc
tlpkg/tlpsrc/fancytooltips.tlpsrc
tlpkg/tlpsrc/fancyvrb.tlpsrc
+ tlpkg/tlpsrc/fandol.tlpsrc
tlpkg/tlpsrc/fast-diagram.tlpsrc
+ tlpkg/tlpsrc/fbb.tlpsrc
tlpkg/tlpsrc/fbithesis.tlpsrc
tlpkg/tlpsrc/fbs.tlpsrc
tlpkg/tlpsrc/fc.tlpsrc
@@ -1048,11 +1094,14 @@ runfiles size=2556
tlpkg/tlpsrc/fdsymbol.tlpsrc
tlpkg/tlpsrc/featpost.tlpsrc
tlpkg/tlpsrc/fenixpar.tlpsrc
+ tlpkg/tlpsrc/fetamont.tlpsrc
+ tlpkg/tlpsrc/feupphdteses.tlpsrc
tlpkg/tlpsrc/feyn.tlpsrc
tlpkg/tlpsrc/feynmf.tlpsrc
tlpkg/tlpsrc/feynmp-auto.tlpsrc
tlpkg/tlpsrc/fge.tlpsrc
tlpkg/tlpsrc/fifinddo-info.tlpsrc
+ tlpkg/tlpsrc/fifo-stack.tlpsrc
tlpkg/tlpsrc/fig4latex.tlpsrc
tlpkg/tlpsrc/figbas.tlpsrc
tlpkg/tlpsrc/figbib.tlpsrc
@@ -1067,6 +1116,7 @@ runfiles size=2556
tlpkg/tlpsrc/findhyph.tlpsrc
tlpkg/tlpsrc/fink.tlpsrc
tlpkg/tlpsrc/finstrut.tlpsrc
+ tlpkg/tlpsrc/fira.tlpsrc
tlpkg/tlpsrc/first-latex-doc.tlpsrc
tlpkg/tlpsrc/fix2col.tlpsrc
tlpkg/tlpsrc/fixfoot.tlpsrc
@@ -1169,7 +1219,7 @@ runfiles size=2556
tlpkg/tlpsrc/genealogy.tlpsrc
tlpkg/tlpsrc/genmisc.tlpsrc
tlpkg/tlpsrc/genmpage.tlpsrc
- tlpkg/tlpsrc/gentium.tlpsrc
+ tlpkg/tlpsrc/gentium-tug.tlpsrc
tlpkg/tlpsrc/gentle.tlpsrc
tlpkg/tlpsrc/geometry-de.tlpsrc
tlpkg/tlpsrc/geometry.tlpsrc
@@ -1189,6 +1239,7 @@ runfiles size=2556
tlpkg/tlpsrc/gfssolomos.tlpsrc
tlpkg/tlpsrc/ghab.tlpsrc
tlpkg/tlpsrc/gillcm.tlpsrc
+ tlpkg/tlpsrc/gillius.tlpsrc
tlpkg/tlpsrc/gincltex.tlpsrc
tlpkg/tlpsrc/ginpenc.tlpsrc
tlpkg/tlpsrc/gitinfo.tlpsrc
@@ -1197,7 +1248,6 @@ runfiles size=2556
tlpkg/tlpsrc/glyphlist.tlpsrc
tlpkg/tlpsrc/gmdoc-enhance.tlpsrc
tlpkg/tlpsrc/gmdoc.tlpsrc
- tlpkg/tlpsrc/gmeometric.tlpsrc
tlpkg/tlpsrc/gmiflink.tlpsrc
tlpkg/tlpsrc/gmp.tlpsrc
tlpkg/tlpsrc/gmutils.tlpsrc
@@ -1213,24 +1263,31 @@ runfiles size=2556
tlpkg/tlpsrc/graphics-pln.tlpsrc
tlpkg/tlpsrc/graphics.tlpsrc
tlpkg/tlpsrc/graphicx-psmin.tlpsrc
+ tlpkg/tlpsrc/graphicxbox.tlpsrc
+ tlpkg/tlpsrc/graphviz.tlpsrc
tlpkg/tlpsrc/greek-fontenc.tlpsrc
tlpkg/tlpsrc/greek-inputenc.tlpsrc
tlpkg/tlpsrc/greekdates.tlpsrc
tlpkg/tlpsrc/greektex.tlpsrc
tlpkg/tlpsrc/greenpoint.tlpsrc
tlpkg/tlpsrc/grfpaste.tlpsrc
+ tlpkg/tlpsrc/grid-system.tlpsrc
tlpkg/tlpsrc/grid.tlpsrc
tlpkg/tlpsrc/gridset.tlpsrc
tlpkg/tlpsrc/grotesq.tlpsrc
+ tlpkg/tlpsrc/grundgesetze.tlpsrc
tlpkg/tlpsrc/gsftopk.tlpsrc
+ tlpkg/tlpsrc/gtl.tlpsrc
tlpkg/tlpsrc/gtrcrd.tlpsrc
tlpkg/tlpsrc/gu.tlpsrc
tlpkg/tlpsrc/guide-to-latex.tlpsrc
tlpkg/tlpsrc/guitar.tlpsrc
+ tlpkg/tlpsrc/guitarchordschemes.tlpsrc
tlpkg/tlpsrc/guitlogo.tlpsrc
tlpkg/tlpsrc/gustlib.tlpsrc
tlpkg/tlpsrc/gustprog.tlpsrc
tlpkg/tlpsrc/hacm.tlpsrc
+ tlpkg/tlpsrc/handout.tlpsrc
tlpkg/tlpsrc/hands.tlpsrc
tlpkg/tlpsrc/hanging.tlpsrc
tlpkg/tlpsrc/hanoi.tlpsrc
@@ -1241,6 +1298,7 @@ runfiles size=2556
tlpkg/tlpsrc/harnon-cv.tlpsrc
tlpkg/tlpsrc/harpoon.tlpsrc
tlpkg/tlpsrc/harvard.tlpsrc
+ tlpkg/tlpsrc/harveyballs.tlpsrc
tlpkg/tlpsrc/harvmac.tlpsrc
tlpkg/tlpsrc/hatching.tlpsrc
tlpkg/tlpsrc/hausarbeit-jura.tlpsrc
@@ -1253,6 +1311,7 @@ runfiles size=2556
tlpkg/tlpsrc/hepthesis.tlpsrc
tlpkg/tlpsrc/hepunits.tlpsrc
tlpkg/tlpsrc/here.tlpsrc
+ tlpkg/tlpsrc/heuristica.tlpsrc
tlpkg/tlpsrc/hexgame.tlpsrc
tlpkg/tlpsrc/hf-tikz.tlpsrc
tlpkg/tlpsrc/hfbright.tlpsrc
@@ -1340,6 +1399,7 @@ runfiles size=2556
tlpkg/tlpsrc/ibycus-babel.tlpsrc
tlpkg/tlpsrc/ibygrk.tlpsrc
tlpkg/tlpsrc/icsv.tlpsrc
+ tlpkg/tlpsrc/idxcmds.tlpsrc
tlpkg/tlpsrc/idxlayout.tlpsrc
tlpkg/tlpsrc/ieeepes.tlpsrc
tlpkg/tlpsrc/ifetex.tlpsrc
@@ -1434,12 +1494,18 @@ runfiles size=2556
tlpkg/tlpsrc/kluwer.tlpsrc
tlpkg/tlpsrc/knitting.tlpsrc
tlpkg/tlpsrc/knittingpattern.tlpsrc
+ tlpkg/tlpsrc/knuth-lib.tlpsrc
+ tlpkg/tlpsrc/knuth-local.tlpsrc
tlpkg/tlpsrc/knuth.tlpsrc
tlpkg/tlpsrc/knuthotherfonts.tlpsrc
tlpkg/tlpsrc/koma-moderncvclassic.tlpsrc
tlpkg/tlpsrc/koma-script-examples.tlpsrc
tlpkg/tlpsrc/koma-script-sfs.tlpsrc
tlpkg/tlpsrc/koma-script.tlpsrc
+ tlpkg/tlpsrc/kotex-oblivoir.tlpsrc
+ tlpkg/tlpsrc/kotex-plain.tlpsrc
+ tlpkg/tlpsrc/kotex-utf.tlpsrc
+ tlpkg/tlpsrc/kotex-utils.tlpsrc
tlpkg/tlpsrc/kpathsea.tlpsrc
tlpkg/tlpsrc/kpfonts.tlpsrc
tlpkg/tlpsrc/ksfh_nat.tlpsrc
@@ -1457,7 +1523,9 @@ runfiles size=2556
tlpkg/tlpsrc/labbook.tlpsrc
tlpkg/tlpsrc/labelcas.tlpsrc
tlpkg/tlpsrc/labels.tlpsrc
+ tlpkg/tlpsrc/labyrinth.tlpsrc
tlpkg/tlpsrc/lacheck.tlpsrc
+ tlpkg/tlpsrc/lambda-lists.tlpsrc
tlpkg/tlpsrc/lambda.tlpsrc
tlpkg/tlpsrc/langcode.tlpsrc
tlpkg/tlpsrc/lapdf.tlpsrc
@@ -1468,6 +1536,7 @@ runfiles size=2556
tlpkg/tlpsrc/latex-course.tlpsrc
tlpkg/tlpsrc/latex-doc-ptr.tlpsrc
tlpkg/tlpsrc/latex-fonts.tlpsrc
+ tlpkg/tlpsrc/latex-git-log.tlpsrc
tlpkg/tlpsrc/latex-graphics-companion.tlpsrc
tlpkg/tlpsrc/latex-notes-zh-cn.tlpsrc
tlpkg/tlpsrc/latex-referenz.tlpsrc
@@ -1488,6 +1557,7 @@ runfiles size=2556
tlpkg/tlpsrc/latexdiff.tlpsrc
tlpkg/tlpsrc/latexfileinfo-pkgs.tlpsrc
tlpkg/tlpsrc/latexfileversion.tlpsrc
+ tlpkg/tlpsrc/latexindent.tlpsrc
tlpkg/tlpsrc/latexmk.tlpsrc
tlpkg/tlpsrc/latexmp.tlpsrc
tlpkg/tlpsrc/latexpand.tlpsrc
@@ -1505,14 +1575,15 @@ runfiles size=2556
tlpkg/tlpsrc/ledmac.tlpsrc
tlpkg/tlpsrc/leftidx.tlpsrc
tlpkg/tlpsrc/leipzig.tlpsrc
+ tlpkg/tlpsrc/lengthconvert.tlpsrc
tlpkg/tlpsrc/lettre.tlpsrc
tlpkg/tlpsrc/lettrine.tlpsrc
tlpkg/tlpsrc/levy.tlpsrc
tlpkg/tlpsrc/lewis.tlpsrc
tlpkg/tlpsrc/lexikon.tlpsrc
+ tlpkg/tlpsrc/lexref.tlpsrc
tlpkg/tlpsrc/lfb.tlpsrc
tlpkg/tlpsrc/lgreek.tlpsrc
- tlpkg/tlpsrc/lgrx.tlpsrc
tlpkg/tlpsrc/lh.tlpsrc
tlpkg/tlpsrc/lhcyr.tlpsrc
tlpkg/tlpsrc/lhelp.tlpsrc
@@ -1520,7 +1591,9 @@ runfiles size=2556
tlpkg/tlpsrc/libgreek.tlpsrc
tlpkg/tlpsrc/librarian.tlpsrc
tlpkg/tlpsrc/librebaskerville.tlpsrc
+ tlpkg/tlpsrc/librecaslon.tlpsrc
tlpkg/tlpsrc/libris.tlpsrc
+ tlpkg/tlpsrc/lilyglyphs.tlpsrc
tlpkg/tlpsrc/limap.tlpsrc
tlpkg/tlpsrc/linearA.tlpsrc
tlpkg/tlpsrc/linegoal.tlpsrc
@@ -1540,16 +1613,20 @@ runfiles size=2556
tlpkg/tlpsrc/lm-math.tlpsrc
tlpkg/tlpsrc/lm.tlpsrc
tlpkg/tlpsrc/lmake.tlpsrc
+ tlpkg/tlpsrc/lobster2.tlpsrc
tlpkg/tlpsrc/locality.tlpsrc
tlpkg/tlpsrc/localloc.tlpsrc
tlpkg/tlpsrc/logbox.tlpsrc
tlpkg/tlpsrc/logical-markup-utils.tlpsrc
+ tlpkg/tlpsrc/logicproof.tlpsrc
tlpkg/tlpsrc/logicpuzzle.tlpsrc
tlpkg/tlpsrc/logpap.tlpsrc
tlpkg/tlpsrc/logreq.tlpsrc
+ tlpkg/tlpsrc/lollipop.tlpsrc
tlpkg/tlpsrc/longnamefilelist.tlpsrc
tlpkg/tlpsrc/loops.tlpsrc
tlpkg/tlpsrc/lpic.tlpsrc
+ tlpkg/tlpsrc/lplfitch.tlpsrc
tlpkg/tlpsrc/lps.tlpsrc
tlpkg/tlpsrc/lsc.tlpsrc
tlpkg/tlpsrc/lshort-bulgarian.tlpsrc
@@ -1576,10 +1653,12 @@ runfiles size=2556
tlpkg/tlpsrc/lshort-ukr.tlpsrc
tlpkg/tlpsrc/lshort-vietnamese.tlpsrc
tlpkg/tlpsrc/lstaddons.tlpsrc
+ tlpkg/tlpsrc/lt3graph.tlpsrc
tlpkg/tlpsrc/ltablex.tlpsrc
tlpkg/tlpsrc/ltabptch.tlpsrc
tlpkg/tlpsrc/ltxdockit.tlpsrc
tlpkg/tlpsrc/ltxfileinfo.tlpsrc
+ tlpkg/tlpsrc/ltximg.tlpsrc
tlpkg/tlpsrc/ltxindex.tlpsrc
tlpkg/tlpsrc/ltxkeys.tlpsrc
tlpkg/tlpsrc/ltxmisc.tlpsrc
@@ -1612,6 +1691,7 @@ runfiles size=2556
tlpkg/tlpsrc/ly1.tlpsrc
tlpkg/tlpsrc/m-tx.tlpsrc
tlpkg/tlpsrc/macros2e.tlpsrc
+ tlpkg/tlpsrc/macroswap.tlpsrc
tlpkg/tlpsrc/mafr.tlpsrc
tlpkg/tlpsrc/magaz.tlpsrc
tlpkg/tlpsrc/mailing.tlpsrc
@@ -1645,7 +1725,6 @@ runfiles size=2556
tlpkg/tlpsrc/mathdesign.tlpsrc
tlpkg/tlpsrc/mathdots.tlpsrc
tlpkg/tlpsrc/mathexam.tlpsrc
- tlpkg/tlpsrc/mathmode.tlpsrc
tlpkg/tlpsrc/mathpazo.tlpsrc
tlpkg/tlpsrc/mathspec.tlpsrc
tlpkg/tlpsrc/mathspic.tlpsrc
@@ -1669,6 +1748,7 @@ runfiles size=2556
tlpkg/tlpsrc/mentis.tlpsrc
tlpkg/tlpsrc/menu.tlpsrc
tlpkg/tlpsrc/menukeys.tlpsrc
+ tlpkg/tlpsrc/merriweather.tlpsrc
tlpkg/tlpsrc/metafont-beginners.tlpsrc
tlpkg/tlpsrc/metafont.tlpsrc
tlpkg/tlpsrc/metago.tlpsrc
@@ -1681,6 +1761,7 @@ runfiles size=2556
tlpkg/tlpsrc/metauml.tlpsrc
tlpkg/tlpsrc/method.tlpsrc
tlpkg/tlpsrc/metre.tlpsrc
+ tlpkg/tlpsrc/metrix.tlpsrc
tlpkg/tlpsrc/mex.tlpsrc
tlpkg/tlpsrc/mf2pt1.tlpsrc
tlpkg/tlpsrc/mflogo.tlpsrc
@@ -1703,13 +1784,14 @@ runfiles size=2556
tlpkg/tlpsrc/minipage-marginpar.tlpsrc
tlpkg/tlpsrc/miniplot.tlpsrc
tlpkg/tlpsrc/minitoc.tlpsrc
+ tlpkg/tlpsrc/minorrevision.tlpsrc
tlpkg/tlpsrc/minted.tlpsrc
+ tlpkg/tlpsrc/mintspirit.tlpsrc
tlpkg/tlpsrc/minutes.tlpsrc
- tlpkg/tlpsrc/misc.tlpsrc
- tlpkg/tlpsrc/misc209.tlpsrc
tlpkg/tlpsrc/mkgrkindex.tlpsrc
tlpkg/tlpsrc/mkjobtexmf.tlpsrc
tlpkg/tlpsrc/mkpattern.tlpsrc
+ tlpkg/tlpsrc/mkpic.tlpsrc
tlpkg/tlpsrc/mla-paper.tlpsrc
tlpkg/tlpsrc/mlist.tlpsrc
tlpkg/tlpsrc/mltex.tlpsrc
@@ -1763,6 +1845,7 @@ runfiles size=2556
tlpkg/tlpsrc/mversion.tlpsrc
tlpkg/tlpsrc/mwcls.tlpsrc
tlpkg/tlpsrc/mwe.tlpsrc
+ tlpkg/tlpsrc/mweights.tlpsrc
tlpkg/tlpsrc/mxedruli.tlpsrc
tlpkg/tlpsrc/mychemistry.tlpsrc
tlpkg/tlpsrc/mycv.tlpsrc
@@ -1772,6 +1855,7 @@ runfiles size=2556
tlpkg/tlpsrc/namespc.tlpsrc
tlpkg/tlpsrc/nanumtype1.tlpsrc
tlpkg/tlpsrc/natbib.tlpsrc
+ tlpkg/tlpsrc/natded.tlpsrc
tlpkg/tlpsrc/nath.tlpsrc
tlpkg/tlpsrc/nature.tlpsrc
tlpkg/tlpsrc/navigator.tlpsrc
@@ -1781,6 +1865,7 @@ runfiles size=2556
tlpkg/tlpsrc/nddiss.tlpsrc
tlpkg/tlpsrc/needspace.tlpsrc
tlpkg/tlpsrc/nestquot.tlpsrc
+ tlpkg/tlpsrc/neuralnetwork.tlpsrc
tlpkg/tlpsrc/newcommand.tlpsrc
tlpkg/tlpsrc/newenviron.tlpsrc
tlpkg/tlpsrc/newfile.tlpsrc
@@ -1789,6 +1874,7 @@ runfiles size=2556
tlpkg/tlpsrc/newsletr.tlpsrc
tlpkg/tlpsrc/newspaper.tlpsrc
tlpkg/tlpsrc/newtx.tlpsrc
+ tlpkg/tlpsrc/newtxtt.tlpsrc
tlpkg/tlpsrc/newunicodechar.tlpsrc
tlpkg/tlpsrc/newvbtm.tlpsrc
tlpkg/tlpsrc/newverbs.tlpsrc
@@ -1801,6 +1887,7 @@ runfiles size=2556
tlpkg/tlpsrc/nkarta.tlpsrc
tlpkg/tlpsrc/nlctdoc.tlpsrc
tlpkg/tlpsrc/noconflict.tlpsrc
+ tlpkg/tlpsrc/noindentafter.tlpsrc
tlpkg/tlpsrc/noitcrul.tlpsrc
tlpkg/tlpsrc/nolbreaks.tlpsrc
tlpkg/tlpsrc/nomencl.tlpsrc
@@ -1814,6 +1901,7 @@ runfiles size=2556
tlpkg/tlpsrc/notes2bib.tlpsrc
tlpkg/tlpsrc/notoccite.tlpsrc
tlpkg/tlpsrc/nowidow.tlpsrc
+ tlpkg/tlpsrc/nox.tlpsrc
tlpkg/tlpsrc/nrc.tlpsrc
tlpkg/tlpsrc/ntgclass.tlpsrc
tlpkg/tlpsrc/ntheorem-vn.tlpsrc
@@ -1825,6 +1913,7 @@ runfiles size=2556
tlpkg/tlpsrc/numprint.tlpsrc
tlpkg/tlpsrc/oberdiek.tlpsrc
tlpkg/tlpsrc/objectz.tlpsrc
+ tlpkg/tlpsrc/obnov.tlpsrc
tlpkg/tlpsrc/ocg-p.tlpsrc
tlpkg/tlpsrc/ocgx.tlpsrc
tlpkg/tlpsrc/ocherokee.tlpsrc
@@ -1879,6 +1968,10 @@ runfiles size=2556
tlpkg/tlpsrc/parrun.tlpsrc
tlpkg/tlpsrc/parselines.tlpsrc
tlpkg/tlpsrc/parskip.tlpsrc
+ tlpkg/tlpsrc/pas-cours.tlpsrc
+ tlpkg/tlpsrc/pas-crosswords.tlpsrc
+ tlpkg/tlpsrc/pas-cv.tlpsrc
+ tlpkg/tlpsrc/pas-tableur.tlpsrc
tlpkg/tlpsrc/passivetex.tlpsrc
tlpkg/tlpsrc/patch.tlpsrc
tlpkg/tlpsrc/patchcmd.tlpsrc
@@ -1906,11 +1999,13 @@ runfiles size=2556
tlpkg/tlpsrc/pdftex.tlpsrc
tlpkg/tlpsrc/pdftools.tlpsrc
tlpkg/tlpsrc/pdftricks.tlpsrc
+ tlpkg/tlpsrc/pdftricks2.tlpsrc
tlpkg/tlpsrc/pdfwin.tlpsrc
tlpkg/tlpsrc/pdfx.tlpsrc
tlpkg/tlpsrc/pecha.tlpsrc
tlpkg/tlpsrc/pedigree-perl.tlpsrc
tlpkg/tlpsrc/perception.tlpsrc
+ tlpkg/tlpsrc/perfectcut.tlpsrc
tlpkg/tlpsrc/perltex.tlpsrc
tlpkg/tlpsrc/permute.tlpsrc
tlpkg/tlpsrc/persian-bib.tlpsrc
@@ -1920,6 +2015,7 @@ runfiles size=2556
tlpkg/tlpsrc/pfarrei.tlpsrc
tlpkg/tlpsrc/pgf-blur.tlpsrc
tlpkg/tlpsrc/pgf-soroban.tlpsrc
+ tlpkg/tlpsrc/pgf-umlcd.tlpsrc
tlpkg/tlpsrc/pgf-umlsd.tlpsrc
tlpkg/tlpsrc/pgf.tlpsrc
tlpkg/tlpsrc/pgfgantt.tlpsrc
@@ -1932,6 +2028,7 @@ runfiles size=2556
tlpkg/tlpsrc/philokalia.tlpsrc
tlpkg/tlpsrc/philosophersimprint.tlpsrc
tlpkg/tlpsrc/phonetic.tlpsrc
+ tlpkg/tlpsrc/phonrule.tlpsrc
tlpkg/tlpsrc/photo.tlpsrc
tlpkg/tlpsrc/physics.tlpsrc
tlpkg/tlpsrc/physymb.tlpsrc
@@ -1949,8 +2046,10 @@ runfiles size=2556
tlpkg/tlpsrc/pittetd.tlpsrc
tlpkg/tlpsrc/pkfix-helper.tlpsrc
tlpkg/tlpsrc/pkfix.tlpsrc
+ tlpkg/tlpsrc/pkgloader.tlpsrc
tlpkg/tlpsrc/pkuthss.tlpsrc
tlpkg/tlpsrc/pl.tlpsrc
+ tlpkg/tlpsrc/placeat.tlpsrc
tlpkg/tlpsrc/placeins-plain.tlpsrc
tlpkg/tlpsrc/placeins.tlpsrc
tlpkg/tlpsrc/plain-doc.tlpsrc
@@ -1960,12 +2059,14 @@ runfiles size=2556
tlpkg/tlpsrc/plari.tlpsrc
tlpkg/tlpsrc/plates.tlpsrc
tlpkg/tlpsrc/play.tlpsrc
+ tlpkg/tlpsrc/playfair.tlpsrc
tlpkg/tlpsrc/plipsum.tlpsrc
tlpkg/tlpsrc/plnfss.tlpsrc
tlpkg/tlpsrc/plstmary.tlpsrc
tlpkg/tlpsrc/plweb.tlpsrc
tlpkg/tlpsrc/pmgraph.tlpsrc
tlpkg/tlpsrc/pmx.tlpsrc
+ tlpkg/tlpsrc/pmxchords.tlpsrc
tlpkg/tlpsrc/pnas2009.tlpsrc
tlpkg/tlpsrc/poemscol.tlpsrc
tlpkg/tlpsrc/poetrytex.tlpsrc
@@ -2049,6 +2150,7 @@ runfiles size=2556
tlpkg/tlpsrc/pst-grad.tlpsrc
tlpkg/tlpsrc/pst-graphicx.tlpsrc
tlpkg/tlpsrc/pst-infixplot.tlpsrc
+ tlpkg/tlpsrc/pst-intersect.tlpsrc
tlpkg/tlpsrc/pst-jtree.tlpsrc
tlpkg/tlpsrc/pst-knot.tlpsrc
tlpkg/tlpsrc/pst-labo.tlpsrc
@@ -2064,9 +2166,11 @@ runfiles size=2556
tlpkg/tlpsrc/pst-optexp.tlpsrc
tlpkg/tlpsrc/pst-optic.tlpsrc
tlpkg/tlpsrc/pst-osci.tlpsrc
+ tlpkg/tlpsrc/pst-ovl.tlpsrc
tlpkg/tlpsrc/pst-pad.tlpsrc
tlpkg/tlpsrc/pst-pdf.tlpsrc
tlpkg/tlpsrc/pst-pdgr.tlpsrc
+ tlpkg/tlpsrc/pst-perspective.tlpsrc
tlpkg/tlpsrc/pst-platon.tlpsrc
tlpkg/tlpsrc/pst-plot.tlpsrc
tlpkg/tlpsrc/pst-poly.tlpsrc
@@ -2118,6 +2222,7 @@ runfiles size=2556
tlpkg/tlpsrc/pxrubrica.tlpsrc
tlpkg/tlpsrc/pxtxalfa.tlpsrc
tlpkg/tlpsrc/python.tlpsrc
+ tlpkg/tlpsrc/pythontex.tlpsrc
tlpkg/tlpsrc/qcm.tlpsrc
tlpkg/tlpsrc/qobitree.tlpsrc
tlpkg/tlpsrc/qpxqtx.tlpsrc
@@ -2147,6 +2252,8 @@ runfiles size=2556
tlpkg/tlpsrc/rectopma.tlpsrc
tlpkg/tlpsrc/recycle.tlpsrc
tlpkg/tlpsrc/refcheck.tlpsrc
+ tlpkg/tlpsrc/refenums.tlpsrc
+ tlpkg/tlpsrc/reflectgraphics.tlpsrc
tlpkg/tlpsrc/refman.tlpsrc
tlpkg/tlpsrc/refstyle.tlpsrc
tlpkg/tlpsrc/regcount.tlpsrc
@@ -2157,12 +2264,15 @@ runfiles size=2556
tlpkg/tlpsrc/relsize.tlpsrc
tlpkg/tlpsrc/reotex.tlpsrc
tlpkg/tlpsrc/repeatindex.tlpsrc
+ tlpkg/tlpsrc/repere.tlpsrc
+ tlpkg/tlpsrc/repltext.tlpsrc
tlpkg/tlpsrc/resphilosophica.tlpsrc
tlpkg/tlpsrc/resumecls.tlpsrc
tlpkg/tlpsrc/resumemac.tlpsrc
tlpkg/tlpsrc/reverxii.tlpsrc
tlpkg/tlpsrc/revtex.tlpsrc
tlpkg/tlpsrc/revtex4.tlpsrc
+ tlpkg/tlpsrc/ribbonproofs.tlpsrc
tlpkg/tlpsrc/rjlparshap.tlpsrc
tlpkg/tlpsrc/rlepsf.tlpsrc
tlpkg/tlpsrc/rmpage.tlpsrc
@@ -2184,7 +2294,9 @@ runfiles size=2556
tlpkg/tlpsrc/rterface.tlpsrc
tlpkg/tlpsrc/rtkinenc.tlpsrc
tlpkg/tlpsrc/rtklage.tlpsrc
+ tlpkg/tlpsrc/rubik.tlpsrc
tlpkg/tlpsrc/ruhyphen.tlpsrc
+ tlpkg/tlpsrc/rulercompass.tlpsrc
tlpkg/tlpsrc/russ.tlpsrc
tlpkg/tlpsrc/rviewport.tlpsrc
tlpkg/tlpsrc/rvwrite.tlpsrc
@@ -2206,6 +2318,7 @@ runfiles size=2556
tlpkg/tlpsrc/scale.tlpsrc
tlpkg/tlpsrc/scalebar.tlpsrc
tlpkg/tlpsrc/scalerel.tlpsrc
+ tlpkg/tlpsrc/scanpages.tlpsrc
tlpkg/tlpsrc/schemabloc.tlpsrc
tlpkg/tlpsrc/schemata.tlpsrc
tlpkg/tlpsrc/scheme-basic.tlpsrc
@@ -2217,6 +2330,7 @@ runfiles size=2556
tlpkg/tlpsrc/scheme-small.tlpsrc
tlpkg/tlpsrc/scheme-tetex.tlpsrc
tlpkg/tlpsrc/scheme-xml.tlpsrc
+ tlpkg/tlpsrc/schule.tlpsrc
tlpkg/tlpsrc/schulschriften.tlpsrc
tlpkg/tlpsrc/schwalbe-chess.tlpsrc
tlpkg/tlpsrc/sciposter.tlpsrc
@@ -2227,6 +2341,7 @@ runfiles size=2556
tlpkg/tlpsrc/section.tlpsrc
tlpkg/tlpsrc/sectionbox.tlpsrc
tlpkg/tlpsrc/sectsty.tlpsrc
+ tlpkg/tlpsrc/seealso.tlpsrc
tlpkg/tlpsrc/seetexk.tlpsrc
tlpkg/tlpsrc/selectp.tlpsrc
tlpkg/tlpsrc/selnolig.tlpsrc
@@ -2272,6 +2387,7 @@ runfiles size=2556
tlpkg/tlpsrc/simplecv.tlpsrc
tlpkg/tlpsrc/simplewick.tlpsrc
tlpkg/tlpsrc/simplified-latex.tlpsrc
+ tlpkg/tlpsrc/simurgh.tlpsrc
tlpkg/tlpsrc/sitem.tlpsrc
tlpkg/tlpsrc/siunitx.tlpsrc
tlpkg/tlpsrc/skak.tlpsrc
@@ -2311,10 +2427,13 @@ runfiles size=2556
tlpkg/tlpsrc/spotcolor.tlpsrc
tlpkg/tlpsrc/spreadtab.tlpsrc
tlpkg/tlpsrc/spverbatim.tlpsrc
+ tlpkg/tlpsrc/sr-vorl.tlpsrc
tlpkg/tlpsrc/srbook-mem.tlpsrc
tlpkg/tlpsrc/srcltx.tlpsrc
tlpkg/tlpsrc/sseq.tlpsrc
+ tlpkg/tlpsrc/sslides.tlpsrc
tlpkg/tlpsrc/stack.tlpsrc
+ tlpkg/tlpsrc/stackengine.tlpsrc
tlpkg/tlpsrc/stage.tlpsrc
tlpkg/tlpsrc/standalone.tlpsrc
tlpkg/tlpsrc/starfont.tlpsrc
@@ -2368,6 +2487,7 @@ runfiles size=2556
tlpkg/tlpsrc/swimgraf.tlpsrc
tlpkg/tlpsrc/syllogism.tlpsrc
tlpkg/tlpsrc/symbol.tlpsrc
+ tlpkg/tlpsrc/sympytexpackage.tlpsrc
tlpkg/tlpsrc/synctex.tlpsrc
tlpkg/tlpsrc/synproof.tlpsrc
tlpkg/tlpsrc/syntax.tlpsrc
@@ -2385,6 +2505,7 @@ runfiles size=2556
tlpkg/tlpsrc/tablor.tlpsrc
tlpkg/tlpsrc/tabls.tlpsrc
tlpkg/tlpsrc/tabriz-thesis.tlpsrc
+ tlpkg/tlpsrc/tabstackengine.tlpsrc
tlpkg/tlpsrc/tabto-generic.tlpsrc
tlpkg/tlpsrc/tabto-ltx.tlpsrc
tlpkg/tlpsrc/tabu.tlpsrc
@@ -2435,6 +2556,7 @@ runfiles size=2556
tlpkg/tlpsrc/texdirflatten.tlpsrc
tlpkg/tlpsrc/texdoc.tlpsrc
tlpkg/tlpsrc/texdraw.tlpsrc
+ tlpkg/tlpsrc/texfot.tlpsrc
tlpkg/tlpsrc/texilikechaps.tlpsrc
tlpkg/tlpsrc/texilikecover.tlpsrc
tlpkg/tlpsrc/texinfo.tlpsrc
@@ -2471,7 +2593,9 @@ runfiles size=2556
tlpkg/tlpsrc/texware.tlpsrc
tlpkg/tlpsrc/texworks.tlpsrc
tlpkg/tlpsrc/tfrupee.tlpsrc
+ tlpkg/tlpsrc/thalie.tlpsrc
tlpkg/tlpsrc/theoremref.tlpsrc
+ tlpkg/tlpsrc/thesis-ekf.tlpsrc
tlpkg/tlpsrc/thesis-titlepage-fhac.tlpsrc
tlpkg/tlpsrc/thinsp.tlpsrc
tlpkg/tlpsrc/thmbox.tlpsrc
@@ -2492,6 +2616,7 @@ runfiles size=2556
tlpkg/tlpsrc/tikz-cd.tlpsrc
tlpkg/tlpsrc/tikz-dependency.tlpsrc
tlpkg/tlpsrc/tikz-inet.tlpsrc
+ tlpkg/tlpsrc/tikz-opm.tlpsrc
tlpkg/tlpsrc/tikz-qtree.tlpsrc
tlpkg/tlpsrc/tikz-timing.tlpsrc
tlpkg/tlpsrc/tikzinclude.tlpsrc
@@ -2504,6 +2629,7 @@ runfiles size=2556
tlpkg/tlpsrc/tikzsymbols.tlpsrc
tlpkg/tlpsrc/times.tlpsrc
tlpkg/tlpsrc/timetable.tlpsrc
+ tlpkg/tlpsrc/timing-diagrams.tlpsrc
tlpkg/tlpsrc/tipa-de.tlpsrc
tlpkg/tlpsrc/tipa.tlpsrc
tlpkg/tlpsrc/titlecaps.tlpsrc
@@ -2556,6 +2682,7 @@ runfiles size=2556
tlpkg/tlpsrc/translation-moreverb-de.tlpsrc
tlpkg/tlpsrc/translation-natbib-fr.tlpsrc
tlpkg/tlpsrc/translation-tabbing-fr.tlpsrc
+ tlpkg/tlpsrc/translations.tlpsrc
tlpkg/tlpsrc/tree-dvips.tlpsrc
tlpkg/tlpsrc/treetex.tlpsrc
tlpkg/tlpsrc/trfsigns.tlpsrc
@@ -2566,6 +2693,7 @@ runfiles size=2556
tlpkg/tlpsrc/tsemlines.tlpsrc
tlpkg/tlpsrc/ttfutils.tlpsrc
tlpkg/tlpsrc/tucv.tlpsrc
+ tlpkg/tlpsrc/tudscr.tlpsrc
tlpkg/tlpsrc/tufte-latex.tlpsrc
tlpkg/tlpsrc/tugboat-plain.tlpsrc
tlpkg/tlpsrc/tugboat.tlpsrc
@@ -2586,10 +2714,12 @@ runfiles size=2556
tlpkg/tlpsrc/uaclasses.tlpsrc
tlpkg/tlpsrc/uadocs.tlpsrc
tlpkg/tlpsrc/uafthesis.tlpsrc
+ tlpkg/tlpsrc/ucbthesis.tlpsrc
tlpkg/tlpsrc/ucdavisthesis.tlpsrc
tlpkg/tlpsrc/ucharclasses.tlpsrc
tlpkg/tlpsrc/ucs.tlpsrc
tlpkg/tlpsrc/ucthesis.tlpsrc
+ tlpkg/tlpsrc/udesoftec.tlpsrc
tlpkg/tlpsrc/uebungsblatt.tlpsrc
tlpkg/tlpsrc/uestcthesis.tlpsrc
tlpkg/tlpsrc/uhc.tlpsrc
@@ -2605,6 +2735,7 @@ runfiles size=2556
tlpkg/tlpsrc/umoline.tlpsrc
tlpkg/tlpsrc/umthesis.tlpsrc
tlpkg/tlpsrc/umtypewriter.tlpsrc
+ tlpkg/tlpsrc/unamth-template.tlpsrc
tlpkg/tlpsrc/unamthesis.tlpsrc
tlpkg/tlpsrc/underlin.tlpsrc
tlpkg/tlpsrc/underoverlap.tlpsrc
@@ -2617,9 +2748,12 @@ runfiles size=2556
tlpkg/tlpsrc/units.tlpsrc
tlpkg/tlpsrc/unitsdef.tlpsrc
tlpkg/tlpsrc/universa.tlpsrc
+ tlpkg/tlpsrc/universalis.tlpsrc
+ tlpkg/tlpsrc/unravel.tlpsrc
tlpkg/tlpsrc/unswcover.tlpsrc
tlpkg/tlpsrc/uothesis.tlpsrc
tlpkg/tlpsrc/uowthesis.tlpsrc
+ tlpkg/tlpsrc/uowthesistitlepage.tlpsrc
tlpkg/tlpsrc/upca.tlpsrc
tlpkg/tlpsrc/upmethodology.tlpsrc
tlpkg/tlpsrc/upquote.tlpsrc
@@ -2658,6 +2792,7 @@ runfiles size=2556
tlpkg/tlpsrc/version.tlpsrc
tlpkg/tlpsrc/versions.tlpsrc
tlpkg/tlpsrc/vertbars.tlpsrc
+ tlpkg/tlpsrc/vgrid.tlpsrc
tlpkg/tlpsrc/vhistory.tlpsrc
tlpkg/tlpsrc/visualfaq.tlpsrc
tlpkg/tlpsrc/vlna.tlpsrc
@@ -2665,7 +2800,8 @@ runfiles size=2556
tlpkg/tlpsrc/vntex.tlpsrc
tlpkg/tlpsrc/vocaltract.tlpsrc
tlpkg/tlpsrc/volumes.tlpsrc
- tlpkg/tlpsrc/voss-de.tlpsrc
+ tlpkg/tlpsrc/voss-mathcol.tlpsrc
+ tlpkg/tlpsrc/voss-mathmode.tlpsrc
tlpkg/tlpsrc/vpe.tlpsrc
tlpkg/tlpsrc/vruler.tlpsrc
tlpkg/tlpsrc/vwcol.tlpsrc
@@ -2681,14 +2817,17 @@ runfiles size=2556
tlpkg/tlpsrc/widetable.tlpsrc
tlpkg/tlpsrc/williams.tlpsrc
tlpkg/tlpsrc/wintools.win32.tlpsrc
+ tlpkg/tlpsrc/withargs.tlpsrc
tlpkg/tlpsrc/wnri-latex.tlpsrc
tlpkg/tlpsrc/wnri.tlpsrc
tlpkg/tlpsrc/wordlike.tlpsrc
tlpkg/tlpsrc/wrapfig.tlpsrc
+ tlpkg/tlpsrc/wsemclassic.tlpsrc
tlpkg/tlpsrc/wsuipa.tlpsrc
tlpkg/tlpsrc/xargs.tlpsrc
- tlpkg/tlpsrc/xbmc.tlpsrc
+ tlpkg/tlpsrc/xcharter.tlpsrc
tlpkg/tlpsrc/xcite.tlpsrc
+ tlpkg/tlpsrc/xcjk2uni.tlpsrc
tlpkg/tlpsrc/xcolor.tlpsrc
tlpkg/tlpsrc/xcomment.tlpsrc
tlpkg/tlpsrc/xcookybooky.tlpsrc
@@ -2715,6 +2854,7 @@ runfiles size=2556
tlpkg/tlpsrc/xgreek.tlpsrc
tlpkg/tlpsrc/xhfill.tlpsrc
tlpkg/tlpsrc/xifthen.tlpsrc
+ tlpkg/tlpsrc/xii.tlpsrc
tlpkg/tlpsrc/xindy.tlpsrc
tlpkg/tlpsrc/xint.tlpsrc
tlpkg/tlpsrc/xits.tlpsrc
@@ -2737,6 +2877,7 @@ runfiles size=2556
tlpkg/tlpsrc/xunicode.tlpsrc
tlpkg/tlpsrc/xwatermark.tlpsrc
tlpkg/tlpsrc/xyling.tlpsrc
+ tlpkg/tlpsrc/xymtex.tlpsrc
tlpkg/tlpsrc/xypic-tut-pt.tlpsrc
tlpkg/tlpsrc/xypic.tlpsrc
tlpkg/tlpsrc/xytree.tlpsrc
@@ -2758,6 +2899,7 @@ runfiles size=2556
tlpkg/tlpsrc/zhnumber.tlpsrc
tlpkg/tlpsrc/zhspacing.tlpsrc
tlpkg/tlpsrc/ziffer.tlpsrc
+ tlpkg/tlpsrc/zlmtt.tlpsrc
tlpkg/tlpsrc/zwgetfdate.tlpsrc
tlpkg/tlpsrc/zwpagelayout.tlpsrc
tlpkg/tlpsrc/zxjafbfont.tlpsrc
@@ -2766,7 +2908,7 @@ runfiles size=2556
name 00texlive.installation
category TLCore
-revision 29725
+revision 33475
shortdesc TeX Live configuration settings
longdesc This package serves two purposes: 1. at installation time the
longdesc present values are taken as default for the installer 2. on an
@@ -2799,7 +2941,7 @@ depend opt_path:0
depend opt_adjustrepo:1
depend opt_write18_restricted:1
depend opt_frozen:0
-depend setting_available_architectures:armhf-linux i386-linux x86_64-darwin i386-kfreebsd mips-irix sparc-solaris win32 x86_64-solaris i386-solaris amd64-kfreebsd amd64-netbsd alpha-linux i386-netbsd powerpc-linux universal-darwin i386-freebsd armel-linux mipsel-linux amd64-freebsd i386-cygwin x86_64-linux
+depend setting_available_architectures:x86_64-linux x86_64-darwin amd64-kfreebsd x86_64-solaris x86_64-cygwin mipsel-linux i386-kfreebsd i386-netbsd win32 i386-solaris universal-darwin i386-freebsd amd64-freebsd i386-linux amd64-netbsd armel-linux alpha-linux sparc-solaris powerpc-linux i386-cygwin armhf-linux
depend opt_autobackup:1
depend opt_backupdir:tlpkg/backups
depend opt_create_formats:1
@@ -2813,21 +2955,21 @@ depend opt_post_code:1
depend opt_sys_bin:/usr/local/bin
depend opt_sys_info:/usr/local/share/info
depend opt_sys_man:/usr/local/share/man
-depend opt_w32_multi_user:0
+depend opt_w32_multi_user:1
name 00texlive.installer
category TLCore
-revision 30676
+revision 34197
shortdesc TeX Live standalone installer package
longdesc This package defines the files to go into the installer
longdesc archives (install-tl-unx.tar.gz, install-tl.zip) built by the
longdesc tl-make-installer script. Most of what's here is also included
-longdesc in the texlive.infra package -- ordinarily duplicates are not
+longdesc in the texlive.infra package -- ordinarily, duplicates are not
longdesc allowed, but in this case, 00texlive.installer is never used
longdesc *except* to build the installer archives, so it's ok. For
longdesc information on the 00texlive prefix see
longdesc 00texlive.installation(.tlpsrc)
-runfiles size=73
+runfiles size=71
install-tl
tlpkg/installer/COPYING.MinGW-runtime.txt
tlpkg/installer/config.guess
@@ -2842,62 +2984,60 @@ runfiles size=73
tlpkg/installer/tl-tray-menu.ini
binfiles arch=alpha-linux size=22
tlpkg/installer/xz/xzdec.alpha-linux
-binfiles arch=amd64-freebsd size=71
+binfiles arch=amd64-freebsd size=126
tlpkg/installer/wget/wget.amd64-freebsd
tlpkg/installer/xz/xzdec.amd64-freebsd
-binfiles arch=amd64-kfreebsd size=100
- tlpkg/installer/wget/wget.amd64-kfreebsd
+binfiles arch=amd64-kfreebsd size=18
tlpkg/installer/xz/xzdec.amd64-kfreebsd
-binfiles arch=amd64-netbsd size=117
+binfiles arch=amd64-netbsd size=126
tlpkg/installer/wget/wget.amd64-netbsd
tlpkg/installer/xz/xzdec.amd64-netbsd
binfiles arch=armel-linux size=2
tlpkg/installer/xz/xzdec.armel-linux
binfiles arch=armhf-linux size=16
tlpkg/installer/xz/xzdec.armhf-linux
-binfiles arch=i386-cygwin size=58
- tlpkg/installer/xz/xz.i386-cygwin.exe
+binfiles arch=i386-cygwin size=20
tlpkg/installer/xz/xzdec.i386-cygwin.exe
-binfiles arch=i386-freebsd size=67
+binfiles arch=i386-freebsd size=118
tlpkg/installer/wget/wget.i386-freebsd
tlpkg/installer/xz/xzdec.i386-freebsd
-binfiles arch=i386-kfreebsd size=95
- tlpkg/installer/wget/wget.i386-kfreebsd
+binfiles arch=i386-kfreebsd size=18
tlpkg/installer/xz/xzdec.i386-kfreebsd
-binfiles arch=i386-linux size=17
+binfiles arch=i386-linux size=23
tlpkg/installer/xz/xzdec.i386-linux
-binfiles arch=i386-netbsd size=107
+binfiles arch=i386-netbsd size=116
tlpkg/installer/wget/wget.i386-netbsd
tlpkg/installer/xz/xzdec.i386-netbsd
-binfiles arch=i386-solaris size=21
+binfiles arch=i386-solaris size=137
+ tlpkg/installer/wget/wget.i386-solaris
tlpkg/installer/xz/xzdec.i386-solaris
-binfiles arch=mips-irix size=37
- tlpkg/installer/xz/xzdec.mips-irix
-binfiles arch=mipsel-linux size=20
+binfiles arch=mipsel-linux size=66
tlpkg/installer/xz/xzdec.mipsel-linux
-binfiles arch=powerpc-linux size=18
+binfiles arch=powerpc-linux size=17
tlpkg/installer/xz/xzdec.powerpc-linux
-binfiles arch=sparc-solaris size=92
+binfiles arch=sparc-solaris size=178
tlpkg/installer/wget/wget.sparc-solaris
tlpkg/installer/xz/xzdec.sparc-solaris
binfiles arch=universal-darwin size=150
tlpkg/installer/wget/wget.universal-darwin
tlpkg/installer/xz/xzdec.universal-darwin
-binfiles arch=win32 size=13215
+binfiles arch=win32 size=11509
install-tl-advanced.bat
- install-tl.bat
+ install-tl-windows.bat
tlpkg/installer/tar.exe
tlpkg/installer/wget/wget.exe
tlpkg/installer/xz/xzdec.exe
tlpkg/tlperl/README.TEXLIVE
tlpkg/tlperl/bin/a2p.exe
- tlpkg/tlperl/bin/libgcc_s_dw2-1.dll
+ tlpkg/tlperl/bin/libgcc_s_sjlj-1.dll
+ tlpkg/tlperl/bin/libpng16-16_.dll
tlpkg/tlperl/bin/libstdc++-6.dll
tlpkg/tlperl/bin/perl.exe
- tlpkg/tlperl/bin/perl5.16.2.exe
- tlpkg/tlperl/bin/perl516.dll
+ tlpkg/tlperl/bin/perl5.18.2.exe
+ tlpkg/tlperl/bin/perl518.dll
tlpkg/tlperl/bin/perlglob.exe
tlpkg/tlperl/bin/wperl.exe
+ tlpkg/tlperl/bin/zlib1_.dll
tlpkg/tlperl/lib/.packlist
tlpkg/tlperl/lib/AnyDBM_File.pm
tlpkg/tlperl/lib/App/Cpan.pm
@@ -2931,7 +3071,6 @@ binfiles arch=win32 size=13215
tlpkg/tlperl/lib/CGI/Push.pm
tlpkg/tlperl/lib/CGI/Switch.pm
tlpkg/tlperl/lib/CGI/Util.pm
- tlpkg/tlperl/lib/CORE.pod
tlpkg/tlperl/lib/CORE/EXTERN.h
tlpkg/tlperl/lib/CORE/INTERN.h
tlpkg/tlperl/lib/CORE/XSUB.h
@@ -2954,11 +3093,13 @@ binfiles arch=win32 size=13215
tlpkg/tlperl/lib/CORE/gv.h
tlpkg/tlperl/lib/CORE/handy.h
tlpkg/tlperl/lib/CORE/hv.h
+ tlpkg/tlperl/lib/CORE/hv_func.h
+ tlpkg/tlperl/lib/CORE/inline.h
tlpkg/tlperl/lib/CORE/intrpvar.h
tlpkg/tlperl/lib/CORE/iperlsys.h
tlpkg/tlperl/lib/CORE/keywords.h
tlpkg/tlperl/lib/CORE/l1_char_class_tab.h
- tlpkg/tlperl/lib/CORE/libperl516.a
+ tlpkg/tlperl/lib/CORE/libperl518.a
tlpkg/tlperl/lib/CORE/malloc_ctl.h
tlpkg/tlperl/lib/CORE/metaconfig.h
tlpkg/tlperl/lib/CORE/mg.h
@@ -3000,6 +3141,7 @@ binfiles arch=win32 size=13215
tlpkg/tlperl/lib/CORE/time64.h
tlpkg/tlperl/lib/CORE/time64_config.h
tlpkg/tlperl/lib/CORE/uconfig.h
+ tlpkg/tlperl/lib/CORE/unicode_constants.h
tlpkg/tlperl/lib/CORE/unixish.h
tlpkg/tlperl/lib/CORE/utf8.h
tlpkg/tlperl/lib/CORE/utfebcdic.h
@@ -3014,7 +3156,6 @@ binfiles arch=win32 size=13215
tlpkg/tlperl/lib/CORE/win32thread.h
tlpkg/tlperl/lib/CORE/wince.h
tlpkg/tlperl/lib/CPAN.pm
- tlpkg/tlperl/lib/CPAN/API/HOWTO.pod
tlpkg/tlperl/lib/CPAN/Author.pm
tlpkg/tlperl/lib/CPAN/Bundle.pm
tlpkg/tlperl/lib/CPAN/CacheMgr.pm
@@ -3062,6 +3203,7 @@ binfiles arch=win32 size=13215
tlpkg/tlperl/lib/CPANPLUS/Backend.pm
tlpkg/tlperl/lib/CPANPLUS/Backend/RV.pm
tlpkg/tlperl/lib/CPANPLUS/Config.pm
+ tlpkg/tlperl/lib/CPANPLUS/Config/HomeEnv.pm
tlpkg/tlperl/lib/CPANPLUS/Configure.pm
tlpkg/tlperl/lib/CPANPLUS/Configure/Setup.pm
tlpkg/tlperl/lib/CPANPLUS/Dist.pm
@@ -3072,8 +3214,6 @@ binfiles arch=win32 size=13215
tlpkg/tlperl/lib/CPANPLUS/Dist/MM.pm
tlpkg/tlperl/lib/CPANPLUS/Dist/Sample.pm
tlpkg/tlperl/lib/CPANPLUS/Error.pm
- tlpkg/tlperl/lib/CPANPLUS/FAQ.pod
- tlpkg/tlperl/lib/CPANPLUS/Hacking.pod
tlpkg/tlperl/lib/CPANPLUS/Internals.pm
tlpkg/tlperl/lib/CPANPLUS/Internals/Constants.pm
tlpkg/tlperl/lib/CPANPLUS/Internals/Constants/Report.pm
@@ -3098,7 +3238,6 @@ binfiles arch=win32 size=13215
tlpkg/tlperl/lib/CPANPLUS/Shell/Classic.pm
tlpkg/tlperl/lib/CPANPLUS/Shell/Default.pm
tlpkg/tlperl/lib/CPANPLUS/Shell/Default/Plugins/CustomSource.pm
- tlpkg/tlperl/lib/CPANPLUS/Shell/Default/Plugins/HOWTO.pod
tlpkg/tlperl/lib/CPANPLUS/Shell/Default/Plugins/Remote.pm
tlpkg/tlperl/lib/CPANPLUS/Shell/Default/Plugins/Source.pm
tlpkg/tlperl/lib/Carp.pm
@@ -3109,8 +3248,8 @@ binfiles arch=win32 size=13215
tlpkg/tlperl/lib/Compress/Zlib.pm
tlpkg/tlperl/lib/Config.pm
tlpkg/tlperl/lib/Config.pm.orig
- tlpkg/tlperl/lib/Config.pod
tlpkg/tlperl/lib/Config/Extensions.pm
+ tlpkg/tlperl/lib/Config/Perl/V.pm
tlpkg/tlperl/lib/Config_git.pl
tlpkg/tlperl/lib/Config_heavy.pl
tlpkg/tlperl/lib/Config_heavy.pl.orig
@@ -3160,9 +3299,7 @@ binfiles arch=win32 size=13215
tlpkg/tlperl/lib/Encode/MIME/Header/ISO_2022_JP.pm
tlpkg/tlperl/lib/Encode/MIME/Name.pm
tlpkg/tlperl/lib/Encode/Makefile_PL.e2x
- tlpkg/tlperl/lib/Encode/PerlIO.pod
tlpkg/tlperl/lib/Encode/README.e2x
- tlpkg/tlperl/lib/Encode/Supported.pod
tlpkg/tlperl/lib/Encode/Symbol.pm
tlpkg/tlperl/lib/Encode/TW.pm
tlpkg/tlperl/lib/Encode/Unicode.pm
@@ -3221,15 +3358,12 @@ binfiles arch=win32 size=13215
tlpkg/tlperl/lib/ExtUtils/MY.pm
tlpkg/tlperl/lib/ExtUtils/MakeMaker.pm
tlpkg/tlperl/lib/ExtUtils/MakeMaker/Config.pm
- tlpkg/tlperl/lib/ExtUtils/MakeMaker/FAQ.pod
- tlpkg/tlperl/lib/ExtUtils/MakeMaker/Tutorial.pod
tlpkg/tlperl/lib/ExtUtils/Manifest.pm
tlpkg/tlperl/lib/ExtUtils/Miniperl.pm
tlpkg/tlperl/lib/ExtUtils/Mkbootstrap.pm
tlpkg/tlperl/lib/ExtUtils/Mksymlists.pm
tlpkg/tlperl/lib/ExtUtils/Packlist.pm
tlpkg/tlperl/lib/ExtUtils/ParseXS.pm
- tlpkg/tlperl/lib/ExtUtils/ParseXS.pod
tlpkg/tlperl/lib/ExtUtils/ParseXS/Constants.pm
tlpkg/tlperl/lib/ExtUtils/ParseXS/CountLines.pm
tlpkg/tlperl/lib/ExtUtils/ParseXS/Utilities.pm
@@ -3311,7 +3445,6 @@ binfiles arch=win32 size=13215
tlpkg/tlperl/lib/IO/Compress/Base/Common.pm
tlpkg/tlperl/lib/IO/Compress/Bzip2.pm
tlpkg/tlperl/lib/IO/Compress/Deflate.pm
- tlpkg/tlperl/lib/IO/Compress/FAQ.pod
tlpkg/tlperl/lib/IO/Compress/Gzip.pm
tlpkg/tlperl/lib/IO/Compress/Gzip/Constants.pm
tlpkg/tlperl/lib/IO/Compress/RawDeflate.pm
@@ -3321,6 +3454,7 @@ binfiles arch=win32 size=13215
tlpkg/tlperl/lib/IO/Compress/Zlib/Extra.pm
tlpkg/tlperl/lib/IO/Dir.pm
tlpkg/tlperl/lib/IO/File.pm
+ tlpkg/tlperl/lib/IO/HTML.pm
tlpkg/tlperl/lib/IO/Handle.pm
tlpkg/tlperl/lib/IO/Pipe.pm
tlpkg/tlperl/lib/IO/Poll.pm
@@ -3364,6 +3498,7 @@ binfiles arch=win32 size=13215
tlpkg/tlperl/lib/LWP/Protocol/ftp.pm
tlpkg/tlperl/lib/LWP/Protocol/gopher.pm
tlpkg/tlperl/lib/LWP/Protocol/http.pm
+ tlpkg/tlperl/lib/LWP/Protocol/https.pm
tlpkg/tlperl/lib/LWP/Protocol/loopback.pm
tlpkg/tlperl/lib/LWP/Protocol/mailto.pm
tlpkg/tlperl/lib/LWP/Protocol/nntp.pm
@@ -3375,54 +3510,36 @@ binfiles arch=win32 size=13215
tlpkg/tlperl/lib/List/Util.pm
tlpkg/tlperl/lib/List/Util/XS.pm
tlpkg/tlperl/lib/Locale/Codes.pm
- tlpkg/tlperl/lib/Locale/Codes.pod
- tlpkg/tlperl/lib/Locale/Codes/API.pod
- tlpkg/tlperl/lib/Locale/Codes/Changes.pod
tlpkg/tlperl/lib/Locale/Codes/Constants.pm
- tlpkg/tlperl/lib/Locale/Codes/Constants.pod
tlpkg/tlperl/lib/Locale/Codes/Country.pm
- tlpkg/tlperl/lib/Locale/Codes/Country.pod
tlpkg/tlperl/lib/Locale/Codes/Country_Codes.pm
tlpkg/tlperl/lib/Locale/Codes/Country_Retired.pm
tlpkg/tlperl/lib/Locale/Codes/Currency.pm
- tlpkg/tlperl/lib/Locale/Codes/Currency.pod
tlpkg/tlperl/lib/Locale/Codes/Currency_Codes.pm
tlpkg/tlperl/lib/Locale/Codes/Currency_Retired.pm
tlpkg/tlperl/lib/Locale/Codes/LangExt.pm
- tlpkg/tlperl/lib/Locale/Codes/LangExt.pod
tlpkg/tlperl/lib/Locale/Codes/LangExt_Codes.pm
tlpkg/tlperl/lib/Locale/Codes/LangExt_Retired.pm
tlpkg/tlperl/lib/Locale/Codes/LangFam.pm
- tlpkg/tlperl/lib/Locale/Codes/LangFam.pod
tlpkg/tlperl/lib/Locale/Codes/LangFam_Codes.pm
tlpkg/tlperl/lib/Locale/Codes/LangFam_Retired.pm
tlpkg/tlperl/lib/Locale/Codes/LangVar.pm
- tlpkg/tlperl/lib/Locale/Codes/LangVar.pod
tlpkg/tlperl/lib/Locale/Codes/LangVar_Codes.pm
tlpkg/tlperl/lib/Locale/Codes/LangVar_Retired.pm
tlpkg/tlperl/lib/Locale/Codes/Language.pm
- tlpkg/tlperl/lib/Locale/Codes/Language.pod
tlpkg/tlperl/lib/Locale/Codes/Language_Codes.pm
tlpkg/tlperl/lib/Locale/Codes/Language_Retired.pm
tlpkg/tlperl/lib/Locale/Codes/Script.pm
- tlpkg/tlperl/lib/Locale/Codes/Script.pod
tlpkg/tlperl/lib/Locale/Codes/Script_Codes.pm
tlpkg/tlperl/lib/Locale/Codes/Script_Retired.pm
tlpkg/tlperl/lib/Locale/Country.pm
- tlpkg/tlperl/lib/Locale/Country.pod
tlpkg/tlperl/lib/Locale/Currency.pm
- tlpkg/tlperl/lib/Locale/Currency.pod
tlpkg/tlperl/lib/Locale/Language.pm
- tlpkg/tlperl/lib/Locale/Language.pod
tlpkg/tlperl/lib/Locale/Maketext.pm
- tlpkg/tlperl/lib/Locale/Maketext.pod
- tlpkg/tlperl/lib/Locale/Maketext/Cookbook.pod
tlpkg/tlperl/lib/Locale/Maketext/Guts.pm
tlpkg/tlperl/lib/Locale/Maketext/GutsLoader.pm
tlpkg/tlperl/lib/Locale/Maketext/Simple.pm
- tlpkg/tlperl/lib/Locale/Maketext/TPJ13.pod
tlpkg/tlperl/lib/Locale/Script.pm
- tlpkg/tlperl/lib/Locale/Script.pod
tlpkg/tlperl/lib/Log/Message.pm
tlpkg/tlperl/lib/Log/Message/Config.pm
tlpkg/tlperl/lib/Log/Message/Handlers.pm
@@ -3439,7 +3556,11 @@ binfiles arch=win32 size=13215
tlpkg/tlperl/lib/Math/BigInt/Trace.pm
tlpkg/tlperl/lib/Math/BigRat.pm
tlpkg/tlperl/lib/Math/Complex.pm
+ tlpkg/tlperl/lib/Math/Int64.pm
+ tlpkg/tlperl/lib/Math/Int64/die_on_overflow.pm
+ tlpkg/tlperl/lib/Math/Int64/native_if_available.pm
tlpkg/tlperl/lib/Math/Trig.pm
+ tlpkg/tlperl/lib/Math/UInt64.pm
tlpkg/tlperl/lib/Memoize.pm
tlpkg/tlperl/lib/Memoize/AnyDBM_File.pm
tlpkg/tlperl/lib/Memoize/Expire.pm
@@ -3449,10 +3570,7 @@ binfiles arch=win32 size=13215
tlpkg/tlperl/lib/Memoize/SDBM_File.pm
tlpkg/tlperl/lib/Memoize/Storable.pm
tlpkg/tlperl/lib/Module/Build.pm
- tlpkg/tlperl/lib/Module/Build/API.pod
- tlpkg/tlperl/lib/Module/Build/Authoring.pod
tlpkg/tlperl/lib/Module/Build/Base.pm
- tlpkg/tlperl/lib/Module/Build/Bundling.pod
tlpkg/tlperl/lib/Module/Build/Compat.pm
tlpkg/tlperl/lib/Module/Build/Config.pm
tlpkg/tlperl/lib/Module/Build/ConfigData.pm
@@ -3479,8 +3597,8 @@ binfiles arch=win32 size=13215
tlpkg/tlperl/lib/Module/Build/Version.pm
tlpkg/tlperl/lib/Module/Build/YAML.pm
tlpkg/tlperl/lib/Module/CoreList.pm
- tlpkg/tlperl/lib/Module/CoreList.pod
tlpkg/tlperl/lib/Module/CoreList/TieHashDelta.pm
+ tlpkg/tlperl/lib/Module/CoreList/Utils.pm
tlpkg/tlperl/lib/Module/Load.pm
tlpkg/tlperl/lib/Module/Load/Conditional.pm
tlpkg/tlperl/lib/Module/Loaded.pm
@@ -3508,15 +3626,14 @@ binfiles arch=win32 size=13215
tlpkg/tlperl/lib/Net/SMTP.pm
tlpkg/tlperl/lib/Net/Time.pm
tlpkg/tlperl/lib/Net/hostent.pm
- tlpkg/tlperl/lib/Net/libnetFAQ.pod
tlpkg/tlperl/lib/Net/netent.pm
tlpkg/tlperl/lib/Net/protoent.pm
tlpkg/tlperl/lib/Net/servent.pm
tlpkg/tlperl/lib/O.pm
+ tlpkg/tlperl/lib/OLE.pm
tlpkg/tlperl/lib/Object/Accessor.pm
tlpkg/tlperl/lib/Opcode.pm
tlpkg/tlperl/lib/POSIX.pm
- tlpkg/tlperl/lib/POSIX.pod
tlpkg/tlperl/lib/Package/Constants.pm
tlpkg/tlperl/lib/Params/Check.pm
tlpkg/tlperl/lib/Parse/CPAN/Meta.pm
@@ -3554,7 +3671,6 @@ binfiles arch=win32 size=13215
tlpkg/tlperl/lib/Pod/PlainText.pm
tlpkg/tlperl/lib/Pod/Select.pm
tlpkg/tlperl/lib/Pod/Simple.pm
- tlpkg/tlperl/lib/Pod/Simple.pod
tlpkg/tlperl/lib/Pod/Simple/BlackBox.pm
tlpkg/tlperl/lib/Pod/Simple/Checker.pm
tlpkg/tlperl/lib/Pod/Simple/Debug.pm
@@ -3574,7 +3690,6 @@ binfiles arch=win32 size=13215
tlpkg/tlperl/lib/Pod/Simple/RTF.pm
tlpkg/tlperl/lib/Pod/Simple/Search.pm
tlpkg/tlperl/lib/Pod/Simple/SimpleTree.pm
- tlpkg/tlperl/lib/Pod/Simple/Subclassing.pod
tlpkg/tlperl/lib/Pod/Simple/Text.pm
tlpkg/tlperl/lib/Pod/Simple/TextContent.pm
tlpkg/tlperl/lib/Pod/Simple/TiedOutFH.pm
@@ -3608,7 +3723,6 @@ binfiles arch=win32 size=13215
tlpkg/tlperl/lib/TAP/Formatter/File/Session.pm
tlpkg/tlperl/lib/TAP/Formatter/Session.pm
tlpkg/tlperl/lib/TAP/Harness.pm
- tlpkg/tlperl/lib/TAP/Harness/Beyond.pod
tlpkg/tlperl/lib/TAP/Object.pm
tlpkg/tlperl/lib/TAP/Parser.pm
tlpkg/tlperl/lib/TAP/Parser/Aggregator.pm
@@ -3656,7 +3770,6 @@ binfiles arch=win32 size=13215
tlpkg/tlperl/lib/Test/Harness.pm
tlpkg/tlperl/lib/Test/More.pm
tlpkg/tlperl/lib/Test/Simple.pm
- tlpkg/tlperl/lib/Test/Tutorial.pod
tlpkg/tlperl/lib/Text/Abbrev.pm
tlpkg/tlperl/lib/Text/Balanced.pm
tlpkg/tlperl/lib/Text/ParseWords.pm
@@ -3686,49 +3799,31 @@ binfiles arch=win32 size=13215
tlpkg/tlperl/lib/Time/localtime.pm
tlpkg/tlperl/lib/Time/tm.pm
tlpkg/tlperl/lib/Tk.pm
- tlpkg/tlperl/lib/Tk.pod
- tlpkg/tlperl/lib/Tk/804delta.pod
tlpkg/tlperl/lib/Tk/Adjuster.pm
- tlpkg/tlperl/lib/Tk/Adjuster.pod
tlpkg/tlperl/lib/Tk/After.pm
tlpkg/tlperl/lib/Tk/Animation.pm
- tlpkg/tlperl/lib/Tk/Animation.pod
tlpkg/tlperl/lib/Tk/Balloon.pm
- tlpkg/tlperl/lib/Tk/Balloon.pod
tlpkg/tlperl/lib/Tk/Bitmap.pm
- tlpkg/tlperl/lib/Tk/Bitmap.pod
tlpkg/tlperl/lib/Tk/BrowseEntry.pm
- tlpkg/tlperl/lib/Tk/BrowseEntry.pod
tlpkg/tlperl/lib/Tk/Button.pm
- tlpkg/tlperl/lib/Tk/Button.pod
tlpkg/tlperl/lib/Tk/Camel.xpm
tlpkg/tlperl/lib/Tk/Canvas.pm
- tlpkg/tlperl/lib/Tk/Canvas.pod
tlpkg/tlperl/lib/Tk/Checkbutton.pm
- tlpkg/tlperl/lib/Tk/Checkbutton.pod
tlpkg/tlperl/lib/Tk/Clipboard.pm
- tlpkg/tlperl/lib/Tk/Clipboard.pod
tlpkg/tlperl/lib/Tk/CmdLine.pm
- tlpkg/tlperl/lib/Tk/CmdLine.pod
+ tlpkg/tlperl/lib/Tk/ColorDialog.pm
tlpkg/tlperl/lib/Tk/ColorEdit.xpm
tlpkg/tlperl/lib/Tk/ColorEditor.pm
- tlpkg/tlperl/lib/Tk/ColorEditor.pod
- tlpkg/tlperl/lib/Tk/Common.pod
+ tlpkg/tlperl/lib/Tk/ColorSelect.pm
tlpkg/tlperl/lib/Tk/Compound.pm
- tlpkg/tlperl/lib/Tk/Compound.pod
tlpkg/tlperl/lib/Tk/Config.pm
- tlpkg/tlperl/lib/Tk/ConfigSpecs.pod
tlpkg/tlperl/lib/Tk/Configure.pm
tlpkg/tlperl/lib/Tk/Credits
- tlpkg/tlperl/lib/Tk/DItem.pod
tlpkg/tlperl/lib/Tk/Derived.pm
- tlpkg/tlperl/lib/Tk/Derived.pod
tlpkg/tlperl/lib/Tk/Dialog.pm
- tlpkg/tlperl/lib/Tk/Dialog.pod
tlpkg/tlperl/lib/Tk/DialogBox.pm
- tlpkg/tlperl/lib/Tk/DialogBox.pod
+ tlpkg/tlperl/lib/Tk/DirSelect.pm
tlpkg/tlperl/lib/Tk/DirTree.pm
- tlpkg/tlperl/lib/Tk/DirTree.pod
tlpkg/tlperl/lib/Tk/Dirlist.pm
tlpkg/tlperl/lib/Tk/DragDrop.pm
tlpkg/tlperl/lib/Tk/DragDrop/Common.pm
@@ -3742,132 +3837,80 @@ binfiles arch=win32 size=13215
tlpkg/tlperl/lib/Tk/DragDrop/XDNDDrop.pm
tlpkg/tlperl/lib/Tk/DragDrop/XDNDSite.pm
tlpkg/tlperl/lib/Tk/DropSite.pm
- tlpkg/tlperl/lib/Tk/DropSite.pod
tlpkg/tlperl/lib/Tk/DummyEncode.pm
tlpkg/tlperl/lib/Tk/English.pm
tlpkg/tlperl/lib/Tk/Entry.pm
- tlpkg/tlperl/lib/Tk/Entry.pod
- tlpkg/tlperl/lib/Tk/Error.pod
tlpkg/tlperl/lib/Tk/ErrorDialog.pm
tlpkg/tlperl/lib/Tk/Event.pm
tlpkg/tlperl/lib/Tk/Event/IO.pm
- tlpkg/tlperl/lib/Tk/Eventloop.pod
tlpkg/tlperl/lib/Tk/FBox.pm
- tlpkg/tlperl/lib/Tk/FBox.pod
tlpkg/tlperl/lib/Tk/FileSelect.pm
- tlpkg/tlperl/lib/Tk/FileSelect.pod
tlpkg/tlperl/lib/Tk/FloatEntry.pm
tlpkg/tlperl/lib/Tk/Font.pm
- tlpkg/tlperl/lib/Tk/Font.pod
tlpkg/tlperl/lib/Tk/Frame.pm
- tlpkg/tlperl/lib/Tk/Frame.pod
tlpkg/tlperl/lib/Tk/HList.pm
- tlpkg/tlperl/lib/Tk/HList.pod
tlpkg/tlperl/lib/Tk/IO.pm
- tlpkg/tlperl/lib/Tk/IO.pod
tlpkg/tlperl/lib/Tk/IconList.pm
- tlpkg/tlperl/lib/Tk/IconList.pod
tlpkg/tlperl/lib/Tk/Image.pm
- tlpkg/tlperl/lib/Tk/Image.pod
- tlpkg/tlperl/lib/Tk/InputO.pod
- tlpkg/tlperl/lib/Tk/Internals.pod
tlpkg/tlperl/lib/Tk/ItemStyle.pm
tlpkg/tlperl/lib/Tk/JPEG.pm
tlpkg/tlperl/lib/Tk/LabEntry.pm
tlpkg/tlperl/lib/Tk/LabFrame.pm
- tlpkg/tlperl/lib/Tk/LabFrame.pod
tlpkg/tlperl/lib/Tk/LabRadio.pm
tlpkg/tlperl/lib/Tk/Label.pm
- tlpkg/tlperl/lib/Tk/Label.pod
tlpkg/tlperl/lib/Tk/Labelframe.pm
- tlpkg/tlperl/lib/Tk/Labelframe.pod
tlpkg/tlperl/lib/Tk/Listbox.pm
- tlpkg/tlperl/lib/Tk/Listbox.pod
tlpkg/tlperl/lib/Tk/MMtry.pm
tlpkg/tlperl/lib/Tk/MMutil.pm
tlpkg/tlperl/lib/Tk/MainWindow.pm
- tlpkg/tlperl/lib/Tk/MainWindow.pod
tlpkg/tlperl/lib/Tk/MakeDepend.pm
tlpkg/tlperl/lib/Tk/Menu.pm
- tlpkg/tlperl/lib/Tk/Menu.pod
tlpkg/tlperl/lib/Tk/Menu/Item.pm
- tlpkg/tlperl/lib/Tk/Menu/Item.pod
tlpkg/tlperl/lib/Tk/Menubar.pm
tlpkg/tlperl/lib/Tk/Menubutton.pm
- tlpkg/tlperl/lib/Tk/Menubutton.pod
tlpkg/tlperl/lib/Tk/Message.pm
- tlpkg/tlperl/lib/Tk/Message.pod
tlpkg/tlperl/lib/Tk/MsgBox.pm
- tlpkg/tlperl/lib/Tk/MsgBox.pod
- tlpkg/tlperl/lib/Tk/Mwm.pod
tlpkg/tlperl/lib/Tk/NBFrame.pm
tlpkg/tlperl/lib/Tk/NoteBook.pm
- tlpkg/tlperl/lib/Tk/NoteBook.pod
tlpkg/tlperl/lib/Tk/Optionmenu.pm
- tlpkg/tlperl/lib/Tk/Optionmenu.pod
tlpkg/tlperl/lib/Tk/PNG.pm
tlpkg/tlperl/lib/Tk/Pane.pm
tlpkg/tlperl/lib/Tk/Panedwindow.pm
- tlpkg/tlperl/lib/Tk/Panedwindow.pod
tlpkg/tlperl/lib/Tk/Photo.pm
- tlpkg/tlperl/lib/Tk/Photo.pod
tlpkg/tlperl/lib/Tk/Pixmap.pm
- tlpkg/tlperl/lib/Tk/Pixmap.pod
- tlpkg/tlperl/lib/Tk/Popup.pod
tlpkg/tlperl/lib/Tk/Pretty.pm
tlpkg/tlperl/lib/Tk/ProgressBar.pm
tlpkg/tlperl/lib/Tk/README.Adjust
tlpkg/tlperl/lib/Tk/ROText.pm
- tlpkg/tlperl/lib/Tk/ROText.pod
tlpkg/tlperl/lib/Tk/Radiobutton.pm
- tlpkg/tlperl/lib/Tk/Radiobutton.pod
tlpkg/tlperl/lib/Tk/Region.pm
tlpkg/tlperl/lib/Tk/Reindex.pm
tlpkg/tlperl/lib/Tk/ReindexedROText.pm
tlpkg/tlperl/lib/Tk/ReindexedText.pm
tlpkg/tlperl/lib/Tk/Scale.pm
- tlpkg/tlperl/lib/Tk/Scale.pod
tlpkg/tlperl/lib/Tk/Scrollbar.pm
- tlpkg/tlperl/lib/Tk/Scrollbar.pod
- tlpkg/tlperl/lib/Tk/Scrolled.pod
tlpkg/tlperl/lib/Tk/Spinbox.pm
- tlpkg/tlperl/lib/Tk/Spinbox.pod
tlpkg/tlperl/lib/Tk/Stats.pm
tlpkg/tlperl/lib/Tk/Submethods.pm
- tlpkg/tlperl/lib/Tk/Submethods.pod
- tlpkg/tlperl/lib/Tk/SunConst.pod
tlpkg/tlperl/lib/Tk/TList.pm
- tlpkg/tlperl/lib/Tk/TList.pod
tlpkg/tlperl/lib/Tk/Table.pm
- tlpkg/tlperl/lib/Tk/Table.pod
- tlpkg/tlperl/lib/Tk/Tcl-perl.pod
tlpkg/tlperl/lib/Tk/Text.pm
- tlpkg/tlperl/lib/Tk/Text.pod
tlpkg/tlperl/lib/Tk/Text/Tag.pm
tlpkg/tlperl/lib/Tk/TextEdit.pm
tlpkg/tlperl/lib/Tk/TextList.pm
tlpkg/tlperl/lib/Tk/TextUndo.pm
- tlpkg/tlperl/lib/Tk/TextUndo.pod
tlpkg/tlperl/lib/Tk/Tiler.pm
- tlpkg/tlperl/lib/Tk/Tiler.pod
tlpkg/tlperl/lib/Tk/TixGrid.pm
- tlpkg/tlperl/lib/Tk/TixGrid.pod
+ tlpkg/tlperl/lib/Tk/Tk.def
tlpkg/tlperl/lib/Tk/Tk.xbm
tlpkg/tlperl/lib/Tk/Tk.xpm
tlpkg/tlperl/lib/Tk/TkXSUB.def
tlpkg/tlperl/lib/Tk/Toplevel.pm
- tlpkg/tlperl/lib/Tk/Toplevel.pod
tlpkg/tlperl/lib/Tk/Trace.pm
tlpkg/tlperl/lib/Tk/Tree.pm
- tlpkg/tlperl/lib/Tk/Tree.pod
- tlpkg/tlperl/lib/Tk/UserGuide.pod
tlpkg/tlperl/lib/Tk/Widget.pm
- tlpkg/tlperl/lib/Tk/Widget.pod
- tlpkg/tlperl/lib/Tk/WidgetDemo.pod
tlpkg/tlperl/lib/Tk/Wm.pm
- tlpkg/tlperl/lib/Tk/Wm.pod
tlpkg/tlperl/lib/Tk/X.pm
- tlpkg/tlperl/lib/Tk/X.pod
tlpkg/tlperl/lib/Tk/X11/X.h
tlpkg/tlperl/lib/Tk/X11/Xatom.h
tlpkg/tlperl/lib/Tk/X11/Xfuncproto.h
@@ -3878,24 +3921,15 @@ binfiles arch=win32 size=13215
tlpkg/tlperl/lib/Tk/X11/keysymdef.h
tlpkg/tlperl/lib/Tk/X11/license.terms
tlpkg/tlperl/lib/Tk/X11Font.pm
- tlpkg/tlperl/lib/Tk/X11Font.pod
tlpkg/tlperl/lib/Tk/Xcamel.gif
tlpkg/tlperl/lib/Tk/Xlib.pm
tlpkg/tlperl/lib/Tk/Xrm.pm
- tlpkg/tlperl/lib/Tk/Xrm.pod
tlpkg/tlperl/lib/Tk/act_folder.xbm
tlpkg/tlperl/lib/Tk/act_folder.xpm
- tlpkg/tlperl/lib/Tk/after.pod
tlpkg/tlperl/lib/Tk/anim.gif
tlpkg/tlperl/lib/Tk/arrowdownwin.xbm
tlpkg/tlperl/lib/Tk/balArrow.xbm
- tlpkg/tlperl/lib/Tk/bind.pod
- tlpkg/tlperl/lib/Tk/bindtags.pod
- tlpkg/tlperl/lib/Tk/callbacks.pod
tlpkg/tlperl/lib/Tk/cbxarrow.xbm
- tlpkg/tlperl/lib/Tk/chooseColor.pod
- tlpkg/tlperl/lib/Tk/chooseDirectory.pod
- tlpkg/tlperl/lib/Tk/composite.pod
tlpkg/tlperl/lib/Tk/demos/LabEnLabRad.pm
tlpkg/tlperl/lib/Tk/demos/images/QuitPB.xpm
tlpkg/tlperl/lib/Tk/demos/images/QuitPBa.xpm
@@ -3997,30 +4031,16 @@ binfiles arch=win32 size=13215
tlpkg/tlperl/lib/Tk/demos/widtrib/lib/npuz/Xcamel.npuz
tlpkg/tlperl/lib/Tk/demos/widtrib/npuz.pl
tlpkg/tlperl/lib/Tk/demos/widtrib/plop.pl
- tlpkg/tlperl/lib/Tk/event.pod
- tlpkg/tlperl/lib/Tk/exit.pod
tlpkg/tlperl/lib/Tk/file.xbm
tlpkg/tlperl/lib/Tk/file.xpm
- tlpkg/tlperl/lib/Tk/fileevent.pod
- tlpkg/tlperl/lib/Tk/focus.pod
tlpkg/tlperl/lib/Tk/folder.xbm
tlpkg/tlperl/lib/Tk/folder.xpm
- tlpkg/tlperl/lib/Tk/form.pod
- tlpkg/tlperl/lib/Tk/getOpenFile.pod
- tlpkg/tlperl/lib/Tk/grab.pod
- tlpkg/tlperl/lib/Tk/grid.pod
tlpkg/tlperl/lib/Tk/icon.gif
tlpkg/tlperl/lib/Tk/install.pm
tlpkg/tlperl/lib/Tk/license.terms
- tlpkg/tlperl/lib/Tk/mega.pod
- tlpkg/tlperl/lib/Tk/messageBox.pod
tlpkg/tlperl/lib/Tk/openfile.xbm
tlpkg/tlperl/lib/Tk/openfolder.xbm
tlpkg/tlperl/lib/Tk/openfolder.xpm
- tlpkg/tlperl/lib/Tk/option.pod
- tlpkg/tlperl/lib/Tk/options.pod
- tlpkg/tlperl/lib/Tk/overview.pod
- tlpkg/tlperl/lib/Tk/pTk.pod
tlpkg/tlperl/lib/Tk/pTk/Lang.h
tlpkg/tlperl/lib/Tk/pTk/Lang.m
tlpkg/tlperl/lib/Tk/pTk/Lang.t
@@ -4139,26 +4159,18 @@ binfiles arch=win32 size=13215
tlpkg/tlperl/lib/Tk/pTk/tkXrm.h
tlpkg/tlperl/lib/Tk/pTk/tk_f.h
tlpkg/tlperl/lib/Tk/pTk/xbytes.h
- tlpkg/tlperl/lib/Tk/pack.pod
- tlpkg/tlperl/lib/Tk/palette.pod
- tlpkg/tlperl/lib/Tk/place.pod
tlpkg/tlperl/lib/Tk/prolog.ps
- tlpkg/tlperl/lib/Tk/selection.pod
- tlpkg/tlperl/lib/Tk/send.pod
tlpkg/tlperl/lib/Tk/srcfile.xpm
tlpkg/tlperl/lib/Tk/textfile.xpm
- tlpkg/tlperl/lib/Tk/tixWm.pod
tlpkg/tlperl/lib/Tk/tkGlue.def
tlpkg/tlperl/lib/Tk/tkGlue.h
tlpkg/tlperl/lib/Tk/tkGlue.m
tlpkg/tlperl/lib/Tk/tkGlue.t
tlpkg/tlperl/lib/Tk/tkGlue_f.h
- tlpkg/tlperl/lib/Tk/tkvars.pod
tlpkg/tlperl/lib/Tk/tranicon.gif
tlpkg/tlperl/lib/Tk/typemap
tlpkg/tlperl/lib/Tk/vtab.def
tlpkg/tlperl/lib/Tk/widgets.pm
- tlpkg/tlperl/lib/Tk/widgets.pod
tlpkg/tlperl/lib/Tk/win.xbm
tlpkg/tlperl/lib/Tk/winfolder.xpm
tlpkg/tlperl/lib/Tk/wintext.xpm
@@ -4222,6 +4234,7 @@ binfiles arch=win32 size=13215
tlpkg/tlperl/lib/Unicode/Collate/CJK/Korean.pm
tlpkg/tlperl/lib/Unicode/Collate/CJK/Pinyin.pm
tlpkg/tlperl/lib/Unicode/Collate/CJK/Stroke.pm
+ tlpkg/tlperl/lib/Unicode/Collate/CJK/Zhuyin.pm
tlpkg/tlperl/lib/Unicode/Collate/Locale.pm
tlpkg/tlperl/lib/Unicode/Collate/Locale/af.pl
tlpkg/tlperl/lib/Unicode/Collate/Locale/ar.pl
@@ -4235,6 +4248,7 @@ binfiles arch=win32 size=13215
tlpkg/tlperl/lib/Unicode/Collate/Locale/cy.pl
tlpkg/tlperl/lib/Unicode/Collate/Locale/da.pl
tlpkg/tlperl/lib/Unicode/Collate/Locale/de_phone.pl
+ tlpkg/tlperl/lib/Unicode/Collate/Locale/ee.pl
tlpkg/tlperl/lib/Unicode/Collate/Locale/eo.pl
tlpkg/tlperl/lib/Unicode/Collate/Locale/es.pl
tlpkg/tlperl/lib/Unicode/Collate/Locale/es_trad.pl
@@ -4303,6 +4317,7 @@ binfiles arch=win32 size=13215
tlpkg/tlperl/lib/Unicode/Collate/Locale/zh_gb.pl
tlpkg/tlperl/lib/Unicode/Collate/Locale/zh_pin.pl
tlpkg/tlperl/lib/Unicode/Collate/Locale/zh_strk.pl
+ tlpkg/tlperl/lib/Unicode/Collate/Locale/zh_zhu.pl
tlpkg/tlperl/lib/Unicode/Collate/allkeys.txt
tlpkg/tlperl/lib/Unicode/Collate/keys.txt
tlpkg/tlperl/lib/Unicode/Normalize.pm
@@ -4321,9 +4336,7 @@ binfiles arch=win32 size=13215
tlpkg/tlperl/lib/Win32/OLE/Const.pm
tlpkg/tlperl/lib/Win32/OLE/Enum.pm
tlpkg/tlperl/lib/Win32/OLE/Lite.pm
- tlpkg/tlperl/lib/Win32/OLE/NEWS.pod
tlpkg/tlperl/lib/Win32/OLE/NLS.pm
- tlpkg/tlperl/lib/Win32/OLE/TPJ.pod
tlpkg/tlperl/lib/Win32/OLE/TypeInfo.pm
tlpkg/tlperl/lib/Win32/OLE/Variant.pm
tlpkg/tlperl/lib/Win32/Process/Info.pm
@@ -4385,6 +4398,8 @@ binfiles arch=win32 size=13215
tlpkg/tlperl/lib/auto/Encode/Unicode/Unicode.dll
tlpkg/tlperl/lib/auto/Fcntl/Fcntl.bs
tlpkg/tlperl/lib/auto/Fcntl/Fcntl.dll
+ tlpkg/tlperl/lib/auto/File/DosGlob/DosGlob.bs
+ tlpkg/tlperl/lib/auto/File/DosGlob/DosGlob.dll
tlpkg/tlperl/lib/auto/File/Glob/Glob.bs
tlpkg/tlperl/lib/auto/File/Glob/Glob.dll
tlpkg/tlperl/lib/auto/File/Listing/.packlist
@@ -4403,17 +4418,22 @@ binfiles arch=win32 size=13215
tlpkg/tlperl/lib/auto/Hash/Util/FieldHash/FieldHash.dll
tlpkg/tlperl/lib/auto/Hash/Util/Util.bs
tlpkg/tlperl/lib/auto/Hash/Util/Util.dll
+ tlpkg/tlperl/lib/auto/IO/HTML/.packlist
tlpkg/tlperl/lib/auto/IO/IO.bs
tlpkg/tlperl/lib/auto/IO/IO.dll
tlpkg/tlperl/lib/auto/IO/String/.packlist
tlpkg/tlperl/lib/auto/LWP/.packlist
tlpkg/tlperl/lib/auto/LWP/MediaTypes/.packlist
+ tlpkg/tlperl/lib/auto/LWP/Protocol/https/.packlist
tlpkg/tlperl/lib/auto/List/Util/Util.bs
tlpkg/tlperl/lib/auto/List/Util/Util.dll
tlpkg/tlperl/lib/auto/MIME/Base64/Base64.bs
tlpkg/tlperl/lib/auto/MIME/Base64/Base64.dll
tlpkg/tlperl/lib/auto/Math/BigInt/FastCalc/FastCalc.bs
tlpkg/tlperl/lib/auto/Math/BigInt/FastCalc/FastCalc.dll
+ tlpkg/tlperl/lib/auto/Math/Int64/.packlist
+ tlpkg/tlperl/lib/auto/Math/Int64/Int64.bs
+ tlpkg/tlperl/lib/auto/Math/Int64/Int64.dll
tlpkg/tlperl/lib/auto/Net/HTTP/.packlist
tlpkg/tlperl/lib/auto/Opcode/Opcode.bs
tlpkg/tlperl/lib/auto/Opcode/Opcode.dll
@@ -4451,6 +4471,7 @@ binfiles arch=win32 size=13215
tlpkg/tlperl/lib/auto/Tk/Clipboard/getSelected.al
tlpkg/tlperl/lib/auto/Tk/Compound/Compound.bs
tlpkg/tlperl/lib/auto/Tk/Compound/Compound.dll
+ tlpkg/tlperl/lib/auto/Tk/DirSelect/.packlist
tlpkg/tlperl/lib/auto/Tk/DragDrop/Win32Site/Win32Site.bs
tlpkg/tlperl/lib/auto/Tk/DragDrop/Win32Site/Win32Site.dll
tlpkg/tlperl/lib/auto/Tk/EnterFocus.al
@@ -4687,8 +4708,6 @@ binfiles arch=win32 size=13215
tlpkg/tlperl/lib/less.pm
tlpkg/tlperl/lib/lib.pm
tlpkg/tlperl/lib/locale.pm
- tlpkg/tlperl/lib/lwpcook.pod
- tlpkg/tlperl/lib/lwptut.pod
tlpkg/tlperl/lib/mro.pm
tlpkg/tlperl/lib/open.pm
tlpkg/tlperl/lib/ops.pm
@@ -4698,180 +4717,6 @@ binfiles arch=win32 size=13215
tlpkg/tlperl/lib/parent.pm
tlpkg/tlperl/lib/perl5db.pl
tlpkg/tlperl/lib/perlfaq.pm
- tlpkg/tlperl/lib/perllocal.pod
- tlpkg/tlperl/lib/pods/a2p.pod
- tlpkg/tlperl/lib/pods/perl.pod
- tlpkg/tlperl/lib/pods/perl5004delta.pod
- tlpkg/tlperl/lib/pods/perl5005delta.pod
- tlpkg/tlperl/lib/pods/perl5100delta.pod
- tlpkg/tlperl/lib/pods/perl5101delta.pod
- tlpkg/tlperl/lib/pods/perl5120delta.pod
- tlpkg/tlperl/lib/pods/perl5121delta.pod
- tlpkg/tlperl/lib/pods/perl5122delta.pod
- tlpkg/tlperl/lib/pods/perl5123delta.pod
- tlpkg/tlperl/lib/pods/perl5124delta.pod
- tlpkg/tlperl/lib/pods/perl5140delta.pod
- tlpkg/tlperl/lib/pods/perl5141delta.pod
- tlpkg/tlperl/lib/pods/perl5142delta.pod
- tlpkg/tlperl/lib/pods/perl5143delta.pod
- tlpkg/tlperl/lib/pods/perl5160delta.pod
- tlpkg/tlperl/lib/pods/perl5161delta.pod
- tlpkg/tlperl/lib/pods/perl5162delta.pod
- tlpkg/tlperl/lib/pods/perl561delta.pod
- tlpkg/tlperl/lib/pods/perl56delta.pod
- tlpkg/tlperl/lib/pods/perl581delta.pod
- tlpkg/tlperl/lib/pods/perl582delta.pod
- tlpkg/tlperl/lib/pods/perl583delta.pod
- tlpkg/tlperl/lib/pods/perl584delta.pod
- tlpkg/tlperl/lib/pods/perl585delta.pod
- tlpkg/tlperl/lib/pods/perl586delta.pod
- tlpkg/tlperl/lib/pods/perl587delta.pod
- tlpkg/tlperl/lib/pods/perl588delta.pod
- tlpkg/tlperl/lib/pods/perl589delta.pod
- tlpkg/tlperl/lib/pods/perl58delta.pod
- tlpkg/tlperl/lib/pods/perlaix.pod
- tlpkg/tlperl/lib/pods/perlamiga.pod
- tlpkg/tlperl/lib/pods/perlapi.pod
- tlpkg/tlperl/lib/pods/perlapio.pod
- tlpkg/tlperl/lib/pods/perlartistic.pod
- tlpkg/tlperl/lib/pods/perlbeos.pod
- tlpkg/tlperl/lib/pods/perlbook.pod
- tlpkg/tlperl/lib/pods/perlboot.pod
- tlpkg/tlperl/lib/pods/perlbot.pod
- tlpkg/tlperl/lib/pods/perlbs2000.pod
- tlpkg/tlperl/lib/pods/perlcall.pod
- tlpkg/tlperl/lib/pods/perlce.pod
- tlpkg/tlperl/lib/pods/perlcheat.pod
- tlpkg/tlperl/lib/pods/perlclib.pod
- tlpkg/tlperl/lib/pods/perlcn.pod
- tlpkg/tlperl/lib/pods/perlcommunity.pod
- tlpkg/tlperl/lib/pods/perlcygwin.pod
- tlpkg/tlperl/lib/pods/perldata.pod
- tlpkg/tlperl/lib/pods/perldbmfilter.pod
- tlpkg/tlperl/lib/pods/perldebguts.pod
- tlpkg/tlperl/lib/pods/perldebtut.pod
- tlpkg/tlperl/lib/pods/perldebug.pod
- tlpkg/tlperl/lib/pods/perldelta.pod
- tlpkg/tlperl/lib/pods/perldgux.pod
- tlpkg/tlperl/lib/pods/perldiag.pod
- tlpkg/tlperl/lib/pods/perldoc.pod
- tlpkg/tlperl/lib/pods/perldos.pod
- tlpkg/tlperl/lib/pods/perldsc.pod
- tlpkg/tlperl/lib/pods/perldtrace.pod
- tlpkg/tlperl/lib/pods/perlebcdic.pod
- tlpkg/tlperl/lib/pods/perlembed.pod
- tlpkg/tlperl/lib/pods/perlepoc.pod
- tlpkg/tlperl/lib/pods/perlexperiment.pod
- tlpkg/tlperl/lib/pods/perlfaq.pod
- tlpkg/tlperl/lib/pods/perlfaq1.pod
- tlpkg/tlperl/lib/pods/perlfaq2.pod
- tlpkg/tlperl/lib/pods/perlfaq3.pod
- tlpkg/tlperl/lib/pods/perlfaq4.pod
- tlpkg/tlperl/lib/pods/perlfaq5.pod
- tlpkg/tlperl/lib/pods/perlfaq6.pod
- tlpkg/tlperl/lib/pods/perlfaq7.pod
- tlpkg/tlperl/lib/pods/perlfaq8.pod
- tlpkg/tlperl/lib/pods/perlfaq9.pod
- tlpkg/tlperl/lib/pods/perlfilter.pod
- tlpkg/tlperl/lib/pods/perlfork.pod
- tlpkg/tlperl/lib/pods/perlform.pod
- tlpkg/tlperl/lib/pods/perlfreebsd.pod
- tlpkg/tlperl/lib/pods/perlfunc.pod
- tlpkg/tlperl/lib/pods/perlgit.pod
- tlpkg/tlperl/lib/pods/perlglossary.pod
- tlpkg/tlperl/lib/pods/perlgpl.pod
- tlpkg/tlperl/lib/pods/perlguts.pod
- tlpkg/tlperl/lib/pods/perlhack.pod
- tlpkg/tlperl/lib/pods/perlhacktips.pod
- tlpkg/tlperl/lib/pods/perlhacktut.pod
- tlpkg/tlperl/lib/pods/perlhaiku.pod
- tlpkg/tlperl/lib/pods/perlhist.pod
- tlpkg/tlperl/lib/pods/perlhpux.pod
- tlpkg/tlperl/lib/pods/perlhurd.pod
- tlpkg/tlperl/lib/pods/perlintern.pod
- tlpkg/tlperl/lib/pods/perlinterp.pod
- tlpkg/tlperl/lib/pods/perlintro.pod
- tlpkg/tlperl/lib/pods/perliol.pod
- tlpkg/tlperl/lib/pods/perlipc.pod
- tlpkg/tlperl/lib/pods/perlirix.pod
- tlpkg/tlperl/lib/pods/perljp.pod
- tlpkg/tlperl/lib/pods/perlko.pod
- tlpkg/tlperl/lib/pods/perllexwarn.pod
- tlpkg/tlperl/lib/pods/perllinux.pod
- tlpkg/tlperl/lib/pods/perllocale.pod
- tlpkg/tlperl/lib/pods/perllol.pod
- tlpkg/tlperl/lib/pods/perlmacos.pod
- tlpkg/tlperl/lib/pods/perlmacosx.pod
- tlpkg/tlperl/lib/pods/perlmod.pod
- tlpkg/tlperl/lib/pods/perlmodinstall.pod
- tlpkg/tlperl/lib/pods/perlmodlib.pod
- tlpkg/tlperl/lib/pods/perlmodstyle.pod
- tlpkg/tlperl/lib/pods/perlmpeix.pod
- tlpkg/tlperl/lib/pods/perlmroapi.pod
- tlpkg/tlperl/lib/pods/perlnetware.pod
- tlpkg/tlperl/lib/pods/perlnewmod.pod
- tlpkg/tlperl/lib/pods/perlnumber.pod
- tlpkg/tlperl/lib/pods/perlobj.pod
- tlpkg/tlperl/lib/pods/perlootut.pod
- tlpkg/tlperl/lib/pods/perlop.pod
- tlpkg/tlperl/lib/pods/perlopenbsd.pod
- tlpkg/tlperl/lib/pods/perlopentut.pod
- tlpkg/tlperl/lib/pods/perlos2.pod
- tlpkg/tlperl/lib/pods/perlos390.pod
- tlpkg/tlperl/lib/pods/perlos400.pod
- tlpkg/tlperl/lib/pods/perlpacktut.pod
- tlpkg/tlperl/lib/pods/perlperf.pod
- tlpkg/tlperl/lib/pods/perlplan9.pod
- tlpkg/tlperl/lib/pods/perlpod.pod
- tlpkg/tlperl/lib/pods/perlpodspec.pod
- tlpkg/tlperl/lib/pods/perlpodstyle.pod
- tlpkg/tlperl/lib/pods/perlpolicy.pod
- tlpkg/tlperl/lib/pods/perlport.pod
- tlpkg/tlperl/lib/pods/perlpragma.pod
- tlpkg/tlperl/lib/pods/perlqnx.pod
- tlpkg/tlperl/lib/pods/perlre.pod
- tlpkg/tlperl/lib/pods/perlreapi.pod
- tlpkg/tlperl/lib/pods/perlrebackslash.pod
- tlpkg/tlperl/lib/pods/perlrecharclass.pod
- tlpkg/tlperl/lib/pods/perlref.pod
- tlpkg/tlperl/lib/pods/perlreftut.pod
- tlpkg/tlperl/lib/pods/perlreguts.pod
- tlpkg/tlperl/lib/pods/perlrequick.pod
- tlpkg/tlperl/lib/pods/perlreref.pod
- tlpkg/tlperl/lib/pods/perlretut.pod
- tlpkg/tlperl/lib/pods/perlriscos.pod
- tlpkg/tlperl/lib/pods/perlrun.pod
- tlpkg/tlperl/lib/pods/perlsec.pod
- tlpkg/tlperl/lib/pods/perlsolaris.pod
- tlpkg/tlperl/lib/pods/perlsource.pod
- tlpkg/tlperl/lib/pods/perlstyle.pod
- tlpkg/tlperl/lib/pods/perlsub.pod
- tlpkg/tlperl/lib/pods/perlsymbian.pod
- tlpkg/tlperl/lib/pods/perlsyn.pod
- tlpkg/tlperl/lib/pods/perlthrtut.pod
- tlpkg/tlperl/lib/pods/perltie.pod
- tlpkg/tlperl/lib/pods/perltoc.pod
- tlpkg/tlperl/lib/pods/perltodo.pod
- tlpkg/tlperl/lib/pods/perltooc.pod
- tlpkg/tlperl/lib/pods/perltoot.pod
- tlpkg/tlperl/lib/pods/perltrap.pod
- tlpkg/tlperl/lib/pods/perltru64.pod
- tlpkg/tlperl/lib/pods/perltw.pod
- tlpkg/tlperl/lib/pods/perlunicode.pod
- tlpkg/tlperl/lib/pods/perlunifaq.pod
- tlpkg/tlperl/lib/pods/perluniintro.pod
- tlpkg/tlperl/lib/pods/perluniprops.pod
- tlpkg/tlperl/lib/pods/perlunitut.pod
- tlpkg/tlperl/lib/pods/perlutil.pod
- tlpkg/tlperl/lib/pods/perluts.pod
- tlpkg/tlperl/lib/pods/perlvar.pod
- tlpkg/tlperl/lib/pods/perlvmesa.pod
- tlpkg/tlperl/lib/pods/perlvms.pod
- tlpkg/tlperl/lib/pods/perlvos.pod
- tlpkg/tlperl/lib/pods/perlwin32.pod
- tlpkg/tlperl/lib/pods/perlxs.pod
- tlpkg/tlperl/lib/pods/perlxstut.pod
- tlpkg/tlperl/lib/pods/perlxstypemap.pod
tlpkg/tlperl/lib/re.pm
tlpkg/tlperl/lib/sigtrap.pm
tlpkg/tlperl/lib/sort.pm
@@ -4880,7 +4725,6 @@ binfiles arch=win32 size=13215
tlpkg/tlperl/lib/threads.pm
tlpkg/tlperl/lib/threads/shared.pm
tlpkg/tlperl/lib/unicore/Blocks.txt
- tlpkg/tlperl/lib/unicore/CaseFolding.txt
tlpkg/tlperl/lib/unicore/CombiningClass.pl
tlpkg/tlperl/lib/unicore/Decomposition.pl
tlpkg/tlperl/lib/unicore/Heavy.pl
@@ -4938,6 +4782,7 @@ binfiles arch=win32 size=13215
tlpkg/tlperl/lib/unicore/lib/Age/V52.pl
tlpkg/tlperl/lib/unicore/lib/Age/V60.pl
tlpkg/tlperl/lib/unicore/lib/Age/V61.pl
+ tlpkg/tlperl/lib/unicore/lib/Age/V62.pl
tlpkg/tlperl/lib/unicore/lib/Alpha/Y.pl
tlpkg/tlperl/lib/unicore/lib/Bc/AL.pl
tlpkg/tlperl/lib/unicore/lib/Bc/AN.pl
@@ -4986,6 +4831,7 @@ binfiles arch=win32 size=13215
tlpkg/tlperl/lib/unicore/lib/Blk/Bopomofo.pl
tlpkg/tlperl/lib/unicore/lib/Blk/BoxDrawi.pl
tlpkg/tlperl/lib/unicore/lib/Blk/Brahmi.pl
+ tlpkg/tlperl/lib/unicore/lib/Blk/Braille.pl
tlpkg/tlperl/lib/unicore/lib/Blk/Buginese.pl
tlpkg/tlperl/lib/unicore/lib/Blk/Buhid.pl
tlpkg/tlperl/lib/unicore/lib/Blk/Byzantin.pl
@@ -5017,6 +4863,7 @@ binfiles arch=win32 size=13215
tlpkg/tlperl/lib/unicore/lib/Blk/Cyrilli3.pl
tlpkg/tlperl/lib/unicore/lib/Blk/Cyrilli4.pl
tlpkg/tlperl/lib/unicore/lib/Blk/Cyrillic.pl
+ tlpkg/tlperl/lib/unicore/lib/Blk/Deseret.pl
tlpkg/tlperl/lib/unicore/lib/Blk/Devanag2.pl
tlpkg/tlperl/lib/unicore/lib/Blk/Devanaga.pl
tlpkg/tlperl/lib/unicore/lib/Blk/Diacrit2.pl
@@ -5068,6 +4915,7 @@ binfiles arch=win32 size=13215
tlpkg/tlperl/lib/unicore/lib/Blk/Kannada.pl
tlpkg/tlperl/lib/unicore/lib/Blk/Katakan2.pl
tlpkg/tlperl/lib/unicore/lib/Blk/Katakana.pl
+ tlpkg/tlperl/lib/unicore/lib/Blk/KayahLi.pl
tlpkg/tlperl/lib/unicore/lib/Blk/Kharosht.pl
tlpkg/tlperl/lib/unicore/lib/Blk/Khmer.pl
tlpkg/tlperl/lib/unicore/lib/Blk/KhmerSym.pl
@@ -5083,6 +4931,7 @@ binfiles arch=win32 size=13215
tlpkg/tlperl/lib/unicore/lib/Blk/Limbu.pl
tlpkg/tlperl/lib/unicore/lib/Blk/LinearBI.pl
tlpkg/tlperl/lib/unicore/lib/Blk/LinearBS.pl
+ tlpkg/tlperl/lib/unicore/lib/Blk/Lisu.pl
tlpkg/tlperl/lib/unicore/lib/Blk/LowSurro.pl
tlpkg/tlperl/lib/unicore/lib/Blk/Lycian.pl
tlpkg/tlperl/lib/unicore/lib/Blk/Lydian.pl
@@ -5093,6 +4942,7 @@ binfiles arch=win32 size=13215
tlpkg/tlperl/lib/unicore/lib/Blk/MathOper.pl
tlpkg/tlperl/lib/unicore/lib/Blk/MeeteiM2.pl
tlpkg/tlperl/lib/unicore/lib/Blk/MeeteiMa.pl
+ tlpkg/tlperl/lib/unicore/lib/Blk/Meroiti2.pl
tlpkg/tlperl/lib/unicore/lib/Blk/Meroitic.pl
tlpkg/tlperl/lib/unicore/lib/Blk/Miao.pl
tlpkg/tlperl/lib/unicore/lib/Blk/MiscArro.pl
@@ -5113,8 +4963,10 @@ binfiles arch=win32 size=13215
tlpkg/tlperl/lib/unicore/lib/Blk/NumberFo.pl
tlpkg/tlperl/lib/unicore/lib/Blk/OCR.pl
tlpkg/tlperl/lib/unicore/lib/Blk/Ogham.pl
+ tlpkg/tlperl/lib/unicore/lib/Blk/OlChiki.pl
tlpkg/tlperl/lib/unicore/lib/Blk/OldItali.pl
tlpkg/tlperl/lib/unicore/lib/Blk/OldPersi.pl
+ tlpkg/tlperl/lib/unicore/lib/Blk/OldSouth.pl
tlpkg/tlperl/lib/unicore/lib/Blk/OldTurki.pl
tlpkg/tlperl/lib/unicore/lib/Blk/Oriya.pl
tlpkg/tlperl/lib/unicore/lib/Blk/Osmanya.pl
@@ -5132,6 +4984,7 @@ binfiles arch=win32 size=13215
tlpkg/tlperl/lib/unicore/lib/Blk/Samarita.pl
tlpkg/tlperl/lib/unicore/lib/Blk/Saurasht.pl
tlpkg/tlperl/lib/unicore/lib/Blk/Sharada.pl
+ tlpkg/tlperl/lib/unicore/lib/Blk/Shavian.pl
tlpkg/tlperl/lib/unicore/lib/Blk/Sinhala.pl
tlpkg/tlperl/lib/unicore/lib/Blk/SmallFor.pl
tlpkg/tlperl/lib/unicore/lib/Blk/SoraSomp.pl
@@ -5253,21 +5106,22 @@ binfiles arch=win32 size=13215
tlpkg/tlperl/lib/unicore/lib/Dt/Nar.pl
tlpkg/tlperl/lib/unicore/lib/Dt/Nb.pl
tlpkg/tlperl/lib/unicore/lib/Dt/NonCanon.pl
- tlpkg/tlperl/lib/unicore/lib/Dt/None.pl
tlpkg/tlperl/lib/unicore/lib/Dt/Sml.pl
tlpkg/tlperl/lib/unicore/lib/Dt/Sqr.pl
tlpkg/tlperl/lib/unicore/lib/Dt/Sub.pl
tlpkg/tlperl/lib/unicore/lib/Dt/Sup.pl
tlpkg/tlperl/lib/unicore/lib/Dt/Vert.pl
+ tlpkg/tlperl/lib/unicore/lib/Dt/Wide.pl
tlpkg/tlperl/lib/unicore/lib/Ea/A.pl
- tlpkg/tlperl/lib/unicore/lib/Ea/F.pl
tlpkg/tlperl/lib/unicore/lib/Ea/H.pl
tlpkg/tlperl/lib/unicore/lib/Ea/N.pl
tlpkg/tlperl/lib/unicore/lib/Ea/Na.pl
tlpkg/tlperl/lib/unicore/lib/Ea/W.pl
tlpkg/tlperl/lib/unicore/lib/Ext/Y.pl
tlpkg/tlperl/lib/unicore/lib/GCB/CN.pl
+ tlpkg/tlperl/lib/unicore/lib/GCB/CR.pl
tlpkg/tlperl/lib/unicore/lib/GCB/EX.pl
+ tlpkg/tlperl/lib/unicore/lib/GCB/LF.pl
tlpkg/tlperl/lib/unicore/lib/GCB/SM.pl
tlpkg/tlperl/lib/unicore/lib/GCB/XX.pl
tlpkg/tlperl/lib/unicore/lib/Gc/C.pl
@@ -5291,7 +5145,6 @@ binfiles arch=win32 size=13215
tlpkg/tlperl/lib/unicore/lib/Gc/Nl.pl
tlpkg/tlperl/lib/unicore/lib/Gc/No.pl
tlpkg/tlperl/lib/unicore/lib/Gc/P.pl
- tlpkg/tlperl/lib/unicore/lib/Gc/Pc.pl
tlpkg/tlperl/lib/unicore/lib/Gc/Pd.pl
tlpkg/tlperl/lib/unicore/lib/Gc/Pe.pl
tlpkg/tlperl/lib/unicore/lib/Gc/Pf.pl
@@ -5328,6 +5181,7 @@ binfiles arch=win32 size=13215
tlpkg/tlperl/lib/unicore/lib/In/5_2.pl
tlpkg/tlperl/lib/unicore/lib/In/6_0.pl
tlpkg/tlperl/lib/unicore/lib/In/6_1.pl
+ tlpkg/tlperl/lib/unicore/lib/In/6_2.pl
tlpkg/tlperl/lib/unicore/lib/Jg/Ain.pl
tlpkg/tlperl/lib/unicore/lib/Jg/Alaph.pl
tlpkg/tlperl/lib/unicore/lib/Jg/Alef.pl
@@ -5404,23 +5258,15 @@ binfiles arch=win32 size=13215
tlpkg/tlperl/lib/unicore/lib/Lb/CL.pl
tlpkg/tlperl/lib/unicore/lib/Lb/CM.pl
tlpkg/tlperl/lib/unicore/lib/Lb/CP.pl
- tlpkg/tlperl/lib/unicore/lib/Lb/CR.pl
tlpkg/tlperl/lib/unicore/lib/Lb/EX.pl
tlpkg/tlperl/lib/unicore/lib/Lb/GL.pl
- tlpkg/tlperl/lib/unicore/lib/Lb/H2.pl
- tlpkg/tlperl/lib/unicore/lib/Lb/H3.pl
tlpkg/tlperl/lib/unicore/lib/Lb/HL.pl
tlpkg/tlperl/lib/unicore/lib/Lb/HY.pl
tlpkg/tlperl/lib/unicore/lib/Lb/ID.pl
tlpkg/tlperl/lib/unicore/lib/Lb/IN.pl
tlpkg/tlperl/lib/unicore/lib/Lb/IS.pl
- tlpkg/tlperl/lib/unicore/lib/Lb/JL.pl
- tlpkg/tlperl/lib/unicore/lib/Lb/JT.pl
- tlpkg/tlperl/lib/unicore/lib/Lb/JV.pl
- tlpkg/tlperl/lib/unicore/lib/Lb/LF.pl
tlpkg/tlperl/lib/unicore/lib/Lb/NL.pl
tlpkg/tlperl/lib/unicore/lib/Lb/NS.pl
- tlpkg/tlperl/lib/unicore/lib/Lb/NU.pl
tlpkg/tlperl/lib/unicore/lib/Lb/OP.pl
tlpkg/tlperl/lib/unicore/lib/Lb/PO.pl
tlpkg/tlperl/lib/unicore/lib/Lb/PR.pl
@@ -5435,14 +5281,16 @@ binfiles arch=win32 size=13215
tlpkg/tlperl/lib/unicore/lib/Lower/Y.pl
tlpkg/tlperl/lib/unicore/lib/Math/Y.pl
tlpkg/tlperl/lib/unicore/lib/NChar/Y.pl
+ tlpkg/tlperl/lib/unicore/lib/NFCQC/M.pl
tlpkg/tlperl/lib/unicore/lib/NFCQC/Y.pl
tlpkg/tlperl/lib/unicore/lib/NFDQC/N.pl
tlpkg/tlperl/lib/unicore/lib/NFDQC/Y.pl
- tlpkg/tlperl/lib/unicore/lib/NFKCQC/M.pl
tlpkg/tlperl/lib/unicore/lib/NFKCQC/N.pl
tlpkg/tlperl/lib/unicore/lib/NFKCQC/Y.pl
tlpkg/tlperl/lib/unicore/lib/NFKDQC/N.pl
+ tlpkg/tlperl/lib/unicore/lib/NFKDQC/Y.pl
tlpkg/tlperl/lib/unicore/lib/Nt/Di.pl
+ tlpkg/tlperl/lib/unicore/lib/Nt/None.pl
tlpkg/tlperl/lib/unicore/lib/Nt/Nu.pl
tlpkg/tlperl/lib/unicore/lib/Nv/0.pl
tlpkg/tlperl/lib/unicore/lib/Nv/1.pl
@@ -5482,6 +5330,7 @@ binfiles arch=win32 size=13215
tlpkg/tlperl/lib/unicore/lib/Nv/2000.pl
tlpkg/tlperl/lib/unicore/lib/Nv/20000.pl
tlpkg/tlperl/lib/unicore/lib/Nv/21.pl
+ tlpkg/tlperl/lib/unicore/lib/Nv/216000.pl
tlpkg/tlperl/lib/unicore/lib/Nv/22.pl
tlpkg/tlperl/lib/unicore/lib/Nv/23.pl
tlpkg/tlperl/lib/unicore/lib/Nv/24.pl
@@ -5519,6 +5368,7 @@ binfiles arch=win32 size=13215
tlpkg/tlperl/lib/unicore/lib/Nv/41.pl
tlpkg/tlperl/lib/unicore/lib/Nv/42.pl
tlpkg/tlperl/lib/unicore/lib/Nv/43.pl
+ tlpkg/tlperl/lib/unicore/lib/Nv/432000.pl
tlpkg/tlperl/lib/unicore/lib/Nv/44.pl
tlpkg/tlperl/lib/unicore/lib/Nv/45.pl
tlpkg/tlperl/lib/unicore/lib/Nv/46.pl
@@ -5557,7 +5407,7 @@ binfiles arch=win32 size=13215
tlpkg/tlperl/lib/unicore/lib/Nv/9000.pl
tlpkg/tlperl/lib/unicore/lib/Nv/90000.pl
tlpkg/tlperl/lib/unicore/lib/Nv/9_2.pl
- tlpkg/tlperl/lib/unicore/lib/Nv/NaN.pl
+ tlpkg/tlperl/lib/unicore/lib/Nv/_1.pl
tlpkg/tlperl/lib/unicore/lib/Nv/_1_2.pl
tlpkg/tlperl/lib/unicore/lib/PatSyn/Y.pl
tlpkg/tlperl/lib/unicore/lib/PatWS/Y.pl
@@ -5577,7 +5427,6 @@ binfiles arch=win32 size=13215
tlpkg/tlperl/lib/unicore/lib/Perl/PosixLow.pl
tlpkg/tlperl/lib/unicore/lib/Perl/PosixPri.pl
tlpkg/tlperl/lib/unicore/lib/Perl/PosixPun.pl
- tlpkg/tlperl/lib/unicore/lib/Perl/PosixSpa.pl
tlpkg/tlperl/lib/unicore/lib/Perl/PosixUpp.pl
tlpkg/tlperl/lib/unicore/lib/Perl/Print.pl
tlpkg/tlperl/lib/unicore/lib/Perl/SpacePer.pl
@@ -5585,12 +5434,22 @@ binfiles arch=win32 size=13215
tlpkg/tlperl/lib/unicore/lib/Perl/VertSpac.pl
tlpkg/tlperl/lib/unicore/lib/Perl/Word.pl
tlpkg/tlperl/lib/unicore/lib/Perl/XPosixPu.pl
+ tlpkg/tlperl/lib/unicore/lib/Perl/_PerlAny.pl
+ tlpkg/tlperl/lib/unicore/lib/Perl/_PerlCh2.pl
+ tlpkg/tlperl/lib/unicore/lib/Perl/_PerlCha.pl
+ tlpkg/tlperl/lib/unicore/lib/Perl/_PerlIDC.pl
tlpkg/tlperl/lib/unicore/lib/Perl/_PerlIDS.pl
- tlpkg/tlperl/lib/unicore/lib/Perl/_PerlNon.pl
tlpkg/tlperl/lib/unicore/lib/Perl/_PerlQuo.pl
- tlpkg/tlperl/lib/unicore/lib/Perl/_XBegin.pl
tlpkg/tlperl/lib/unicore/lib/Perl/_XExtend.pl
+ tlpkg/tlperl/lib/unicore/lib/Perl/_XGCBL.pl
+ tlpkg/tlperl/lib/unicore/lib/Perl/_XGCBLV.pl
+ tlpkg/tlperl/lib/unicore/lib/Perl/_XGCBLVT.pl
+ tlpkg/tlperl/lib/unicore/lib/Perl/_XGCBT.pl
+ tlpkg/tlperl/lib/unicore/lib/Perl/_XGCBV.pl
tlpkg/tlperl/lib/unicore/lib/Perl/_XLVLVTV.pl
+ tlpkg/tlperl/lib/unicore/lib/Perl/_XRI.pl
+ tlpkg/tlperl/lib/unicore/lib/Perl/_XRegula.pl
+ tlpkg/tlperl/lib/unicore/lib/Perl/_XSpecia.pl
tlpkg/tlperl/lib/unicore/lib/QMark/Y.pl
tlpkg/tlperl/lib/unicore/lib/Radical/Y.pl
tlpkg/tlperl/lib/unicore/lib/SB/AT.pl
@@ -5599,6 +5458,7 @@ binfiles arch=win32 size=13215
tlpkg/tlperl/lib/unicore/lib/SB/FO.pl
tlpkg/tlperl/lib/unicore/lib/SB/LE.pl
tlpkg/tlperl/lib/unicore/lib/SB/LO.pl
+ tlpkg/tlperl/lib/unicore/lib/SB/NU.pl
tlpkg/tlperl/lib/unicore/lib/SB/SC.pl
tlpkg/tlperl/lib/unicore/lib/SB/SE.pl
tlpkg/tlperl/lib/unicore/lib/SB/ST.pl
@@ -5608,142 +5468,137 @@ binfiles arch=win32 size=13215
tlpkg/tlperl/lib/unicore/lib/SD/Y.pl
tlpkg/tlperl/lib/unicore/lib/STerm/Y.pl
tlpkg/tlperl/lib/unicore/lib/Sc/Arab.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Armi.pl
tlpkg/tlperl/lib/unicore/lib/Sc/Armn.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Avst.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Bali.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Bamu.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Batk.pl
tlpkg/tlperl/lib/unicore/lib/Sc/Beng.pl
tlpkg/tlperl/lib/unicore/lib/Sc/Bopo.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Brah.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Bugi.pl
tlpkg/tlperl/lib/unicore/lib/Sc/Buhd.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Cakm.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Cans.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Cari.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Cham.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Cher.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Copt.pl
tlpkg/tlperl/lib/unicore/lib/Sc/Cprt.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Cyrl.pl
tlpkg/tlperl/lib/unicore/lib/Sc/Deva.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Egyp.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Ethi.pl
tlpkg/tlperl/lib/unicore/lib/Sc/Geor.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Glag.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Goth.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Grek.pl
tlpkg/tlperl/lib/unicore/lib/Sc/Gujr.pl
tlpkg/tlperl/lib/unicore/lib/Sc/Guru.pl
tlpkg/tlperl/lib/unicore/lib/Sc/Han.pl
tlpkg/tlperl/lib/unicore/lib/Sc/Hang.pl
tlpkg/tlperl/lib/unicore/lib/Sc/Hano.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Hebr.pl
tlpkg/tlperl/lib/unicore/lib/Sc/Hira.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Ital.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Java.pl
tlpkg/tlperl/lib/unicore/lib/Sc/Kana.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Khar.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Khmr.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Knda.pl
tlpkg/tlperl/lib/unicore/lib/Sc/Kthi.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Lana.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Lao.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Latn.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Lepc.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Limb.pl
tlpkg/tlperl/lib/unicore/lib/Sc/Linb.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Lyci.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Lydi.pl
tlpkg/tlperl/lib/unicore/lib/Sc/Mand.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Merc.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Miao.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Mlym.pl
tlpkg/tlperl/lib/unicore/lib/Sc/Mong.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Mtei.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Mymr.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Nko.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Ogam.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Orkh.pl
tlpkg/tlperl/lib/unicore/lib/Sc/Orya.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Osma.pl
tlpkg/tlperl/lib/unicore/lib/Sc/Phag.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Phli.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Phnx.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Prti.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Rjng.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Runr.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Samr.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Saur.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Shrd.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Sinh.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Sora.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Sund.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Sylo.pl
tlpkg/tlperl/lib/unicore/lib/Sc/Syrc.pl
tlpkg/tlperl/lib/unicore/lib/Sc/Tagb.pl
tlpkg/tlperl/lib/unicore/lib/Sc/Takr.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Tale.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Talu.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Taml.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Tavt.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Telu.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Tfng.pl
tlpkg/tlperl/lib/unicore/lib/Sc/Tglg.pl
tlpkg/tlperl/lib/unicore/lib/Sc/Thaa.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Thai.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Tibt.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Ugar.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Vai.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Xpeo.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Xsux.pl
tlpkg/tlperl/lib/unicore/lib/Sc/Yi.pl
tlpkg/tlperl/lib/unicore/lib/Sc/Zinh.pl
tlpkg/tlperl/lib/unicore/lib/Sc/Zyyy.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Zzzz.pl
tlpkg/tlperl/lib/unicore/lib/Scx/Arab.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Armi.pl
tlpkg/tlperl/lib/unicore/lib/Scx/Armn.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Avst.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Bali.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Bamu.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Batk.pl
tlpkg/tlperl/lib/unicore/lib/Scx/Beng.pl
tlpkg/tlperl/lib/unicore/lib/Scx/Bopo.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Brah.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Brai.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Bugi.pl
tlpkg/tlperl/lib/unicore/lib/Scx/Buhd.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Cakm.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Cans.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Cari.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Cham.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Cher.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Copt.pl
tlpkg/tlperl/lib/unicore/lib/Scx/Cprt.pl
tlpkg/tlperl/lib/unicore/lib/Scx/Cyrl.pl
tlpkg/tlperl/lib/unicore/lib/Scx/Deva.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Dsrt.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Egyp.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Ethi.pl
tlpkg/tlperl/lib/unicore/lib/Scx/Geor.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Glag.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Goth.pl
tlpkg/tlperl/lib/unicore/lib/Scx/Grek.pl
tlpkg/tlperl/lib/unicore/lib/Scx/Gujr.pl
tlpkg/tlperl/lib/unicore/lib/Scx/Guru.pl
tlpkg/tlperl/lib/unicore/lib/Scx/Han.pl
tlpkg/tlperl/lib/unicore/lib/Scx/Hang.pl
tlpkg/tlperl/lib/unicore/lib/Scx/Hano.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Hebr.pl
tlpkg/tlperl/lib/unicore/lib/Scx/Hira.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Ital.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Java.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Kali.pl
tlpkg/tlperl/lib/unicore/lib/Scx/Kana.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Khar.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Khmr.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Knda.pl
tlpkg/tlperl/lib/unicore/lib/Scx/Kthi.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Lana.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Lao.pl
tlpkg/tlperl/lib/unicore/lib/Scx/Latn.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Lepc.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Limb.pl
tlpkg/tlperl/lib/unicore/lib/Scx/Linb.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Lisu.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Lyci.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Lydi.pl
tlpkg/tlperl/lib/unicore/lib/Scx/Mand.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Merc.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Mero.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Miao.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Mlym.pl
tlpkg/tlperl/lib/unicore/lib/Scx/Mong.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Mtei.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Mymr.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Nko.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Ogam.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Olck.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Orkh.pl
tlpkg/tlperl/lib/unicore/lib/Scx/Orya.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Osma.pl
tlpkg/tlperl/lib/unicore/lib/Scx/Phag.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Phli.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Phnx.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Prti.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Rjng.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Runr.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Samr.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Sarb.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Saur.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Shaw.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Shrd.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Sinh.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Sora.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Sund.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Sylo.pl
tlpkg/tlperl/lib/unicore/lib/Scx/Syrc.pl
tlpkg/tlperl/lib/unicore/lib/Scx/Tagb.pl
tlpkg/tlperl/lib/unicore/lib/Scx/Takr.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Tale.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Talu.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Taml.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Tavt.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Telu.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Tfng.pl
tlpkg/tlperl/lib/unicore/lib/Scx/Tglg.pl
tlpkg/tlperl/lib/unicore/lib/Scx/Thaa.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Thai.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Tibt.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Ugar.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Vai.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Xpeo.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Xsux.pl
tlpkg/tlperl/lib/unicore/lib/Scx/Yi.pl
tlpkg/tlperl/lib/unicore/lib/Scx/Zinh.pl
tlpkg/tlperl/lib/unicore/lib/Scx/Zyyy.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Zzzz.pl
- tlpkg/tlperl/lib/unicore/lib/Space/Y.pl
tlpkg/tlperl/lib/unicore/lib/Term/Y.pl
tlpkg/tlperl/lib/unicore/lib/UIdeo/Y.pl
tlpkg/tlperl/lib/unicore/lib/Upper/Y.pl
tlpkg/tlperl/lib/unicore/lib/VS/Y.pl
+ tlpkg/tlperl/lib/unicore/lib/WB/EX.pl
tlpkg/tlperl/lib/unicore/lib/WB/FO.pl
tlpkg/tlperl/lib/unicore/lib/WB/KA.pl
tlpkg/tlperl/lib/unicore/lib/WB/LE.pl
@@ -5760,18 +5615,18 @@ binfiles arch=win32 size=13215
tlpkg/tlperl/lib/utf8_heavy.pl
tlpkg/tlperl/lib/vars.pm
tlpkg/tlperl/lib/version.pm
- tlpkg/tlperl/lib/version.pod
- tlpkg/tlperl/lib/version/Internals.pod
- tlpkg/tlperl/lib/version/Requirements.pm
tlpkg/tlperl/lib/vmsish.pm
tlpkg/tlperl/lib/warnings.pm
tlpkg/tlperl/lib/warnings/register.pm
-binfiles arch=x86_64-darwin size=152
+binfiles arch=x86_64-cygwin size=18
+ tlpkg/installer/xz/xzdec.x86_64-cygwin.exe
+binfiles arch=x86_64-darwin size=131
tlpkg/installer/wget/wget.x86_64-darwin
tlpkg/installer/xz/xzdec.x86_64-darwin
binfiles arch=x86_64-linux size=19
tlpkg/installer/xz/xzdec.x86_64-linux
-binfiles arch=x86_64-solaris size=27
+binfiles arch=x86_64-solaris size=167
+ tlpkg/installer/wget/wget.x86_64-solaris
tlpkg/installer/xz/xzdec.x86_64-solaris
name 12many
@@ -5814,7 +5669,7 @@ runfiles size=4
name Asana-Math
category Package
-revision 27228
+revision 33917
shortdesc A font to typeset maths in Xe(La)TeX and Lua(La)TeX.
longdesc The Asana-Math font is an OpenType font that includes almost
longdesc all mathematical Unicode symbols and it can be used to typeset
@@ -5830,9 +5685,9 @@ runfiles size=227
texmf-dist/fonts/opentype/public/Asana-Math/Asana-Math.otf
texmf-dist/fonts/truetype/public/Asana-Math/Asana-Math.ttf
catalogue-ctan /fonts/Asana-Math
-catalogue-date 2012-06-11 11:02:36 +0200
+catalogue-date 2014-05-08 07:11:39 +0200
catalogue-license ofl
-catalogue-version 000.949
+catalogue-version 000.952
name ESIEEcv
category Package
@@ -5855,13 +5710,13 @@ catalogue-license lppl
name FAQ-en
category Package
-revision 29288
+revision 31019
catalogue uk-tex-faq
shortdesc A compilation of Frequently Asked Questions with answers.
longdesc The FAQ that has in the past been published in the UK TeX Users
longdesc Group journal Baskerville (though updated more frequently on
-longdesc CTAN). It is also available (and searchable) on the web.
-docfiles size=4243
+longdesc CTAN). It is also available (and searchable) via on the web.
+docfiles size=2188
texmf-dist/doc/generic/FAQ-en/CHANGES-3.16b
texmf-dist/doc/generic/FAQ-en/CHANGES-3.16c
texmf-dist/doc/generic/FAQ-en/CHANGES-3.17
@@ -5877,75 +5732,13 @@ docfiles size=4243
texmf-dist/doc/generic/FAQ-en/CHANGES-3.24
texmf-dist/doc/generic/FAQ-en/CHANGES-3.25
texmf-dist/doc/generic/FAQ-en/CHANGES-3.26
+ texmf-dist/doc/generic/FAQ-en/CHANGES-3.27
texmf-dist/doc/generic/FAQ-en/ChangeLog
texmf-dist/doc/generic/FAQ-en/FAQ-html.tar.gz
texmf-dist/doc/generic/FAQ-en/FAQ-html.tar.xz
texmf-dist/doc/generic/FAQ-en/Makefile
texmf-dist/doc/generic/FAQ-en/Makefile-CTAN
texmf-dist/doc/generic/FAQ-en/README details="Package Readme"
- texmf-dist/doc/generic/FAQ-en/archive-version/CHANGES-3.16b
- texmf-dist/doc/generic/FAQ-en/archive-version/CHANGES-3.16c
- texmf-dist/doc/generic/FAQ-en/archive-version/CHANGES-3.17
- texmf-dist/doc/generic/FAQ-en/archive-version/CHANGES-3.18
- texmf-dist/doc/generic/FAQ-en/archive-version/CHANGES-3.19
- texmf-dist/doc/generic/FAQ-en/archive-version/CHANGES-3.19a
- texmf-dist/doc/generic/FAQ-en/archive-version/CHANGES-3.19c
- texmf-dist/doc/generic/FAQ-en/archive-version/CHANGES-3.19d
- texmf-dist/doc/generic/FAQ-en/archive-version/CHANGES-3.20
- texmf-dist/doc/generic/FAQ-en/archive-version/CHANGES-3.21
- texmf-dist/doc/generic/FAQ-en/archive-version/CHANGES-3.22
- texmf-dist/doc/generic/FAQ-en/archive-version/CHANGES-3.23
- texmf-dist/doc/generic/FAQ-en/archive-version/CHANGES-3.24
- texmf-dist/doc/generic/FAQ-en/archive-version/CHANGES-3.25
- texmf-dist/doc/generic/FAQ-en/archive-version/CHANGES-3.26
- texmf-dist/doc/generic/FAQ-en/archive-version/ChangeLog
- texmf-dist/doc/generic/FAQ-en/archive-version/FAQ-html.tar.gz
- texmf-dist/doc/generic/FAQ-en/archive-version/FAQ-html.tar.xz
- texmf-dist/doc/generic/FAQ-en/archive-version/Makefile
- texmf-dist/doc/generic/FAQ-en/archive-version/README details="Package Readme"
- texmf-dist/doc/generic/FAQ-en/archive-version/archive.cfg
- texmf-dist/doc/generic/FAQ-en/archive-version/dirctan.tex
- texmf-dist/doc/generic/FAQ-en/archive-version/faq-adj-types.tex
- texmf-dist/doc/generic/FAQ-en/archive-version/faq-backgrnd.tex
- texmf-dist/doc/generic/FAQ-en/archive-version/faq-biblio.tex
- texmf-dist/doc/generic/FAQ-en/archive-version/faq-bits+pieces.tex
- texmf-dist/doc/generic/FAQ-en/archive-version/faq-docs.tex
- texmf-dist/doc/generic/FAQ-en/archive-version/faq-dvi.tex
- texmf-dist/doc/generic/FAQ-en/archive-version/faq-fmt-conv.tex
- texmf-dist/doc/generic/FAQ-en/archive-version/faq-fonts.tex
- texmf-dist/doc/generic/FAQ-en/archive-version/faq-getit.tex
- texmf-dist/doc/generic/FAQ-en/archive-version/faq-graphics.tex
- texmf-dist/doc/generic/FAQ-en/archive-version/faq-how-do-i.tex
- texmf-dist/doc/generic/FAQ-en/archive-version/faq-hyp+pdf.tex
- texmf-dist/doc/generic/FAQ-en/archive-version/faq-images.tex
- texmf-dist/doc/generic/FAQ-en/archive-version/faq-install.tex
- texmf-dist/doc/generic/FAQ-en/archive-version/faq-intro.tex
- texmf-dist/doc/generic/FAQ-en/archive-version/faq-jot-err.tex
- texmf-dist/doc/generic/FAQ-en/archive-version/faq-lab-ref.tex
- texmf-dist/doc/generic/FAQ-en/archive-version/faq-litprog.tex
- texmf-dist/doc/generic/FAQ-en/archive-version/faq-mac-prog.tex
- texmf-dist/doc/generic/FAQ-en/archive-version/faq-projects.tex
- texmf-dist/doc/generic/FAQ-en/archive-version/faq-support.tex
- texmf-dist/doc/generic/FAQ-en/archive-version/faq-symbols.tex
- texmf-dist/doc/generic/FAQ-en/archive-version/faq-t-g-wr.tex
- texmf-dist/doc/generic/FAQ-en/archive-version/faq-texsys.tex
- texmf-dist/doc/generic/FAQ-en/archive-version/faq-the-end.tex
- texmf-dist/doc/generic/FAQ-en/archive-version/faq-wdidt.tex
- texmf-dist/doc/generic/FAQ-en/archive-version/faq.cls
- texmf-dist/doc/generic/FAQ-en/archive-version/faq.sty
- texmf-dist/doc/generic/FAQ-en/archive-version/faqfont.cfg
- texmf-dist/doc/generic/FAQ-en/archive-version/faqfont.cfg.cmfonts
- texmf-dist/doc/generic/FAQ-en/archive-version/faqfont.cfg.lmfonts
- texmf-dist/doc/generic/FAQ-en/archive-version/faqfont.cfg.mbvj
- texmf-dist/doc/generic/FAQ-en/archive-version/faqfont.cfg.ugm
- texmf-dist/doc/generic/FAQ-en/archive-version/filectan.tex
- texmf-dist/doc/generic/FAQ-en/archive-version/gather-faqbody.tex
- texmf-dist/doc/generic/FAQ-en/archive-version/letterfaq.pdf details="FAQ formatted for letter paper"
- texmf-dist/doc/generic/FAQ-en/archive-version/letterfaq.tex
- texmf-dist/doc/generic/FAQ-en/archive-version/locations.mk
- texmf-dist/doc/generic/FAQ-en/archive-version/markup-syntax
- texmf-dist/doc/generic/FAQ-en/archive-version/newfaq.pdf details="FAQ formatted for A4 paper"
- texmf-dist/doc/generic/FAQ-en/archive-version/newfaq.tex
texmf-dist/doc/generic/FAQ-en/archive.cfg
texmf-dist/doc/generic/FAQ-en/dirctan.tex
texmf-dist/doc/generic/FAQ-en/faq-adj-types.tex
@@ -5991,9 +5784,9 @@ docfiles size=4243
texmf-dist/doc/generic/FAQ-en/newfaq.pdf details="FAQ formatted for A4 paper"
texmf-dist/doc/generic/FAQ-en/newfaq.tex
catalogue-ctan /help/uk-tex-faq
-catalogue-date 2013-02-28 16:57:51 +0100
+catalogue-date 2013-06-07 16:28:15 +0200
catalogue-license pd
-catalogue-version 3.26
+catalogue-version 3.27
name GS1
category Package
@@ -6028,7 +5821,7 @@ runfiles size=4
texmf-dist/tex/latex/GS1/GS1.sty
texmf-dist/tex/latex/GS1/rule-D.sty
catalogue-ctan /macros/latex/contrib/gs1
-catalogue-date 2012-08-28 08:56:10 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 15
@@ -6230,7 +6023,7 @@ srcfiles size=3
runfiles size=1
texmf-dist/tex/latex/Tabbing/Tabbing.sty
catalogue-ctan /macros/latex/contrib/Tabbing
-catalogue-date 2012-03-20 11:22:06 +0100
+catalogue-date 2013-10-03 14:20:59 +0200
catalogue-license lppl1
name Type1fonts
@@ -6384,13 +6177,6 @@ shortdesc i386-solaris files of a2ping
binfiles arch=i386-solaris size=1
bin/i386-solaris/a2ping
-name a2ping.mips-irix
-category TLCore
-revision 29949
-shortdesc mips-irix files of a2ping
-binfiles arch=mips-irix size=1
- bin/mips-irix/a2ping
-
name a2ping.mipsel-linux
category TLCore
revision 29946
@@ -6426,6 +6212,13 @@ shortdesc win32 files of a2ping
binfiles arch=win32 size=1
bin/win32/a2ping.exe
+name a2ping.x86_64-cygwin
+category TLCore
+revision 33557
+shortdesc x86_64-cygwin files of a2ping
+binfiles arch=x86_64-cygwin size=1
+ bin/x86_64-cygwin/a2ping
+
name a2ping.x86_64-darwin
category TLCore
revision 27321
@@ -6527,7 +6320,7 @@ docfiles size=1
runfiles size=2
texmf-dist/tex/generic/abbr/abbr.tex
catalogue-ctan /macros/generic/abbr
-catalogue-date 2012-04-13 20:01:51 +0200
+catalogue-date 2013-09-30 16:02:13 +0200
catalogue-license pd
name abc
@@ -6559,40 +6352,48 @@ catalogue-version 2.0
name abntex2
category Package
-revision 30737
+revision 32794
shortdesc Typeset technical and scientific Brazilian documents based on ABNT rules.
longdesc The bundle provides support for writing technical and
longdesc scientific Brazilian documents (like academic thesis, articles,
longdesc reports, research project and others) based on ABNT rules
longdesc (Associacao Brasileira de Normas Tecnicas). It replaces the old
longdesc abntex.
-docfiles size=1233
+docfiles size=1808
texmf-dist/doc/latex/abntex2/README details="Readme"
texmf-dist/doc/latex/abntex2/abntex2-doc-abnt-10520.bib
texmf-dist/doc/latex/abntex2/abntex2-doc-abnt-6023.bib
texmf-dist/doc/latex/abntex2/abntex2-doc-options.bib
texmf-dist/doc/latex/abntex2/abntex2-doc-test.bib
texmf-dist/doc/latex/abntex2/abntex2-doc.bib
- texmf-dist/doc/latex/abntex2/abntex2-modelo-artigo.pdf
- texmf-dist/doc/latex/abntex2/abntex2-modelo-artigo.tex
- texmf-dist/doc/latex/abntex2/abntex2-modelo-glossarios.pdf
- texmf-dist/doc/latex/abntex2/abntex2-modelo-glossarios.tex
- texmf-dist/doc/latex/abntex2/abntex2-modelo-img-grafico.pdf
- texmf-dist/doc/latex/abntex2/abntex2-modelo-include-comandos.tex
- texmf-dist/doc/latex/abntex2/abntex2-modelo-projeto-pesquisa.pdf
- texmf-dist/doc/latex/abntex2/abntex2-modelo-projeto-pesquisa.tex
- texmf-dist/doc/latex/abntex2/abntex2-modelo-references.bib
- texmf-dist/doc/latex/abntex2/abntex2-modelo-relatorio-tecnico.pdf
- texmf-dist/doc/latex/abntex2/abntex2-modelo-relatorio-tecnico.tex
- texmf-dist/doc/latex/abntex2/abntex2-modelo-trabalho-academico.pdf
- texmf-dist/doc/latex/abntex2/abntex2-modelo-trabalho-academico.tex
texmf-dist/doc/latex/abntex2/abntex2.pdf
texmf-dist/doc/latex/abntex2/abntex2.tex
texmf-dist/doc/latex/abntex2/abntex2cite-alf.pdf
texmf-dist/doc/latex/abntex2/abntex2cite-alf.tex
texmf-dist/doc/latex/abntex2/abntex2cite.pdf
texmf-dist/doc/latex/abntex2/abntex2cite.tex
-runfiles size=55
+ texmf-dist/doc/latex/abntex2/examples/abntex2-modelo-artigo.pdf
+ texmf-dist/doc/latex/abntex2/examples/abntex2-modelo-artigo.tex
+ texmf-dist/doc/latex/abntex2/examples/abntex2-modelo-glossarios.pdf
+ texmf-dist/doc/latex/abntex2/examples/abntex2-modelo-glossarios.tex
+ texmf-dist/doc/latex/abntex2/examples/abntex2-modelo-img-grafico.pdf
+ texmf-dist/doc/latex/abntex2/examples/abntex2-modelo-img-marca.pdf
+ texmf-dist/doc/latex/abntex2/examples/abntex2-modelo-include-comandos.tex
+ texmf-dist/doc/latex/abntex2/examples/abntex2-modelo-livro-bandeirinha.jpg
+ texmf-dist/doc/latex/abntex2/examples/abntex2-modelo-livro-pintassilgo.jpg
+ texmf-dist/doc/latex/abntex2/examples/abntex2-modelo-livro-saira-amarela.jpg
+ texmf-dist/doc/latex/abntex2/examples/abntex2-modelo-livro.pdf
+ texmf-dist/doc/latex/abntex2/examples/abntex2-modelo-livro.tex
+ texmf-dist/doc/latex/abntex2/examples/abntex2-modelo-projeto-pesquisa.pdf
+ texmf-dist/doc/latex/abntex2/examples/abntex2-modelo-projeto-pesquisa.tex
+ texmf-dist/doc/latex/abntex2/examples/abntex2-modelo-references.bib
+ texmf-dist/doc/latex/abntex2/examples/abntex2-modelo-relatorio-tecnico.pdf
+ texmf-dist/doc/latex/abntex2/examples/abntex2-modelo-relatorio-tecnico.tex
+ texmf-dist/doc/latex/abntex2/examples/abntex2-modelo-slides.pdf
+ texmf-dist/doc/latex/abntex2/examples/abntex2-modelo-slides.tex
+ texmf-dist/doc/latex/abntex2/examples/abntex2-modelo-trabalho-academico.pdf
+ texmf-dist/doc/latex/abntex2/examples/abntex2-modelo-trabalho-academico.tex
+runfiles size=58
texmf-dist/bibtex/bib/abntex2/abntex2-options.bib
texmf-dist/bibtex/bst/abntex2/abntex2-alf.bst
texmf-dist/bibtex/bst/abntex2/abntex2-num.bst
@@ -6600,9 +6401,9 @@ runfiles size=55
texmf-dist/tex/latex/abntex2/abntex2abrev.sty
texmf-dist/tex/latex/abntex2/abntex2cite.sty
catalogue-ctan /macros/latex/contrib/abntex2
-catalogue-date 2013-05-27 20:07:27 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
-catalogue-version 1.7.1
+catalogue-version 1.9.2
name abraces
category Package
@@ -6617,7 +6418,7 @@ docfiles size=51
runfiles size=2
texmf-dist/tex/latex/abraces/abraces.sty
catalogue-ctan /macros/latex/contrib/abraces
-catalogue-date 2012-10-08 11:45:11 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.-
@@ -6672,9 +6473,112 @@ runfiles size=33
texmf-dist/bibtex/bst/abstyles/aunsrt.bst
texmf-dist/tex/generic/abstyles/apreambl.tex
catalogue-ctan /biblio/bibtex/contrib/abstyles
-catalogue-date 2012-04-13 20:01:51 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license other-free
+name accanthis
+category Package
+revision 32089
+shortdesc Accanthis fonts, with LaTeX support.
+longdesc Accanthis No. 3 is designed by Hirwin Harendal and is suitable
+longdesc as an alternative to fonts such as Garamond, Galliard, Horley
+longdesc old style, Sabon, and Bembo. The support files are suitable for
+longdesc use with all LaTeX engines.
+execute addMap accanthis.map
+docfiles size=84
+ texmf-dist/doc/fonts/accanthis/Accanthis-Cat.pdf
+ texmf-dist/doc/fonts/accanthis/COPYING
+ texmf-dist/doc/fonts/accanthis/NOTICE.txt
+ texmf-dist/doc/fonts/accanthis/README details="Readme"
+ texmf-dist/doc/fonts/accanthis/accanthis-samples.pdf
+ texmf-dist/doc/fonts/accanthis/accanthis-samples.tex
+runfiles size=204
+ texmf-dist/fonts/enc/dvips/accanthis/acnt_m4gnvn.enc
+ texmf-dist/fonts/enc/dvips/accanthis/acnt_qu6a6x.enc
+ texmf-dist/fonts/enc/dvips/accanthis/acnt_sjpjw4.enc
+ texmf-dist/fonts/enc/dvips/accanthis/acnt_z4e4wk.enc
+ texmf-dist/fonts/map/dvips/accanthis/accanthis.map
+ texmf-dist/fonts/opentype/arkandis/accanthis/AccanthisADFStdNo3-Bold.otf
+ texmf-dist/fonts/opentype/arkandis/accanthis/AccanthisADFStdNo3-BoldItalic.otf
+ texmf-dist/fonts/opentype/arkandis/accanthis/AccanthisADFStdNo3-Italic.otf
+ texmf-dist/fonts/opentype/arkandis/accanthis/AccanthisADFStdNo3-Regular.otf
+ texmf-dist/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-Bold-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-Bold-lf-ly1--lcdfj.tfm
+ texmf-dist/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-Bold-lf-ly1.tfm
+ texmf-dist/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-Bold-lf-ot1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-Bold-lf-ot1--lcdfj.tfm
+ texmf-dist/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-Bold-lf-ot1.tfm
+ texmf-dist/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-Bold-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-Bold-lf-t1--lcdfj.tfm
+ texmf-dist/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-Bold-lf-t1.tfm
+ texmf-dist/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-Bold-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-Bold-lf-ts1.tfm
+ texmf-dist/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-BoldItalic-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-BoldItalic-lf-ly1--lcdfj.tfm
+ texmf-dist/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-BoldItalic-lf-ly1.tfm
+ texmf-dist/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-BoldItalic-lf-ot1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-BoldItalic-lf-ot1--lcdfj.tfm
+ texmf-dist/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-BoldItalic-lf-ot1.tfm
+ texmf-dist/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-BoldItalic-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-BoldItalic-lf-t1--lcdfj.tfm
+ texmf-dist/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-BoldItalic-lf-t1.tfm
+ texmf-dist/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-BoldItalic-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-BoldItalic-lf-ts1.tfm
+ texmf-dist/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-Italic-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-Italic-lf-ly1--lcdfj.tfm
+ texmf-dist/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-Italic-lf-ly1.tfm
+ texmf-dist/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-Italic-lf-ot1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-Italic-lf-ot1--lcdfj.tfm
+ texmf-dist/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-Italic-lf-ot1.tfm
+ texmf-dist/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-Italic-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-Italic-lf-t1--lcdfj.tfm
+ texmf-dist/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-Italic-lf-t1.tfm
+ texmf-dist/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-Italic-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-Italic-lf-ts1.tfm
+ texmf-dist/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-Regular-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-Regular-lf-ly1--lcdfj.tfm
+ texmf-dist/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-Regular-lf-ly1.tfm
+ texmf-dist/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-Regular-lf-ot1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-Regular-lf-ot1--lcdfj.tfm
+ texmf-dist/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-Regular-lf-ot1.tfm
+ texmf-dist/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-Regular-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-Regular-lf-t1--lcdfj.tfm
+ texmf-dist/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-Regular-lf-t1.tfm
+ texmf-dist/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-Regular-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-Regular-lf-ts1.tfm
+ texmf-dist/fonts/type1/arkandis/accanthis/AccanthisADFStdNo3-Bold.pfb
+ texmf-dist/fonts/type1/arkandis/accanthis/AccanthisADFStdNo3-BoldItalic.pfb
+ texmf-dist/fonts/type1/arkandis/accanthis/AccanthisADFStdNo3-BoldItalicLCDFJ.pfb
+ texmf-dist/fonts/type1/arkandis/accanthis/AccanthisADFStdNo3-BoldLCDFJ.pfb
+ texmf-dist/fonts/type1/arkandis/accanthis/AccanthisADFStdNo3-Italic.pfb
+ texmf-dist/fonts/type1/arkandis/accanthis/AccanthisADFStdNo3-ItalicLCDFJ.pfb
+ texmf-dist/fonts/type1/arkandis/accanthis/AccanthisADFStdNo3-Regular.pfb
+ texmf-dist/fonts/type1/arkandis/accanthis/AccanthisADFStdNo3-RegularLCDFJ.pfb
+ texmf-dist/fonts/vf/arkandis/accanthis/AccanthisADFStdNo3-Bold-lf-ly1.vf
+ texmf-dist/fonts/vf/arkandis/accanthis/AccanthisADFStdNo3-Bold-lf-ot1.vf
+ texmf-dist/fonts/vf/arkandis/accanthis/AccanthisADFStdNo3-Bold-lf-t1.vf
+ texmf-dist/fonts/vf/arkandis/accanthis/AccanthisADFStdNo3-Bold-lf-ts1.vf
+ texmf-dist/fonts/vf/arkandis/accanthis/AccanthisADFStdNo3-BoldItalic-lf-ly1.vf
+ texmf-dist/fonts/vf/arkandis/accanthis/AccanthisADFStdNo3-BoldItalic-lf-ot1.vf
+ texmf-dist/fonts/vf/arkandis/accanthis/AccanthisADFStdNo3-BoldItalic-lf-t1.vf
+ texmf-dist/fonts/vf/arkandis/accanthis/AccanthisADFStdNo3-BoldItalic-lf-ts1.vf
+ texmf-dist/fonts/vf/arkandis/accanthis/AccanthisADFStdNo3-Italic-lf-ly1.vf
+ texmf-dist/fonts/vf/arkandis/accanthis/AccanthisADFStdNo3-Italic-lf-ot1.vf
+ texmf-dist/fonts/vf/arkandis/accanthis/AccanthisADFStdNo3-Italic-lf-t1.vf
+ texmf-dist/fonts/vf/arkandis/accanthis/AccanthisADFStdNo3-Italic-lf-ts1.vf
+ texmf-dist/fonts/vf/arkandis/accanthis/AccanthisADFStdNo3-Regular-lf-ly1.vf
+ texmf-dist/fonts/vf/arkandis/accanthis/AccanthisADFStdNo3-Regular-lf-ot1.vf
+ texmf-dist/fonts/vf/arkandis/accanthis/AccanthisADFStdNo3-Regular-lf-t1.vf
+ texmf-dist/fonts/vf/arkandis/accanthis/AccanthisADFStdNo3-Regular-lf-ts1.vf
+ texmf-dist/tex/latex/accanthis/LY1AccanthisADFStdNoThree-LF.fd
+ texmf-dist/tex/latex/accanthis/OT1AccanthisADFStdNoThree-LF.fd
+ texmf-dist/tex/latex/accanthis/T1AccanthisADFStdNoThree-LF.fd
+ texmf-dist/tex/latex/accanthis/TS1AccanthisADFStdNoThree-LF.fd
+ texmf-dist/tex/latex/accanthis/accanthis.sty
+catalogue-ctan /fonts/accanthis
+catalogue-date 2014-02-26 23:03:13 +0100
+catalogue-license gpl2
+
name accfonts
category Package
revision 18835
@@ -6707,7 +6611,7 @@ runfiles size=37
texmf-dist/tex/latex/accfonts/IndUni_Omega.def
texmf-dist/tex/latex/accfonts/Norman.def
catalogue-ctan /fonts/utilities/accfonts
-catalogue-date 2012-12-31 10:35:50 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license gpl
catalogue-version 0.25
@@ -6819,15 +6723,6 @@ binfiles arch=i386-solaris size=3
bin/i386-solaris/vpl2ovp
bin/i386-solaris/vpl2vpl
-name accfonts.mips-irix
-category Package
-revision 29949
-shortdesc mips-irix files of accfonts
-binfiles arch=mips-irix size=3
- bin/mips-irix/mkt1font
- bin/mips-irix/vpl2ovp
- bin/mips-irix/vpl2vpl
-
name accfonts.mipsel-linux
category Package
revision 29946
@@ -6873,6 +6768,15 @@ binfiles arch=win32 size=3
bin/win32/vpl2ovp.exe
bin/win32/vpl2vpl.exe
+name accfonts.x86_64-cygwin
+category Package
+revision 33557
+shortdesc x86_64-cygwin files of accfonts
+binfiles arch=x86_64-cygwin size=3
+ bin/x86_64-cygwin/mkt1font
+ bin/x86_64-cygwin/vpl2ovp
+ bin/x86_64-cygwin/vpl2vpl
+
name accfonts.x86_64-darwin
category Package
revision 18441
@@ -6902,27 +6806,27 @@ binfiles arch=x86_64-solaris size=3
name achemso
category Package
-revision 29938
+revision 34034
shortdesc Support for American Chemical Society journal submissions.
longdesc The bundle provides the official macros (achemso.cls) and
longdesc BibTeX styles (achemso.bst and biochem.bst) for submission to
longdesc the journals of the American Chemical Society. The natmove
longdesc package, which moves citations relative to punctuation, is
longdesc distributed as part of the bundle.
-docfiles size=123
+docfiles size=108
texmf-dist/doc/latex/achemso/README details="Readme"
- texmf-dist/doc/latex/achemso/achemso-demo.bib
texmf-dist/doc/latex/achemso/achemso-demo.pdf
texmf-dist/doc/latex/achemso/achemso-demo.tex
texmf-dist/doc/latex/achemso/achemso.pdf details="Package documentation"
srcfiles size=45
texmf-dist/source/latex/achemso/achemso.dtx
texmf-dist/source/latex/achemso/achemso.ins
-runfiles size=73
+runfiles size=79
texmf-dist/bibtex/bst/achemso/achemso.bst
texmf-dist/bibtex/bst/achemso/biochem.bst
texmf-dist/tex/latex/achemso/achemso.cls
texmf-dist/tex/latex/achemso/achemso.sty
+ texmf-dist/tex/latex/achemso/config/aamick.cfg
texmf-dist/tex/latex/achemso/config/acbcct.cfg
texmf-dist/tex/latex/achemso/config/accacs.cfg
texmf-dist/tex/latex/achemso/config/achre4.cfg
@@ -6932,6 +6836,9 @@ runfiles size=73
texmf-dist/tex/latex/achemso/config/amlccd.cfg
texmf-dist/tex/latex/achemso/config/ancac3.cfg
texmf-dist/tex/latex/achemso/config/ancham.cfg
+ texmf-dist/tex/latex/achemso/config/apchd5.cfg
+ texmf-dist/tex/latex/achemso/config/asbcd6.cfg
+ texmf-dist/tex/latex/achemso/config/ascecg.cfg
texmf-dist/tex/latex/achemso/config/bcches.cfg
texmf-dist/tex/latex/achemso/config/bichaw.cfg
texmf-dist/tex/latex/achemso/config/bipret.cfg
@@ -6942,6 +6849,7 @@ runfiles size=73
texmf-dist/tex/latex/achemso/config/crtoec.cfg
texmf-dist/tex/latex/achemso/config/enfuem.cfg
texmf-dist/tex/latex/achemso/config/esthag.cfg
+ texmf-dist/tex/latex/achemso/config/estlcu.cfg
texmf-dist/tex/latex/achemso/config/iecred.cfg
texmf-dist/tex/latex/achemso/config/inoraj.cfg
texmf-dist/tex/latex/achemso/config/jacsat.cfg
@@ -6967,9 +6875,9 @@ runfiles size=73
texmf-dist/tex/latex/achemso/config/orlef7.cfg
texmf-dist/tex/latex/achemso/natmove.sty
catalogue-ctan /macros/latex/contrib/achemso
-catalogue-date 2013-04-13 23:24:42 +0200
+catalogue-date 2014-03-31 10:19:26 +0200
catalogue-license lppl1.3
-catalogue-version 3.7g
+catalogue-version 3.8h
name acmconf
category Package
@@ -7005,7 +6913,7 @@ catalogue-version 1.3
name acro
category Package
-revision 30406
+revision 32450
shortdesc Typeset acronyms.
longdesc The package enables the author to create acronyms in a simple
longdesc way, and provides means to add them to different 'classes' of
@@ -7014,20 +6922,20 @@ longdesc package option 'single' instructs the package to ignore
longdesc acronyms that are used only once in the whole document. As an
longdesc experimental feature the package also offers the option 'sort'
longdesc which automatically sorts the list created by \printacronyms.
-docfiles size=138
+docfiles size=142
texmf-dist/doc/latex/acro/README details="Readme"
texmf-dist/doc/latex/acro/acro_en.pdf details="Package documentation"
texmf-dist/doc/latex/acro/acro_en.tex
texmf-dist/doc/latex/acro/example_one.tex
texmf-dist/doc/latex/acro/example_two.tex
-runfiles size=27
+runfiles size=28
texmf-dist/tex/latex/acro/acro.sty
texmf-dist/tex/latex/acro/acro0.def
texmf-dist/tex/latex/acro/acro1.def
catalogue-ctan /macros/latex/contrib/acro
-catalogue-date 2013-05-11 15:56:53 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
-catalogue-version 1.3a
+catalogue-version 1.5
name acronym
category Package
@@ -7068,7 +6976,7 @@ srcfiles size=4
runfiles size=1
texmf-dist/tex/latex/acroterm/acroterm.sty
catalogue-ctan /macros/latex/contrib/acroterm
-catalogue-date 2012-03-20 16:04:48 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 0.1
@@ -7111,7 +7019,7 @@ docfiles size=1
runfiles size=1
texmf-dist/tex/latex/actuarialangle/actuarialangle.sty
catalogue-ctan /macros/latex/contrib/actuarialangle
-catalogue-date 2012-10-18 12:29:20 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license pd
name addlines
@@ -7133,7 +7041,7 @@ srcfiles size=4
runfiles size=1
texmf-dist/tex/latex/addlines/addlines.sty
catalogue-ctan /macros/latex/contrib/addlines
-catalogue-date 2012-03-21 15:55:02 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 0.2
@@ -7184,7 +7092,7 @@ runfiles size=18
texmf-dist/tex/latex/adforn/adforn.sty
texmf-dist/tex/latex/adforn/uornementsadf.fd
catalogue-ctan /fonts/adforn
-catalogue-date 2012-03-21 15:55:02 +0100
+catalogue-date 2014-04-03 23:09:57 +0200
catalogue-license lppl
catalogue-version 1.001-b-2
@@ -7222,7 +7130,7 @@ runfiles size=19
texmf-dist/tex/latex/adfsymbols/uarrowsadf.fd
texmf-dist/tex/latex/adfsymbols/ubulletsadf.fd
catalogue-ctan /fonts/adfsymbols
-catalogue-date 2012-03-21 15:55:02 +0100
+catalogue-date 2014-04-03 23:09:57 +0200
catalogue-license lppl
catalogue-version 1.001
@@ -7253,7 +7161,7 @@ runfiles size=5
texmf-dist/scripts/adhocfilelist/herelist.sh
texmf-dist/tex/support/adhocfilelist/adhocfilelist.RLS
catalogue-ctan /support/adhocfilelist
-catalogue-date 2013-01-04 14:33:54 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 2013-01-04
@@ -7341,13 +7249,6 @@ shortdesc i386-solaris files of adhocfilelist
binfiles arch=i386-solaris size=1
bin/i386-solaris/adhocfilelist
-name adhocfilelist.mips-irix
-category Package
-revision 29949
-shortdesc mips-irix files of adhocfilelist
-binfiles arch=mips-irix size=1
- bin/mips-irix/adhocfilelist
-
name adhocfilelist.mipsel-linux
category Package
revision 29946
@@ -7376,6 +7277,13 @@ shortdesc universal-darwin files of adhocfilelist
binfiles arch=universal-darwin size=1
bin/universal-darwin/adhocfilelist
+name adhocfilelist.x86_64-cygwin
+category Package
+revision 33557
+shortdesc x86_64-cygwin files of adhocfilelist
+binfiles arch=x86_64-cygwin size=1
+ bin/x86_64-cygwin/adhocfilelist
+
name adhocfilelist.x86_64-darwin
category Package
revision 28038
@@ -7401,7 +7309,7 @@ name adjmulticol
category Package
revision 28936
shortdesc Adjusting margins for multicolumn and single column output.
-longdesc package extends the multicol package with the option to change
+longdesc The package adds, to the multicol package, the option to change
longdesc the margins for multicolumn and unicolumn layout. The package
longdesc understands the difference between the even and odd margins for
longdesc two side printing.
@@ -7418,7 +7326,7 @@ srcfiles size=6
runfiles size=2
texmf-dist/tex/latex/adjmulticol/adjmulticol.sty
catalogue-ctan /macros/latex/contrib/adjmulticol
-catalogue-date 2013-01-24 12:03:40 +0100
+catalogue-date 2014-04-20 00:59:58 +0200
catalogue-license lppl1.3
catalogue-version 1.1
@@ -7458,7 +7366,7 @@ runfiles size=17
texmf-dist/tex/latex/adjustbox/tc-xetex.def
texmf-dist/tex/latex/adjustbox/trimclip.sty
catalogue-ctan /macros/latex/contrib/adjustbox
-catalogue-date 2012-05-22 11:13:43 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.0
@@ -7692,7 +7600,7 @@ runfiles size=4520
texmf-dist/fonts/cmap/adobemapping/cmap-readme.txt
texmf-dist/fonts/cmap/adobemapping/mapping-readme.txt
catalogue-ctan /support/adobemapping
-catalogue-date 2012-10-25 17:32:24 +0200
+catalogue-date 2014-05-16 11:22:01 +0200
catalogue-license bsd
name adrconv
@@ -7906,7 +7814,7 @@ runfiles size=157
texmf-dist/tex/latex/ae/t1laess.fd
texmf-dist/tex/latex/ae/t1laett.fd
catalogue-ctan /fonts/ae
-catalogue-date 2012-04-13 20:01:51 +0200
+catalogue-date 2014-04-03 23:09:57 +0200
catalogue-license lppl
catalogue-version 1.4
@@ -7991,12 +7899,12 @@ docfiles size=15
runfiles size=2
texmf-dist/tex/latex/aeguill/aeguill.sty
catalogue-ctan /macros/latex/contrib/aeguill
-catalogue-date 2012-04-11 19:22:02 +0200
+catalogue-date 2014-04-03 23:09:57 +0200
catalogue-license lppl
name afm2pl
category TLCore
-revision 29752
+revision 33736
depend afm2pl.ARCH
docfiles size=9
texmf-dist/doc/man/man1/afm2pl.1
@@ -8021,147 +7929,147 @@ runfiles size=24
name afm2pl.alpha-linux
category TLCore
-revision 29891
+revision 33553
shortdesc alpha-linux files of afm2pl
binfiles arch=alpha-linux size=30
bin/alpha-linux/afm2pl
name afm2pl.amd64-freebsd
category TLCore
-revision 29874
+revision 33488
shortdesc amd64-freebsd files of afm2pl
binfiles arch=amd64-freebsd size=22
bin/amd64-freebsd/afm2pl
name afm2pl.amd64-kfreebsd
category TLCore
-revision 30655
+revision 33864
shortdesc amd64-kfreebsd files of afm2pl
binfiles arch=amd64-kfreebsd size=23
bin/amd64-kfreebsd/afm2pl
name afm2pl.amd64-netbsd
category TLCore
-revision 30660
+revision 33726
shortdesc amd64-netbsd files of afm2pl
binfiles arch=amd64-netbsd size=22
bin/amd64-netbsd/afm2pl
name afm2pl.armel-linux
category TLCore
-revision 29888
+revision 33916
shortdesc armel-linux files of afm2pl
binfiles arch=armel-linux size=21
bin/armel-linux/afm2pl
name afm2pl.armhf-linux
category TLCore
-revision 30443
+revision 34125
shortdesc armhf-linux files of afm2pl
binfiles arch=armhf-linux size=20
bin/armhf-linux/afm2pl
name afm2pl.i386-cygwin
category TLCore
-revision 30526
+revision 34161
shortdesc i386-cygwin files of afm2pl
-binfiles arch=i386-cygwin size=20
+binfiles arch=i386-cygwin size=24
bin/i386-cygwin/afm2pl.exe
name afm2pl.i386-freebsd
category TLCore
-revision 29874
+revision 33488
shortdesc i386-freebsd files of afm2pl
binfiles arch=i386-freebsd size=21
bin/i386-freebsd/afm2pl
name afm2pl.i386-kfreebsd
category TLCore
-revision 30440
+revision 33864
shortdesc i386-kfreebsd files of afm2pl
binfiles arch=i386-kfreebsd size=22
bin/i386-kfreebsd/afm2pl
name afm2pl.i386-linux
category TLCore
-revision 30088
+revision 33479
shortdesc i386-linux files of afm2pl
-binfiles arch=i386-linux size=22
+binfiles arch=i386-linux size=24
bin/i386-linux/afm2pl
name afm2pl.i386-netbsd
category TLCore
-revision 30191
+revision 33562
shortdesc i386-netbsd files of afm2pl
binfiles arch=i386-netbsd size=20
bin/i386-netbsd/afm2pl
name afm2pl.i386-solaris
category TLCore
-revision 30112
+revision 34203
shortdesc i386-solaris files of afm2pl
binfiles arch=i386-solaris size=25
bin/i386-solaris/afm2pl
-name afm2pl.mips-irix
-category TLCore
-revision 30131
-shortdesc mips-irix files of afm2pl
-binfiles arch=mips-irix size=57
- bin/mips-irix/afm2pl
-
name afm2pl.mipsel-linux
category TLCore
-revision 29995
+revision 33811
shortdesc mipsel-linux files of afm2pl
-binfiles arch=mipsel-linux size=28
+binfiles arch=mipsel-linux size=23
bin/mipsel-linux/afm2pl
name afm2pl.powerpc-linux
category TLCore
-revision 30114
+revision 33889
shortdesc powerpc-linux files of afm2pl
-binfiles arch=powerpc-linux size=24
+binfiles arch=powerpc-linux size=22
bin/powerpc-linux/afm2pl
name afm2pl.sparc-solaris
category TLCore
-revision 29877
+revision 33871
shortdesc sparc-solaris files of afm2pl
-binfiles arch=sparc-solaris size=24
+binfiles arch=sparc-solaris size=23
bin/sparc-solaris/afm2pl
name afm2pl.universal-darwin
category TLCore
-revision 30764
+revision 34201
shortdesc universal-darwin files of afm2pl
binfiles arch=universal-darwin size=47
bin/universal-darwin/afm2pl
name afm2pl.win32
category TLCore
-revision 29816
+revision 33897
shortdesc win32 files of afm2pl
-binfiles arch=win32 size=6
+binfiles arch=win32 size=9
bin/win32/afm2pl.exe
+name afm2pl.x86_64-cygwin
+category TLCore
+revision 34161
+shortdesc x86_64-cygwin files of afm2pl
+binfiles arch=x86_64-cygwin size=23
+ bin/x86_64-cygwin/afm2pl.exe
+
name afm2pl.x86_64-darwin
category TLCore
-revision 29879
+revision 34201
shortdesc x86_64-darwin files of afm2pl
binfiles arch=x86_64-darwin size=25
bin/x86_64-darwin/afm2pl
name afm2pl.x86_64-linux
category TLCore
-revision 30204
+revision 33723
shortdesc x86_64-linux files of afm2pl
-binfiles arch=x86_64-linux size=22
+binfiles arch=x86_64-linux size=23
bin/x86_64-linux/afm2pl
name afm2pl.x86_64-solaris
category TLCore
-revision 30112
+revision 34203
shortdesc x86_64-solaris files of afm2pl
binfiles arch=x86_64-solaris size=30
bin/x86_64-solaris/afm2pl
@@ -8280,20 +8188,32 @@ longdesc (or AIChE Journal or AIChE J or AIChEJ).
runfiles size=7
texmf-dist/bibtex/bst/aichej/aichej.bst
catalogue-ctan /biblio/bibtex/contrib/misc/aichej.bst
-catalogue-date 2012-04-20 12:07:37 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
+catalogue-license lppl
+
+name ajl
+category Package
+revision 34016
+shortdesc BibTeX style for AJL.
+longdesc Bibliographic style references in style of Australian Journal
+longdesc of Linguistics.
+runfiles size=8
+ texmf-dist/bibtex/bst/ajl/ajl.bst
+catalogue-ctan /biblio/bibtex/contrib/misc/ajl.bst
+catalogue-date 2014-05-12 06:36:44 +0200
catalogue-license lppl
name akktex
category Package
revision 26055
shortdesc A collection of packages and classes.
-longdesc The bundle provides: - new document classes for technical
-longdesc documents, thesis works, manuscripts and lecture notes; - many
+longdesc The bundle provides: new document classes for technical
+longdesc documents, thesis works, manuscripts and lecture notes; many
longdesc mathematical packages providing a large number of macros for
-longdesc mathematical texts; - layout providing a non-empty parskip with
+longdesc mathematical texts; layout providing a non-empty parskip with
longdesc extended length corrections and new section definition
-longdesc commands; - easy label creation for counters; and - german
-longdesc language tools and predefined abbreviations.
+longdesc commands; easy label creation for counters; and german language
+longdesc tools and predefined abbreviations.
docfiles size=2
texmf-dist/doc/latex/akktex/README details="Bundle README"
texmf-dist/doc/latex/akktex/README.TEXLIVE
@@ -8325,7 +8245,7 @@ runfiles size=37
texmf-dist/tex/latex/akktex/akktex.sty
texmf-dist/tex/latex/akktex/akkwidepage.sty
catalogue-ctan /macros/latex/contrib/akktex
-catalogue-date 2012-04-20 11:49:46 +0200
+catalogue-date 2013-11-22 17:11:31 +0100
catalogue-license lppl
catalogue-version 0.3.2
@@ -8359,9 +8279,2436 @@ catalogue-date 2011-09-13 15:32:00 +0200
catalogue-license lppl
catalogue-version 1.5i
+name alegreya
+category Package
+revision 34200
+shortdesc Alegreya fonts with LaTeX support.
+longdesc The Alegreya fonts are designed by Juan Pablo del Peral for
+longdesc Huerta Tipografica. Alegreya is a typeface originally intended
+longdesc for literature. It conveys a dynamic and varied rhythm which
+longdesc facilitates the reading of long texts. The italic has just as
+longdesc much care and attention to detail in the design as the roman.
+longdesc Bold, black, small caps and five number styles are available.
+execute addMap Alegreya.map
+docfiles size=37
+ texmf-dist/doc/fonts/alegreya/OFL.txt
+ texmf-dist/doc/fonts/alegreya/README details="Readme"
+ texmf-dist/doc/fonts/alegreya/alegreya-samples.pdf
+ texmf-dist/doc/fonts/alegreya/alegreya-samples.tex
+runfiles size=15241
+ texmf-dist/fonts/afm/huerta/alegreya/Alegreya-Black.afm
+ texmf-dist/fonts/afm/huerta/alegreya/Alegreya-BlackItalic.afm
+ texmf-dist/fonts/afm/huerta/alegreya/Alegreya-Bold.afm
+ texmf-dist/fonts/afm/huerta/alegreya/Alegreya-BoldItalic.afm
+ texmf-dist/fonts/afm/huerta/alegreya/Alegreya-Italic.afm
+ texmf-dist/fonts/afm/huerta/alegreya/Alegreya-Regular.afm
+ texmf-dist/fonts/afm/huerta/alegreya/AlegreyaSC-Black.afm
+ texmf-dist/fonts/afm/huerta/alegreya/AlegreyaSC-BlackItalic.afm
+ texmf-dist/fonts/afm/huerta/alegreya/AlegreyaSC-Bold.afm
+ texmf-dist/fonts/afm/huerta/alegreya/AlegreyaSC-BoldItalic.afm
+ texmf-dist/fonts/afm/huerta/alegreya/AlegreyaSC-Italic.afm
+ texmf-dist/fonts/afm/huerta/alegreya/AlegreyaSC-Regular.afm
+ texmf-dist/fonts/afm/huerta/alegreya/AlegreyaSans-Black.afm
+ texmf-dist/fonts/afm/huerta/alegreya/AlegreyaSans-BlackItalic.afm
+ texmf-dist/fonts/afm/huerta/alegreya/AlegreyaSans-Bold.afm
+ texmf-dist/fonts/afm/huerta/alegreya/AlegreyaSans-BoldItalic.afm
+ texmf-dist/fonts/afm/huerta/alegreya/AlegreyaSans-ExtraBold.afm
+ texmf-dist/fonts/afm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic.afm
+ texmf-dist/fonts/afm/huerta/alegreya/AlegreyaSans-Light.afm
+ texmf-dist/fonts/afm/huerta/alegreya/AlegreyaSans-LightItalic.afm
+ texmf-dist/fonts/afm/huerta/alegreya/AlegreyaSans-Medium.afm
+ texmf-dist/fonts/afm/huerta/alegreya/AlegreyaSans-MediumItalic.afm
+ texmf-dist/fonts/afm/huerta/alegreya/AlegreyaSans-Regular.afm
+ texmf-dist/fonts/afm/huerta/alegreya/AlegreyaSans-RegularItalic.afm
+ texmf-dist/fonts/afm/huerta/alegreya/AlegreyaSans-Thin.afm
+ texmf-dist/fonts/afm/huerta/alegreya/AlegreyaSans-ThinItalic.afm
+ texmf-dist/fonts/afm/huerta/alegreya/AlegreyaSansSC-Black.afm
+ texmf-dist/fonts/afm/huerta/alegreya/AlegreyaSansSC-BlackItalic.afm
+ texmf-dist/fonts/afm/huerta/alegreya/AlegreyaSansSC-Bold.afm
+ texmf-dist/fonts/afm/huerta/alegreya/AlegreyaSansSC-BoldItalic.afm
+ texmf-dist/fonts/afm/huerta/alegreya/AlegreyaSansSC-ExtraBold.afm
+ texmf-dist/fonts/afm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic.afm
+ texmf-dist/fonts/afm/huerta/alegreya/AlegreyaSansSC-Light.afm
+ texmf-dist/fonts/afm/huerta/alegreya/AlegreyaSansSC-LightItalic.afm
+ texmf-dist/fonts/afm/huerta/alegreya/AlegreyaSansSC-Medium.afm
+ texmf-dist/fonts/afm/huerta/alegreya/AlegreyaSansSC-MediumItalic.afm
+ texmf-dist/fonts/afm/huerta/alegreya/AlegreyaSansSC-Regular.afm
+ texmf-dist/fonts/afm/huerta/alegreya/AlegreyaSansSC-RegularItalic.afm
+ texmf-dist/fonts/afm/huerta/alegreya/AlegreyaSansSC-Thin.afm
+ texmf-dist/fonts/afm/huerta/alegreya/AlegreyaSansSC-ThinItalic.afm
+ texmf-dist/fonts/enc/dvips/alegreya/algr_2thg7t.enc
+ texmf-dist/fonts/enc/dvips/alegreya/algr_6gze5d.enc
+ texmf-dist/fonts/enc/dvips/alegreya/algr_72lo2s.enc
+ texmf-dist/fonts/enc/dvips/alegreya/algr_74q4jo.enc
+ texmf-dist/fonts/enc/dvips/alegreya/algr_7levdp.enc
+ texmf-dist/fonts/enc/dvips/alegreya/algr_7nunim.enc
+ texmf-dist/fonts/enc/dvips/alegreya/algr_7p2ivs.enc
+ texmf-dist/fonts/enc/dvips/alegreya/algr_atppps.enc
+ texmf-dist/fonts/enc/dvips/alegreya/algr_b55zld.enc
+ texmf-dist/fonts/enc/dvips/alegreya/algr_bft2rj.enc
+ texmf-dist/fonts/enc/dvips/alegreya/algr_hghq3b.enc
+ texmf-dist/fonts/enc/dvips/alegreya/algr_k3afeh.enc
+ texmf-dist/fonts/enc/dvips/alegreya/algr_kf7dx2.enc
+ texmf-dist/fonts/enc/dvips/alegreya/algr_lm7t5h.enc
+ texmf-dist/fonts/enc/dvips/alegreya/algr_mcmfge.enc
+ texmf-dist/fonts/enc/dvips/alegreya/algr_n534zq.enc
+ texmf-dist/fonts/enc/dvips/alegreya/algr_nlrspr.enc
+ texmf-dist/fonts/enc/dvips/alegreya/algr_prieif.enc
+ texmf-dist/fonts/enc/dvips/alegreya/algr_qj6qbd.enc
+ texmf-dist/fonts/enc/dvips/alegreya/algr_ry4sz3.enc
+ texmf-dist/fonts/enc/dvips/alegreya/algr_sd6sdy.enc
+ texmf-dist/fonts/enc/dvips/alegreya/algr_sutw7e.enc
+ texmf-dist/fonts/enc/dvips/alegreya/algr_tlfd2e.enc
+ texmf-dist/fonts/enc/dvips/alegreya/algr_u55vgl.enc
+ texmf-dist/fonts/enc/dvips/alegreya/algr_w6adhq.enc
+ texmf-dist/fonts/enc/dvips/alegreya/algr_w7rh4a.enc
+ texmf-dist/fonts/enc/dvips/alegreya/algr_wtbjoa.enc
+ texmf-dist/fonts/enc/dvips/alegreya/algr_x6hfhz.enc
+ texmf-dist/fonts/enc/dvips/alegreya/algr_y5vbsk.enc
+ texmf-dist/fonts/enc/dvips/alegreya/algrs_23dk3b.enc
+ texmf-dist/fonts/enc/dvips/alegreya/algrs_2f3oru.enc
+ texmf-dist/fonts/enc/dvips/alegreya/algrs_4zyalv.enc
+ texmf-dist/fonts/enc/dvips/alegreya/algrs_6tng7i.enc
+ texmf-dist/fonts/enc/dvips/alegreya/algrs_777naj.enc
+ texmf-dist/fonts/enc/dvips/alegreya/algrs_df6qxs.enc
+ texmf-dist/fonts/enc/dvips/alegreya/algrs_eeys5m.enc
+ texmf-dist/fonts/enc/dvips/alegreya/algrs_eoa4mh.enc
+ texmf-dist/fonts/enc/dvips/alegreya/algrs_fakese.enc
+ texmf-dist/fonts/enc/dvips/alegreya/algrs_ffgp2h.enc
+ texmf-dist/fonts/enc/dvips/alegreya/algrs_g333yf.enc
+ texmf-dist/fonts/enc/dvips/alegreya/algrs_i3slmw.enc
+ texmf-dist/fonts/enc/dvips/alegreya/algrs_jcxsi2.enc
+ texmf-dist/fonts/enc/dvips/alegreya/algrs_lfuhub.enc
+ texmf-dist/fonts/enc/dvips/alegreya/algrs_lwpqvr.enc
+ texmf-dist/fonts/enc/dvips/alegreya/algrs_mcmfge.enc
+ texmf-dist/fonts/enc/dvips/alegreya/algrs_n6pera.enc
+ texmf-dist/fonts/enc/dvips/alegreya/algrs_rus6f4.enc
+ texmf-dist/fonts/enc/dvips/alegreya/algrs_tcirz5.enc
+ texmf-dist/fonts/enc/dvips/alegreya/algrs_tlfd2e.enc
+ texmf-dist/fonts/enc/dvips/alegreya/algrs_ucdyzh.enc
+ texmf-dist/fonts/enc/dvips/alegreya/algrs_upluqc.enc
+ texmf-dist/fonts/enc/dvips/alegreya/algrs_xdzbhe.enc
+ texmf-dist/fonts/enc/dvips/alegreya/algrs_xiqcjc.enc
+ texmf-dist/fonts/map/dvips/alegreya/Alegreya.map
+ texmf-dist/fonts/pfm/huerta/alegreya/Alegreya-Black.pfm
+ texmf-dist/fonts/pfm/huerta/alegreya/Alegreya-BlackItalic.pfm
+ texmf-dist/fonts/pfm/huerta/alegreya/Alegreya-Bold.pfm
+ texmf-dist/fonts/pfm/huerta/alegreya/Alegreya-BoldItalic.pfm
+ texmf-dist/fonts/pfm/huerta/alegreya/Alegreya-Italic.pfm
+ texmf-dist/fonts/pfm/huerta/alegreya/Alegreya-Regular.pfm
+ texmf-dist/fonts/pfm/huerta/alegreya/AlegreyaSC-Black.pfm
+ texmf-dist/fonts/pfm/huerta/alegreya/AlegreyaSC-BlackItalic.pfm
+ texmf-dist/fonts/pfm/huerta/alegreya/AlegreyaSC-Bold.pfm
+ texmf-dist/fonts/pfm/huerta/alegreya/AlegreyaSC-BoldItalic.pfm
+ texmf-dist/fonts/pfm/huerta/alegreya/AlegreyaSC-Italic.pfm
+ texmf-dist/fonts/pfm/huerta/alegreya/AlegreyaSC-Regular.pfm
+ texmf-dist/fonts/pfm/huerta/alegreya/AlegreyaSans-Black.pfm
+ texmf-dist/fonts/pfm/huerta/alegreya/AlegreyaSans-BlackItalic.pfm
+ texmf-dist/fonts/pfm/huerta/alegreya/AlegreyaSans-Bold.pfm
+ texmf-dist/fonts/pfm/huerta/alegreya/AlegreyaSans-BoldItalic.pfm
+ texmf-dist/fonts/pfm/huerta/alegreya/AlegreyaSans-ExtraBold.pfm
+ texmf-dist/fonts/pfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic.pfm
+ texmf-dist/fonts/pfm/huerta/alegreya/AlegreyaSans-Light.pfm
+ texmf-dist/fonts/pfm/huerta/alegreya/AlegreyaSans-LightItalic.pfm
+ texmf-dist/fonts/pfm/huerta/alegreya/AlegreyaSans-Medium.pfm
+ texmf-dist/fonts/pfm/huerta/alegreya/AlegreyaSans-MediumItalic.pfm
+ texmf-dist/fonts/pfm/huerta/alegreya/AlegreyaSans-Regular.pfm
+ texmf-dist/fonts/pfm/huerta/alegreya/AlegreyaSans-RegularItalic.pfm
+ texmf-dist/fonts/pfm/huerta/alegreya/AlegreyaSans-Thin.pfm
+ texmf-dist/fonts/pfm/huerta/alegreya/AlegreyaSans-ThinItalic.pfm
+ texmf-dist/fonts/pfm/huerta/alegreya/AlegreyaSansSC-Black.pfm
+ texmf-dist/fonts/pfm/huerta/alegreya/AlegreyaSansSC-BlackItalic.pfm
+ texmf-dist/fonts/pfm/huerta/alegreya/AlegreyaSansSC-Bold.pfm
+ texmf-dist/fonts/pfm/huerta/alegreya/AlegreyaSansSC-BoldItalic.pfm
+ texmf-dist/fonts/pfm/huerta/alegreya/AlegreyaSansSC-ExtraBold.pfm
+ texmf-dist/fonts/pfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic.pfm
+ texmf-dist/fonts/pfm/huerta/alegreya/AlegreyaSansSC-Light.pfm
+ texmf-dist/fonts/pfm/huerta/alegreya/AlegreyaSansSC-LightItalic.pfm
+ texmf-dist/fonts/pfm/huerta/alegreya/AlegreyaSansSC-Medium.pfm
+ texmf-dist/fonts/pfm/huerta/alegreya/AlegreyaSansSC-MediumItalic.pfm
+ texmf-dist/fonts/pfm/huerta/alegreya/AlegreyaSansSC-Regular.pfm
+ texmf-dist/fonts/pfm/huerta/alegreya/AlegreyaSansSC-RegularItalic.pfm
+ texmf-dist/fonts/pfm/huerta/alegreya/AlegreyaSansSC-Thin.pfm
+ texmf-dist/fonts/pfm/huerta/alegreya/AlegreyaSansSC-ThinItalic.pfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Black-inf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Black-inf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Black-inf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Black-inf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Black-inf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Black-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Black-lf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Black-lf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Black-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Black-lf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Black-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Black-lf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Black-osf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Black-osf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Black-osf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Black-osf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Black-osf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Black-osf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Black-osf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Black-sup-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Black-sup-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Black-sup-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Black-sup-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Black-sup-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Black-tlf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Black-tlf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Black-tlf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Black-tlf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Black-tlf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Black-tlf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Black-tlf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Black-tosf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Black-tosf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Black-tosf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Black-tosf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Black-tosf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Black-tosf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Black-tosf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-inf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-inf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-inf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-inf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-inf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-lf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-lf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-lf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-lf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-osf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-osf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-osf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-osf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-osf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-osf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-osf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-sup-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-sup-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-sup-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-sup-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-sup-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-tlf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-tlf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-tlf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-tlf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-tlf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-tlf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-tlf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-tosf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-tosf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-tosf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-tosf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-tosf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-tosf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-BlackItalic-tosf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Bold-inf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Bold-inf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Bold-inf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Bold-inf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Bold-inf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Bold-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Bold-lf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Bold-lf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Bold-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Bold-lf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Bold-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Bold-lf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Bold-osf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Bold-osf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Bold-osf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Bold-osf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Bold-osf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Bold-osf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Bold-osf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Bold-sup-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Bold-sup-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Bold-sup-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Bold-sup-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Bold-sup-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Bold-tlf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Bold-tlf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Bold-tlf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Bold-tlf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Bold-tlf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Bold-tlf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Bold-tlf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Bold-tosf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Bold-tosf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Bold-tosf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Bold-tosf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Bold-tosf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Bold-tosf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Bold-tosf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-inf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-inf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-inf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-inf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-inf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-lf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-lf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-lf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-lf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-osf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-osf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-osf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-osf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-osf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-osf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-osf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-sup-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-sup-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-sup-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-sup-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-sup-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-tlf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-tlf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-tlf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-tlf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-tlf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-tlf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-tlf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-tosf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-tosf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-tosf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-tosf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-tosf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-tosf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-BoldItalic-tosf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Italic-inf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Italic-inf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Italic-inf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Italic-inf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Italic-inf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Italic-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Italic-lf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Italic-lf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Italic-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Italic-lf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Italic-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Italic-lf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Italic-osf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Italic-osf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Italic-osf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Italic-osf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Italic-osf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Italic-osf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Italic-osf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Italic-sup-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Italic-sup-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Italic-sup-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Italic-sup-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Italic-sup-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Italic-tlf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Italic-tlf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Italic-tlf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Italic-tlf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Italic-tlf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Italic-tlf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Italic-tlf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Italic-tosf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Italic-tosf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Italic-tosf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Italic-tosf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Italic-tosf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Italic-tosf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Italic-tosf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Regular-inf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Regular-inf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Regular-inf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Regular-inf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Regular-inf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Regular-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Regular-lf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Regular-lf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Regular-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Regular-lf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Regular-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Regular-lf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Regular-osf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Regular-osf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Regular-osf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Regular-osf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Regular-osf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Regular-osf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Regular-osf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Regular-sup-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Regular-sup-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Regular-sup-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Regular-sup-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Regular-sup-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Regular-tlf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Regular-tlf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Regular-tlf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Regular-tlf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Regular-tlf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Regular-tlf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Regular-tlf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Regular-tosf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Regular-tosf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Regular-tosf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Regular-tosf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Regular-tosf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Regular-tosf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/Alegreya-Regular-tosf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSC-Black-tlf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSC-Black-tlf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSC-Black-tlf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSC-Black-tlf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSC-Black-tlf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSC-Black-tlf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSC-Black-tlf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSC-BlackItalic-tlf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSC-BlackItalic-tlf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSC-BlackItalic-tlf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSC-BlackItalic-tlf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSC-BlackItalic-tlf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSC-BlackItalic-tlf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSC-BlackItalic-tlf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSC-Bold-tlf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSC-Bold-tlf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSC-Bold-tlf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSC-Bold-tlf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSC-Bold-tlf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSC-Bold-tlf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSC-Bold-tlf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSC-BoldItalic-tlf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSC-BoldItalic-tlf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSC-BoldItalic-tlf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSC-BoldItalic-tlf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSC-BoldItalic-tlf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSC-BoldItalic-tlf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSC-BoldItalic-tlf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSC-Italic-tlf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSC-Italic-tlf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSC-Italic-tlf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSC-Italic-tlf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSC-Italic-tlf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSC-Italic-tlf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSC-Italic-tlf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSC-Regular-tlf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSC-Regular-tlf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSC-Regular-tlf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSC-Regular-tlf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSC-Regular-tlf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSC-Regular-tlf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSC-Regular-tlf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-inf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-inf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-inf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-inf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-inf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-lf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-lf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-lf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-lf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-lf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-osf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-osf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-osf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-osf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-osf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-osf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-osf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-osf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-sup-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-sup-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-sup-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-sup-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-sup-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-tlf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-tlf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-tlf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-tlf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-tlf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-tlf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-tlf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-tlf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-tosf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-tosf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-tosf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-tosf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-tosf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-tosf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-tosf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Black-tosf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-inf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-inf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-inf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-inf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-inf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-lf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-lf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-lf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-lf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-lf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-osf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-osf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-osf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-osf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-osf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-osf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-osf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-osf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-sup-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-sup-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-sup-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-sup-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-sup-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-tlf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-tlf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-tlf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-tlf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-tlf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-tlf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-tlf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-tlf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-tosf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-tosf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-tosf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-tosf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-tosf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-tosf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-tosf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-BlackItalic-tosf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-inf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-inf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-inf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-inf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-inf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-lf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-lf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-lf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-lf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-lf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-osf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-osf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-osf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-osf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-osf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-osf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-osf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-osf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-sup-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-sup-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-sup-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-sup-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-sup-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-tlf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-tlf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-tlf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-tlf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-tlf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-tlf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-tlf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-tlf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-tosf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-tosf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-tosf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-tosf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-tosf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-tosf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-tosf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Bold-tosf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-inf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-inf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-inf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-inf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-inf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-lf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-lf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-lf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-lf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-lf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-osf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-osf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-osf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-osf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-osf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-osf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-osf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-osf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-sup-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-sup-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-sup-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-sup-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-sup-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-tlf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-tlf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-tlf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-tlf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-tlf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-tlf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-tlf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-tlf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-tosf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-tosf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-tosf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-tosf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-tosf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-tosf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-tosf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-BoldItalic-tosf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-inf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-inf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-inf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-inf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-inf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-lf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-lf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-lf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-lf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-lf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-osf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-osf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-osf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-osf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-osf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-osf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-osf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-osf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-sup-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-sup-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-sup-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-sup-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-sup-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-tlf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-tlf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-tlf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-tlf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-tlf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-tlf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-tlf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-tlf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-tosf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-tosf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-tosf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-tosf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-tosf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-tosf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-tosf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBold-tosf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-inf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-inf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-inf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-inf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-inf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-lf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-lf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-lf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-lf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-lf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-osf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-osf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-osf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-osf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-osf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-osf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-osf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-osf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-sup-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-sup-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-sup-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-sup-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-sup-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tlf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tlf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tlf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tlf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tlf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tlf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tlf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tlf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tosf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tosf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tosf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tosf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tosf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tosf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tosf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tosf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-inf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-inf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-inf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-inf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-inf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-lf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-lf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-lf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-lf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-lf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-osf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-osf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-osf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-osf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-osf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-osf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-osf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-osf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-sup-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-sup-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-sup-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-sup-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-sup-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-tlf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-tlf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-tlf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-tlf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-tlf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-tlf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-tlf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-tlf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-tosf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-tosf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-tosf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-tosf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-tosf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-tosf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-tosf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Italic-tosf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-inf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-inf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-inf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-inf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-inf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-lf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-lf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-lf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-lf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-lf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-osf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-osf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-osf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-osf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-osf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-osf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-osf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-osf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-sup-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-sup-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-sup-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-sup-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-sup-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-tlf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-tlf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-tlf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-tlf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-tlf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-tlf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-tlf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-tlf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-tosf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-tosf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-tosf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-tosf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-tosf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-tosf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-tosf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Light-tosf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-inf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-inf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-inf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-inf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-inf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-lf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-lf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-lf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-lf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-lf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-osf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-osf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-osf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-osf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-osf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-osf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-osf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-osf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-sup-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-sup-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-sup-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-sup-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-sup-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-tlf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-tlf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-tlf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-tlf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-tlf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-tlf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-tlf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-tlf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-tosf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-tosf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-tosf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-tosf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-tosf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-tosf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-tosf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-LightItalic-tosf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-inf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-inf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-inf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-inf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-inf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-lf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-lf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-lf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-lf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-lf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-osf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-osf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-osf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-osf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-osf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-osf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-osf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-osf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-sup-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-sup-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-sup-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-sup-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-sup-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-tlf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-tlf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-tlf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-tlf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-tlf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-tlf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-tlf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-tlf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-tosf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-tosf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-tosf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-tosf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-tosf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-tosf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-tosf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Medium-tosf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-inf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-inf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-inf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-inf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-inf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-lf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-lf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-lf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-lf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-lf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-osf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-osf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-osf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-osf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-osf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-osf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-osf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-osf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-sup-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-sup-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-sup-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-sup-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-sup-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-tlf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-tlf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-tlf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-tlf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-tlf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-tlf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-tlf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-tlf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-tosf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-tosf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-tosf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-tosf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-tosf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-tosf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-tosf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-MediumItalic-tosf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-inf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-inf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-inf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-inf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-inf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-lf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-lf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-lf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-lf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-lf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-osf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-osf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-osf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-osf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-osf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-osf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-osf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-osf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-sup-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-sup-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-sup-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-sup-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-sup-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-tlf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-tlf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-tlf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-tlf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-tlf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-tlf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-tlf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-tlf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-tosf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-tosf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-tosf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-tosf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-tosf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-tosf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-tosf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Regular-tosf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-inf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-inf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-inf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-inf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-inf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-lf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-lf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-lf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-lf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-lf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-osf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-osf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-osf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-osf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-osf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-osf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-osf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-osf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-sup-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-sup-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-sup-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-sup-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-sup-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-tlf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-tlf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-tlf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-tlf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-tlf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-tlf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-tlf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-tlf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-tosf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-tosf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-tosf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-tosf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-tosf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-tosf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-tosf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-Thin-tosf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-inf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-inf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-inf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-inf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-inf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-lf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-lf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-lf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-lf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-lf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-osf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-osf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-osf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-osf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-osf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-osf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-osf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-osf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-sup-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-sup-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-sup-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-sup-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-sup-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-tlf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-tlf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-tlf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-tlf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-tlf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-tlf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-tlf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-tlf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-tosf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-tosf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-tosf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-tosf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-tosf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-tosf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-tosf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSans-ThinItalic-tosf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-inf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-inf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-inf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-inf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-inf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-lf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-lf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-lf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-lf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-lf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-osf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-osf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-osf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-osf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-osf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-osf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-osf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-osf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-sup-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-sup-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-sup-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-sup-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-sup-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-tlf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-tlf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-tlf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-tlf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-tlf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-tlf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-tlf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-tlf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-tosf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-tosf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-tosf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-tosf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-tosf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-tosf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-tosf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Black-tosf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-inf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-inf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-inf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-inf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-inf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-lf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-lf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-lf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-lf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-lf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-osf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-osf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-osf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-osf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-osf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-osf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-osf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-osf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-sup-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-sup-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-sup-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-sup-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-sup-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-tlf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-tlf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-tlf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-tlf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-tlf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-tlf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-tlf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-tlf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-tosf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-tosf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-tosf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-tosf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-tosf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-tosf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-tosf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BlackItalic-tosf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-inf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-inf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-inf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-inf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-inf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-lf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-lf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-lf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-lf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-lf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-osf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-osf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-osf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-osf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-osf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-osf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-osf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-osf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-sup-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-sup-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-sup-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-sup-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-sup-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-tlf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-tlf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-tlf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-tlf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-tlf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-tlf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-tlf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-tlf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-tosf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-tosf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-tosf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-tosf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-tosf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-tosf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-tosf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Bold-tosf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-inf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-inf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-inf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-inf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-inf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-lf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-lf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-lf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-lf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-lf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-osf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-osf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-osf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-osf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-osf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-osf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-osf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-osf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-sup-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-sup-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-sup-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-sup-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-sup-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-tlf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-tlf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-tlf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-tlf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-tlf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-tlf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-tlf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-tlf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-tosf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-tosf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-tosf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-tosf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-tosf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-tosf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-tosf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-BoldItalic-tosf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-inf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-inf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-inf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-inf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-inf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-lf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-lf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-lf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-lf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-lf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-osf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-osf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-osf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-osf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-osf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-osf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-osf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-osf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-sup-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-sup-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-sup-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-sup-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-sup-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-tlf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-tlf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-tlf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-tlf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-tlf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-tlf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-tlf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-tlf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-tosf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-tosf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-tosf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-tosf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-tosf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-tosf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-tosf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBold-tosf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-inf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-inf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-inf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-inf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-inf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-lf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-lf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-lf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-lf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-lf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-osf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-osf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-osf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-osf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-osf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-osf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-osf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-osf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-sup-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-sup-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-sup-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-sup-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-sup-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-tlf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-tlf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-tlf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-tlf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-tlf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-tlf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-tlf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-tlf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-tosf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-tosf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-tosf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-tosf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-tosf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-tosf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-tosf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-tosf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-inf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-inf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-inf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-inf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-inf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-lf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-lf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-lf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-lf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-lf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-osf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-osf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-osf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-osf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-osf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-osf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-osf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-osf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-sup-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-sup-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-sup-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-sup-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-sup-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-tlf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-tlf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-tlf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-tlf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-tlf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-tlf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-tlf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-tlf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-tosf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-tosf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-tosf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-tosf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-tosf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-tosf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-tosf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Italic-tosf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-inf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-inf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-inf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-inf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-inf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-lf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-lf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-lf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-lf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-lf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-osf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-osf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-osf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-osf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-osf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-osf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-osf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-osf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-sup-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-sup-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-sup-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-sup-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-sup-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-tlf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-tlf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-tlf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-tlf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-tlf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-tlf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-tlf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-tlf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-tosf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-tosf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-tosf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-tosf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-tosf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-tosf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-tosf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Light-tosf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-inf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-inf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-inf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-inf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-inf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-lf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-lf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-lf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-lf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-lf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-osf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-osf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-osf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-osf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-osf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-osf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-osf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-osf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-sup-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-sup-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-sup-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-sup-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-sup-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-tlf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-tlf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-tlf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-tlf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-tlf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-tlf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-tlf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-tlf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-tosf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-tosf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-tosf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-tosf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-tosf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-tosf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-tosf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-LightItalic-tosf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-inf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-inf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-inf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-inf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-inf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-lf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-lf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-lf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-lf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-lf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-osf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-osf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-osf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-osf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-osf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-osf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-osf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-osf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-sup-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-sup-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-sup-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-sup-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-sup-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-tlf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-tlf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-tlf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-tlf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-tlf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-tlf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-tlf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-tlf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-tosf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-tosf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-tosf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-tosf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-tosf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-tosf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-tosf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Medium-tosf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-inf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-inf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-inf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-inf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-inf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-lf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-lf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-lf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-lf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-lf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-osf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-osf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-osf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-osf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-osf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-osf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-osf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-osf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-sup-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-sup-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-sup-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-sup-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-sup-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-tlf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-tlf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-tlf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-tlf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-tlf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-tlf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-tlf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-tlf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-tosf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-tosf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-tosf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-tosf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-tosf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-tosf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-tosf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-MediumItalic-tosf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-inf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-inf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-inf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-inf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-inf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-lf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-lf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-lf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-lf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-lf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-osf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-osf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-osf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-osf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-osf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-osf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-osf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-osf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-sup-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-sup-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-sup-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-sup-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-sup-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-tlf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-tlf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-tlf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-tlf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-tlf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-tlf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-tlf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-tlf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-tosf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-tosf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-tosf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-tosf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-tosf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-tosf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-tosf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Regular-tosf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-inf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-inf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-inf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-inf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-inf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-lf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-lf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-lf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-lf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-lf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-osf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-osf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-osf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-osf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-osf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-osf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-osf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-osf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-sup-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-sup-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-sup-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-sup-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-sup-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-tlf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-tlf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-tlf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-tlf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-tlf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-tlf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-tlf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-tlf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-tosf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-tosf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-tosf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-tosf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-tosf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-tosf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-tosf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-Thin-tosf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-inf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-inf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-inf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-inf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-inf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-lf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-lf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-lf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-lf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-lf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-osf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-osf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-osf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-osf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-osf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-osf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-osf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-osf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-sup-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-sup-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-sup-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-sup-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-sup-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-tlf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-tlf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-tlf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-tlf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-tlf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-tlf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-tlf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-tlf-ts1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-tosf-ly1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-tosf-ly1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-tosf-ot1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-tosf-ot1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-tosf-t1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-tosf-t1.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-tosf-ts1--base.tfm
+ texmf-dist/fonts/tfm/huerta/alegreya/AlegreyaSansSC-ThinItalic-tosf-ts1.tfm
+ texmf-dist/fonts/truetype/huerta/alegreya/Alegreya-Black.ttf
+ texmf-dist/fonts/truetype/huerta/alegreya/Alegreya-BlackItalic.ttf
+ texmf-dist/fonts/truetype/huerta/alegreya/Alegreya-Bold.ttf
+ texmf-dist/fonts/truetype/huerta/alegreya/Alegreya-BoldItalic.ttf
+ texmf-dist/fonts/truetype/huerta/alegreya/Alegreya-Italic.ttf
+ texmf-dist/fonts/truetype/huerta/alegreya/Alegreya-Regular.ttf
+ texmf-dist/fonts/truetype/huerta/alegreya/AlegreyaSC-Black.ttf
+ texmf-dist/fonts/truetype/huerta/alegreya/AlegreyaSC-BlackItalic.ttf
+ texmf-dist/fonts/truetype/huerta/alegreya/AlegreyaSC-Bold.ttf
+ texmf-dist/fonts/truetype/huerta/alegreya/AlegreyaSC-BoldItalic.ttf
+ texmf-dist/fonts/truetype/huerta/alegreya/AlegreyaSC-Italic.ttf
+ texmf-dist/fonts/truetype/huerta/alegreya/AlegreyaSC-Regular.ttf
+ texmf-dist/fonts/truetype/huerta/alegreya/AlegreyaSans-Black.ttf
+ texmf-dist/fonts/truetype/huerta/alegreya/AlegreyaSans-BlackItalic.ttf
+ texmf-dist/fonts/truetype/huerta/alegreya/AlegreyaSans-Bold.ttf
+ texmf-dist/fonts/truetype/huerta/alegreya/AlegreyaSans-BoldItalic.ttf
+ texmf-dist/fonts/truetype/huerta/alegreya/AlegreyaSans-ExtraBold.ttf
+ texmf-dist/fonts/truetype/huerta/alegreya/AlegreyaSans-ExtraBoldItalic.ttf
+ texmf-dist/fonts/truetype/huerta/alegreya/AlegreyaSans-Light.ttf
+ texmf-dist/fonts/truetype/huerta/alegreya/AlegreyaSans-LightItalic.ttf
+ texmf-dist/fonts/truetype/huerta/alegreya/AlegreyaSans-Medium.ttf
+ texmf-dist/fonts/truetype/huerta/alegreya/AlegreyaSans-MediumItalic.ttf
+ texmf-dist/fonts/truetype/huerta/alegreya/AlegreyaSans-Regular.ttf
+ texmf-dist/fonts/truetype/huerta/alegreya/AlegreyaSans-RegularItalic.ttf
+ texmf-dist/fonts/truetype/huerta/alegreya/AlegreyaSans-Thin.ttf
+ texmf-dist/fonts/truetype/huerta/alegreya/AlegreyaSans-ThinItalic.ttf
+ texmf-dist/fonts/truetype/huerta/alegreya/AlegreyaSansSC-Black.ttf
+ texmf-dist/fonts/truetype/huerta/alegreya/AlegreyaSansSC-BlackItalic.ttf
+ texmf-dist/fonts/truetype/huerta/alegreya/AlegreyaSansSC-Bold.ttf
+ texmf-dist/fonts/truetype/huerta/alegreya/AlegreyaSansSC-BoldItalic.ttf
+ texmf-dist/fonts/truetype/huerta/alegreya/AlegreyaSansSC-ExtraBold.ttf
+ texmf-dist/fonts/truetype/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic.ttf
+ texmf-dist/fonts/truetype/huerta/alegreya/AlegreyaSansSC-Light.ttf
+ texmf-dist/fonts/truetype/huerta/alegreya/AlegreyaSansSC-LightItalic.ttf
+ texmf-dist/fonts/truetype/huerta/alegreya/AlegreyaSansSC-Medium.ttf
+ texmf-dist/fonts/truetype/huerta/alegreya/AlegreyaSansSC-MediumItalic.ttf
+ texmf-dist/fonts/truetype/huerta/alegreya/AlegreyaSansSC-Regular.ttf
+ texmf-dist/fonts/truetype/huerta/alegreya/AlegreyaSansSC-RegularItalic.ttf
+ texmf-dist/fonts/truetype/huerta/alegreya/AlegreyaSansSC-Thin.ttf
+ texmf-dist/fonts/truetype/huerta/alegreya/AlegreyaSansSC-ThinItalic.ttf
+ texmf-dist/fonts/type1/huerta/alegreya/Alegreya-Black.pfb
+ texmf-dist/fonts/type1/huerta/alegreya/Alegreya-BlackItalic.pfb
+ texmf-dist/fonts/type1/huerta/alegreya/Alegreya-Bold.pfb
+ texmf-dist/fonts/type1/huerta/alegreya/Alegreya-BoldItalic.pfb
+ texmf-dist/fonts/type1/huerta/alegreya/Alegreya-Italic.pfb
+ texmf-dist/fonts/type1/huerta/alegreya/Alegreya-Regular.pfb
+ texmf-dist/fonts/type1/huerta/alegreya/AlegreyaSC-Black.pfb
+ texmf-dist/fonts/type1/huerta/alegreya/AlegreyaSC-BlackItalic.pfb
+ texmf-dist/fonts/type1/huerta/alegreya/AlegreyaSC-Bold.pfb
+ texmf-dist/fonts/type1/huerta/alegreya/AlegreyaSC-BoldItalic.pfb
+ texmf-dist/fonts/type1/huerta/alegreya/AlegreyaSC-Italic.pfb
+ texmf-dist/fonts/type1/huerta/alegreya/AlegreyaSC-Regular.pfb
+ texmf-dist/fonts/type1/huerta/alegreya/AlegreyaSans-Black.pfb
+ texmf-dist/fonts/type1/huerta/alegreya/AlegreyaSans-BlackItalic.pfb
+ texmf-dist/fonts/type1/huerta/alegreya/AlegreyaSans-Bold.pfb
+ texmf-dist/fonts/type1/huerta/alegreya/AlegreyaSans-BoldItalic.pfb
+ texmf-dist/fonts/type1/huerta/alegreya/AlegreyaSans-ExtraBold.pfb
+ texmf-dist/fonts/type1/huerta/alegreya/AlegreyaSans-ExtraBoldItalic.pfb
+ texmf-dist/fonts/type1/huerta/alegreya/AlegreyaSans-Italic.pfb
+ texmf-dist/fonts/type1/huerta/alegreya/AlegreyaSans-Light.pfb
+ texmf-dist/fonts/type1/huerta/alegreya/AlegreyaSans-LightItalic.pfb
+ texmf-dist/fonts/type1/huerta/alegreya/AlegreyaSans-Medium.pfb
+ texmf-dist/fonts/type1/huerta/alegreya/AlegreyaSans-MediumItalic.pfb
+ texmf-dist/fonts/type1/huerta/alegreya/AlegreyaSans-Regular.pfb
+ texmf-dist/fonts/type1/huerta/alegreya/AlegreyaSans-Thin.pfb
+ texmf-dist/fonts/type1/huerta/alegreya/AlegreyaSans-ThinItalic.pfb
+ texmf-dist/fonts/type1/huerta/alegreya/AlegreyaSansSC-Black.pfb
+ texmf-dist/fonts/type1/huerta/alegreya/AlegreyaSansSC-BlackItalic.pfb
+ texmf-dist/fonts/type1/huerta/alegreya/AlegreyaSansSC-Bold.pfb
+ texmf-dist/fonts/type1/huerta/alegreya/AlegreyaSansSC-BoldItalic.pfb
+ texmf-dist/fonts/type1/huerta/alegreya/AlegreyaSansSC-ExtraBold.pfb
+ texmf-dist/fonts/type1/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic.pfb
+ texmf-dist/fonts/type1/huerta/alegreya/AlegreyaSansSC-Italic.pfb
+ texmf-dist/fonts/type1/huerta/alegreya/AlegreyaSansSC-Light.pfb
+ texmf-dist/fonts/type1/huerta/alegreya/AlegreyaSansSC-LightItalic.pfb
+ texmf-dist/fonts/type1/huerta/alegreya/AlegreyaSansSC-Medium.pfb
+ texmf-dist/fonts/type1/huerta/alegreya/AlegreyaSansSC-MediumItalic.pfb
+ texmf-dist/fonts/type1/huerta/alegreya/AlegreyaSansSC-Regular.pfb
+ texmf-dist/fonts/type1/huerta/alegreya/AlegreyaSansSC-Thin.pfb
+ texmf-dist/fonts/type1/huerta/alegreya/AlegreyaSansSC-ThinItalic.pfb
+ texmf-dist/fonts/vf/huerta/alegreya/Alegreya-Black-inf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/Alegreya-Black-inf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/Alegreya-Black-lf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/Alegreya-Black-lf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/Alegreya-Black-lf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/Alegreya-Black-osf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/Alegreya-Black-osf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/Alegreya-Black-osf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/Alegreya-Black-sup-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/Alegreya-Black-sup-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/Alegreya-Black-tlf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/Alegreya-Black-tlf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/Alegreya-Black-tlf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/Alegreya-Black-tosf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/Alegreya-Black-tosf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/Alegreya-Black-tosf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/Alegreya-BlackItalic-inf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/Alegreya-BlackItalic-inf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/Alegreya-BlackItalic-lf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/Alegreya-BlackItalic-lf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/Alegreya-BlackItalic-lf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/Alegreya-BlackItalic-osf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/Alegreya-BlackItalic-osf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/Alegreya-BlackItalic-osf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/Alegreya-BlackItalic-sup-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/Alegreya-BlackItalic-sup-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/Alegreya-BlackItalic-tlf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/Alegreya-BlackItalic-tlf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/Alegreya-BlackItalic-tlf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/Alegreya-BlackItalic-tosf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/Alegreya-BlackItalic-tosf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/Alegreya-BlackItalic-tosf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/Alegreya-Bold-inf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/Alegreya-Bold-inf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/Alegreya-Bold-lf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/Alegreya-Bold-lf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/Alegreya-Bold-lf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/Alegreya-Bold-osf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/Alegreya-Bold-osf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/Alegreya-Bold-osf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/Alegreya-Bold-sup-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/Alegreya-Bold-sup-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/Alegreya-Bold-tlf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/Alegreya-Bold-tlf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/Alegreya-Bold-tlf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/Alegreya-Bold-tosf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/Alegreya-Bold-tosf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/Alegreya-Bold-tosf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/Alegreya-BoldItalic-inf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/Alegreya-BoldItalic-inf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/Alegreya-BoldItalic-lf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/Alegreya-BoldItalic-lf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/Alegreya-BoldItalic-lf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/Alegreya-BoldItalic-osf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/Alegreya-BoldItalic-osf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/Alegreya-BoldItalic-osf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/Alegreya-BoldItalic-sup-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/Alegreya-BoldItalic-sup-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/Alegreya-BoldItalic-tlf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/Alegreya-BoldItalic-tlf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/Alegreya-BoldItalic-tlf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/Alegreya-BoldItalic-tosf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/Alegreya-BoldItalic-tosf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/Alegreya-BoldItalic-tosf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/Alegreya-Italic-inf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/Alegreya-Italic-inf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/Alegreya-Italic-lf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/Alegreya-Italic-lf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/Alegreya-Italic-lf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/Alegreya-Italic-osf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/Alegreya-Italic-osf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/Alegreya-Italic-osf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/Alegreya-Italic-sup-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/Alegreya-Italic-sup-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/Alegreya-Italic-tlf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/Alegreya-Italic-tlf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/Alegreya-Italic-tlf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/Alegreya-Italic-tosf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/Alegreya-Italic-tosf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/Alegreya-Italic-tosf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/Alegreya-Regular-inf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/Alegreya-Regular-inf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/Alegreya-Regular-lf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/Alegreya-Regular-lf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/Alegreya-Regular-lf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/Alegreya-Regular-osf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/Alegreya-Regular-osf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/Alegreya-Regular-osf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/Alegreya-Regular-sup-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/Alegreya-Regular-sup-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/Alegreya-Regular-tlf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/Alegreya-Regular-tlf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/Alegreya-Regular-tlf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/Alegreya-Regular-tosf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/Alegreya-Regular-tosf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/Alegreya-Regular-tosf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSC-Black-tlf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSC-Black-tlf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSC-Black-tlf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSC-BlackItalic-tlf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSC-BlackItalic-tlf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSC-BlackItalic-tlf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSC-Bold-tlf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSC-Bold-tlf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSC-Bold-tlf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSC-BoldItalic-tlf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSC-BoldItalic-tlf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSC-BoldItalic-tlf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSC-Italic-tlf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSC-Italic-tlf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSC-Italic-tlf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSC-Regular-tlf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSC-Regular-tlf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSC-Regular-tlf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Black-inf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Black-inf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Black-lf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Black-lf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Black-lf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Black-lf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Black-osf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Black-osf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Black-osf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Black-osf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Black-sup-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Black-sup-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Black-tlf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Black-tlf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Black-tlf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Black-tlf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Black-tosf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Black-tosf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Black-tosf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Black-tosf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-BlackItalic-inf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-BlackItalic-inf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-BlackItalic-lf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-BlackItalic-lf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-BlackItalic-lf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-BlackItalic-lf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-BlackItalic-osf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-BlackItalic-osf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-BlackItalic-osf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-BlackItalic-osf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-BlackItalic-sup-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-BlackItalic-sup-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-BlackItalic-tlf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-BlackItalic-tlf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-BlackItalic-tlf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-BlackItalic-tlf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-BlackItalic-tosf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-BlackItalic-tosf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-BlackItalic-tosf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-BlackItalic-tosf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Bold-inf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Bold-inf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Bold-lf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Bold-lf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Bold-lf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Bold-lf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Bold-osf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Bold-osf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Bold-osf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Bold-osf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Bold-sup-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Bold-sup-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Bold-tlf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Bold-tlf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Bold-tlf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Bold-tlf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Bold-tosf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Bold-tosf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Bold-tosf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Bold-tosf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-BoldItalic-inf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-BoldItalic-inf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-BoldItalic-lf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-BoldItalic-lf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-BoldItalic-lf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-BoldItalic-lf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-BoldItalic-osf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-BoldItalic-osf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-BoldItalic-osf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-BoldItalic-osf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-BoldItalic-sup-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-BoldItalic-sup-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-BoldItalic-tlf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-BoldItalic-tlf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-BoldItalic-tlf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-BoldItalic-tlf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-BoldItalic-tosf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-BoldItalic-tosf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-BoldItalic-tosf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-BoldItalic-tosf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBold-inf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBold-inf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBold-lf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBold-lf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBold-lf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBold-lf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBold-osf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBold-osf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBold-osf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBold-osf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBold-sup-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBold-sup-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBold-tlf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBold-tlf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBold-tlf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBold-tlf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBold-tosf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBold-tosf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBold-tosf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBold-tosf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-inf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-inf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-lf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-lf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-lf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-lf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-osf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-osf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-osf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-osf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-sup-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-sup-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tlf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tlf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tlf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tlf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tosf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tosf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tosf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-ExtraBoldItalic-tosf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Italic-inf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Italic-inf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Italic-lf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Italic-lf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Italic-lf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Italic-lf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Italic-osf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Italic-osf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Italic-osf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Italic-osf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Italic-sup-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Italic-sup-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Italic-tlf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Italic-tlf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Italic-tlf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Italic-tlf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Italic-tosf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Italic-tosf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Italic-tosf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Italic-tosf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Light-inf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Light-inf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Light-lf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Light-lf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Light-lf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Light-lf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Light-osf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Light-osf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Light-osf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Light-osf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Light-sup-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Light-sup-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Light-tlf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Light-tlf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Light-tlf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Light-tlf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Light-tosf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Light-tosf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Light-tosf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Light-tosf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-LightItalic-inf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-LightItalic-inf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-LightItalic-lf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-LightItalic-lf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-LightItalic-lf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-LightItalic-lf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-LightItalic-osf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-LightItalic-osf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-LightItalic-osf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-LightItalic-osf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-LightItalic-sup-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-LightItalic-sup-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-LightItalic-tlf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-LightItalic-tlf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-LightItalic-tlf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-LightItalic-tlf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-LightItalic-tosf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-LightItalic-tosf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-LightItalic-tosf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-LightItalic-tosf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Medium-inf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Medium-inf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Medium-lf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Medium-lf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Medium-lf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Medium-lf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Medium-osf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Medium-osf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Medium-osf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Medium-osf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Medium-sup-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Medium-sup-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Medium-tlf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Medium-tlf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Medium-tlf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Medium-tlf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Medium-tosf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Medium-tosf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Medium-tosf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Medium-tosf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-MediumItalic-inf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-MediumItalic-inf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-MediumItalic-lf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-MediumItalic-lf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-MediumItalic-lf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-MediumItalic-lf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-MediumItalic-osf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-MediumItalic-osf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-MediumItalic-osf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-MediumItalic-osf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-MediumItalic-sup-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-MediumItalic-sup-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-MediumItalic-tlf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-MediumItalic-tlf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-MediumItalic-tlf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-MediumItalic-tlf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-MediumItalic-tosf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-MediumItalic-tosf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-MediumItalic-tosf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-MediumItalic-tosf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Regular-inf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Regular-inf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Regular-lf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Regular-lf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Regular-lf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Regular-lf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Regular-osf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Regular-osf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Regular-osf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Regular-osf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Regular-sup-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Regular-sup-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Regular-tlf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Regular-tlf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Regular-tlf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Regular-tlf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Regular-tosf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Regular-tosf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Regular-tosf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Regular-tosf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Thin-inf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Thin-inf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Thin-lf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Thin-lf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Thin-lf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Thin-lf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Thin-osf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Thin-osf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Thin-osf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Thin-osf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Thin-sup-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Thin-sup-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Thin-tlf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Thin-tlf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Thin-tlf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Thin-tlf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Thin-tosf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Thin-tosf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Thin-tosf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-Thin-tosf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-ThinItalic-inf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-ThinItalic-inf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-ThinItalic-lf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-ThinItalic-lf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-ThinItalic-lf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-ThinItalic-lf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-ThinItalic-osf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-ThinItalic-osf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-ThinItalic-osf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-ThinItalic-osf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-ThinItalic-sup-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-ThinItalic-sup-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-ThinItalic-tlf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-ThinItalic-tlf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-ThinItalic-tlf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-ThinItalic-tlf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-ThinItalic-tosf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-ThinItalic-tosf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-ThinItalic-tosf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSans-ThinItalic-tosf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Black-inf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Black-inf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Black-lf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Black-lf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Black-lf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Black-lf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Black-osf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Black-osf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Black-osf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Black-osf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Black-sup-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Black-sup-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Black-tlf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Black-tlf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Black-tlf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Black-tlf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Black-tosf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Black-tosf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Black-tosf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Black-tosf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-BlackItalic-inf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-BlackItalic-inf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-BlackItalic-lf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-BlackItalic-lf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-BlackItalic-lf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-BlackItalic-lf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-BlackItalic-osf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-BlackItalic-osf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-BlackItalic-osf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-BlackItalic-osf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-BlackItalic-sup-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-BlackItalic-sup-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-BlackItalic-tlf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-BlackItalic-tlf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-BlackItalic-tlf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-BlackItalic-tlf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-BlackItalic-tosf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-BlackItalic-tosf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-BlackItalic-tosf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-BlackItalic-tosf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Bold-inf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Bold-inf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Bold-lf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Bold-lf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Bold-lf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Bold-lf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Bold-osf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Bold-osf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Bold-osf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Bold-osf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Bold-sup-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Bold-sup-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Bold-tlf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Bold-tlf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Bold-tlf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Bold-tlf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Bold-tosf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Bold-tosf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Bold-tosf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Bold-tosf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-BoldItalic-inf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-BoldItalic-inf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-BoldItalic-lf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-BoldItalic-lf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-BoldItalic-lf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-BoldItalic-lf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-BoldItalic-osf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-BoldItalic-osf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-BoldItalic-osf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-BoldItalic-osf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-BoldItalic-sup-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-BoldItalic-sup-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-BoldItalic-tlf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-BoldItalic-tlf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-BoldItalic-tlf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-BoldItalic-tlf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-BoldItalic-tosf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-BoldItalic-tosf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-BoldItalic-tosf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-BoldItalic-tosf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBold-inf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBold-inf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBold-lf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBold-lf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBold-lf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBold-lf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBold-osf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBold-osf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBold-osf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBold-osf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBold-sup-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBold-sup-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBold-tlf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBold-tlf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBold-tlf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBold-tlf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBold-tosf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBold-tosf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBold-tosf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBold-tosf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-inf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-inf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-lf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-lf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-lf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-lf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-osf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-osf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-osf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-osf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-sup-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-sup-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-tlf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-tlf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-tlf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-tlf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-tosf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-tosf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-tosf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic-tosf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Italic-inf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Italic-inf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Italic-lf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Italic-lf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Italic-lf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Italic-lf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Italic-osf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Italic-osf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Italic-osf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Italic-osf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Italic-sup-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Italic-sup-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Italic-tlf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Italic-tlf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Italic-tlf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Italic-tlf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Italic-tosf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Italic-tosf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Italic-tosf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Italic-tosf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Light-inf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Light-inf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Light-lf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Light-lf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Light-lf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Light-lf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Light-osf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Light-osf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Light-osf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Light-osf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Light-sup-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Light-sup-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Light-tlf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Light-tlf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Light-tlf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Light-tlf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Light-tosf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Light-tosf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Light-tosf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Light-tosf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-LightItalic-inf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-LightItalic-inf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-LightItalic-lf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-LightItalic-lf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-LightItalic-lf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-LightItalic-lf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-LightItalic-osf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-LightItalic-osf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-LightItalic-osf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-LightItalic-osf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-LightItalic-sup-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-LightItalic-sup-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-LightItalic-tlf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-LightItalic-tlf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-LightItalic-tlf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-LightItalic-tlf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-LightItalic-tosf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-LightItalic-tosf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-LightItalic-tosf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-LightItalic-tosf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Medium-inf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Medium-inf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Medium-lf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Medium-lf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Medium-lf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Medium-lf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Medium-osf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Medium-osf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Medium-osf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Medium-osf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Medium-sup-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Medium-sup-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Medium-tlf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Medium-tlf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Medium-tlf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Medium-tlf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Medium-tosf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Medium-tosf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Medium-tosf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Medium-tosf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-MediumItalic-inf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-MediumItalic-inf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-MediumItalic-lf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-MediumItalic-lf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-MediumItalic-lf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-MediumItalic-lf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-MediumItalic-osf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-MediumItalic-osf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-MediumItalic-osf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-MediumItalic-osf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-MediumItalic-sup-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-MediumItalic-sup-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-MediumItalic-tlf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-MediumItalic-tlf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-MediumItalic-tlf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-MediumItalic-tlf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-MediumItalic-tosf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-MediumItalic-tosf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-MediumItalic-tosf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-MediumItalic-tosf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Regular-inf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Regular-inf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Regular-lf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Regular-lf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Regular-lf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Regular-lf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Regular-osf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Regular-osf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Regular-osf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Regular-osf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Regular-sup-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Regular-sup-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Regular-tlf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Regular-tlf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Regular-tlf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Regular-tlf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Regular-tosf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Regular-tosf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Regular-tosf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Regular-tosf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Thin-inf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Thin-inf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Thin-lf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Thin-lf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Thin-lf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Thin-lf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Thin-osf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Thin-osf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Thin-osf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Thin-osf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Thin-sup-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Thin-sup-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Thin-tlf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Thin-tlf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Thin-tlf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Thin-tlf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Thin-tosf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Thin-tosf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Thin-tosf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-Thin-tosf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-ThinItalic-inf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-ThinItalic-inf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-ThinItalic-lf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-ThinItalic-lf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-ThinItalic-lf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-ThinItalic-lf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-ThinItalic-osf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-ThinItalic-osf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-ThinItalic-osf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-ThinItalic-osf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-ThinItalic-sup-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-ThinItalic-sup-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-ThinItalic-tlf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-ThinItalic-tlf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-ThinItalic-tlf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-ThinItalic-tlf-ts1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-ThinItalic-tosf-ly1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-ThinItalic-tosf-ot1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-ThinItalic-tosf-t1.vf
+ texmf-dist/fonts/vf/huerta/alegreya/AlegreyaSansSC-ThinItalic-tosf-ts1.vf
+ texmf-dist/tex/latex/alegreya/Alegreya.sty
+ texmf-dist/tex/latex/alegreya/AlegreyaSans.sty
+ texmf-dist/tex/latex/alegreya/LY1Alegreya-Inf.fd
+ texmf-dist/tex/latex/alegreya/LY1Alegreya-LF.fd
+ texmf-dist/tex/latex/alegreya/LY1Alegreya-OsF.fd
+ texmf-dist/tex/latex/alegreya/LY1Alegreya-Sup.fd
+ texmf-dist/tex/latex/alegreya/LY1Alegreya-TLF.fd
+ texmf-dist/tex/latex/alegreya/LY1Alegreya-TOsF.fd
+ texmf-dist/tex/latex/alegreya/LY1AlegreyaSC-TLF.fd
+ texmf-dist/tex/latex/alegreya/LY1AlegreyaSans-Inf.fd
+ texmf-dist/tex/latex/alegreya/LY1AlegreyaSans-LF.fd
+ texmf-dist/tex/latex/alegreya/LY1AlegreyaSans-OsF.fd
+ texmf-dist/tex/latex/alegreya/LY1AlegreyaSans-Sup.fd
+ texmf-dist/tex/latex/alegreya/LY1AlegreyaSans-TLF.fd
+ texmf-dist/tex/latex/alegreya/LY1AlegreyaSans-TOsF.fd
+ texmf-dist/tex/latex/alegreya/LY1AlegreyaSansSC-Inf.fd
+ texmf-dist/tex/latex/alegreya/LY1AlegreyaSansSC-LF.fd
+ texmf-dist/tex/latex/alegreya/LY1AlegreyaSansSC-OsF.fd
+ texmf-dist/tex/latex/alegreya/LY1AlegreyaSansSC-Sup.fd
+ texmf-dist/tex/latex/alegreya/LY1AlegreyaSansSC-TLF.fd
+ texmf-dist/tex/latex/alegreya/LY1AlegreyaSansSC-TOsF.fd
+ texmf-dist/tex/latex/alegreya/OT1Alegreya-Inf.fd
+ texmf-dist/tex/latex/alegreya/OT1Alegreya-LF.fd
+ texmf-dist/tex/latex/alegreya/OT1Alegreya-OsF.fd
+ texmf-dist/tex/latex/alegreya/OT1Alegreya-Sup.fd
+ texmf-dist/tex/latex/alegreya/OT1Alegreya-TLF.fd
+ texmf-dist/tex/latex/alegreya/OT1Alegreya-TOsF.fd
+ texmf-dist/tex/latex/alegreya/OT1AlegreyaSC-TLF.fd
+ texmf-dist/tex/latex/alegreya/OT1AlegreyaSans-Inf.fd
+ texmf-dist/tex/latex/alegreya/OT1AlegreyaSans-LF.fd
+ texmf-dist/tex/latex/alegreya/OT1AlegreyaSans-OsF.fd
+ texmf-dist/tex/latex/alegreya/OT1AlegreyaSans-Sup.fd
+ texmf-dist/tex/latex/alegreya/OT1AlegreyaSans-TLF.fd
+ texmf-dist/tex/latex/alegreya/OT1AlegreyaSans-TOsF.fd
+ texmf-dist/tex/latex/alegreya/OT1AlegreyaSansSC-Inf.fd
+ texmf-dist/tex/latex/alegreya/OT1AlegreyaSansSC-LF.fd
+ texmf-dist/tex/latex/alegreya/OT1AlegreyaSansSC-OsF.fd
+ texmf-dist/tex/latex/alegreya/OT1AlegreyaSansSC-Sup.fd
+ texmf-dist/tex/latex/alegreya/OT1AlegreyaSansSC-TLF.fd
+ texmf-dist/tex/latex/alegreya/OT1AlegreyaSansSC-TOsF.fd
+ texmf-dist/tex/latex/alegreya/T1Alegreya-Inf.fd
+ texmf-dist/tex/latex/alegreya/T1Alegreya-LF.fd
+ texmf-dist/tex/latex/alegreya/T1Alegreya-OsF.fd
+ texmf-dist/tex/latex/alegreya/T1Alegreya-Sup.fd
+ texmf-dist/tex/latex/alegreya/T1Alegreya-TLF.fd
+ texmf-dist/tex/latex/alegreya/T1Alegreya-TOsF.fd
+ texmf-dist/tex/latex/alegreya/T1AlegreyaSC-TLF.fd
+ texmf-dist/tex/latex/alegreya/T1AlegreyaSans-Inf.fd
+ texmf-dist/tex/latex/alegreya/T1AlegreyaSans-LF.fd
+ texmf-dist/tex/latex/alegreya/T1AlegreyaSans-OsF.fd
+ texmf-dist/tex/latex/alegreya/T1AlegreyaSans-Sup.fd
+ texmf-dist/tex/latex/alegreya/T1AlegreyaSans-TLF.fd
+ texmf-dist/tex/latex/alegreya/T1AlegreyaSans-TOsF.fd
+ texmf-dist/tex/latex/alegreya/T1AlegreyaSansSC-Inf.fd
+ texmf-dist/tex/latex/alegreya/T1AlegreyaSansSC-LF.fd
+ texmf-dist/tex/latex/alegreya/T1AlegreyaSansSC-OsF.fd
+ texmf-dist/tex/latex/alegreya/T1AlegreyaSansSC-Sup.fd
+ texmf-dist/tex/latex/alegreya/T1AlegreyaSansSC-TLF.fd
+ texmf-dist/tex/latex/alegreya/T1AlegreyaSansSC-TOsF.fd
+ texmf-dist/tex/latex/alegreya/TS1Alegreya-LF.fd
+ texmf-dist/tex/latex/alegreya/TS1Alegreya-OsF.fd
+ texmf-dist/tex/latex/alegreya/TS1Alegreya-TLF.fd
+ texmf-dist/tex/latex/alegreya/TS1Alegreya-TOsF.fd
+ texmf-dist/tex/latex/alegreya/TS1AlegreyaSC-TLF.fd
+ texmf-dist/tex/latex/alegreya/TS1AlegreyaSans-LF.fd
+ texmf-dist/tex/latex/alegreya/TS1AlegreyaSans-OsF.fd
+ texmf-dist/tex/latex/alegreya/TS1AlegreyaSans-TLF.fd
+ texmf-dist/tex/latex/alegreya/TS1AlegreyaSans-TOsF.fd
+ texmf-dist/tex/latex/alegreya/TS1AlegreyaSansSC-LF.fd
+ texmf-dist/tex/latex/alegreya/TS1AlegreyaSansSC-OsF.fd
+ texmf-dist/tex/latex/alegreya/TS1AlegreyaSansSC-TLF.fd
+ texmf-dist/tex/latex/alegreya/TS1AlegreyaSansSC-TOsF.fd
+catalogue-ctan /fonts/alegreya
+catalogue-date 2014-05-22 16:28:18 +0200
+catalogue-license ofl
+
name aleph
category Package
-revision 29764
+revision 33736
shortdesc Extended TeX.
longdesc An development of omega, using most of the extensions of TeX
longdesc itself developed for e-TeX.
@@ -8385,7 +10732,7 @@ catalogue-version RC2
name aleph.alpha-linux
category Package
-revision 29891
+revision 33553
shortdesc alpha-linux files of aleph
binfiles arch=alpha-linux size=168
bin/alpha-linux/aleph
@@ -8393,7 +10740,7 @@ binfiles arch=alpha-linux size=168
name aleph.amd64-freebsd
category Package
-revision 29874
+revision 33488
shortdesc amd64-freebsd files of aleph
binfiles arch=amd64-freebsd size=141
bin/amd64-freebsd/aleph
@@ -8401,7 +10748,7 @@ binfiles arch=amd64-freebsd size=141
name aleph.amd64-kfreebsd
category Package
-revision 30655
+revision 34100
shortdesc amd64-kfreebsd files of aleph
binfiles arch=amd64-kfreebsd size=134
bin/amd64-kfreebsd/aleph
@@ -8409,7 +10756,7 @@ binfiles arch=amd64-kfreebsd size=134
name aleph.amd64-netbsd
category Package
-revision 30660
+revision 33726
shortdesc amd64-netbsd files of aleph
binfiles arch=amd64-netbsd size=141
bin/amd64-netbsd/aleph
@@ -8417,15 +10764,15 @@ binfiles arch=amd64-netbsd size=141
name aleph.armel-linux
category Package
-revision 29888
+revision 33916
shortdesc armel-linux files of aleph
-binfiles arch=armel-linux size=133
+binfiles arch=armel-linux size=134
bin/armel-linux/aleph
bin/armel-linux/lamed
name aleph.armhf-linux
category Package
-revision 30443
+revision 34125
shortdesc armhf-linux files of aleph
binfiles arch=armhf-linux size=127
bin/armhf-linux/aleph
@@ -8433,15 +10780,15 @@ binfiles arch=armhf-linux size=127
name aleph.i386-cygwin
category Package
-revision 30526
+revision 34161
shortdesc i386-cygwin files of aleph
-binfiles arch=i386-cygwin size=124
+binfiles arch=i386-cygwin size=130
bin/i386-cygwin/aleph.exe
bin/i386-cygwin/lamed
name aleph.i386-freebsd
category Package
-revision 29874
+revision 33488
shortdesc i386-freebsd files of aleph
binfiles arch=i386-freebsd size=132
bin/i386-freebsd/aleph
@@ -8449,7 +10796,7 @@ binfiles arch=i386-freebsd size=132
name aleph.i386-kfreebsd
category Package
-revision 30440
+revision 34100
shortdesc i386-kfreebsd files of aleph
binfiles arch=i386-kfreebsd size=129
bin/i386-kfreebsd/aleph
@@ -8457,63 +10804,55 @@ binfiles arch=i386-kfreebsd size=129
name aleph.i386-linux
category Package
-revision 30088
+revision 33479
shortdesc i386-linux files of aleph
-binfiles arch=i386-linux size=130
+binfiles arch=i386-linux size=136
bin/i386-linux/aleph
bin/i386-linux/lamed
name aleph.i386-netbsd
category Package
-revision 30191
+revision 33562
shortdesc i386-netbsd files of aleph
-binfiles arch=i386-netbsd size=126
+binfiles arch=i386-netbsd size=127
bin/i386-netbsd/aleph
bin/i386-netbsd/lamed
name aleph.i386-solaris
category Package
-revision 30112
+revision 34203
shortdesc i386-solaris files of aleph
-binfiles arch=i386-solaris size=165
+binfiles arch=i386-solaris size=163
bin/i386-solaris/aleph
bin/i386-solaris/lamed
-name aleph.mips-irix
-category Package
-revision 30131
-shortdesc mips-irix files of aleph
-binfiles arch=mips-irix size=261
- bin/mips-irix/aleph
- bin/mips-irix/lamed
-
name aleph.mipsel-linux
category Package
-revision 29995
+revision 34099
shortdesc mipsel-linux files of aleph
-binfiles arch=mipsel-linux size=179
+binfiles arch=mipsel-linux size=146
bin/mipsel-linux/aleph
bin/mipsel-linux/lamed
name aleph.powerpc-linux
category Package
-revision 30114
+revision 34101
shortdesc powerpc-linux files of aleph
-binfiles arch=powerpc-linux size=149
+binfiles arch=powerpc-linux size=136
bin/powerpc-linux/aleph
bin/powerpc-linux/lamed
name aleph.sparc-solaris
category Package
-revision 29877
+revision 33871
shortdesc sparc-solaris files of aleph
-binfiles arch=sparc-solaris size=154
+binfiles arch=sparc-solaris size=149
bin/sparc-solaris/aleph
bin/sparc-solaris/lamed
name aleph.universal-darwin
category Package
-revision 30764
+revision 34201
shortdesc universal-darwin files of aleph
binfiles arch=universal-darwin size=281
bin/universal-darwin/aleph
@@ -8521,16 +10860,24 @@ binfiles arch=universal-darwin size=281
name aleph.win32
category Package
-revision 29816
+revision 33897
shortdesc win32 files of aleph
-binfiles arch=win32 size=107
+binfiles arch=win32 size=112
bin/win32/aleph.dll
bin/win32/aleph.exe
bin/win32/lamed.exe
+name aleph.x86_64-cygwin
+category Package
+revision 34161
+shortdesc x86_64-cygwin files of aleph
+binfiles arch=x86_64-cygwin size=133
+ bin/x86_64-cygwin/aleph.exe
+ bin/x86_64-cygwin/lamed
+
name aleph.x86_64-darwin
category Package
-revision 29879
+revision 34201
shortdesc x86_64-darwin files of aleph
binfiles arch=x86_64-darwin size=151
bin/x86_64-darwin/aleph
@@ -8538,7 +10885,7 @@ binfiles arch=x86_64-darwin size=151
name aleph.x86_64-linux
category Package
-revision 30204
+revision 33723
shortdesc x86_64-linux files of aleph
binfiles arch=x86_64-linux size=136
bin/x86_64-linux/aleph
@@ -8546,9 +10893,9 @@ binfiles arch=x86_64-linux size=136
name aleph.x86_64-solaris
category Package
-revision 30112
+revision 34203
shortdesc x86_64-solaris files of aleph
-binfiles arch=x86_64-solaris size=190
+binfiles arch=x86_64-solaris size=188
bin/x86_64-solaris/aleph
bin/x86_64-solaris/lamed
@@ -9127,7 +11474,7 @@ runfiles size=2728
texmf-dist/tex/latex/allrunes/arn.fd
texmf-dist/tex/latex/allrunes/art.fd
catalogue-ctan /fonts/allrunes
-catalogue-date 2012-02-09 16:17:32 +0100
+catalogue-date 2014-04-03 23:09:57 +0200
catalogue-license lppl
catalogue-version 2.1
@@ -9150,7 +11497,7 @@ srcfiles size=7
runfiles size=3
texmf-dist/tex/latex/alnumsec/alnumsec.sty
catalogue-ctan /macros/latex/contrib/alnumsec
-catalogue-date 2012-04-13 13:58:18 +0200
+catalogue-date 2013-11-21 20:02:41 +0100
catalogue-license lppl
catalogue-version v0.03
@@ -9205,7 +11552,7 @@ docfiles size=399
runfiles size=6
texmf-dist/tex/latex/alterqcm/alterqcm.sty
catalogue-ctan /macros/latex/contrib/alterqcm
-catalogue-date 2012-06-07 20:36:04 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 3.7c
@@ -9263,13 +11610,13 @@ runfiles size=14
texmf-dist/tex/latex/ametsoc/ametsoc.sty
texmf-dist/tex/latex/ametsoc/ametsoc2col.sty
catalogue-ctan /macros/latex/contrib/ametsoc
-catalogue-date 2012-06-08 00:21:14 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 3.0
name amiri
category Package
-revision 30816
+revision 32506
shortdesc A classical Arabic typeface, Naskh style.
longdesc This is a beta-release of the font, though it is believed to be
longdesc largely usable. (The author retains the right to make
@@ -9277,7 +11624,7 @@ longdesc incompatible changes in the future.) The font covers the Arabic
longdesc and Arabic Supplement blocks of Unicode 6.0, which means it
longdesc essentially covers any language written in Arabic script and
longdesc supported by Unicode.
-docfiles size=2060
+docfiles size=2096
texmf-dist/doc/fonts/amiri/Makefile
texmf-dist/doc/fonts/amiri/OFL-FAQ.txt
texmf-dist/doc/fonts/amiri/OFL.txt
@@ -9288,6 +11635,7 @@ docfiles size=2060
texmf-dist/doc/fonts/amiri/documentation/README.txt
texmf-dist/doc/fonts/amiri/documentation/amiri-table.pdf details="Font table"
texmf-dist/doc/fonts/amiri/documentation/documentation-arabic.pdf
+ texmf-dist/doc/fonts/amiri/documentation/documentation-sources/documentation-arabic.tex
texmf-dist/doc/fonts/amiri/sources/amiri-bold.sfd
texmf-dist/doc/fonts/amiri/sources/amiri-regular.sfd
texmf-dist/doc/fonts/amiri/sources/amiri.fea
@@ -9325,16 +11673,16 @@ docfiles size=2060
texmf-dist/doc/fonts/amiri/test-suite/small_alef.ptest
texmf-dist/doc/fonts/amiri/tools/build.py
texmf-dist/doc/fonts/amiri/tools/runtest.py
-runfiles size=648
+runfiles size=566
texmf-dist/fonts/truetype/public/amiri/amiri-bold.ttf
texmf-dist/fonts/truetype/public/amiri/amiri-boldslanted.ttf
texmf-dist/fonts/truetype/public/amiri/amiri-quran.ttf
texmf-dist/fonts/truetype/public/amiri/amiri-regular.ttf
texmf-dist/fonts/truetype/public/amiri/amiri-slanted.ttf
catalogue-ctan /fonts/amiri
-catalogue-date 2012-12-31 19:16:18 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license ofl
-catalogue-version 0.105
+catalogue-version 0.107
name amsaddr
category Package
@@ -9354,7 +11702,7 @@ srcfiles size=4
runfiles size=1
texmf-dist/tex/latex/amsaddr/amsaddr.sty
catalogue-ctan /macros/latex/contrib/amsaddr
-catalogue-date 2013-04-03 11:32:41 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.1
@@ -10069,7 +12417,7 @@ runfiles size=1879
texmf-dist/tex/plain/amsfonts/amssym.tex
texmf-dist/tex/plain/amsfonts/cyracc.def
catalogue-ctan /fonts/amsfonts
-catalogue-date 2013-01-28 18:05:09 +0100
+catalogue-date 2014-04-26 12:45:28 +0200
catalogue-license ofl
catalogue-version 3.04
@@ -10083,9 +12431,9 @@ longdesc file template.tex) are not a substitute for the full
longdesc documentation, but they may get you started quickly enough so
longdesc that you will only need to refer to the main documentation
longdesc occasionally. In addition to 'AMS-LaTeX out of the box', the
-longdesc document contains: - a section describing how to draw
-longdesc commutative diagrams using Xy-pic; and - a section describing
-longdesc how to use amsrefs to create a bibliography.
+longdesc document contains: a section describing how to draw commutative
+longdesc diagrams using Xy-pic; and a section describing how to use
+longdesc amsrefs to create a bibliography.
docfiles size=177
texmf-dist/doc/latex/amslatex-primer/README details="Readme"
texmf-dist/doc/latex/amslatex-primer/amshelp.md5
@@ -10093,7 +12441,7 @@ docfiles size=177
texmf-dist/doc/latex/amslatex-primer/amshelp.tex
texmf-dist/doc/latex/amslatex-primer/template.tex
catalogue-ctan /info/amslatex/primer
-catalogue-date 2013-01-29 00:01:00 +0100
+catalogue-date 2013-11-22 17:11:31 +0100
catalogue-license lppl
catalogue-version 2.3
@@ -10200,7 +12548,7 @@ docfiles size=12
texmf-dist/doc/latex/amsmath-it/amsmath.faq
texmf-dist/doc/latex/amsmath-it/diffs-m_it.txt
catalogue-ctan /info/translations/amsmath/it
-catalogue-date 2012-07-20 20:01:19 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
name amsrefs
@@ -10270,7 +12618,7 @@ catalogue-version 2.14
name amstex
category Package
-revision 29764
+revision 33736
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 1983-
@@ -10390,13 +12738,6 @@ shortdesc i386-solaris files of amstex
binfiles arch=i386-solaris size=1
bin/i386-solaris/amstex
-name amstex.mips-irix
-category Package
-revision 29975
-shortdesc mips-irix files of amstex
-binfiles arch=mips-irix size=1
- bin/mips-irix/amstex
-
name amstex.mipsel-linux
category Package
revision 29946
@@ -10427,11 +12768,18 @@ binfiles arch=universal-darwin size=1
name amstex.win32
category Package
-revision 8086
+revision 33512
shortdesc win32 files of amstex
binfiles arch=win32 size=1
bin/win32/amstex.exe
+name amstex.x86_64-cygwin
+category Package
+revision 33557
+shortdesc x86_64-cygwin files of amstex
+binfiles arch=x86_64-cygwin size=1
+ bin/x86_64-cygwin/amstex
+
name amstex.x86_64-darwin
category Package
revision 18441
@@ -10463,14 +12811,14 @@ docfiles size=32
name animate
category Package
-revision 30092
+revision 33287
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=934
+docfiles size=949
texmf-dist/doc/latex/animate/ChangeLog
texmf-dist/doc/latex/animate/README details="Readme"
texmf-dist/doc/latex/animate/animate.pdf details="Package documentation"
@@ -10488,7 +12836,7 @@ runfiles size=32
texmf-dist/tex/latex/animate/animate.sty
texmf-dist/tex/latex/animate/animfp.sty
catalogue-ctan /macros/latex/contrib/animate
-catalogue-date 2013-04-23 16:22:57 +0200
+catalogue-date 2014-03-25 20:37:10 +0100
catalogue-license lppl
name anonchap
@@ -10510,6 +12858,110 @@ catalogue-date 2012-05-24 15:26:23 +0200
catalogue-license lppl
catalogue-version 1.1a
+name anonymouspro
+category Package
+revision 33441
+shortdesc Use AnonymousPro fonts with LaTeX.
+longdesc The fonts are a monowidth set, designed for use by coders. They
+longdesc appear as a set of four TrueType, or Adobe Type 1 font files,
+longdesc and LaTeX support is also provided.
+execute addMap AnonymousPro.map
+docfiles size=111
+ texmf-dist/doc/fonts/anonymouspro/AnonymousPro-01.etx
+ texmf-dist/doc/fonts/anonymouspro/AnonymousPro-02.etx
+ texmf-dist/doc/fonts/anonymouspro/AnonymousPro-03.etx
+ texmf-dist/doc/fonts/anonymouspro/AnonymousPro-drv.tex
+ texmf-dist/doc/fonts/anonymouspro/AnonymousPro-map.tex
+ texmf-dist/doc/fonts/anonymouspro/AnonymousPro-symbols.etx
+ texmf-dist/doc/fonts/anonymouspro/AnonymousPro.pdf
+ texmf-dist/doc/fonts/anonymouspro/FONTLOG.txt
+ texmf-dist/doc/fonts/anonymouspro/OFL.txt
+ texmf-dist/doc/fonts/anonymouspro/README details="Readme"
+ texmf-dist/doc/fonts/anonymouspro/README_Mark-Simonson.txt
+ texmf-dist/doc/fonts/anonymouspro/anonymouspro-fixlatin.mtx
+ texmf-dist/doc/fonts/anonymouspro/anonymouspro-fixtextcomp.mtx
+srcfiles size=17
+ texmf-dist/source/fonts/anonymouspro/AnonymousPro.dtx
+ texmf-dist/source/fonts/anonymouspro/AnonymousPro.ins
+runfiles size=312
+ texmf-dist/fonts/afm/public/anonymouspro/AnonymousPro-Bold.afm
+ texmf-dist/fonts/afm/public/anonymouspro/AnonymousPro-BoldItalic.afm
+ texmf-dist/fonts/afm/public/anonymouspro/AnonymousPro-Italic.afm
+ texmf-dist/fonts/afm/public/anonymouspro/AnonymousPro-Regular.afm
+ texmf-dist/fonts/enc/dvips/anonymouspro/AnonymousPro-01.enc
+ texmf-dist/fonts/enc/dvips/anonymouspro/AnonymousPro-02.enc
+ texmf-dist/fonts/enc/dvips/anonymouspro/AnonymousPro-03.enc
+ texmf-dist/fonts/enc/dvips/anonymouspro/AnonymousPro-symbols.enc
+ texmf-dist/fonts/map/dvips/anonymouspro/AnonymousPro.map
+ texmf-dist/fonts/tfm/public/anonymouspro/AnonymousPro-Bold-01.tfm
+ texmf-dist/fonts/tfm/public/anonymouspro/AnonymousPro-Bold-02.tfm
+ texmf-dist/fonts/tfm/public/anonymouspro/AnonymousPro-Bold-03.tfm
+ texmf-dist/fonts/tfm/public/anonymouspro/AnonymousPro-Bold-Symbols-base.tfm
+ texmf-dist/fonts/tfm/public/anonymouspro/AnonymousPro-Bold-Symbols-u.tfm
+ texmf-dist/fonts/tfm/public/anonymouspro/AnonymousPro-Bold-base.tfm
+ texmf-dist/fonts/tfm/public/anonymouspro/AnonymousPro-Bold-t1.tfm
+ texmf-dist/fonts/tfm/public/anonymouspro/AnonymousPro-Bold-ts1.tfm
+ texmf-dist/fonts/tfm/public/anonymouspro/AnonymousPro-Bold.tfm
+ texmf-dist/fonts/tfm/public/anonymouspro/AnonymousPro-BoldItalic-01.tfm
+ texmf-dist/fonts/tfm/public/anonymouspro/AnonymousPro-BoldItalic-02.tfm
+ texmf-dist/fonts/tfm/public/anonymouspro/AnonymousPro-BoldItalic-03.tfm
+ texmf-dist/fonts/tfm/public/anonymouspro/AnonymousPro-BoldItalic-Symbols-base.tfm
+ texmf-dist/fonts/tfm/public/anonymouspro/AnonymousPro-BoldItalic-Symbols-u.tfm
+ texmf-dist/fonts/tfm/public/anonymouspro/AnonymousPro-BoldItalic-base.tfm
+ texmf-dist/fonts/tfm/public/anonymouspro/AnonymousPro-BoldItalic-t1.tfm
+ texmf-dist/fonts/tfm/public/anonymouspro/AnonymousPro-BoldItalic-ts1.tfm
+ texmf-dist/fonts/tfm/public/anonymouspro/AnonymousPro-BoldItalic.tfm
+ texmf-dist/fonts/tfm/public/anonymouspro/AnonymousPro-BoldSC-t1.tfm
+ texmf-dist/fonts/tfm/public/anonymouspro/AnonymousPro-Italic-01.tfm
+ texmf-dist/fonts/tfm/public/anonymouspro/AnonymousPro-Italic-02.tfm
+ texmf-dist/fonts/tfm/public/anonymouspro/AnonymousPro-Italic-03.tfm
+ texmf-dist/fonts/tfm/public/anonymouspro/AnonymousPro-Italic-Symbols-base.tfm
+ texmf-dist/fonts/tfm/public/anonymouspro/AnonymousPro-Italic-Symbols-u.tfm
+ texmf-dist/fonts/tfm/public/anonymouspro/AnonymousPro-Italic-base.tfm
+ texmf-dist/fonts/tfm/public/anonymouspro/AnonymousPro-Italic-t1.tfm
+ texmf-dist/fonts/tfm/public/anonymouspro/AnonymousPro-Italic-ts1.tfm
+ texmf-dist/fonts/tfm/public/anonymouspro/AnonymousPro-Italic.tfm
+ texmf-dist/fonts/tfm/public/anonymouspro/AnonymousPro-Regular-01.tfm
+ texmf-dist/fonts/tfm/public/anonymouspro/AnonymousPro-Regular-02.tfm
+ texmf-dist/fonts/tfm/public/anonymouspro/AnonymousPro-Regular-03.tfm
+ texmf-dist/fonts/tfm/public/anonymouspro/AnonymousPro-Regular-Symbols-base.tfm
+ texmf-dist/fonts/tfm/public/anonymouspro/AnonymousPro-Regular-Symbols-u.tfm
+ texmf-dist/fonts/tfm/public/anonymouspro/AnonymousPro-Regular-base.tfm
+ texmf-dist/fonts/tfm/public/anonymouspro/AnonymousPro-Regular-t1.tfm
+ texmf-dist/fonts/tfm/public/anonymouspro/AnonymousPro-Regular-ts1.tfm
+ texmf-dist/fonts/tfm/public/anonymouspro/AnonymousPro-Regular.tfm
+ texmf-dist/fonts/tfm/public/anonymouspro/AnonymousPro-RegularSC-t1.tfm
+ texmf-dist/fonts/truetype/public/anonymouspro/AnonymousPro-Bold.ttf
+ texmf-dist/fonts/truetype/public/anonymouspro/AnonymousPro-BoldItalic.ttf
+ texmf-dist/fonts/truetype/public/anonymouspro/AnonymousPro-Italic.ttf
+ texmf-dist/fonts/truetype/public/anonymouspro/AnonymousPro-Regular.ttf
+ texmf-dist/fonts/type1/public/anonymouspro/AnonymousPro-Bold.pfb
+ texmf-dist/fonts/type1/public/anonymouspro/AnonymousPro-BoldItalic.pfb
+ texmf-dist/fonts/type1/public/anonymouspro/AnonymousPro-Italic.pfb
+ texmf-dist/fonts/type1/public/anonymouspro/AnonymousPro-Regular.pfb
+ texmf-dist/fonts/vf/public/anonymouspro/AnonymousPro-Bold-Symbols-u.vf
+ texmf-dist/fonts/vf/public/anonymouspro/AnonymousPro-Bold-t1.vf
+ texmf-dist/fonts/vf/public/anonymouspro/AnonymousPro-Bold-ts1.vf
+ texmf-dist/fonts/vf/public/anonymouspro/AnonymousPro-BoldItalic-Symbols-u.vf
+ texmf-dist/fonts/vf/public/anonymouspro/AnonymousPro-BoldItalic-t1.vf
+ texmf-dist/fonts/vf/public/anonymouspro/AnonymousPro-BoldItalic-ts1.vf
+ texmf-dist/fonts/vf/public/anonymouspro/AnonymousPro-BoldSC-t1.vf
+ texmf-dist/fonts/vf/public/anonymouspro/AnonymousPro-Italic-Symbols-u.vf
+ texmf-dist/fonts/vf/public/anonymouspro/AnonymousPro-Italic-t1.vf
+ texmf-dist/fonts/vf/public/anonymouspro/AnonymousPro-Italic-ts1.vf
+ texmf-dist/fonts/vf/public/anonymouspro/AnonymousPro-Regular-Symbols-u.vf
+ texmf-dist/fonts/vf/public/anonymouspro/AnonymousPro-Regular-t1.vf
+ texmf-dist/fonts/vf/public/anonymouspro/AnonymousPro-Regular-ts1.vf
+ texmf-dist/fonts/vf/public/anonymouspro/AnonymousPro-RegularSC-t1.vf
+ texmf-dist/tex/latex/anonymouspro/AnonymousPro.sty
+ texmf-dist/tex/latex/anonymouspro/t1anonymouspro.fd
+ texmf-dist/tex/latex/anonymouspro/ts1anonymouspro.fd
+ texmf-dist/tex/latex/anonymouspro/uanonymouspro.fd
+catalogue-ctan /fonts/anonymouspro
+catalogue-date 2014-04-13 18:34:56 +0200
+catalogue-license lppl1.3
+catalogue-version 2.1
+
name answers
category Package
revision 20070
@@ -11244,7 +13696,7 @@ docfiles size=48
runfiles size=1
texmf-dist/tex/latex/anyfontsize/anyfontsize.sty
catalogue-ctan /macros/latex/contrib/anyfontsize
-catalogue-date 2012-04-27 17:08:26 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
name anysize
@@ -11264,6 +13716,29 @@ catalogue-ctan /macros/latex/contrib/anysize
catalogue-date 2012-04-17 00:02:56 +0200
catalogue-license pd
+name aobs-tikz
+category Package
+revision 32662
+shortdesc TikZ styles for creating overlaid pictures in beamer.
+longdesc The package defines auxiliary TikZ styles useful for overlaying
+longdesc pictures' elements in Beamer. The TikZ styles are grouped in a
+longdesc library, overlay-beamer-styles which is automatically called by
+longdesc the package itself. Users may either load just aobs-tikz or the
+longdesc library; the latter method necessitates TikZ manual load.
+docfiles size=25
+ texmf-dist/doc/latex/aobs-tikz/README details="Readme"
+ texmf-dist/doc/latex/aobs-tikz/aobs-tikz.pdf details="Package documentation"
+ texmf-dist/doc/latex/aobs-tikz/example.tex
+srcfiles size=6
+ texmf-dist/source/latex/aobs-tikz/aobs-tikz.dtx
+ texmf-dist/source/latex/aobs-tikz/aobs-tikz.ins
+runfiles size=1
+ texmf-dist/tex/latex/aobs-tikz/tikzlibraryoverlay-beamer-styles.code.tex
+catalogue-ctan /graphics/pgf/contrib/aobs-tikz
+catalogue-date 2014-02-26 23:03:13 +0100
+catalogue-license lppl1.3
+catalogue-version 1.0
+
name aomart
category Package
revision 28096
@@ -11289,7 +13764,7 @@ runfiles size=19
texmf-dist/bibtex/bst/aomart/aomplain.bst
texmf-dist/tex/latex/aomart/aomart.cls
catalogue-ctan /macros/latex/contrib/aomart
-catalogue-date 2012-10-29 11:40:19 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.13
@@ -11329,7 +13804,7 @@ catalogue-version 1.3.4
name apa6
category Package
-revision 28802
+revision 30957
shortdesc Format documents in APA style (6th edition).
longdesc The class formats documents in APA style (6th Edition). It
longdesc provides a full set of facilities in three different output
@@ -11351,7 +13826,7 @@ docfiles size=163
texmf-dist/doc/latex/apa6/samples/bibliography.bib
texmf-dist/doc/latex/apa6/samples/longsample.tex
texmf-dist/doc/latex/apa6/samples/shortsample.tex
-srcfiles size=43
+srcfiles size=44
texmf-dist/source/latex/apa6/apa6.dtx
texmf-dist/source/latex/apa6/apa6.ins
runfiles size=26
@@ -11366,9 +13841,9 @@ runfiles size=26
texmf-dist/tex/latex/apa6/config/APAgreek.txt
texmf-dist/tex/latex/apa6/config/APAngerman.txt
catalogue-ctan /macros/latex/contrib/apa6
-catalogue-date 2013-01-11 11:26:14 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
-catalogue-version 2.12
+catalogue-version 2.13
name apa6e
category Package
@@ -11387,13 +13862,13 @@ srcfiles size=7
runfiles size=2
texmf-dist/tex/latex/apa6e/apa6e.cls
catalogue-ctan /macros/latex/contrib/apa6e
-catalogue-date 2012-10-20 22:28:24 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license bsd
catalogue-version 0.3
name apacite
category Package
-revision 25515
+revision 31264
shortdesc Citation style following the rules of the APA.
longdesc Apacite provides a BibTeX style and a LaTeX package which are
longdesc designed to match the requirements of the American
@@ -11409,11 +13884,11 @@ docfiles size=177
texmf-dist/doc/bibtex/apacite/apa5ex.bib
texmf-dist/doc/bibtex/apacite/apacite.pdf details="Package documentation"
texmf-dist/doc/bibtex/apacite/apacxmpl.tex
-srcfiles size=208
+srcfiles size=212
texmf-dist/source/bibtex/apacite/apacite.drv
texmf-dist/source/bibtex/apacite/apacite.dtx
texmf-dist/source/bibtex/apacite/apacite.ins
-runfiles size=193
+runfiles size=189
texmf-dist/bibtex/bst/apacite/apacann.bst
texmf-dist/bibtex/bst/apacite/apacannx.bst
texmf-dist/bibtex/bst/apacite/apacite.bst
@@ -11431,9 +13906,9 @@ runfiles size=193
texmf-dist/tex/latex/apacite/spanish.apc
texmf-dist/tex/latex/apacite/swedish.apc
catalogue-ctan /biblio/bibtex/contrib/apacite
-catalogue-date 2012-02-26 23:50:03 +0100
+catalogue-date 2013-07-22 09:44:36 +0200
catalogue-license lppl
-catalogue-version 6.01
+catalogue-version 6.03
name apalike2
category Package
@@ -11444,7 +13919,7 @@ longdesc the base bibtex distribution).
runfiles size=7
texmf-dist/bibtex/bst/apalike2/apalike2.bst
catalogue-ctan /biblio/bibtex/contrib/apalike2/apalike2.bst
-catalogue-date 2012-02-26 12:07:30 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license knuth
name appendix
@@ -11486,7 +13961,7 @@ docfiles size=1
runfiles size=1
texmf-dist/tex/latex/appendixnumberbeamer/appendixnumberbeamer.sty
catalogue-ctan /macros/latex/contrib/beamer-contrib/appendixnumberbeamer
-catalogue-date 2012-04-01 12:42:23 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license gpl3
name apprends-latex
@@ -11526,7 +14001,7 @@ docfiles size=713
texmf-dist/doc/latex/apprends-latex/latexmkrc
texmf-dist/doc/latex/apprends-latex/typographie.bib
catalogue-ctan /info/apprends-latex
-catalogue-date 2012-05-04 14:24:48 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 4.02
@@ -11549,7 +14024,7 @@ srcfiles size=6
runfiles size=1
texmf-dist/tex/latex/apptools/apptools.sty
catalogue-ctan /macros/latex/contrib/apptools
-catalogue-date 2012-12-05 12:44:11 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.0
@@ -11557,17 +14032,16 @@ name arabi
category Package
revision 25095
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, and in a
-longdesc way that is compatible with babel. The bi-directional
-longdesc capability supposes that the user has a TeX engine that knows
-longdesc the four primitives \beginR, \endR, \beginL and \endL. That is
-longdesc the case in both the TeX--XeT and e-TeX engines. Arabi will
-longdesc accept input in several 8-bit encodings, including UTF-8. Arabi
-longdesc can make use of a wide variety of Arabic and Farsi fonts, and
-longdesc provides one of its own. PDF files generated using Arabi may be
-longdesc searched, and text may be copied from them and pasted
-longdesc elsewhere.
+longdesc The package provides an Arabic and Farsi script support for TeX
+longdesc without the need of any external pre-processor, and in a way
+longdesc that is compatible with babel. The bi-directional capability
+longdesc supposes that the user has a TeX engine that knows the four
+longdesc primitives \beginR, \endR, \beginL and \endL. That is the case
+longdesc in both the TeX--XeT and e-TeX engines. Arabi will accept input
+longdesc in several 8-bit encodings, including UTF-8. Arabi can make use
+longdesc of a wide variety of Arabic and Farsi fonts, and provides one
+longdesc of its own. PDF files generated using Arabi may be searched,
+longdesc and text may be copied from them and pasted elsewhere.
execute addMap arabi.map
docfiles size=755
texmf-dist/doc/latex/arabi/README details="Readme"
@@ -11778,7 +14252,7 @@ runfiles size=1025
texmf-dist/tex/latex/arabi/transcmr.fd
texmf-dist/tex/latex/arabi/translit.sty
catalogue-ctan /language/arabic/arabi
-catalogue-date 2012-11-30 13:07:52 +0100
+catalogue-date 2014-04-05 19:55:22 +0200
catalogue-license lppl
catalogue-version 1.1
@@ -11959,7 +14433,7 @@ runfiles size=306
texmf-dist/tex/latex/arabtex/xarbsymb.sty
texmf-dist/tex/latex/arabtex/yiddish.sty
catalogue-ctan /language/arabic/arabtex
-catalogue-date 2012-03-28 12:03:38 +0200
+catalogue-date 2014-04-05 19:55:22 +0200
catalogue-license lppl
catalogue-version 3.17
@@ -12138,7 +14612,7 @@ runfiles size=376
texmf-dist/fonts/misc/xetex/fontmapping/arabxetex/mirrorpunct.tec
texmf-dist/tex/xelatex/arabxetex/arabxetex.sty
catalogue-ctan /macros/xetex/latex/arabxetex
-catalogue-date 2013-02-22 12:55:37 +0100
+catalogue-date 2014-02-23 15:42:04 +0100
catalogue-license lppl
catalogue-version v1.1.4
@@ -12147,7 +14621,7 @@ category Package
revision 30042
shortdesc Fonts and LaTeX for Syriac written in Serto.
longdesc This package enables (La)TeX users to typeset words or phrases
-longdesc (e-tex extensions are needed) in Syriac (Aramaic) using the
+longdesc (e-TeX extensions are needed) in Syriac (Aramaic) using the
longdesc Serto-alphabet. The package includes a preprocessor written in
longdesc Python (>= 1.5.2) in order to deal with right-to-left
longdesc typesetting for those who do not want to use elatex and to
@@ -12194,7 +14668,7 @@ runfiles size=78
texmf-dist/tex/latex/aramaic-serto/uassyr.fd
texmf-dist/tex/latex/aramaic-serto/userto.fd
catalogue-ctan /language/aramaic/serto
-catalogue-date 2013-04-18 13:30:17 +0200
+catalogue-date 2014-04-05 19:55:22 +0200
catalogue-license lppl1.3
catalogue-version 1.0
@@ -12299,7 +14773,7 @@ runfiles size=663
texmf-dist/scripts/arara/rules/xelatexmk.yaml
texmf-dist/scripts/arara/rules/xetex.yaml
catalogue-ctan /support/arara
-catalogue-date 2013-02-06 08:25:13 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license bsd
catalogue-version 3.0
@@ -12387,13 +14861,6 @@ shortdesc i386-solaris files of arara
binfiles arch=i386-solaris size=1
bin/i386-solaris/arara
-name arara.mips-irix
-category Package
-revision 29949
-shortdesc mips-irix files of arara
-binfiles arch=mips-irix size=1
- bin/mips-irix/arara
-
name arara.mipsel-linux
category Package
revision 29946
@@ -12429,6 +14896,13 @@ shortdesc win32 files of arara
binfiles arch=win32 size=1
bin/win32/arara.exe
+name arara.x86_64-cygwin
+category Package
+revision 33557
+shortdesc x86_64-cygwin files of arara
+binfiles arch=x86_64-cygwin size=1
+ bin/x86_64-cygwin/arara
+
name arara.x86_64-darwin
category Package
revision 29036
@@ -12825,8 +15299,106 @@ runfiles size=392
texmf-dist/tex/latex/arev/t1fav.fd
texmf-dist/tex/latex/arev/uzavm.fd
catalogue-ctan /fonts/arev
-catalogue-date 2012-07-10 18:23:15 +0200
-catalogue-license lppl
+catalogue-date 2014-04-05 20:24:32 +0200
+catalogue-license lppl
+
+name armtex
+category Package
+revision 33894
+shortdesc A sytem for writing Armenian with TeX and LaTeX.
+longdesc ArmTeX is a system for typesetting Armenian text with Plain TeX
+longdesc or LaTeX(2e). It may be used with input: from a standard Latin
+longdesc keyboard without any special encoding and/or support for
+longdesc Armenian letters, any keyboard which uses an encoding that has
+longdesc Armenian letters in the second half (characters 128-255) of the
+longdesc extended ASCII table (for example ArmSCII8 Armenian standard),
+longdesc or encoded in UTF-8. Users should note that the manuals (below)
+longdesc mostly describe the previous (version 2.0) of the package.
+longdesc Updating work is still under way.
+execute addMixedMap arss.map
+execute addMixedMap artm.map
+docfiles size=175
+ texmf-dist/doc/generic/armenian/examples/latex/alphabet.tex
+ texmf-dist/doc/generic/armenian/examples/latex/manual-e.tex
+ texmf-dist/doc/generic/armenian/examples/latex/manual.tex
+ texmf-dist/doc/generic/armenian/examples/latex/raffi-a8.tex
+ texmf-dist/doc/generic/armenian/examples/latex/raffi-u8.tex
+ texmf-dist/doc/generic/armenian/examples/latex/raffi.tex
+ texmf-dist/doc/generic/armenian/examples/plain/first.tex
+ texmf-dist/doc/generic/armenian/examples/plain/plraf-a8.tex
+ texmf-dist/doc/generic/armenian/examples/plain/plraf-u8.tex
+ texmf-dist/doc/generic/armenian/examples/plain/plraf.tex
+ texmf-dist/doc/generic/armenian/examples/plain/table.tex
+ texmf-dist/doc/generic/armenian/manual-e.pdf details="Package manual (English)" language="en"
+ texmf-dist/doc/generic/armenian/manual.pdf details="Package manual (Armenian)" language="hy"
+ texmf-dist/doc/generic/armenian/readme.txt
+runfiles size=525
+ texmf-dist/fonts/afm/public/armenian/arssb10.afm
+ texmf-dist/fonts/afm/public/armenian/arssbs10.afm
+ texmf-dist/fonts/afm/public/armenian/arssr10.afm
+ texmf-dist/fonts/afm/public/armenian/arsssl10.afm
+ texmf-dist/fonts/afm/public/armenian/artmb10.afm
+ texmf-dist/fonts/afm/public/armenian/artmbi10.afm
+ texmf-dist/fonts/afm/public/armenian/artmbs10.afm
+ texmf-dist/fonts/afm/public/armenian/artmi10.afm
+ texmf-dist/fonts/afm/public/armenian/artmr10.afm
+ texmf-dist/fonts/afm/public/armenian/artmsl10.afm
+ texmf-dist/fonts/map/dvips/armenian/arss.map
+ texmf-dist/fonts/map/dvips/armenian/artm.map
+ 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/fonts/type1/public/armenian/arssb10.pfb
+ texmf-dist/fonts/type1/public/armenian/arssb10.pfm
+ texmf-dist/fonts/type1/public/armenian/arssbs10.pfb
+ texmf-dist/fonts/type1/public/armenian/arssbs10.pfm
+ texmf-dist/fonts/type1/public/armenian/arssr10.pfb
+ texmf-dist/fonts/type1/public/armenian/arssr10.pfm
+ texmf-dist/fonts/type1/public/armenian/arsssl10.pfb
+ texmf-dist/fonts/type1/public/armenian/arsssl10.pfm
+ texmf-dist/fonts/type1/public/armenian/artmb10.pfb
+ texmf-dist/fonts/type1/public/armenian/artmb10.pfm
+ texmf-dist/fonts/type1/public/armenian/artmbi10.pfb
+ texmf-dist/fonts/type1/public/armenian/artmbi10.pfm
+ texmf-dist/fonts/type1/public/armenian/artmbs10.pfb
+ texmf-dist/fonts/type1/public/armenian/artmbs10.pfm
+ texmf-dist/fonts/type1/public/armenian/artmi10.pfb
+ texmf-dist/fonts/type1/public/armenian/artmi10.pfm
+ texmf-dist/fonts/type1/public/armenian/artmr10.pfb
+ texmf-dist/fonts/type1/public/armenian/artmr10.pfm
+ texmf-dist/fonts/type1/public/armenian/artmsl10.pfb
+ texmf-dist/fonts/type1/public/armenian/artmsl10.pfm
+ 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/latex/armenian/ot6enc.dfu
+ texmf-dist/tex/plain/armenian/arm.tex
+ texmf-dist/tex/plain/armenian/armkb-a8.tex
+ texmf-dist/tex/plain/armenian/armkb-u8.tex
+catalogue-ctan /language/armenian/armtex
+catalogue-date 2014-04-25 11:20:11 +0200
+catalogue-license lppl
+catalogue-version 3.0-beta3
name around-the-bend
category Package
@@ -12840,7 +15412,7 @@ docfiles size=210
texmf-dist/doc/generic/around-the-bend/AroundTheBend.tex
texmf-dist/doc/generic/around-the-bend/README details="Readme"
catalogue-ctan /info/challenges/AroBend
-catalogue-date 2012-09-07 21:00:09 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
name arphic
@@ -14424,7 +16996,7 @@ runfiles size=8706
texmf-dist/fonts/vf/arphic/gkaimp/gkaimp31.vf
texmf-dist/fonts/vf/arphic/gkaimp/gkaimp32.vf
catalogue-ctan /fonts/arphic
-catalogue-date 2012-04-13 13:58:18 +0200
+catalogue-date 2014-04-05 20:24:32 +0200
catalogue-license other-free
name arrayjobx
@@ -14448,10 +17020,31 @@ runfiles size=4
texmf-dist/tex/generic/arrayjobx/arrayjob.sty
texmf-dist/tex/generic/arrayjobx/arrayjobx.sty
catalogue-ctan /macros/generic/arrayjobx
-catalogue-date 2012-05-01 17:17:50 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.04
+name arraysort
+category Package
+revision 31576
+shortdesc Sort arrays (or portions of them).
+longdesc The package provides a mechanism for sorting arrays (or
+longdesc portions of them); the arrays should have been created using
+longdesc the arrayjobx package.
+docfiles size=76
+ texmf-dist/doc/latex/arraysort/Makefile
+ texmf-dist/doc/latex/arraysort/README details="Readme"
+ texmf-dist/doc/latex/arraysort/arraysort.pdf details="Package documentation"
+srcfiles size=10
+ texmf-dist/source/latex/arraysort/arraysort.dtx
+ texmf-dist/source/latex/arraysort/arraysort.ins
+runfiles size=2
+ texmf-dist/tex/latex/arraysort/arraysort.sty
+catalogue-ctan /macros/latex/contrib/arraysort
+catalogue-date 2014-02-26 23:03:13 +0100
+catalogue-license lppl1.2
+catalogue-version 1.0
+
name arsclassica
category Package
revision 25466
@@ -14485,7 +17078,7 @@ runfiles size=4
texmf-dist/makeindex/arsclassica/classic.ist
texmf-dist/tex/latex/arsclassica/arsclassica.sty
catalogue-ctan /macros/latex/contrib/arsclassica
-catalogue-date 2012-02-21 16:05:39 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 4.0.3
@@ -14506,7 +17099,7 @@ srcfiles size=30
runfiles size=5
texmf-dist/tex/latex/articleingud/articleingud.cls
catalogue-ctan /macros/latex/contrib/articleingud
-catalogue-date 2012-11-19 10:50:11 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.2
catalogue-version 0.2
@@ -14592,7 +17185,7 @@ docfiles size=10
texmf-dist/doc/support/ascii-chart/ascii.pdf details="The chart itself"
texmf-dist/doc/support/ascii-chart/ascii.tex
catalogue-ctan /info/ascii-chart
-catalogue-date 2012-04-13 21:24:05 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
name ascii-font
@@ -14616,17 +17209,38 @@ runfiles size=17
texmf-dist/fonts/type1/public/ascii-font/ASCII.pfb
texmf-dist/tex/latex/ascii-font/ascii.sty
catalogue-ctan /fonts/ascii
-catalogue-date 2013-04-15 01:42:14 +0200
+catalogue-date 2014-04-05 20:24:32 +0200
catalogue-license lppl
catalogue-version 2.0
+name askmaps
+category Package
+revision 32320
+shortdesc Typeset American style Karnaugh maps.
+longdesc The package provides 2, 3, 4 and 5 variable Karnaugh maps, in
+longdesc the style used in numerous textbooks on digital design. The
+longdesc package draws K-maps where the most significant input variables
+longdesc are placed on top of the columns and the least significant
+longdesc variables are placed left of the rows.
+docfiles size=82
+ texmf-dist/doc/latex/askmaps/README details="Readme"
+ texmf-dist/doc/latex/askmaps/askmaps.pdf details="Package documentation"
+ texmf-dist/doc/latex/askmaps/askmaps.tex
+runfiles size=4
+ texmf-dist/tex/latex/askmaps/askmaps.sty
+catalogue-ctan /macros/latex/contrib/askmaps
+catalogue-date 2014-02-26 23:03:13 +0100
+catalogue-license lppl
+catalogue-version 0.1
+
name aspectratio
category Package
revision 25243
shortdesc Capital A and capital R ligature for Aspect Ratio.
longdesc The package provides fonts (both as Adobe Type 1 format, and as
longdesc Metafont source) for the 'AR' symbol (for Aspect Ratio) used by
-longdesc aeronautical scientists and engineers.
+longdesc aeronautical scientists and engineers. Note that the package
+longdesc supersedes the package ar
execute addMap aspectratio.map
docfiles size=86
texmf-dist/doc/latex/aspectratio/ar.pdf details="Package documentation"
@@ -14691,7 +17305,7 @@ runfiles size=82
texmf-dist/fonts/type1/public/aspectratio/artti10.pfb
texmf-dist/tex/latex/aspectratio/ar.sty
catalogue-ctan /macros/latex/contrib/aspectratio
-catalogue-date 2012-02-02 12:28:01 +0100
+catalogue-date 2014-04-05 20:24:32 +0200
catalogue-license lppl
catalogue-version 2.0
@@ -14760,13 +17374,13 @@ runfiles size=3
texmf-dist/tex/latex/asyfig/asyfig.sty
texmf-dist/tex/latex/asyfig/asyprocess.sty
catalogue-ctan /macros/latex/contrib/asyfig
-catalogue-date 2012-04-07 10:41:23 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 0.1c
name asymptote
category TLCore
-revision 30598
+revision 34084
shortdesc 2D and 3D TeX-Aware Vector Graphics Language.
longdesc Asymptote is a powerful descriptive vector graphics language
longdesc for technical drawing, inspired by MetaPost but with an
@@ -14774,7 +17388,7 @@ longdesc improved C++-like syntax. Asymptote provides for figures of the
longdesc same high-quality level of typesetting that LaTeX does for
longdesc scientific text.
depend asymptote.ARCH
-docfiles size=886
+docfiles size=899
texmf-dist/doc/asymptote/CAD.pdf
texmf-dist/doc/asymptote/TeXShopAndAsymptote.pdf
texmf-dist/doc/asymptote/asy-latex.pdf
@@ -14800,6 +17414,7 @@ docfiles size=886
texmf-dist/doc/asymptote/examples/NURBSsurface.asy
texmf-dist/doc/asymptote/examples/Pythagoras.asy
texmf-dist/doc/asymptote/examples/PythagoreanTree.asy
+ texmf-dist/doc/asymptote/examples/RiemannSphere.asy
texmf-dist/doc/asymptote/examples/RiemannSurface.asy
texmf-dist/doc/asymptote/examples/RiemannSurfaceRoot.asy
texmf-dist/doc/asymptote/examples/Sierpinski.asy
@@ -14841,6 +17456,7 @@ docfiles size=886
texmf-dist/doc/asymptote/examples/centroidfg.asy
texmf-dist/doc/asymptote/examples/cheese.asy
texmf-dist/doc/asymptote/examples/circles.asy
+ texmf-dist/doc/asymptote/examples/circumcircle.asy
texmf-dist/doc/asymptote/examples/clockarray.asy
texmf-dist/doc/asymptote/examples/coag.asy
texmf-dist/doc/asymptote/examples/colons.asy
@@ -15000,6 +17616,7 @@ docfiles size=886
texmf-dist/doc/asymptote/examples/quilt.asy
texmf-dist/doc/asymptote/examples/rainbow.asy
texmf-dist/doc/asymptote/examples/randompath3.asy
+ texmf-dist/doc/asymptote/examples/refs.bib
texmf-dist/doc/asymptote/examples/ring.asy
texmf-dist/doc/asymptote/examples/roll.asy
texmf-dist/doc/asymptote/examples/roundpath.asy
@@ -15096,7 +17713,7 @@ docfiles size=886
texmf-dist/doc/man/man1/asy.man1.pdf
texmf-dist/doc/man/man1/xasy.1
texmf-dist/doc/man/man1/xasy.man1.pdf
-runfiles size=413
+runfiles size=409
texmf-dist/asymptote/CAD.asy
texmf-dist/asymptote/GUI/CubicBezier.py
texmf-dist/asymptote/GUI/UndoRedoStack.py
@@ -15196,15 +17813,15 @@ runfiles size=413
texmf-dist/asymptote/unicode.asy
texmf-dist/asymptote/version.asy
texmf-dist/asymptote/x11colors.asy
- texmf-dist/tex/context/asymptote/colo-asy.tex
+ texmf-dist/tex/context/third/asymptote/colo-asy.tex
texmf-dist/tex/latex/asymptote/asycolors.sty
texmf-dist/tex/latex/asymptote/asymptote.sty
texmf-dist/tex/latex/asymptote/latexmkrc
texmf-dist/tex/latex/asymptote/ocg.sty
catalogue-ctan /graphics/asymptote
-catalogue-date 2013-05-20 20:09:14 +0200
+catalogue-date 2014-05-23 09:51:44 +0200
catalogue-license lgpl
-catalogue-version 2.23
+catalogue-version 2.32
name asymptote-by-example-zh-cn
category Package
@@ -15239,7 +17856,7 @@ docfiles size=239
texmf-dist/doc/support/asymptote-by-example-zh-cn/src/xiantu.pdf
texmf-dist/doc/support/asymptote-by-example-zh-cn/src/xiantu.tex
catalogue-ctan /info/asymptote-by-example-zh-cn
-catalogue-date 2012-02-07 15:34:07 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license gpl
name asymptote-faq-zh-cn
@@ -15317,7 +17934,7 @@ docfiles size=237
texmf-dist/doc/support/asymptote-faq-zh-cn/src/figures/8-9b.pdf
texmf-dist/doc/support/asymptote-faq-zh-cn/src/preamble_newnew.tex
catalogue-ctan /info/asymptote-faq-zh-cn
-catalogue-date 2012-02-07 15:34:07 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
name asymptote-manual-zh-cn
@@ -15374,36 +17991,28 @@ docfiles size=413
texmf-dist/doc/support/asymptote-manual-zh-cn/src/windingnumber.asy
texmf-dist/doc/support/asymptote-manual-zh-cn/src/winfonts.tex
catalogue-ctan /info/asymptote-manual-zh-cn
-catalogue-date 2012-02-07 15:34:07 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lgpl
name asymptote.alpha-linux
category TLCore
-revision 30604
+revision 34190
shortdesc alpha-linux files of asymptote
-binfiles arch=alpha-linux size=1187
+binfiles arch=alpha-linux size=1195
bin/alpha-linux/asy
bin/alpha-linux/xasy
-name asymptote.amd64-freebsd
-category TLCore
-revision 30609
-shortdesc amd64-freebsd files of asymptote
-binfiles arch=amd64-freebsd size=1019
- bin/amd64-freebsd/asy
- bin/amd64-freebsd/xasy
-
name asymptote.amd64-kfreebsd
category TLCore
-revision 30655
+revision 34198
shortdesc amd64-kfreebsd files of asymptote
-binfiles arch=amd64-kfreebsd size=796
+binfiles arch=amd64-kfreebsd size=807
bin/amd64-kfreebsd/asy
bin/amd64-kfreebsd/xasy
name asymptote.armel-linux
category TLCore
-revision 30773
+revision 34189
shortdesc armel-linux files of asymptote
binfiles arch=armel-linux size=946
bin/armel-linux/asy
@@ -15411,81 +18020,73 @@ binfiles arch=armel-linux size=946
name asymptote.armhf-linux
category TLCore
-revision 30657
+revision 34125
shortdesc armhf-linux files of asymptote
-binfiles arch=armhf-linux size=737
+binfiles arch=armhf-linux size=741
bin/armhf-linux/asy
bin/armhf-linux/xasy
name asymptote.i386-cygwin
category TLCore
-revision 30730
+revision 34161
shortdesc i386-cygwin files of asymptote
-binfiles arch=i386-cygwin size=944
+binfiles arch=i386-cygwin size=773
bin/i386-cygwin/asy.exe
bin/i386-cygwin/xasy
-name asymptote.i386-freebsd
-category TLCore
-revision 30609
-shortdesc i386-freebsd files of asymptote
-binfiles arch=i386-freebsd size=947
- bin/i386-freebsd/asy
- bin/i386-freebsd/xasy
-
name asymptote.i386-kfreebsd
category TLCore
-revision 30655
+revision 34198
shortdesc i386-kfreebsd files of asymptote
-binfiles arch=i386-kfreebsd size=806
+binfiles arch=i386-kfreebsd size=822
bin/i386-kfreebsd/asy
bin/i386-kfreebsd/xasy
name asymptote.i386-linux
category TLCore
-revision 30598
+revision 34084
shortdesc i386-linux files of asymptote
-binfiles arch=i386-linux size=1017
+binfiles arch=i386-linux size=995
bin/i386-linux/asy
bin/i386-linux/xasy
name asymptote.i386-solaris
category TLCore
-revision 30809
+revision 34203
shortdesc i386-solaris files of asymptote
-binfiles arch=i386-solaris size=1797
+binfiles arch=i386-solaris size=2214
bin/i386-solaris/asy
bin/i386-solaris/xasy
name asymptote.mipsel-linux
category TLCore
-revision 30628
+revision 34099
shortdesc mipsel-linux files of asymptote
-binfiles arch=mipsel-linux size=6222
+binfiles arch=mipsel-linux size=877
bin/mipsel-linux/asy
bin/mipsel-linux/xasy
name asymptote.powerpc-linux
category TLCore
-revision 30614
+revision 33889
shortdesc powerpc-linux files of asymptote
-binfiles arch=powerpc-linux size=924
+binfiles arch=powerpc-linux size=876
bin/powerpc-linux/asy
bin/powerpc-linux/xasy
name asymptote.universal-darwin
category TLCore
-revision 30610
+revision 34201
shortdesc universal-darwin files of asymptote
-binfiles arch=universal-darwin size=3319
+binfiles arch=universal-darwin size=1799
bin/universal-darwin/asy
bin/universal-darwin/xasy
name asymptote.win32
category TLCore
-revision 30598
+revision 34082
shortdesc win32 files of asymptote
-binfiles arch=win32 size=2948
+binfiles arch=win32 size=2825
bin/win32/asy.exe
tlpkg/asymptote/asy.exe
tlpkg/asymptote/cygwin1.dll
@@ -15493,30 +18094,63 @@ binfiles arch=win32 size=2948
tlpkg/asymptote/glu32.dll
tlpkg/asymptote/opengl32.dll
+name asymptote.x86_64-cygwin
+category TLCore
+revision 34161
+shortdesc x86_64-cygwin files of asymptote
+binfiles arch=x86_64-cygwin size=784
+ bin/x86_64-cygwin/asy.exe
+ bin/x86_64-cygwin/xasy
+
name asymptote.x86_64-darwin
category TLCore
-revision 30610
+revision 34201
shortdesc x86_64-darwin files of asymptote
-binfiles arch=x86_64-darwin size=1831
+binfiles arch=x86_64-darwin size=1845
bin/x86_64-darwin/asy
bin/x86_64-darwin/xasy
name asymptote.x86_64-linux
category TLCore
-revision 30751
+revision 34098
shortdesc x86_64-linux files of asymptote
-binfiles arch=x86_64-linux size=972
+binfiles arch=x86_64-linux size=974
bin/x86_64-linux/asy
bin/x86_64-linux/xasy
name asymptote.x86_64-solaris
category TLCore
-revision 30809
+revision 34203
shortdesc x86_64-solaris files of asymptote
-binfiles arch=x86_64-solaris size=2154
+binfiles arch=x86_64-solaris size=2536
bin/x86_64-solaris/asy
bin/x86_64-solaris/xasy
+name asypictureb
+category Package
+revision 33490
+shortdesc User-friendly integration of Asymptote into LaTeX
+longdesc The package is an unofficial alternative to the package
+longdesc provided with the Asymptote distribution, for including
+longdesc pictures within a LaTeX source file. While it does not
+longdesc duplicate all the features of the official package, this
+longdesc package is more user-friendly in several ways. Most notably,
+longdesc Asymptote errors are repackaged as LaTeX errors, making
+longdesc debugging less of a pain. It also has a more robust mechanism
+longdesc for identifying unchanged pictures that need not be recompiled.
+docfiles size=157
+ texmf-dist/doc/latex/asypictureb/README details="Readme"
+ texmf-dist/doc/latex/asypictureb/asypictureB.pdf details="Package documentation"
+srcfiles size=15
+ texmf-dist/source/latex/asypictureb/asypictureB.dtx
+ texmf-dist/source/latex/asypictureb/asypictureB.ins
+runfiles size=3
+ texmf-dist/tex/latex/asypictureb/asypictureB.sty
+catalogue-ctan /graphics/asypictureb
+catalogue-date 2014-04-25 11:20:11 +0200
+catalogue-license lppl1.3
+catalogue-version 0.3
+
name attachfile
category Package
revision 21866
@@ -15575,7 +18209,7 @@ runfiles size=30
texmf-dist/tex/latex/augie/t1augie.fd
texmf-dist/tex/latex/augie/ts1augie.fd
catalogue-ctan /fonts/augie
-catalogue-date 2012-04-13 12:03:06 +0200
+catalogue-date 2014-04-05 20:24:32 +0200
catalogue-license lppl
name auncial-new
@@ -15616,7 +18250,7 @@ runfiles size=65
texmf-dist/tex/latex/auncial-new/auncial.sty
texmf-dist/tex/latex/auncial-new/b1auncl.fd
catalogue-ctan /fonts/auncial-new
-catalogue-date 2012-02-03 13:05:45 +0100
+catalogue-date 2014-04-06 12:09:20 +0200
catalogue-license lppl
catalogue-version 2.0
@@ -15626,11 +18260,11 @@ revision 15878
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 Skrivana.
-longdesc Each font features oldstyle digits and (machine-generated)
-longdesc boldface and slanted versions. A variant of Lukas Svatba offers
-longdesc a 'long s'.
+longdesc in Adobe Type 1 Format, T1 encoding for use with LaTeX:
+longdesc Auriocus Kalligraphicus; Lukas Svatba; and Jana Skrivana. Each
+longdesc font features oldstyle digits and (machine-generated) boldface
+longdesc and slanted versions. A variant of Lukas Svatba offers a 'long
+longdesc s'.
execute addMap aurical.map
docfiles size=26
texmf-dist/doc/latex/aurical/aurical.pdf details="Package introduction and samples"
@@ -15716,7 +18350,7 @@ runfiles size=779
texmf-dist/tex/latex/aurical/T1LukasSvatba.fd
texmf-dist/tex/latex/aurical/aurical.sty
catalogue-ctan /fonts/aurical
-catalogue-date 2012-03-14 17:52:43 +0100
+catalogue-date 2014-04-06 12:09:20 +0200
catalogue-license lppl
catalogue-version 1.5
@@ -15846,13 +18480,6 @@ shortdesc i386-solaris files of authorindex
binfiles arch=i386-solaris size=1
bin/i386-solaris/authorindex
-name authorindex.mips-irix
-category Package
-revision 29949
-shortdesc mips-irix files of authorindex
-binfiles arch=mips-irix size=1
- bin/mips-irix/authorindex
-
name authorindex.mipsel-linux
category Package
revision 29946
@@ -15888,6 +18515,13 @@ shortdesc win32 files of authorindex
binfiles arch=win32 size=1
bin/win32/authorindex.exe
+name authorindex.x86_64-cygwin
+category Package
+revision 33557
+shortdesc x86_64-cygwin files of authorindex
+binfiles arch=x86_64-cygwin size=1
+ bin/x86_64-cygwin/authorindex
+
name authorindex.x86_64-darwin
category Package
revision 18790
@@ -15922,9 +18556,9 @@ longdesc MathPSfrag, and regular psfrag figures can all be input
longdesc consistently and easily.
docfiles size=102
texmf-dist/doc/latex/auto-pst-pdf/README details="Package Readme"
- texmf-dist/doc/latex/auto-pst-pdf/auto-pst-pdf-DE.pdf details="Package documentation"
+ texmf-dist/doc/latex/auto-pst-pdf/auto-pst-pdf-DE.pdf details="Package documentation" language="de"
texmf-dist/doc/latex/auto-pst-pdf/auto-pst-pdf-DE.tex
- texmf-dist/doc/latex/auto-pst-pdf/auto-pst-pdf.pdf details="Package documentation"
+ texmf-dist/doc/latex/auto-pst-pdf/auto-pst-pdf.pdf details="Package documentation" language="en"
texmf-dist/doc/latex/auto-pst-pdf/example-psfrag.tex
texmf-dist/doc/latex/auto-pst-pdf/example.eps
texmf-dist/doc/latex/auto-pst-pdf/example.tex
@@ -15934,7 +18568,7 @@ srcfiles size=7
runfiles size=2
texmf-dist/tex/latex/auto-pst-pdf/auto-pst-pdf.sty
catalogue-ctan /macros/latex/contrib/auto-pst-pdf
-catalogue-date 2012-06-25 23:32:47 +0200
+catalogue-date 2013-11-21 20:02:41 +0100
catalogue-license lppl
catalogue-version 0.6
@@ -15984,55 +18618,56 @@ docfiles size=26
runfiles size=7
texmf-dist/metapost/automata/automata.mp
catalogue-ctan /graphics/metapost/contrib/macros/automata
-catalogue-date 2012-02-26 00:20:00 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 0.3
name autonum
category Package
-revision 30163
+revision 33438
shortdesc Automatic equation references.
longdesc The package arranges that equation numbers are applied only to
longdesc those equations that are referenced. This operation is similar
longdesc to the showonlyrefs option of the package mathtools.
-docfiles size=92
+docfiles size=99
texmf-dist/doc/latex/autonum/README details="Readme"
texmf-dist/doc/latex/autonum/autonum.pdf details="Package documentation"
texmf-dist/doc/latex/autonum/test-autonum.pdf
texmf-dist/doc/latex/autonum/test-autonum.tex
-srcfiles size=12
+ texmf-dist/doc/latex/autonum/test-freeze.tex
+srcfiles size=14
texmf-dist/source/latex/autonum/autonum.dtx
texmf-dist/source/latex/autonum/autonum.ins
-runfiles size=2
+runfiles size=3
texmf-dist/tex/latex/autonum/autonum.sty
catalogue-ctan /macros/latex/contrib/autonum
-catalogue-date 2013-04-28 23:51:31 +0200
+catalogue-date 2014-04-14 19:46:34 +0200
catalogue-license lppl1.3
-catalogue-version 0.3.4
+catalogue-version 0.3.8
name autopdf
category Package
-revision 28125
+revision 32377
shortdesc Conversion of graphics to pdfLaTeX-compatible formats.
longdesc The package facilitates the on-the-fly conversion of various
longdesc graphics formats to formats supported by pdfLaTeX (e.g. PDF).
longdesc It uses a range of external programs, and therefore requires
longdesc that the LaTeX run starts with write18 enabled.
-docfiles size=61
- texmf-dist/doc/latex/autopdf/README details="Readme"
+docfiles size=57
+ texmf-dist/doc/latex/autopdf/README.txt
texmf-dist/doc/latex/autopdf/autopdf.pdf details="Package documentation"
srcfiles size=8
texmf-dist/source/latex/autopdf/autopdf.dtx
runfiles size=5
texmf-dist/tex/latex/autopdf/autopdf.sty
catalogue-ctan /macros/latex/contrib/autopdf
-catalogue-date 2012-11-04 01:40:03 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.2
-catalogue-version 1.0
+catalogue-version 1.1
name avantgar
category Package
-revision 28614
+revision 31835
catalogue urw-base35
shortdesc URW "Base 35" font pack for LaTeX.
longdesc A set of fonts for use as "drop-in" replacements for Adobe's
@@ -16046,6 +18681,7 @@ longdesc Symbol); - URW Bookman; - URW Chancery L Medium Italic
longdesc (substituting for Adobe's Zapf Chancery); - URW Gothic L Book
longdesc (substituting for Adobe's Avant Garde); and - URW Palladio L
longdesc (substituting for Adobe's Palatino).
+execute addMap uag.map
runfiles size=392
texmf-dist/dvips/avantgar/config.uag
texmf-dist/fonts/afm/adobe/avantgar/pagd8a.afm
@@ -16237,7 +18873,7 @@ catalogue-version 1.0
name babel
category Package
-revision 30576
+revision 33283
shortdesc Multilingual support for Plain TeX or LaTeX.
longdesc The package manages culturally-determined typographical (and
longdesc other) rules, and hyphenation patterns for a wide range of
@@ -16247,18 +18883,18 @@ longdesc may switch from one language to another in a variety of ways.
longdesc Babel uses contributed configuration files that provide the
longdesc detail of what has to be done for each language. Users of XeTeX
longdesc are advised to use polyglossia rather than Babel.
-docfiles size=145
- texmf-dist/doc/latex/babel/CONTRIB
+docfiles size=99
+ texmf-dist/doc/latex/babel/CONTRIB details="Notes on contributed language support"
+ texmf-dist/doc/latex/babel/FIXES39
texmf-dist/doc/latex/babel/README details="Readme"
texmf-dist/doc/latex/babel/babel.pdf details="Package documentation"
-srcfiles size=88
+srcfiles size=97
texmf-dist/source/latex/babel/babel.dtx
texmf-dist/source/latex/babel/babel.ins
texmf-dist/source/latex/babel/bbcompat.dtx
texmf-dist/source/latex/babel/bbidxglo.dtx
- texmf-dist/source/latex/babel/bbplain.dtx
texmf-dist/source/latex/babel/bbunicode.dtx
-runfiles size=81
+runfiles size=86
texmf-dist/makeindex/babel/bbglo.ist
texmf-dist/makeindex/babel/bbind.ist
texmf-dist/tex/generic/babel/UKenglish.sty
@@ -16323,9 +18959,9 @@ runfiles size=81
texmf-dist/tex/generic/babel/welsh.sty
texmf-dist/tex/generic/babel/xebabel.def
catalogue-ctan /macros/latex/required/babel/base
-catalogue-date 2013-05-16 19:39:08 +0200
+catalogue-date 2014-03-24 21:25:12 +0100
catalogue-license lppl1.3
-catalogue-version 3.9f
+catalogue-version 3.9k
name babel-albanian
category Package
@@ -16341,7 +18977,7 @@ srcfiles size=5
runfiles size=2
texmf-dist/tex/generic/babel-albanian/albanian.ldf
catalogue-ctan /macros/latex/contrib/babel-contrib/albanian
-catalogue-date 2011-09-19 08:05:09 +0100
+catalogue-date 2014-05-22 11:58:32 +0200
catalogue-license lppl
catalogue-version 1.0c
@@ -16362,7 +18998,7 @@ runfiles size=4
texmf-dist/tex/generic/babel-bahasa/bahasai.ldf
texmf-dist/tex/generic/babel-bahasa/bahasam.ldf
catalogue-ctan /macros/latex/contrib/babel-contrib/bahasa
-catalogue-date 2013-05-06 22:45:34 +0200
+catalogue-date 2014-05-22 11:58:32 +0200
catalogue-license lppl1.3
catalogue-version 1.0l
@@ -16379,119 +19015,203 @@ srcfiles size=6
runfiles size=2
texmf-dist/tex/generic/babel-basque/basque.ldf
catalogue-ctan /macros/latex/contrib/babel-contrib/basque
-catalogue-date 2013-05-07 14:41:36 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.0f
name babel-breton
category Package
revision 30257
+shortdesc Babel contributed support for Breton.
+longdesc Breton (being, principally, a spoken language) does not have
+longdesc typographic rules of its own; this package provides an
+longdesc "appropriate" selection of French and British typographic
+longdesc rules.
docfiles size=29
- texmf-dist/doc/generic/babel-breton/breton.pdf
+ texmf-dist/doc/generic/babel-breton/breton.pdf details="Package documentation"
srcfiles size=5
texmf-dist/source/generic/babel-breton/breton.dtx
texmf-dist/source/generic/babel-breton/breton.ins
runfiles size=2
texmf-dist/tex/generic/babel-breton/breton.ldf
+catalogue-ctan /macros/latex/contrib/babel-contrib/breton
+catalogue-date 2014-02-26 23:03:13 +0100
+catalogue-license lppl1.3
+catalogue-version 1.0h
name babel-bulgarian
category Package
-revision 30258
+revision 31902
+shortdesc Babel contributed support for Bulgarian.
+longdesc The package provides support for documents in Bulgarian (or
+longdesc simply containing some Bulgarian text).
docfiles size=48
- texmf-dist/doc/generic/babel-bulgarian/bulgarian.pdf
-srcfiles size=11
+ texmf-dist/doc/generic/babel-bulgarian/README details="Readme"
+ texmf-dist/doc/generic/babel-bulgarian/bulgarian.pdf details="Package documentation"
+srcfiles size=20
texmf-dist/source/generic/babel-bulgarian/bulgarian.dtx
texmf-dist/source/generic/babel-bulgarian/bulgarian.ins
-runfiles size=4
+runfiles size=6
texmf-dist/tex/generic/babel-bulgarian/bulgarian.ldf
+catalogue-ctan /macros/latex/contrib/babel-contrib/bulgarian
+catalogue-date 2014-05-22 11:58:32 +0200
+catalogue-license lppl1.3
+catalogue-version 1.2g
name babel-catalan
category Package
revision 30259
+shortdesc Babel contributed support for Catalan.
+longdesc The package establishes Catalan conventions in a document (or a
+longdesc subset of the conventions, if Catalan is not the main language
+longdesc of the document).
docfiles size=52
- texmf-dist/doc/generic/babel-catalan/catalan.pdf
+ texmf-dist/doc/generic/babel-catalan/catalan.pdf details="Package documentation"
srcfiles size=10
texmf-dist/source/generic/babel-catalan/catalan.dtx
texmf-dist/source/generic/babel-catalan/catalan.ins
runfiles size=3
texmf-dist/tex/generic/babel-catalan/catalan.ldf
+catalogue-ctan /macros/latex/contrib/babel-contrib/catalan
+catalogue-date 2014-05-22 11:58:32 +0200
+catalogue-license lppl1.3
+catalogue-version 2.2p
name babel-croatian
category Package
revision 30260
+shortdesc Babel contributed support for Croatian.
+longdesc The package establishes Croatian conventions in a document (or
+longdesc a subset of the conventions, if Croatian is not the main
+longdesc language of the document).
docfiles size=28
- texmf-dist/doc/generic/babel-croatian/croatian.pdf
+ texmf-dist/doc/generic/babel-croatian/croatian.pdf details="Package documentation"
srcfiles size=5
texmf-dist/source/generic/babel-croatian/croatian.dtx
texmf-dist/source/generic/babel-croatian/croatian.ins
runfiles size=1
texmf-dist/tex/generic/babel-croatian/croatian.ldf
+catalogue-ctan /macros/latex/contrib/babel-contrib/croatian
+catalogue-date 2014-05-22 11:58:32 +0200
+catalogue-license lppl1.3
+catalogue-version 1.3l
name babel-czech
category Package
revision 30261
+shortdesc Babel support for Czech.
+longdesc The package provides the language definition file for support
+longdesc of Czech in babel. Some shortcuts are defined, as well as
+longdesc translations to Czech of standard "LaTeX names".
docfiles size=47
- texmf-dist/doc/generic/babel-czech/czech.pdf
+ texmf-dist/doc/generic/babel-czech/czech.pdf details="Package documentation"
srcfiles size=12
texmf-dist/source/generic/babel-czech/czech.dtx
texmf-dist/source/generic/babel-czech/czech.ins
runfiles size=4
texmf-dist/tex/generic/babel-czech/czech.ldf
+catalogue-ctan /macros/latex/contrib/babel-contrib/czech
+catalogue-date 2014-05-22 11:58:32 +0200
+catalogue-license lppl1.3
+catalogue-version 3.1a
name babel-danish
category Package
revision 30262
+shortdesc Babel contributed support for Danish.
+longdesc The package provides a language definition, file for use with
+longdesc babel, which establishes Danish conventions in a document (or a
+longdesc subset of the conventions, if Danish is not the main language
+longdesc of the document).
docfiles size=32
- texmf-dist/doc/generic/babel-danish/danish.pdf
+ texmf-dist/doc/generic/babel-danish/danish.pdf details="Package documentation"
srcfiles size=6
texmf-dist/source/generic/babel-danish/danish.dtx
texmf-dist/source/generic/babel-danish/danish.ins
runfiles size=2
texmf-dist/tex/generic/babel-danish/danish.ldf
+catalogue-ctan /macros/latex/contrib/babel-contrib/danish
+catalogue-date 2014-02-26 23:03:13 +0100
+catalogue-license lppl1.3
+catalogue-version 1.3r
name babel-dutch
category Package
revision 30263
+shortdesc Babel contributed support for Dutch.
+longdesc The package provides a language definition, file for use with
+longdesc babel, which establishes Dutch conventions in a document (or a
+longdesc subset of the conventions, if Dutch is not the main language of
+longdesc the document).
docfiles size=38
- texmf-dist/doc/generic/babel-dutch/dutch.pdf
+ texmf-dist/doc/generic/babel-dutch/dutch.pdf details="Package documentation"
srcfiles size=8
texmf-dist/source/generic/babel-dutch/dutch.dtx
texmf-dist/source/generic/babel-dutch/dutch.ins
runfiles size=2
texmf-dist/tex/generic/babel-dutch/dutch.ldf
+catalogue-ctan /macros/latex/contrib/babel-contrib/dutch
+catalogue-date 2014-02-26 23:03:13 +0100
+catalogue-license lppl1.3
+catalogue-version 3.8i
name babel-english
category Package
revision 30264
+shortdesc Babel support for English.
+longdesc The package provides the language definition file for support
+longdesc of English in babel. Care is taken to select british
+longdesc hyphenation patterns for British English and Australian text,
+longdesc and default ('american') patterns for Canadian and USA text.
docfiles size=32
- texmf-dist/doc/generic/babel-english/english.pdf
+ texmf-dist/doc/generic/babel-english/english.pdf details="Package documentation"
srcfiles size=7
texmf-dist/source/generic/babel-english/english.dtx
texmf-dist/source/generic/babel-english/english.ins
runfiles size=2
texmf-dist/tex/generic/babel-english/english.ldf
+catalogue-ctan /macros/latex/contrib/babel-contrib/english
+catalogue-date 2014-05-22 11:58:32 +0200
+catalogue-license lppl1.3
+catalogue-version 3.3p
name babel-esperanto
category Package
revision 30265
+shortdesc Babel support for Esperanto.
+longdesc The package provides the language definition file for support
+longdesc of Esperanto in babel. Some shortcuts are defined, as well as
+longdesc translations to Esperanto of standard "LaTeX names".
docfiles size=31
- texmf-dist/doc/generic/babel-esperanto/esperanto.pdf
+ texmf-dist/doc/generic/babel-esperanto/esperanto.pdf details="Package documentation"
srcfiles size=6
texmf-dist/source/generic/babel-esperanto/esperanto.dtx
texmf-dist/source/generic/babel-esperanto/esperanto.ins
runfiles size=2
texmf-dist/tex/generic/babel-esperanto/esperanto.ldf
+catalogue-ctan /macros/latex/contrib/babel-contrib/esperanto
+catalogue-date 2014-05-22 11:58:32 +0200
+catalogue-license lppl1.3
+catalogue-version 1.4t
name babel-estonian
category Package
-revision 30266
-docfiles size=34
- texmf-dist/doc/generic/babel-estonian/estonian.pdf
-srcfiles size=7
+revision 33023
+shortdesc Babel support for Estonian.
+longdesc The package provides the language definition file for support
+longdesc of Estonian in babel. Some shortcuts are defined, as well as
+longdesc translations to Estonian of standard "LaTeX names".
+docfiles size=23
+ texmf-dist/doc/generic/babel-estonian/estonian.pdf details="Package documentation"
+srcfiles size=8
texmf-dist/source/generic/babel-estonian/estonian.dtx
texmf-dist/source/generic/babel-estonian/estonian.ins
runfiles size=2
texmf-dist/tex/generic/babel-estonian/estonian.ldf
+catalogue-ctan /macros/latex/contrib/babel-contrib/estonian
+catalogue-date 2014-05-22 11:58:32 +0200
+catalogue-license lppl1.3
+catalogue-version 1.1
name babel-finnish
category Package
@@ -16506,22 +19226,23 @@ runfiles size=2
name babel-french
category Package
-revision 30709
+revision 33601
shortdesc Babel contributed support for French.
longdesc The package establishes French conventions in a document (or a
-longdesc subset of the conventions, if the French is not the main
-longdesc language of the document).
-docfiles size=89
+longdesc subset of the conventions, if French is not the main language
+longdesc of the document).
+docfiles size=58
texmf-dist/doc/generic/babel-french/frenchb.pdf details="Package documentation"
-srcfiles size=38
+srcfiles size=43
texmf-dist/source/generic/babel-french/frenchb.dtx
texmf-dist/source/generic/babel-french/frenchb.ins
-runfiles size=13
+runfiles size=16
texmf-dist/tex/generic/babel-french/frenchb.ldf
+ texmf-dist/tex/generic/babel-french/frenchb.lua
catalogue-ctan /macros/latex/contrib/babel-contrib/french
-catalogue-date 2013-05-20 17:51:05 +0200
+catalogue-date 2014-04-21 12:35:03 +0200
catalogue-license lppl1.3
-catalogue-version 2.6c
+catalogue-version 3.0c
name babel-friulan
category Package
@@ -16536,7 +19257,7 @@ srcfiles size=3
runfiles size=1
texmf-dist/tex/generic/babel-friulan/friulan.ldf
catalogue-ctan /macros/latex/contrib/babel-contrib/friulan
-catalogue-date 2013-05-04 11:13:00 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
name babel-galician
@@ -16552,80 +19273,106 @@ srcfiles size=22
runfiles size=7
texmf-dist/tex/generic/babel-galician/galician.ldf
+name babel-georgian
+category Package
+revision 33527
+shortdesc Babel
+longdesc The package provides support for use of Babel in documents
+longdesc written in Georgian. The package is adapted for use both under
+longdesc 'traditional' TeX engines, and under XeTeX and LuaTeX.
+docfiles size=1
+ texmf-dist/doc/generic/babel-georgian/readme
+runfiles size=6
+ texmf-dist/tex/generic/babel-georgian/georgian.ldf
+ texmf-dist/tex/generic/babel-georgian/georgian.sty
+ texmf-dist/tex/generic/babel-georgian/georgiancaps.tex
+catalogue-ctan /macros/latex/contrib/babel-contrib/georgian
+catalogue-date 2014-05-22 12:07:21 +0200
+catalogue-license lppl1.3
+catalogue-version 2.1
+
name babel-german
category Package
-revision 30271
+revision 32421
shortdesc Babel support for documents written in German.
longdesc The package defines LaTeX support, within the Babel package, of
longdesc German (including its Austrian dialect), in both 'old' and
longdesc 'new' orthographies.
-docfiles size=72
- texmf-dist/doc/generic/babel-german/germanb.pdf details="Package documentation (old orthography)"
+docfiles size=46
+ texmf-dist/doc/generic/babel-german/README
+ texmf-dist/doc/generic/babel-german/germanb.pdf details="Package documentation (traditional orthography)"
texmf-dist/doc/generic/babel-german/ngermanb.pdf details="Package documentation (new orthography)"
-srcfiles size=12
+srcfiles size=15
texmf-dist/source/generic/babel-german/german.ins
texmf-dist/source/generic/babel-german/germanb.dtx
texmf-dist/source/generic/babel-german/ngermanb.dtx
-runfiles size=4
+runfiles size=10
+ texmf-dist/tex/generic/babel-german/austrian.ldf
+ texmf-dist/tex/generic/babel-german/german.ldf
texmf-dist/tex/generic/babel-german/germanb.ldf
+ texmf-dist/tex/generic/babel-german/naustrian.ldf
+ texmf-dist/tex/generic/babel-german/ngerman.ldf
texmf-dist/tex/generic/babel-german/ngermanb.ldf
+ texmf-dist/tex/generic/babel-german/nswissgerman.ldf
+ texmf-dist/tex/generic/babel-german/swissgerman.ldf
catalogue-ctan /macros/latex/contrib/babel-contrib/german
-catalogue-date 2013-05-18 13:06:50 +0200
+catalogue-date 2014-05-22 12:07:21 +0200
catalogue-license lppl1.3
-catalogue-version 2.6m
+catalogue-version 2.7
name babel-greek
category Package
-revision 30720
+revision 32309
shortdesc Babel support for documents written in Greek.
longdesc The file provides modes for monotonic (single-diacritic) and
longdesc polytonic (multiple-diacritic) modes of writing. Provision is
longdesc made for Greek function names in mathematics, and for
longdesc classical-era symbols.
-docfiles size=204
- texmf-dist/doc/generic/babel-greek/README
+docfiles size=298
+ texmf-dist/doc/generic/babel-greek/README details="Readme"
texmf-dist/doc/generic/babel-greek/README.html
texmf-dist/doc/generic/babel-greek/athnum.pdf
- texmf-dist/doc/generic/babel-greek/greek.pdf details="Basic documentation"
+ texmf-dist/doc/generic/babel-greek/babel-greek.pdf
texmf-dist/doc/generic/babel-greek/grmath.pdf details="Maths documentation"
texmf-dist/doc/generic/babel-greek/grsymb.pdf details="Symbol documentation"
- texmf-dist/doc/generic/babel-greek/usage.pdf
+ texmf-dist/doc/generic/babel-greek/test-greek.pdf
+ texmf-dist/doc/generic/babel-greek/test-greek.tex
+ texmf-dist/doc/generic/babel-greek/test-unicode-greek.pdf
+ texmf-dist/doc/generic/babel-greek/test-unicode-greek.tex
+ texmf-dist/doc/generic/babel-greek/test-unicode-lgr.pdf
+ texmf-dist/doc/generic/babel-greek/test-unicode-lgr.tex
+ texmf-dist/doc/generic/babel-greek/usage.pdf details="Usage documentation"
texmf-dist/doc/generic/babel-greek/usage.tex
-srcfiles size=24
+srcfiles size=21
texmf-dist/source/generic/babel-greek/athnum.dtx
- texmf-dist/source/generic/babel-greek/greek.dtx
- texmf-dist/source/generic/babel-greek/greek.fdd
- texmf-dist/source/generic/babel-greek/greek.ins
+ texmf-dist/source/generic/babel-greek/babel-greek.dtx
+ texmf-dist/source/generic/babel-greek/babel-greek.ins
texmf-dist/source/generic/babel-greek/grmath.dtx
texmf-dist/source/generic/babel-greek/grsymb.dtx
-runfiles size=17
+runfiles size=8
texmf-dist/tex/generic/babel-greek/athnum.sty
texmf-dist/tex/generic/babel-greek/greek.ldf
texmf-dist/tex/generic/babel-greek/grmath.sty
texmf-dist/tex/generic/babel-greek/grsymb.sty
- texmf-dist/tex/generic/babel-greek/lgrcmr.fd
- texmf-dist/tex/generic/babel-greek/lgrcmro.fd
- texmf-dist/tex/generic/babel-greek/lgrcmss.fd
- texmf-dist/tex/generic/babel-greek/lgrcmtt.fd
- texmf-dist/tex/generic/babel-greek/lgrlcmss.fd
- texmf-dist/tex/generic/babel-greek/lgrlcmtt.fd
- texmf-dist/tex/generic/babel-greek/lgrlmr.fd
- texmf-dist/tex/generic/babel-greek/lgrlmro.fd
- texmf-dist/tex/generic/babel-greek/lgrlmss.fd
- texmf-dist/tex/generic/babel-greek/lgrlmtt.fd
catalogue-ctan /macros/latex/contrib/babel-contrib/greek
-catalogue-date 2013-05-27 20:07:27 +0200
+catalogue-date 2014-05-22 12:07:21 +0200
catalogue-license lppl1.3
-catalogue-version 1.4
+catalogue-version 1.8a
name babel-hebrew
category Package
revision 30273
+shortdesc Babel support for Hebrew.
+longdesc The package provides the language definition file for support
+longdesc of Hebrew in babel. Macros to control the use of text direction
+longdesc control of TeX--XeT and e-TeX are provided (and may be used
+longdesc elsewhere). Some shortcuts are defined, as well as translations
+longdesc to Hebrew of standard "LaTeX names".
docfiles size=197
texmf-dist/doc/generic/babel-hebrew/00readme.heb
- texmf-dist/doc/generic/babel-hebrew/heb209.pdf
- texmf-dist/doc/generic/babel-hebrew/hebinp.pdf
- texmf-dist/doc/generic/babel-hebrew/hebrew.pdf
+ texmf-dist/doc/generic/babel-hebrew/heb209.pdf details="Package documentation (LaTeX 2.09 compatibility style files)"
+ texmf-dist/doc/generic/babel-hebrew/hebinp.pdf details="Package documentation (Hebrew input encodings for use with LaTeX 2)"
+ texmf-dist/doc/generic/babel-hebrew/hebrew.pdf details="Package documentation"
srcfiles size=52
texmf-dist/source/generic/babel-hebrew/heb209.dtx
texmf-dist/source/generic/babel-hebrew/hebinp.dtx
@@ -16667,145 +19414,239 @@ runfiles size=53
texmf-dist/tex/generic/babel-hebrew/lheshstk.fd
texmf-dist/tex/generic/babel-hebrew/rlbabel.def
texmf-dist/tex/generic/babel-hebrew/si960.def
+catalogue-ctan /macros/latex/contrib/babel-contrib/hebrew
+catalogue-date 2014-05-22 12:07:21 +0200
+catalogue-license lppl1.3
+catalogue-version 2.3h
name babel-hungarian
category Package
-revision 30274
+revision 33353
shortdesc Babel support for Hungarian (Magyar).
longdesc The package provides a language definition file that enables
longdesc support of Magyar (Hungarian) with babel.
runfiles size=61
texmf-dist/tex/latex/babel-hungarian/magyar.ldf
catalogue-ctan /macros/latex/contrib/babel-contrib/hungarian/magyar.ldf
-catalogue-date 2013-05-06 17:15:57 +0200
+catalogue-date 2014-05-22 12:07:21 +0200
catalogue-license lppl
catalogue-version 1.5
name babel-icelandic
category Package
revision 30275
+shortdesc Babel support for Icelandic.
+longdesc The package provides the language definition file for support
+longdesc of Icelandic in babel. Some shortcuts are defined, as well as
+longdesc translations to Icelandic of standard "LaTeX names".
docfiles size=68
- texmf-dist/doc/generic/babel-icelandic/icelandic.pdf
+ texmf-dist/doc/generic/babel-icelandic/icelandic.pdf details="Package documentation"
srcfiles size=9
texmf-dist/source/generic/babel-icelandic/icelandic.dtx
texmf-dist/source/generic/babel-icelandic/icelandic.ins
runfiles size=3
texmf-dist/tex/generic/babel-icelandic/icelandic.ldf
+catalogue-ctan /macros/latex/contrib/babel-contrib/icelandic
+catalogue-date 2014-05-22 12:07:21 +0200
+catalogue-license lppl1.3
+catalogue-version 1.1g
name babel-interlingua
category Package
revision 30276
+shortdesc Babel support for Interlingua.
+longdesc The package provides the language definition file for support
+longdesc of Interlingua in babel. Translations to Interlingua of
+longdesc standard "LaTeX names" (no shortcuts are provided). Interlingua
+longdesc itself is an auxiliary language, built from the common
+longdesc vocabulary of Spanish/Portuguese, English, Italian and French,
+longdesc with some normalisation of spelling.
docfiles size=27
- texmf-dist/doc/generic/babel-interlingua/interlingua.pdf
+ texmf-dist/doc/generic/babel-interlingua/interlingua.pdf details="Package documentation"
srcfiles size=4
texmf-dist/source/generic/babel-interlingua/interlingua.dtx
texmf-dist/source/generic/babel-interlingua/interlingua.ins
runfiles size=1
texmf-dist/tex/generic/babel-interlingua/interlingua.ldf
+catalogue-ctan /macros/latex/contrib/babel-contrib/interlingua
+catalogue-date 2014-05-22 12:07:21 +0200
+catalogue-license lppl1.3
+catalogue-version 1.6
name babel-irish
category Package
revision 30277
+shortdesc Babel support for Irish.
+longdesc The package provides the language definition file for support
+longdesc of Irish Gaelic in babel. The principal content is translations
+longdesc to Irish of standard "LaTeX names". (No shortcuts are defined.)
docfiles size=27
- texmf-dist/doc/generic/babel-irish/irish.pdf
+ texmf-dist/doc/generic/babel-irish/irish.pdf details="Package documentation"
srcfiles size=4
texmf-dist/source/generic/babel-irish/irish.dtx
texmf-dist/source/generic/babel-irish/irish.ins
runfiles size=1
texmf-dist/tex/generic/babel-irish/irish.ldf
+catalogue-ctan /macros/latex/contrib/babel-contrib/irish
+catalogue-date 2014-05-22 12:07:21 +0200
+catalogue-license lppl1.3
+catalogue-version 1.0h
name babel-italian
category Package
-revision 30278
+revision 33321
shortdesc Babel support for Italian text.
longdesc The package provides language definitions for use in babel.
-docfiles size=56
+docfiles size=91
texmf-dist/doc/generic/babel-italian/italian.pdf details="Package documentation"
-srcfiles size=12
+srcfiles size=18
texmf-dist/source/generic/babel-italian/italian.dtx
texmf-dist/source/generic/babel-italian/italian.ins
runfiles size=3
texmf-dist/tex/generic/babel-italian/italian.ldf
catalogue-ctan /macros/latex/contrib/babel-contrib/italian
-catalogue-date 2013-05-03 15:48:11 +0200
+catalogue-date 2014-03-29 17:24:56 +0100
catalogue-license lppl1.3
-catalogue-version 1.2t
+catalogue-version 1.3k
name babel-kurmanji
category Package
revision 30279
+shortdesc Babel support for Kurmanji.
+longdesc The package provides the language definition file for support
+longdesc of Kurmanji in babel. Kurmanji belongs to the family of Kurdish
+longdesc languages. Some shortcuts are defined, as well as translations
+longdesc to Kurmanji of standard "LaTeX names". Note that the package is
+longdesc dealing with 'Northern' Kurdish, written using a Latin-based
+longdesc alphabet. The arabxetex package offers support for Kurdish
+longdesc written in Arabic script.
docfiles size=31
- texmf-dist/doc/generic/babel-kurmanji/kurmanji.pdf
+ texmf-dist/doc/generic/babel-kurmanji/kurmanji.pdf details="Package documentation"
srcfiles size=6
texmf-dist/source/generic/babel-kurmanji/kurmanji.dtx
texmf-dist/source/generic/babel-kurmanji/kurmanji.ins
runfiles size=2
texmf-dist/tex/generic/babel-kurmanji/kurmanji.ldf
+catalogue-ctan /macros/latex/contrib/babel-contrib/kurmanji
+catalogue-date 2014-05-22 12:36:10 +0200
+catalogue-license lppl1.3
+catalogue-version 1.1
name babel-latin
category Package
revision 30280
+shortdesc Babel support for Latin.
+longdesc The package provides the language definition file for support
+longdesc of Latin in babel. Translations to Latin (in both modern and
+longdesc medieval spelling) of standard "LaTeX names", and some
+longdesc shortcuts, are provided. Apart from the modern vs. medieval
+longdesc setting, a further switch permits addition of prosodic marks.
docfiles size=42
- texmf-dist/doc/generic/babel-latin/latin.pdf
+ texmf-dist/doc/generic/babel-latin/latin.pdf details="Package documentation"
srcfiles size=10
texmf-dist/source/generic/babel-latin/latin.dtx
texmf-dist/source/generic/babel-latin/latin.ins
runfiles size=3
texmf-dist/tex/generic/babel-latin/latin.ldf
+catalogue-ctan /macros/latex/contrib/babel-contrib/latin
+catalogue-date 2014-05-22 12:36:10 +0200
+catalogue-license lppl1.3
+catalogue-version 2.0l
name babel-norsk
category Package
revision 30281
+shortdesc Babel support for Norwegian.
+longdesc The package provides the language definition file for support
+longdesc of Norwegian in babel. Some shortcuts are defined, as well as
+longdesc translations to Norsk of standard "LaTeX names".
docfiles size=35
- texmf-dist/doc/generic/babel-norsk/norsk.pdf
+ texmf-dist/doc/generic/babel-norsk/norsk.pdf details="Package documentation"
srcfiles size=7
texmf-dist/source/generic/babel-norsk/norsk.dtx
texmf-dist/source/generic/babel-norsk/norsk.ins
runfiles size=2
texmf-dist/tex/generic/babel-norsk/norsk.ldf
+catalogue-ctan /macros/latex/contrib/babel-contrib/norsk
+catalogue-date 2014-05-22 12:36:10 +0200
+catalogue-license lppl1.3
+catalogue-version 2.0i
name babel-piedmontese
category Package
revision 30282
+shortdesc Babel support for Piedmontese.
+longdesc The package provides the language definition file for support
+longdesc of Piedmontese in babel. Some shortcuts are defined, as well as
+longdesc translations to Piedmontese of standard "LaTeX names".
docfiles size=26
- texmf-dist/doc/generic/babel-piedmontese/piedmontese.pdf
+ texmf-dist/doc/generic/babel-piedmontese/piedmontese.pdf details="Package documentation"
srcfiles size=3
texmf-dist/source/generic/babel-piedmontese/piedmontese.dtx
runfiles size=1
texmf-dist/tex/generic/babel-piedmontese/piedmontese.ldf
+catalogue-ctan /macros/latex/contrib/babel-contrib/piedmontese
+catalogue-date 2014-05-22 12:36:10 +0200
+catalogue-license lppl1.3
+catalogue-version 1.0
name babel-polish
category Package
revision 30283
+shortdesc Babel support for Polish.
+longdesc The package provides the language definition file for support
+longdesc of Polish in babel. Some shortcuts are defined, as well as
+longdesc translations to Polish of standard "LaTeX names".
docfiles size=33
- texmf-dist/doc/generic/babel-polish/polish.pdf
+ texmf-dist/doc/generic/babel-polish/polish.pdf details="Package documentation"
srcfiles size=8
texmf-dist/source/generic/babel-polish/polish.dtx
texmf-dist/source/generic/babel-polish/polish.ins
runfiles size=3
texmf-dist/tex/generic/babel-polish/polish.ldf
+catalogue-ctan /macros/latex/contrib/babel-contrib/polish
+catalogue-date 2014-05-22 12:36:10 +0200
+catalogue-license lppl1.3
+catalogue-version 1.2l
name babel-portuges
category Package
revision 30284
+shortdesc Babel support for Portuges.
+longdesc The package provides the language definition file for support
+longdesc of Portuguese and Brazilian Portuguese in babel. Some shortcuts
+longdesc are defined, as well as translations to Portuguese of standard
+longdesc "LaTeX names".
docfiles size=36
- texmf-dist/doc/generic/babel-portuges/portuges.pdf
+ texmf-dist/doc/generic/babel-portuges/portuges.pdf details="Package documentation"
srcfiles size=7
texmf-dist/source/generic/babel-portuges/portuges.dtx
texmf-dist/source/generic/babel-portuges/portuges.ins
runfiles size=2
texmf-dist/tex/generic/babel-portuges/portuges.ldf
+catalogue-ctan /macros/latex/contrib/babel-contrib/portuges
+catalogue-date 2014-05-22 12:36:10 +0200
+catalogue-license lppl1.3
+catalogue-version 1.2q
name babel-romanian
category Package
revision 30285
+shortdesc Babel support for Romanian.
+longdesc The package provides the language definition file for support
+longdesc of Romanian in babel. Translations to Romanian of standard
+longdesc "LaTeX names" are provided.
docfiles size=28
- texmf-dist/doc/generic/babel-romanian/romanian.pdf
+ texmf-dist/doc/generic/babel-romanian/romanian.pdf details="Package documentation"
srcfiles size=5
texmf-dist/source/generic/babel-romanian/romanian.dtx
texmf-dist/source/generic/babel-romanian/romanian.ins
runfiles size=1
texmf-dist/tex/generic/babel-romanian/romanian.ldf
+catalogue-ctan /macros/latex/contrib/babel-contrib/romanian
+catalogue-date 2014-05-22 12:36:10 +0200
+catalogue-license lppl1.3
+catalogue-version 1.2l
name babel-romansh
category Package
@@ -16820,7 +19661,7 @@ srcfiles size=2
runfiles size=1
texmf-dist/tex/generic/babel-romansh/romansh.ldf
catalogue-ctan /macros/latex/contrib/babel-contrib/romansh
-catalogue-date 2013-05-04 16:14:02 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
name babel-russian
@@ -16839,31 +19680,51 @@ srcfiles size=20
runfiles size=5
texmf-dist/tex/generic/babel-russian/russianb.ldf
catalogue-ctan /macros/latex/contrib/babel-contrib/russian
-catalogue-date 2013-05-03 12:18:01 +0200
+catalogue-date 2014-05-22 12:36:10 +0200
catalogue-license lppl1.3
catalogue-version 1.3
name babel-samin
category Package
revision 30288
+shortdesc Babel support for Samin.
+longdesc The package provides the language definition file for support
+longdesc of North Sami in babel. (Several Sami dialects/languages are
+longdesc spoken in Finland, Norway, Sweden and on the Kola Peninsula of
+longdesc Russia). Not all use the same alphabet, and no attempt is made
+longdesc to support any other than North Sami here. Some shortcuts are
+longdesc defined, as well as translations to Norsk of standard "LaTeX
+longdesc names".
docfiles size=31
- texmf-dist/doc/generic/babel-samin/samin.pdf
+ texmf-dist/doc/generic/babel-samin/samin.pdf details="Package documentation"
srcfiles size=4
texmf-dist/source/generic/babel-samin/samin.dtx
texmf-dist/source/generic/babel-samin/samin.ins
runfiles size=1
texmf-dist/tex/generic/babel-samin/samin.ldf
+catalogue-ctan /macros/latex/contrib/babel-contrib/samin
+catalogue-date 2014-05-22 12:43:44 +0200
+catalogue-license lppl1.3
+catalogue-version 1.0c
name babel-scottish
category Package
revision 30289
+shortdesc Babel support for Scottish Gaelic.
+longdesc The package provides the language definition file for support
+longdesc of Gaidhlig (Scottish Gaelic) in babel. Some shortcuts are
+longdesc defined, as well as translations of standard "LaTeX names".
docfiles size=28
- texmf-dist/doc/generic/babel-scottish/scottish.pdf
+ texmf-dist/doc/generic/babel-scottish/scottish.pdf details="Package documentation"
srcfiles size=4
texmf-dist/source/generic/babel-scottish/scottish.dtx
texmf-dist/source/generic/babel-scottish/scottish.ins
runfiles size=1
texmf-dist/tex/generic/babel-scottish/scottish.ldf
+catalogue-ctan /macros/latex/contrib/babel-contrib/scottish
+catalogue-date 2014-05-22 12:43:44 +0200
+catalogue-license lppl1.3
+catalogue-version 1.0g
name babel-serbian
category Package
@@ -16900,20 +19761,28 @@ runfiles size=3
texmf-dist/tex/generic/babel-serbianc/serbianc.ldf
texmf-dist/tex/generic/babel-serbianc/serbianc.sty
catalogue-ctan /macros/latex/contrib/babel-contrib/serbianc
-catalogue-date 2013-05-04 16:25:22 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 2.2
name babel-slovak
category Package
revision 30292
+shortdesc Babel support for typesetting Slovak.
+longdesc The package provides the language definition file for support
+longdesc of Slovak in babel, including Slovak variants of LaTeX built-
+longdesc in-names. Shortcuts are also defined.
docfiles size=48
- texmf-dist/doc/generic/babel-slovak/slovak.pdf
+ texmf-dist/doc/generic/babel-slovak/slovak.pdf details="Package documentation"
srcfiles size=14
texmf-dist/source/generic/babel-slovak/slovak.dtx
texmf-dist/source/generic/babel-slovak/slovak.ins
runfiles size=5
texmf-dist/tex/generic/babel-slovak/slovak.ldf
+catalogue-ctan /macros/latex/contrib/babel-contrib/slovak
+catalogue-date 2014-05-22 12:43:44 +0200
+catalogue-license lppl1.3
+catalogue-version 3.1a
name babel-slovenian
category Package
@@ -16929,17 +19798,22 @@ srcfiles size=5
texmf-dist/source/generic/babel-slovenian/slovene.ins
runfiles size=2
texmf-dist/tex/generic/babel-slovenian/slovene.ldf
-catalogue-ctan /macros/latex/contrib/babel-contrib/slovene
-catalogue-date 2013-05-08 21:33:39 +0200
+catalogue-ctan /macros/latex/contrib/babel-contrib/slovenian
+catalogue-date 2014-05-22 12:43:44 +0200
catalogue-license lppl1.3
catalogue-version 1.2i
name babel-sorbian
category Package
revision 30294
+shortdesc Babel support for Upper and Lower Sorbian.
+longdesc The package provides language definitions file for support of
+longdesc both Upper and Lower Sorbian, in babel. Some shortcuts are
+longdesc defined, as well as translations to the relevant language of
+longdesc standard "LaTeX names".
docfiles size=64
- texmf-dist/doc/generic/babel-sorbian/lsorbian.pdf
- texmf-dist/doc/generic/babel-sorbian/usorbian.pdf
+ texmf-dist/doc/generic/babel-sorbian/lsorbian.pdf details="Package documentation (Lower Sorbian)"
+ texmf-dist/doc/generic/babel-sorbian/usorbian.pdf details="Package documentation (Upper Sorbian)"
srcfiles size=9
texmf-dist/source/generic/babel-sorbian/lsorbian.dtx
texmf-dist/source/generic/babel-sorbian/sorbian.ins
@@ -16947,27 +19821,32 @@ srcfiles size=9
runfiles size=4
texmf-dist/tex/generic/babel-sorbian/lsorbian.ldf
texmf-dist/tex/generic/babel-sorbian/usorbian.ldf
+catalogue-ctan /macros/latex/contrib/babel-contrib/sorbian
+catalogue-date 2014-05-22 12:43:44 +0200
+catalogue-license lppl1.3
+catalogue-version lower sorbian:1.0g, upper:1.0k
name babel-spanish
category Package
-revision 30295
+revision 33668
shortdesc Babel support for Spanish.
longdesc This bundle provides the means to typeset Spanish text, with
longdesc the support provided by the LaTeX standard package babel. Note
longdesc that separate support is provided for those who wish to typeset
longdesc Spanish as written in Mexico.
-docfiles size=42
+docfiles size=46
+ texmf-dist/doc/generic/babel-spanish/README details="Readme"
texmf-dist/doc/generic/babel-spanish/spanish.pdf details="Package documentation" language="es"
srcfiles size=24
texmf-dist/source/generic/babel-spanish/spanish.dtx
texmf-dist/source/generic/babel-spanish/spanish.ins
-runfiles size=8
+runfiles size=9
texmf-dist/tex/generic/babel-spanish/romanidx.sty
texmf-dist/tex/generic/babel-spanish/spanish.ldf
catalogue-ctan /macros/latex/contrib/babel-contrib/spanish
-catalogue-date 2013-05-04 16:20:14 +0200
+catalogue-date 2014-05-22 12:43:44 +0200
catalogue-license lppl
-catalogue-version 5.0j
+catalogue-version 5.0n
name babel-swedish
category Package
@@ -16982,7 +19861,7 @@ srcfiles size=7
runfiles size=2
texmf-dist/tex/generic/babel-swedish/swedish.ldf
catalogue-ctan /macros/latex/contrib/babel-contrib/swedish
-catalogue-date 2013-05-06 23:49:45 +0200
+catalogue-date 2014-05-22 12:43:44 +0200
catalogue-license lppl1.3
catalogue-version 2.3d
@@ -17002,27 +19881,28 @@ runfiles size=8
texmf-dist/tex/generic/babel-thai/thai.ldf
texmf-dist/tex/generic/babel-thai/tis620.def
catalogue-ctan /macros/latex/contrib/babel-contrib/thai
-catalogue-date 2013-05-19 01:05:23 +0200
+catalogue-date 2014-05-22 12:50:09 +0200
catalogue-license lppl1.3
catalogue-version 1.0.0
name babel-turkish
category Package
-revision 30297
+revision 33284
shortdesc Babel support for Turkish documents.
longdesc The package provides support, within babel, of the Turkish
longdesc language.
-docfiles size=30
+docfiles size=67
+ texmf-dist/doc/generic/babel-turkish/README
texmf-dist/doc/generic/babel-turkish/turkish.pdf details="Package documentation"
-srcfiles size=5
+srcfiles size=6
texmf-dist/source/generic/babel-turkish/turkish.dtx
texmf-dist/source/generic/babel-turkish/turkish.ins
runfiles size=2
texmf-dist/tex/generic/babel-turkish/turkish.ldf
catalogue-ctan /macros/latex/contrib/babel-contrib/turkish
-catalogue-date 2013-05-02 15:12:34 +0200
+catalogue-date 2014-03-25 07:43:48 +0100
catalogue-license lppl1.3
-catalogue-version 1.2m
+catalogue-version 1.3b
name babel-ukraineb
category Package
@@ -17048,14 +19928,14 @@ runfiles size=2
texmf-dist/tex/generic/babel-vietnamese/vietnam.ldf
texmf-dist/tex/generic/babel-vietnamese/vietnamese.ldf
catalogue-ctan /macros/latex/contrib/babel-contrib/vietnamese
-catalogue-date 2013-05-20 00:05:10 +0200
+catalogue-date 2014-05-22 12:50:09 +0200
catalogue-license lppl1.3
catalogue-version 1.3
name babel-welsh
category Package
revision 30299
-shortdesc babel-welshBabel support for Welsh.
+shortdesc Babel support for Welsh.
longdesc The package provides the language definition file for Welsh.
longdesc (Mostly Welsh-language versions of the standard names in a
longdesc LaTeX file.)
@@ -17067,7 +19947,7 @@ srcfiles size=4
runfiles size=1
texmf-dist/tex/generic/babel-welsh/welsh.ldf
catalogue-ctan /macros/latex/contrib/babel-contrib/welsh
-catalogue-date 2013-05-03 01:23:11 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.0d
@@ -17142,7 +20022,7 @@ catalogue-version 1.31
name background
category Package
-revision 27390
+revision 33100
shortdesc Placement of background material on pages of a document.
longdesc The package offers the placement of background material on the
longdesc pages of a document. The user can control many aspects
@@ -17150,7 +20030,7 @@ longdesc (contents, position, color, opacity) of the background material
longdesc that will be displayed; all placement and attribute settings
longdesc are controlled by setting key values. The package makes use of
longdesc the everypage package, and uses pgf/tikz for attribute control.
-docfiles size=27
+docfiles size=30
texmf-dist/doc/latex/background/README details="Readme"
texmf-dist/doc/latex/background/background.pdf details="Package documentation"
srcfiles size=8
@@ -17159,9 +20039,9 @@ srcfiles size=8
runfiles size=2
texmf-dist/tex/latex/background/background.sty
catalogue-ctan /macros/latex/contrib/background
-catalogue-date 2012-08-15 00:28:07 +0200
+catalogue-date 2014-03-04 21:07:04 +0100
catalogue-license lppl
-catalogue-version 1.0
+catalogue-version 2.1
name backnaur
category Package
@@ -17179,7 +20059,7 @@ srcfiles size=6
runfiles size=1
texmf-dist/tex/latex/backnaur/backnaur.sty
catalogue-ctan /macros/latex/contrib/backnaur
-catalogue-date 2012-12-21 17:28:17 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.1
@@ -17468,7 +20348,7 @@ runfiles size=92
texmf-dist/fonts/tfm/public/bartel-chess-fonts/pkelch8.tfm
texmf-dist/fonts/tfm/public/bartel-chess-fonts/pkelch9.tfm
catalogue-ctan /fonts/bartel-chess-fonts
-catalogue-date 2012-05-17 17:06:31 +0200
+catalogue-date 2014-04-06 12:09:20 +0200
catalogue-license gpl
name bashful
@@ -17491,7 +20371,7 @@ docfiles size=148
runfiles size=5
texmf-dist/tex/latex/bashful/bashful.sty
catalogue-ctan /macros/latex/contrib/bashful
-catalogue-date 2012-05-17 17:06:31 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 0.93
@@ -17601,28 +20481,519 @@ runfiles size=274
texmf-dist/tex/latex/baskervald/ts1ybv.fd
texmf-dist/tex/latex/baskervald/ts1ybvw.fd
catalogue-ctan /fonts/baskervaldadf
-catalogue-date 2012-11-30 15:48:00 +0100
+catalogue-date 2014-04-03 11:47:35 +0200
catalogue-license lppl
catalogue-version 1.016
+name baskervaldx
+category Package
+revision 33730
+shortdesc Extension and modification of BaskervaldADF with LaTeX support
+longdesc Extends and modifies the BaskervaldADF font (a Baskerville
+longdesc substitute) with more accented glyphs, with small caps and
+longdesc oldstyle figures in all shapes. Includes OpenType and
+longdesc PostScript fonts, as well as LaTeX support files.
+execute addMap Baskervaldx.map
+docfiles size=57
+ texmf-dist/doc/fonts/baskervaldx/COPYING
+ texmf-dist/doc/fonts/baskervaldx/NOTICE.txt
+ texmf-dist/doc/fonts/baskervaldx/README details="Readme"
+ texmf-dist/doc/fonts/baskervaldx/baskervaldx-doc.pdf
+ texmf-dist/doc/fonts/baskervaldx/baskervaldx-doc.tex
+ texmf-dist/doc/fonts/baskervaldx/baskervaldxmatheg-crop.pdf
+runfiles size=1157
+ texmf-dist/fonts/afm/public/baskervaldx/Baskervaldx-Bol.afm
+ texmf-dist/fonts/afm/public/baskervaldx/Baskervaldx-BolIta.afm
+ texmf-dist/fonts/afm/public/baskervaldx/Baskervaldx-Ita.afm
+ texmf-dist/fonts/afm/public/baskervaldx/Baskervaldx-Reg.afm
+ texmf-dist/fonts/enc/dvips/baskervaldx/bvalph.enc
+ texmf-dist/fonts/enc/dvips/baskervaldx/bvtabosf.enc
+ texmf-dist/fonts/enc/dvips/baskervaldx/zbv_2bp5ef.enc
+ texmf-dist/fonts/enc/dvips/baskervaldx/zbv_2n2qka.enc
+ texmf-dist/fonts/enc/dvips/baskervaldx/zbv_2sm4i7.enc
+ texmf-dist/fonts/enc/dvips/baskervaldx/zbv_3lvabu.enc
+ texmf-dist/fonts/enc/dvips/baskervaldx/zbv_3omoui.enc
+ texmf-dist/fonts/enc/dvips/baskervaldx/zbv_4f5bev.enc
+ texmf-dist/fonts/enc/dvips/baskervaldx/zbv_4kmser.enc
+ texmf-dist/fonts/enc/dvips/baskervaldx/zbv_4ksy5y.enc
+ texmf-dist/fonts/enc/dvips/baskervaldx/zbv_537kn6.enc
+ texmf-dist/fonts/enc/dvips/baskervaldx/zbv_5zt4ml.enc
+ texmf-dist/fonts/enc/dvips/baskervaldx/zbv_67xtiz.enc
+ texmf-dist/fonts/enc/dvips/baskervaldx/zbv_6mioll.enc
+ texmf-dist/fonts/enc/dvips/baskervaldx/zbv_6rdtju.enc
+ texmf-dist/fonts/enc/dvips/baskervaldx/zbv_6rwo65.enc
+ texmf-dist/fonts/enc/dvips/baskervaldx/zbv_6tdhgo.enc
+ texmf-dist/fonts/enc/dvips/baskervaldx/zbv_7453eo.enc
+ texmf-dist/fonts/enc/dvips/baskervaldx/zbv_7nnme4.enc
+ texmf-dist/fonts/enc/dvips/baskervaldx/zbv_7qmldf.enc
+ texmf-dist/fonts/enc/dvips/baskervaldx/zbv_awcfcx.enc
+ texmf-dist/fonts/enc/dvips/baskervaldx/zbv_bgypte.enc
+ texmf-dist/fonts/enc/dvips/baskervaldx/zbv_bs5d7e.enc
+ texmf-dist/fonts/enc/dvips/baskervaldx/zbv_caye23.enc
+ texmf-dist/fonts/enc/dvips/baskervaldx/zbv_cgzxx6.enc
+ texmf-dist/fonts/enc/dvips/baskervaldx/zbv_ck4t6h.enc
+ texmf-dist/fonts/enc/dvips/baskervaldx/zbv_coqtyh.enc
+ texmf-dist/fonts/enc/dvips/baskervaldx/zbv_e3qxqg.enc
+ texmf-dist/fonts/enc/dvips/baskervaldx/zbv_ea64ih.enc
+ texmf-dist/fonts/enc/dvips/baskervaldx/zbv_gar3zb.enc
+ texmf-dist/fonts/enc/dvips/baskervaldx/zbv_gjwmpg.enc
+ texmf-dist/fonts/enc/dvips/baskervaldx/zbv_go57dj.enc
+ texmf-dist/fonts/enc/dvips/baskervaldx/zbv_gsgxts.enc
+ texmf-dist/fonts/enc/dvips/baskervaldx/zbv_h4nqsn.enc
+ texmf-dist/fonts/enc/dvips/baskervaldx/zbv_hg6ru4.enc
+ texmf-dist/fonts/enc/dvips/baskervaldx/zbv_hkyy53.enc
+ texmf-dist/fonts/enc/dvips/baskervaldx/zbv_igsfta.enc
+ texmf-dist/fonts/enc/dvips/baskervaldx/zbv_ik76ei.enc
+ texmf-dist/fonts/enc/dvips/baskervaldx/zbv_ilkd46.enc
+ texmf-dist/fonts/enc/dvips/baskervaldx/zbv_jd6ty7.enc
+ texmf-dist/fonts/enc/dvips/baskervaldx/zbv_jmvj36.enc
+ texmf-dist/fonts/enc/dvips/baskervaldx/zbv_jwmruw.enc
+ texmf-dist/fonts/enc/dvips/baskervaldx/zbv_k3ascw.enc
+ texmf-dist/fonts/enc/dvips/baskervaldx/zbv_k6hbcl.enc
+ texmf-dist/fonts/enc/dvips/baskervaldx/zbv_krjs6b.enc
+ texmf-dist/fonts/enc/dvips/baskervaldx/zbv_l7sulo.enc
+ texmf-dist/fonts/enc/dvips/baskervaldx/zbv_lewyuf.enc
+ texmf-dist/fonts/enc/dvips/baskervaldx/zbv_mvsyl4.enc
+ texmf-dist/fonts/enc/dvips/baskervaldx/zbv_n3xo7h.enc
+ texmf-dist/fonts/enc/dvips/baskervaldx/zbv_n57xi2.enc
+ texmf-dist/fonts/enc/dvips/baskervaldx/zbv_nak3zo.enc
+ texmf-dist/fonts/enc/dvips/baskervaldx/zbv_ne5zxs.enc
+ texmf-dist/fonts/enc/dvips/baskervaldx/zbv_nq5ldf.enc
+ texmf-dist/fonts/enc/dvips/baskervaldx/zbv_oue4qy.enc
+ texmf-dist/fonts/enc/dvips/baskervaldx/zbv_riybhr.enc
+ texmf-dist/fonts/enc/dvips/baskervaldx/zbv_rtdlfq.enc
+ texmf-dist/fonts/enc/dvips/baskervaldx/zbv_rzwiio.enc
+ texmf-dist/fonts/enc/dvips/baskervaldx/zbv_shb4ap.enc
+ texmf-dist/fonts/enc/dvips/baskervaldx/zbv_uhxou6.enc
+ texmf-dist/fonts/enc/dvips/baskervaldx/zbv_untte3.enc
+ texmf-dist/fonts/enc/dvips/baskervaldx/zbv_upsxpb.enc
+ texmf-dist/fonts/enc/dvips/baskervaldx/zbv_wvrs5w.enc
+ texmf-dist/fonts/enc/dvips/baskervaldx/zbv_wy43ep.enc
+ texmf-dist/fonts/enc/dvips/baskervaldx/zbv_xbckbj.enc
+ texmf-dist/fonts/enc/dvips/baskervaldx/zbv_xjuza2.enc
+ texmf-dist/fonts/enc/dvips/baskervaldx/zbv_xsxsev.enc
+ texmf-dist/fonts/enc/dvips/baskervaldx/zbv_xyk42r.enc
+ texmf-dist/fonts/enc/dvips/baskervaldx/zbv_ymibyh.enc
+ texmf-dist/fonts/map/dvips/baskervaldx/Baskervaldx.map
+ texmf-dist/fonts/opentype/public/baskervaldx/Baskervaldx-Bol.otf
+ texmf-dist/fonts/opentype/public/baskervaldx/Baskervaldx-BolIta.otf
+ texmf-dist/fonts/opentype/public/baskervaldx/Baskervaldx-Ita.otf
+ texmf-dist/fonts/opentype/public/baskervaldx/Baskervaldx-Reg.otf
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-lf-ly1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-lf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-lf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-lf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-lf-sc-t1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-lf-swash-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-lf-swash-ly1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-lf-swash-t1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-lf-swash-t1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-lf-t1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-lf-ts1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-osf-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-osf-ly1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-osf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-osf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-osf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-osf-sc-t1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-osf-swash-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-osf-swash-ly1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-osf-swash-t1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-osf-swash-t1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-osf-t1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-osf-t1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-osf-ts1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-osf-ts1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-osf.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-raw.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-sup-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-sup-ly1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-sup-t1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-sup-t1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-tlf-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-tlf-ly1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-tlf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-tlf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-tlf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-tlf-sc-t1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-tlf-swash-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-tlf-swash-ly1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-tlf-swash-t1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-tlf-swash-t1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-tlf-t1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-tlf-t1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-tlf-ts1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-tlf-ts1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-tosf-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-tosf-ly1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-tosf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-tosf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-tosf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-tosf-sc-t1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-tosf-swash-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-tosf-swash-ly1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-tosf-swash-t1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-tosf-swash-t1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-tosf-t1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-tosf-t1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-tosf-ts1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-tosf-ts1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-alph.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-lf-ly1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-lf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-lf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-lf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-lf-sc-t1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-lf-swash-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-lf-swash-ly1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-lf-swash-t1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-lf-swash-t1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-lf-t1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-lf-ts1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-osf-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-osf-ly1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-osf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-osf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-osf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-osf-sc-t1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-osf-swash-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-osf-swash-ly1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-osf-swash-t1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-osf-swash-t1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-osf-t1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-osf-t1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-osf-ts1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-osf-ts1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-sup-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-sup-ly1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-sup-t1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-sup-t1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-tlf-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-tlf-ly1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-tlf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-tlf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-tlf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-tlf-sc-t1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-tlf-swash-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-tlf-swash-ly1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-tlf-swash-t1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-tlf-swash-t1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-tlf-t1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-tlf-t1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-tlf-ts1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-tlf-ts1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-tosf-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-tosf-ly1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-tosf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-tosf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-tosf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-tosf-sc-t1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-tosf-swash-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-tosf-swash-ly1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-tosf-swash-t1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-tosf-swash-t1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-tosf-t1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-tosf-t1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-tosf-ts1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-tosf-ts1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-alph.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-lf-ly1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-lf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-lf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-lf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-lf-sc-t1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-lf-swash-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-lf-swash-ly1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-lf-swash-t1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-lf-swash-t1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-lf-t1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-lf-ts1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-osf-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-osf-ly1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-osf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-osf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-osf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-osf-sc-t1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-osf-swash-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-osf-swash-ly1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-osf-swash-t1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-osf-swash-t1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-osf-t1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-osf-t1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-osf-ts1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-osf-ts1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-sup-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-sup-ly1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-sup-t1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-sup-t1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-tlf-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-tlf-ly1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-tlf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-tlf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-tlf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-tlf-sc-t1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-tlf-swash-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-tlf-swash-ly1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-tlf-swash-t1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-tlf-swash-t1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-tlf-t1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-tlf-t1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-tlf-ts1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-tlf-ts1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-tosf-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-tosf-ly1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-tosf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-tosf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-tosf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-tosf-sc-t1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-tosf-swash-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-tosf-swash-ly1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-tosf-swash-t1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-tosf-swash-t1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-tosf-t1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-tosf-t1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-tosf-ts1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-tosf-ts1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-lf-ly1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-lf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-lf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-lf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-lf-sc-t1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-lf-swash-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-lf-swash-ly1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-lf-swash-t1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-lf-swash-t1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-lf-t1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-lf-ts1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-osf-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-osf-ly1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-osf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-osf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-osf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-osf-sc-t1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-osf-swash-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-osf-swash-ly1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-osf-swash-t1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-osf-swash-t1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-osf-t1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-osf-t1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-osf-ts1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-osf-ts1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-raw.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-sup-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-sup-ly1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-sup-t1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-sup-t1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-tlf-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-tlf-ly1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-tlf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-tlf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-tlf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-tlf-sc-t1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-tlf-swash-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-tlf-swash-ly1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-tlf-swash-t1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-tlf-swash-t1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-tlf-t1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-tlf-t1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-tlf-ts1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-tlf-ts1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-tosf-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-tosf-ly1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-tosf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-tosf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-tosf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-tosf-sc-t1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-tosf-swash-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-tosf-swash-ly1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-tosf-swash-t1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-tosf-swash-t1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-tosf-t1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-tosf-t1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-tosf-ts1--base.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-tosf-ts1.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/Baskervaldx-osf.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/zbvbmi.tfm
+ texmf-dist/fonts/tfm/public/baskervaldx/zbvmi.tfm
+ texmf-dist/fonts/type1/public/baskervaldx/Baskervaldx-Bol.pfb
+ texmf-dist/fonts/type1/public/baskervaldx/Baskervaldx-BolIta.pfb
+ texmf-dist/fonts/type1/public/baskervaldx/Baskervaldx-Ita.pfb
+ texmf-dist/fonts/type1/public/baskervaldx/Baskervaldx-Reg.pfb
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-Bol-lf-ly1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-Bol-lf-sc-ly1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-Bol-lf-sc-t1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-Bol-lf-swash-ly1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-Bol-lf-swash-t1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-Bol-lf-t1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-Bol-lf-ts1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-Bol-osf-ly1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-Bol-osf-sc-ly1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-Bol-osf-sc-t1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-Bol-osf-swash-ly1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-Bol-osf-swash-t1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-Bol-osf-t1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-Bol-osf-ts1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-Bol-sup-ly1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-Bol-sup-t1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-Bol-tlf-ly1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-Bol-tlf-sc-ly1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-Bol-tlf-sc-t1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-Bol-tlf-swash-ly1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-Bol-tlf-swash-t1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-Bol-tlf-t1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-Bol-tlf-ts1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-Bol-tosf-ly1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-Bol-tosf-sc-ly1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-Bol-tosf-sc-t1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-Bol-tosf-swash-ly1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-Bol-tosf-swash-t1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-Bol-tosf-t1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-Bol-tosf-ts1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-BolIta-lf-ly1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-BolIta-lf-sc-ly1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-BolIta-lf-sc-t1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-BolIta-lf-swash-ly1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-BolIta-lf-swash-t1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-BolIta-lf-t1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-BolIta-lf-ts1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-BolIta-osf-ly1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-BolIta-osf-sc-ly1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-BolIta-osf-sc-t1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-BolIta-osf-swash-ly1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-BolIta-osf-swash-t1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-BolIta-osf-t1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-BolIta-osf-ts1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-BolIta-sup-ly1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-BolIta-sup-t1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-BolIta-tlf-ly1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-BolIta-tlf-sc-ly1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-BolIta-tlf-sc-t1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-BolIta-tlf-swash-ly1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-BolIta-tlf-swash-t1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-BolIta-tlf-t1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-BolIta-tlf-ts1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-BolIta-tosf-ly1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-BolIta-tosf-sc-ly1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-BolIta-tosf-sc-t1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-BolIta-tosf-swash-ly1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-BolIta-tosf-swash-t1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-BolIta-tosf-t1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-BolIta-tosf-ts1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-Ita-lf-ly1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-Ita-lf-sc-ly1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-Ita-lf-sc-t1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-Ita-lf-swash-ly1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-Ita-lf-swash-t1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-Ita-lf-t1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-Ita-lf-ts1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-Ita-osf-ly1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-Ita-osf-sc-ly1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-Ita-osf-sc-t1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-Ita-osf-swash-ly1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-Ita-osf-swash-t1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-Ita-osf-t1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-Ita-osf-ts1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-Ita-sup-ly1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-Ita-sup-t1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-Ita-tlf-ly1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-Ita-tlf-sc-ly1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-Ita-tlf-sc-t1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-Ita-tlf-swash-ly1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-Ita-tlf-swash-t1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-Ita-tlf-t1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-Ita-tlf-ts1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-Ita-tosf-ly1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-Ita-tosf-sc-ly1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-Ita-tosf-sc-t1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-Ita-tosf-swash-ly1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-Ita-tosf-swash-t1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-Ita-tosf-t1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-Ita-tosf-ts1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-Reg-lf-ly1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-Reg-lf-sc-ly1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-Reg-lf-sc-t1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-Reg-lf-swash-ly1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-Reg-lf-swash-t1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-Reg-lf-t1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-Reg-lf-ts1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-Reg-osf-ly1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-Reg-osf-sc-ly1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-Reg-osf-sc-t1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-Reg-osf-swash-ly1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-Reg-osf-swash-t1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-Reg-osf-t1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-Reg-osf-ts1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-Reg-sup-ly1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-Reg-sup-t1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-Reg-tlf-ly1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-Reg-tlf-sc-ly1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-Reg-tlf-sc-t1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-Reg-tlf-swash-ly1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-Reg-tlf-swash-t1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-Reg-tlf-t1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-Reg-tlf-ts1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-Reg-tosf-ly1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-Reg-tosf-sc-ly1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-Reg-tosf-sc-t1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-Reg-tosf-swash-ly1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-Reg-tosf-swash-t1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-Reg-tosf-t1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/Baskervaldx-Reg-tosf-ts1.vf
+ texmf-dist/fonts/vf/public/baskervaldx/zbvbmi.vf
+ texmf-dist/fonts/vf/public/baskervaldx/zbvmi.vf
+ texmf-dist/tex/latex/baskervaldx/Baskervaldx.sty
+ texmf-dist/tex/latex/baskervaldx/LY1Baskervaldx-LF.fd
+ texmf-dist/tex/latex/baskervaldx/LY1Baskervaldx-OsF.fd
+ texmf-dist/tex/latex/baskervaldx/LY1Baskervaldx-Sup.fd
+ texmf-dist/tex/latex/baskervaldx/LY1Baskervaldx-TLF.fd
+ texmf-dist/tex/latex/baskervaldx/LY1Baskervaldx-TOsF.fd
+ texmf-dist/tex/latex/baskervaldx/T1Baskervaldx-LF.fd
+ texmf-dist/tex/latex/baskervaldx/T1Baskervaldx-OsF.fd
+ texmf-dist/tex/latex/baskervaldx/T1Baskervaldx-Sup.fd
+ texmf-dist/tex/latex/baskervaldx/T1Baskervaldx-TLF.fd
+ texmf-dist/tex/latex/baskervaldx/T1Baskervaldx-TOsF.fd
+ texmf-dist/tex/latex/baskervaldx/TS1Baskervaldx-LF.fd
+ texmf-dist/tex/latex/baskervaldx/TS1Baskervaldx-OsF.fd
+ texmf-dist/tex/latex/baskervaldx/TS1Baskervaldx-TLF.fd
+ texmf-dist/tex/latex/baskervaldx/TS1Baskervaldx-TOsF.fd
+ texmf-dist/tex/latex/baskervaldx/omlzbvmi.fd
+catalogue-ctan /fonts/baskervaldx
+catalogue-date 2014-04-28 07:47:31 +0200
+catalogue-license gpl
+catalogue-version 1.04
+
name basque-book
category Package
-revision 27049
+revision 32924
shortdesc Class for book-type documents written in Basque.
longdesc The class is derived from the LaTeX book class. The extensions
longdesc solve grammatical and numeration issues that occur when book-
longdesc type documents are written in Basque. The class is useful for
longdesc writing books, PhD and Master Theses, etc., in Basque.
-docfiles size=56
+docfiles size=117
texmf-dist/doc/latex/basque-book/README details="Readme"
- texmf-dist/doc/latex/basque-book/basque-book.pdf details="Package documentation"
-srcfiles size=9
+ texmf-dist/doc/latex/basque-book/basque-book.pdf details="Package documentation (English)" language="en"
+ texmf-dist/doc/latex/basque-book/basque-book_EUS.pdf details="Package documentation (Basque)" language="eu"
+ texmf-dist/doc/latex/basque-book/basque-book_EUS.tex
+srcfiles size=11
texmf-dist/source/latex/basque-book/basque-book.dtx
texmf-dist/source/latex/basque-book/basque-book.ins
runfiles size=6
texmf-dist/tex/latex/basque-book/basque-book.cls
catalogue-ctan /macros/latex/contrib/basque-book
-catalogue-date 2012-07-16 11:23:54 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.2
catalogue-version 1.20
@@ -17644,7 +21015,7 @@ srcfiles size=4
runfiles size=2
texmf-dist/tex/latex/basque-date/basque-date.sty
catalogue-ctan /macros/latex/contrib/basque-date
-catalogue-date 2012-07-08 14:35:29 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.2
catalogue-version 1.05
@@ -17689,7 +21060,7 @@ runfiles size=24
texmf-dist/tex/latex/bbding/Uding.fd
texmf-dist/tex/latex/bbding/bbding.sty
catalogue-ctan /fonts/bbding
-catalogue-date 2012-05-17 17:06:31 +0200
+catalogue-date 2014-04-06 17:50:10 +0200
catalogue-license lppl
catalogue-version 1.01
@@ -17802,7 +21173,7 @@ runfiles size=159
texmf-dist/fonts/tfm/public/bbm/bbmtt8.tfm
texmf-dist/fonts/tfm/public/bbm/bbmtt9.tfm
catalogue-ctan /fonts/cm/bbm
-catalogue-date 2012-04-27 15:08:24 +0200
+catalogue-date 2014-04-06 17:37:39 +0200
catalogue-license other-free
name bbm-macros
@@ -17877,13 +21248,13 @@ runfiles size=45
texmf-dist/tex/latex/bbold/Ubbold.fd
texmf-dist/tex/latex/bbold/bbold.sty
catalogue-ctan /fonts/bbold
-catalogue-date 2011-12-20 12:56:09 +0100
+catalogue-date 2014-04-06 17:50:10 +0200
catalogue-license bsd
catalogue-version 1.01
name bbold-type1
category Package
-revision 20524
+revision 33143
shortdesc An Adobe Type 1 format version of the bbold font.
longdesc The files offer an Adobe Type 1 format version of the 5pt, 7pt
longdesc and 10pt versions of the bbold fonts. The distribution also
@@ -17907,7 +21278,7 @@ runfiles size=28
texmf-dist/fonts/type1/public/bbold-type1/bbold5.pfb
texmf-dist/fonts/type1/public/bbold-type1/bbold7.pfb
catalogue-ctan /fonts/bbold-type1
-catalogue-date 2011-12-22 16:42:23 +0100
+catalogue-date 2014-04-06 17:50:10 +0200
catalogue-license other-free
name bchart
@@ -17926,7 +21297,7 @@ docfiles size=44
runfiles size=2
texmf-dist/tex/latex/bchart/bchart.sty
catalogue-ctan /macros/latex/contrib/bchart
-catalogue-date 2012-08-22 15:50:28 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license other-free
catalogue-version 0.1.2
@@ -18079,13 +21450,13 @@ runfiles size=381
texmf-dist/tex/latex/bclogo/bc-yin.mps
texmf-dist/tex/latex/bclogo/bclogo.sty
catalogue-ctan /graphics/bclogo
-catalogue-date 2012-04-25 18:00:26 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 2.26
name beamer
category Package
-revision 29349
+revision 32491
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
@@ -18106,7 +21477,7 @@ longdesc package, which is used for customising the package for use in
longdesc other language environments.
depend pgf
depend xcolor
-docfiles size=1262
+docfiles size=1263
texmf-dist/doc/latex/beamer/AUTHORS
texmf-dist/doc/latex/beamer/ChangeLog
texmf-dist/doc/latex/beamer/FILES
@@ -18444,9 +21815,9 @@ runfiles size=323
texmf-dist/tex/latex/beamer/translator/translator-language-mappings.tex
texmf-dist/tex/latex/beamer/translator/translator.sty
catalogue-ctan /macros/latex/contrib/beamer
-catalogue-date 2013-01-04 23:53:30 +0100
+catalogue-date 2013-12-25 22:16:09 +0100
catalogue-license gpl
-catalogue-version 3.26
+catalogue-version 3.33
name beamer-FUBerlin
category Package
@@ -18478,7 +21849,7 @@ runfiles size=6
texmf-dist/tex/latex/beamer-FUBerlin/beamerouterthemeBerlinFU.sty
texmf-dist/tex/latex/beamer-FUBerlin/beamerthemeBerlinFU.sty
catalogue-ctan /macros/latex/contrib/beamer-FUBerlin
-catalogue-date 2012-04-25 18:00:26 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 0.02
@@ -18544,7 +21915,7 @@ runfiles size=88
texmf-dist/tex/latex/beamer2thesis/beamerthemeTorinoTh.sty
texmf-dist/tex/latex/beamer2thesis/logopolito.jpg
catalogue-ctan /macros/latex/contrib/beamer-contrib/themes/beamer2thesis
-catalogue-date 2012-08-27 10:11:59 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 2.2
@@ -18561,7 +21932,7 @@ docfiles size=1
runfiles size=1
texmf-dist/tex/latex/beameraudience/beameraudience.sty
catalogue-ctan /macros/latex/contrib/beamer-contrib/beameraudience
-catalogue-date 2012-03-21 11:54:29 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 0.1
@@ -18575,12 +21946,12 @@ longdesc available (using packages such as type1cm if necessary). In
longdesc addition, the package allows the user to benefit from the nice
longdesc colour box handling and alignment provided by the beamer class
longdesc (for example, with rounded corners and shadows). Good looking
-longdesc posters may be created very rapidly. Features include: -
-longdesc scalable fonts using the fp and type1cm packages; - posters in
-longdesc A-series sizes, and custom sizes like double A0 are possible; -
-longdesc still applicable to custom beamer slides, e.g. 16:9 slides for
-longdesc a wide-screen (i.e. 1.78 aspect ratio); - orientation may be
-longdesc portrait or landscape; - a 'debug mode' is provided.
+longdesc posters may be created very rapidly. Features include: scalable
+longdesc fonts using the fp and type1cm packages; posters in A-series
+longdesc sizes, and custom sizes like double A0 are possible; still
+longdesc applicable to custom beamer slides, e.g. 16:9 slides for a
+longdesc wide-screen (i.e. 1.78 aspect ratio); orientation may be
+longdesc portrait or landscape; a 'debug mode' is provided.
docfiles size=22
texmf-dist/doc/latex/beamerposter/README details="Readme"
texmf-dist/doc/latex/beamerposter/beamerposter.pdf details="Package documentation (PDF)"
@@ -18589,7 +21960,7 @@ docfiles size=22
runfiles size=2
texmf-dist/tex/latex/beamerposter/beamerposter.sty
catalogue-ctan /macros/latex/contrib/beamerposter
-catalogue-date 2012-04-25 18:00:26 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.07
@@ -18615,7 +21986,7 @@ srcfiles size=23
runfiles size=4
texmf-dist/tex/latex/beamersubframe/beamersubframe.sty
catalogue-ctan /macros/latex/contrib/beamer-contrib/beamersubframe
-catalogue-date 2012-03-21 11:54:29 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 0.2
@@ -18623,15 +21994,14 @@ name beamertheme-upenn-bc
category Package
revision 29937
shortdesc Beamer themies for Boston College and the University of Pennsylvania.
-longdesc Beamer themes in the colors of the - University of
-longdesc Pennsylvania, USA, and - Boston College, USA. Both were tested
-longdesc for the presentation theme 'Warsaw. Please note that these
-longdesc color themes are neither official nor exact! The colours are
-longdesc approximated from the universities' style guidelines and
-longdesc websites, and slightly modified where necessary to generate an
-longdesc appealing look. The universities neither endorse, nor provide
-longdesc any support for, these color themes. I give no warranty for the
-longdesc code.
+longdesc Beamer themes in the colors of the University of Pennsylvania,
+longdesc USA, and Boston College, USA. Both were tested for the
+longdesc presentation theme 'Warsaw. Please note that these color themes
+longdesc are neither official nor exact! The colours are approximated
+longdesc from the universities' style guidelines and websites, and
+longdesc slightly modified where necessary to generate an appealing
+longdesc look. The universities neither endorse, nor provide any support
+longdesc for, these color themes. I give no warranty for the code.
docfiles size=139
texmf-dist/doc/latex/beamertheme-upenn-bc/README details="Readme"
texmf-dist/doc/latex/beamertheme-upenn-bc/beamerBCstyle.pdf
@@ -18641,7 +22011,7 @@ runfiles size=2
texmf-dist/tex/latex/beamertheme-upenn-bc/beamercolorthemegoeagles.sty
texmf-dist/tex/latex/beamertheme-upenn-bc/beamercolorthemepenn.sty
catalogue-ctan /macros/latex/contrib/beamer-contrib/themes/upenn-bc
-catalogue-date 2013-04-14 16:59:43 +0200
+catalogue-date 2013-12-17 14:10:26 +0100
catalogue-license lppl
catalogue-version 1.0
@@ -18653,7 +22023,7 @@ longdesc A theme for beamer presentations.
runfiles size=1
texmf-dist/tex/latex/beamerthemejltree/beamerthemeJLTree.sty
catalogue-ctan /macros/latex/contrib/beamer-contrib/themes/beamerthemeJLTree.sty
-catalogue-date 2012-04-25 18:00:26 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license gpl
catalogue-version 1.1
@@ -18669,14 +22039,24 @@ docfiles size=1
runfiles size=2
texmf-dist/tex/latex/beamerthemenirma/beamerthemenirma.sty
catalogue-ctan /macros/latex/contrib/beamer-contrib/themes/nirma
-catalogue-date 2012-04-25 18:26:47 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 0.1
+name beamerthemephnompenh
+category Package
+revision 31392
+docfiles size=21
+ texmf-dist/doc/latex/beamerthemephnompenh/README
+ texmf-dist/doc/latex/beamerthemephnompenh/beamerthemePhnomPenh.pdf
+ texmf-dist/doc/latex/beamerthemephnompenh/beamerthemePhnomPenh.tex
+runfiles size=1
+ texmf-dist/tex/latex/beamerthemephnompenh/beamerthemePhnomPenh.sty
+
name beebe
category Package
-revision 30727
-runfiles size=1153
+revision 33469
+runfiles size=1202
texmf-dist/bibtex/bib/beebe/gut.bib
texmf-dist/bibtex/bib/beebe/komoedie.bib
texmf-dist/bibtex/bib/beebe/texbook1.bib
@@ -18730,6 +22110,9 @@ runfiles size=1153
texmf-dist/bibtex/bst/beebe/plainyr.bst
texmf-dist/bibtex/bst/beebe/refer.bst
texmf-dist/bibtex/bst/beebe/xbtxbst.doc
+ texmf-dist/tex/generic/beebe/bibnames.sty
+ texmf-dist/tex/generic/beebe/texnames.sty
+ texmf-dist/tex/generic/beebe/tugboat.def
name begriff
category Package
@@ -18745,7 +22128,7 @@ docfiles size=20
runfiles size=2
texmf-dist/tex/latex/begriff/begriff.sty
catalogue-ctan /macros/latex/contrib/begriff
-catalogue-date 2012-07-19 10:25:45 +0200
+catalogue-date 2014-03-25 19:16:16 +0100
catalogue-license gpl
catalogue-version 1.6
@@ -18771,8 +22154,8 @@ runfiles size=34
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-ctan /fonts/belleek/belleek.zip
-catalogue-date 2012-04-24 10:08:04 +0200
+catalogue-ctan /fonts/belleek
+catalogue-date 2014-04-06 17:50:10 +0200
catalogue-license pd
name bengali
@@ -18944,34 +22327,28 @@ catalogue-license other-free
name berenisadf
category Package
-revision 29845
+revision 32215
shortdesc Berenis ADF fonts and TeX/LaTeX support.
longdesc The bundle provides the BerenisADF Pro font collection, in
longdesc OpenType and PostScript Type 1 formats, together with support
-longdesc files to use the fonts in TeXnANSI (LY1) encoding.
+longdesc files to use the fonts in TeXnANSI (LY1) and LaTeX standard T1
+longdesc and TS1 encodings.
execute addMap ybd.map
-docfiles size=98
+docfiles size=118
texmf-dist/doc/fonts/berenisadf/COPYING
+ texmf-dist/doc/fonts/berenisadf/COPYING.unix
+ texmf-dist/doc/fonts/berenisadf/Makefile.source
texmf-dist/doc/fonts/berenisadf/NOTICE.txt
- texmf-dist/doc/fonts/berenisadf/README details="Readme"
- texmf-dist/doc/fonts/berenisadf/berenisadf.pdf details="Package documentation"
+ texmf-dist/doc/fonts/berenisadf/README.doc
+ texmf-dist/doc/fonts/berenisadf/berenisadf.pdf
texmf-dist/doc/fonts/berenisadf/berenisadf.tex
+ texmf-dist/doc/fonts/berenisadf/cfr.gwneud.cyhoeddus
+ texmf-dist/doc/fonts/berenisadf/ff-ybd.pe
texmf-dist/doc/fonts/berenisadf/manifest.txt
-srcfiles size=300
- texmf-dist/source/fonts/berenisadf/BerenisADFPro-Bold.otf
- texmf-dist/source/fonts/berenisadf/BerenisADFPro-BoldItalic.otf
- texmf-dist/source/fonts/berenisadf/BerenisADFPro-Italic.otf
- texmf-dist/source/fonts/berenisadf/BerenisADFPro-Regular.otf
- texmf-dist/source/fonts/berenisadf/BerenisADFProSC-Bold.otf
- texmf-dist/source/fonts/berenisadf/BerenisADFProSC-BoldItalic.otf
- texmf-dist/source/fonts/berenisadf/BerenisADFProSC-Italic.otf
- texmf-dist/source/fonts/berenisadf/BerenisADFProSC-Regular.otf
- texmf-dist/source/fonts/berenisadf/Makefile
- texmf-dist/source/fonts/berenisadf/cfr.make.public
- texmf-dist/source/fonts/berenisadf/ff-ybd.pe
- texmf-dist/source/fonts/berenisadf/ybd-8y.nam
- texmf-dist/source/fonts/berenisadf/ybd.lig
-runfiles size=968
+ texmf-dist/doc/fonts/berenisadf/ybd-8t.lig
+ texmf-dist/doc/fonts/berenisadf/ybd-8y.lig
+ texmf-dist/doc/fonts/berenisadf/ybd.nam
+runfiles size=1517
texmf-dist/fonts/afm/arkandis/berenisadf/ybdb.afm
texmf-dist/fonts/afm/arkandis/berenisadf/ybdbc.afm
texmf-dist/fonts/afm/arkandis/berenisadf/ybdbci.afm
@@ -18980,6 +22357,12 @@ runfiles size=968
texmf-dist/fonts/afm/arkandis/berenisadf/ybdrc.afm
texmf-dist/fonts/afm/arkandis/berenisadf/ybdrci.afm
texmf-dist/fonts/afm/arkandis/berenisadf/ybdri.afm
+ texmf-dist/fonts/enc/dvips/berenisadf/t1-ybd.enc
+ texmf-dist/fonts/enc/dvips/berenisadf/t1-ybd0.enc
+ texmf-dist/fonts/enc/dvips/berenisadf/t1-ybd1.enc
+ texmf-dist/fonts/enc/dvips/berenisadf/t1-ybd2.enc
+ texmf-dist/fonts/enc/dvips/berenisadf/t1-ybd2j.enc
+ texmf-dist/fonts/enc/dvips/berenisadf/t1-ybdj.enc
texmf-dist/fonts/enc/dvips/berenisadf/texnansi-ybd.enc
texmf-dist/fonts/enc/dvips/berenisadf/texnansi-ybd0.enc
texmf-dist/fonts/enc/dvips/berenisadf/texnansi-ybd1.enc
@@ -18990,84 +22373,194 @@ runfiles size=968
texmf-dist/fonts/enc/dvips/berenisadf/texnansx-ybd2w.enc
texmf-dist/fonts/enc/dvips/berenisadf/texnansx-ybdjw.enc
texmf-dist/fonts/enc/dvips/berenisadf/texnansx-ybdw.enc
+ texmf-dist/fonts/enc/dvips/berenisadf/ts1-ybd.enc
+ texmf-dist/fonts/enc/dvips/berenisadf/ts1-ybd0.enc
+ texmf-dist/fonts/enc/dvips/berenisadf/ts1-ybd1.enc
+ texmf-dist/fonts/enc/dvips/berenisadf/ts1-ybd2.enc
+ texmf-dist/fonts/enc/dvips/berenisadf/ts1-ybd2j.enc
+ texmf-dist/fonts/enc/dvips/berenisadf/ts1-ybdj.enc
texmf-dist/fonts/map/dvips/berenisadf/ybd.map
+ texmf-dist/fonts/opentype/arkandis/berenisadf/BerenisADFPro-Bold.otf
+ texmf-dist/fonts/opentype/arkandis/berenisadf/BerenisADFPro-BoldItalic.otf
+ texmf-dist/fonts/opentype/arkandis/berenisadf/BerenisADFPro-Italic.otf
+ texmf-dist/fonts/opentype/arkandis/berenisadf/BerenisADFPro-Regular.otf
+ texmf-dist/fonts/opentype/arkandis/berenisadf/BerenisADFProSC-Bold.otf
+ texmf-dist/fonts/opentype/arkandis/berenisadf/BerenisADFProSC-BoldItalic.otf
+ texmf-dist/fonts/opentype/arkandis/berenisadf/BerenisADFProSC-Italic.otf
+ texmf-dist/fonts/opentype/arkandis/berenisadf/BerenisADFProSC-Regular.otf
+ texmf-dist/fonts/tfm/arkandis/berenisadf/ybdb08c.tfm
+ texmf-dist/fonts/tfm/arkandis/berenisadf/ybdb08t.tfm
texmf-dist/fonts/tfm/arkandis/berenisadf/ybdb08y.tfm
+ texmf-dist/fonts/tfm/arkandis/berenisadf/ybdb0c8c.tfm
+ texmf-dist/fonts/tfm/arkandis/berenisadf/ybdb0c8t.tfm
texmf-dist/fonts/tfm/arkandis/berenisadf/ybdb0c8y.tfm
+ texmf-dist/fonts/tfm/arkandis/berenisadf/ybdb0ci8c.tfm
+ texmf-dist/fonts/tfm/arkandis/berenisadf/ybdb0ci8t.tfm
texmf-dist/fonts/tfm/arkandis/berenisadf/ybdb0ci8y.tfm
+ texmf-dist/fonts/tfm/arkandis/berenisadf/ybdb0i8c.tfm
+ texmf-dist/fonts/tfm/arkandis/berenisadf/ybdb0i8t.tfm
texmf-dist/fonts/tfm/arkandis/berenisadf/ybdb0i8y.tfm
+ texmf-dist/fonts/tfm/arkandis/berenisadf/ybdb18c.tfm
+ texmf-dist/fonts/tfm/arkandis/berenisadf/ybdb18t.tfm
texmf-dist/fonts/tfm/arkandis/berenisadf/ybdb18y.tfm
+ texmf-dist/fonts/tfm/arkandis/berenisadf/ybdb1c8c.tfm
+ texmf-dist/fonts/tfm/arkandis/berenisadf/ybdb1c8t.tfm
texmf-dist/fonts/tfm/arkandis/berenisadf/ybdb1c8y.tfm
+ texmf-dist/fonts/tfm/arkandis/berenisadf/ybdb1ci8c.tfm
+ texmf-dist/fonts/tfm/arkandis/berenisadf/ybdb1ci8t.tfm
texmf-dist/fonts/tfm/arkandis/berenisadf/ybdb1ci8y.tfm
+ texmf-dist/fonts/tfm/arkandis/berenisadf/ybdb1i8c.tfm
+ texmf-dist/fonts/tfm/arkandis/berenisadf/ybdb1i8t.tfm
texmf-dist/fonts/tfm/arkandis/berenisadf/ybdb1i8y.tfm
+ texmf-dist/fonts/tfm/arkandis/berenisadf/ybdb28c.tfm
+ texmf-dist/fonts/tfm/arkandis/berenisadf/ybdb28t.tfm
texmf-dist/fonts/tfm/arkandis/berenisadf/ybdb28y.tfm
+ texmf-dist/fonts/tfm/arkandis/berenisadf/ybdb2c8c.tfm
+ texmf-dist/fonts/tfm/arkandis/berenisadf/ybdb2c8t.tfm
texmf-dist/fonts/tfm/arkandis/berenisadf/ybdb2c8y.tfm
+ texmf-dist/fonts/tfm/arkandis/berenisadf/ybdb2ci8c.tfm
+ texmf-dist/fonts/tfm/arkandis/berenisadf/ybdb2ci8t.tfm
texmf-dist/fonts/tfm/arkandis/berenisadf/ybdb2ci8y.tfm
+ texmf-dist/fonts/tfm/arkandis/berenisadf/ybdb2cij8c.tfm
+ texmf-dist/fonts/tfm/arkandis/berenisadf/ybdb2cij8t.tfm
texmf-dist/fonts/tfm/arkandis/berenisadf/ybdb2cij8y.tfm
texmf-dist/fonts/tfm/arkandis/berenisadf/ybdb2cijw8y.tfm
texmf-dist/fonts/tfm/arkandis/berenisadf/ybdb2ciw8y.tfm
+ texmf-dist/fonts/tfm/arkandis/berenisadf/ybdb2cj8c.tfm
+ texmf-dist/fonts/tfm/arkandis/berenisadf/ybdb2cj8t.tfm
texmf-dist/fonts/tfm/arkandis/berenisadf/ybdb2cj8y.tfm
texmf-dist/fonts/tfm/arkandis/berenisadf/ybdb2cjw8y.tfm
texmf-dist/fonts/tfm/arkandis/berenisadf/ybdb2cw8y.tfm
+ texmf-dist/fonts/tfm/arkandis/berenisadf/ybdb2i8c.tfm
+ texmf-dist/fonts/tfm/arkandis/berenisadf/ybdb2i8t.tfm
texmf-dist/fonts/tfm/arkandis/berenisadf/ybdb2i8y.tfm
+ texmf-dist/fonts/tfm/arkandis/berenisadf/ybdb2ij8c.tfm
+ texmf-dist/fonts/tfm/arkandis/berenisadf/ybdb2ij8t.tfm
texmf-dist/fonts/tfm/arkandis/berenisadf/ybdb2ij8y.tfm
texmf-dist/fonts/tfm/arkandis/berenisadf/ybdb2ijw8y.tfm
texmf-dist/fonts/tfm/arkandis/berenisadf/ybdb2iw8y.tfm
+ texmf-dist/fonts/tfm/arkandis/berenisadf/ybdb2j8c.tfm
+ texmf-dist/fonts/tfm/arkandis/berenisadf/ybdb2j8t.tfm
texmf-dist/fonts/tfm/arkandis/berenisadf/ybdb2j8y.tfm
texmf-dist/fonts/tfm/arkandis/berenisadf/ybdb2jw8y.tfm
texmf-dist/fonts/tfm/arkandis/berenisadf/ybdb2w8y.tfm
+ texmf-dist/fonts/tfm/arkandis/berenisadf/ybdb8c.tfm
+ texmf-dist/fonts/tfm/arkandis/berenisadf/ybdb8t.tfm
texmf-dist/fonts/tfm/arkandis/berenisadf/ybdb8y.tfm
+ texmf-dist/fonts/tfm/arkandis/berenisadf/ybdbc8c.tfm
+ texmf-dist/fonts/tfm/arkandis/berenisadf/ybdbc8t.tfm
texmf-dist/fonts/tfm/arkandis/berenisadf/ybdbc8y.tfm
+ texmf-dist/fonts/tfm/arkandis/berenisadf/ybdbci8c.tfm
+ texmf-dist/fonts/tfm/arkandis/berenisadf/ybdbci8t.tfm
texmf-dist/fonts/tfm/arkandis/berenisadf/ybdbci8y.tfm
+ texmf-dist/fonts/tfm/arkandis/berenisadf/ybdbcij8c.tfm
+ texmf-dist/fonts/tfm/arkandis/berenisadf/ybdbcij8t.tfm
texmf-dist/fonts/tfm/arkandis/berenisadf/ybdbcij8y.tfm
texmf-dist/fonts/tfm/arkandis/berenisadf/ybdbcijw8y.tfm
texmf-dist/fonts/tfm/arkandis/berenisadf/ybdbciw8y.tfm
+ texmf-dist/fonts/tfm/arkandis/berenisadf/ybdbcj8c.tfm
+ texmf-dist/fonts/tfm/arkandis/berenisadf/ybdbcj8t.tfm
texmf-dist/fonts/tfm/arkandis/berenisadf/ybdbcj8y.tfm
texmf-dist/fonts/tfm/arkandis/berenisadf/ybdbcjw8y.tfm
texmf-dist/fonts/tfm/arkandis/berenisadf/ybdbcw8y.tfm
+ texmf-dist/fonts/tfm/arkandis/berenisadf/ybdbi8c.tfm
+ texmf-dist/fonts/tfm/arkandis/berenisadf/ybdbi8t.tfm
texmf-dist/fonts/tfm/arkandis/berenisadf/ybdbi8y.tfm
+ texmf-dist/fonts/tfm/arkandis/berenisadf/ybdbij8c.tfm
+ texmf-dist/fonts/tfm/arkandis/berenisadf/ybdbij8t.tfm
texmf-dist/fonts/tfm/arkandis/berenisadf/ybdbij8y.tfm
texmf-dist/fonts/tfm/arkandis/berenisadf/ybdbijw8y.tfm
texmf-dist/fonts/tfm/arkandis/berenisadf/ybdbiw8y.tfm
+ texmf-dist/fonts/tfm/arkandis/berenisadf/ybdbj8c.tfm
+ texmf-dist/fonts/tfm/arkandis/berenisadf/ybdbj8t.tfm
texmf-dist/fonts/tfm/arkandis/berenisadf/ybdbj8y.tfm
texmf-dist/fonts/tfm/arkandis/berenisadf/ybdbjw8y.tfm
texmf-dist/fonts/tfm/arkandis/berenisadf/ybdbw8y.tfm
+ texmf-dist/fonts/tfm/arkandis/berenisadf/ybdr08c.tfm
+ texmf-dist/fonts/tfm/arkandis/berenisadf/ybdr08t.tfm
texmf-dist/fonts/tfm/arkandis/berenisadf/ybdr08y.tfm
+ texmf-dist/fonts/tfm/arkandis/berenisadf/ybdr0c8c.tfm
+ texmf-dist/fonts/tfm/arkandis/berenisadf/ybdr0c8t.tfm
texmf-dist/fonts/tfm/arkandis/berenisadf/ybdr0c8y.tfm
+ texmf-dist/fonts/tfm/arkandis/berenisadf/ybdr0ci8c.tfm
+ texmf-dist/fonts/tfm/arkandis/berenisadf/ybdr0ci8t.tfm
texmf-dist/fonts/tfm/arkandis/berenisadf/ybdr0ci8y.tfm
+ texmf-dist/fonts/tfm/arkandis/berenisadf/ybdr0i8c.tfm
+ texmf-dist/fonts/tfm/arkandis/berenisadf/ybdr0i8t.tfm
texmf-dist/fonts/tfm/arkandis/berenisadf/ybdr0i8y.tfm
+ texmf-dist/fonts/tfm/arkandis/berenisadf/ybdr18c.tfm
+ texmf-dist/fonts/tfm/arkandis/berenisadf/ybdr18t.tfm
texmf-dist/fonts/tfm/arkandis/berenisadf/ybdr18y.tfm
+ texmf-dist/fonts/tfm/arkandis/berenisadf/ybdr1c8c.tfm
+ texmf-dist/fonts/tfm/arkandis/berenisadf/ybdr1c8t.tfm
texmf-dist/fonts/tfm/arkandis/berenisadf/ybdr1c8y.tfm
+ texmf-dist/fonts/tfm/arkandis/berenisadf/ybdr1ci8c.tfm
+ texmf-dist/fonts/tfm/arkandis/berenisadf/ybdr1ci8t.tfm
texmf-dist/fonts/tfm/arkandis/berenisadf/ybdr1ci8y.tfm
+ texmf-dist/fonts/tfm/arkandis/berenisadf/ybdr1i8c.tfm
+ texmf-dist/fonts/tfm/arkandis/berenisadf/ybdr1i8t.tfm
texmf-dist/fonts/tfm/arkandis/berenisadf/ybdr1i8y.tfm
+ texmf-dist/fonts/tfm/arkandis/berenisadf/ybdr28c.tfm
+ texmf-dist/fonts/tfm/arkandis/berenisadf/ybdr28t.tfm
texmf-dist/fonts/tfm/arkandis/berenisadf/ybdr28y.tfm
+ texmf-dist/fonts/tfm/arkandis/berenisadf/ybdr2c8c.tfm
+ texmf-dist/fonts/tfm/arkandis/berenisadf/ybdr2c8t.tfm
texmf-dist/fonts/tfm/arkandis/berenisadf/ybdr2c8y.tfm
+ texmf-dist/fonts/tfm/arkandis/berenisadf/ybdr2ci8c.tfm
+ texmf-dist/fonts/tfm/arkandis/berenisadf/ybdr2ci8t.tfm
texmf-dist/fonts/tfm/arkandis/berenisadf/ybdr2ci8y.tfm
+ texmf-dist/fonts/tfm/arkandis/berenisadf/ybdr2cij8c.tfm
+ texmf-dist/fonts/tfm/arkandis/berenisadf/ybdr2cij8t.tfm
texmf-dist/fonts/tfm/arkandis/berenisadf/ybdr2cij8y.tfm
texmf-dist/fonts/tfm/arkandis/berenisadf/ybdr2cijw8y.tfm
texmf-dist/fonts/tfm/arkandis/berenisadf/ybdr2ciw8y.tfm
+ texmf-dist/fonts/tfm/arkandis/berenisadf/ybdr2cj8c.tfm
+ texmf-dist/fonts/tfm/arkandis/berenisadf/ybdr2cj8t.tfm
texmf-dist/fonts/tfm/arkandis/berenisadf/ybdr2cj8y.tfm
texmf-dist/fonts/tfm/arkandis/berenisadf/ybdr2cjw8y.tfm
texmf-dist/fonts/tfm/arkandis/berenisadf/ybdr2cw8y.tfm
+ texmf-dist/fonts/tfm/arkandis/berenisadf/ybdr2i8c.tfm
+ texmf-dist/fonts/tfm/arkandis/berenisadf/ybdr2i8t.tfm
texmf-dist/fonts/tfm/arkandis/berenisadf/ybdr2i8y.tfm
+ texmf-dist/fonts/tfm/arkandis/berenisadf/ybdr2ij8c.tfm
+ texmf-dist/fonts/tfm/arkandis/berenisadf/ybdr2ij8t.tfm
texmf-dist/fonts/tfm/arkandis/berenisadf/ybdr2ij8y.tfm
texmf-dist/fonts/tfm/arkandis/berenisadf/ybdr2ijw8y.tfm
texmf-dist/fonts/tfm/arkandis/berenisadf/ybdr2iw8y.tfm
+ texmf-dist/fonts/tfm/arkandis/berenisadf/ybdr2j8c.tfm
+ texmf-dist/fonts/tfm/arkandis/berenisadf/ybdr2j8t.tfm
texmf-dist/fonts/tfm/arkandis/berenisadf/ybdr2j8y.tfm
texmf-dist/fonts/tfm/arkandis/berenisadf/ybdr2jw8y.tfm
texmf-dist/fonts/tfm/arkandis/berenisadf/ybdr2w8y.tfm
+ texmf-dist/fonts/tfm/arkandis/berenisadf/ybdr8c.tfm
+ texmf-dist/fonts/tfm/arkandis/berenisadf/ybdr8t.tfm
texmf-dist/fonts/tfm/arkandis/berenisadf/ybdr8y.tfm
+ texmf-dist/fonts/tfm/arkandis/berenisadf/ybdrc8c.tfm
+ texmf-dist/fonts/tfm/arkandis/berenisadf/ybdrc8t.tfm
texmf-dist/fonts/tfm/arkandis/berenisadf/ybdrc8y.tfm
+ texmf-dist/fonts/tfm/arkandis/berenisadf/ybdrci8c.tfm
+ texmf-dist/fonts/tfm/arkandis/berenisadf/ybdrci8t.tfm
texmf-dist/fonts/tfm/arkandis/berenisadf/ybdrci8y.tfm
+ texmf-dist/fonts/tfm/arkandis/berenisadf/ybdrcij8c.tfm
+ texmf-dist/fonts/tfm/arkandis/berenisadf/ybdrcij8t.tfm
texmf-dist/fonts/tfm/arkandis/berenisadf/ybdrcij8y.tfm
texmf-dist/fonts/tfm/arkandis/berenisadf/ybdrcijw8y.tfm
texmf-dist/fonts/tfm/arkandis/berenisadf/ybdrciw8y.tfm
+ texmf-dist/fonts/tfm/arkandis/berenisadf/ybdrcj8c.tfm
+ texmf-dist/fonts/tfm/arkandis/berenisadf/ybdrcj8t.tfm
texmf-dist/fonts/tfm/arkandis/berenisadf/ybdrcj8y.tfm
texmf-dist/fonts/tfm/arkandis/berenisadf/ybdrcjw8y.tfm
texmf-dist/fonts/tfm/arkandis/berenisadf/ybdrcw8y.tfm
+ texmf-dist/fonts/tfm/arkandis/berenisadf/ybdri8c.tfm
+ texmf-dist/fonts/tfm/arkandis/berenisadf/ybdri8t.tfm
texmf-dist/fonts/tfm/arkandis/berenisadf/ybdri8y.tfm
+ texmf-dist/fonts/tfm/arkandis/berenisadf/ybdrij8c.tfm
+ texmf-dist/fonts/tfm/arkandis/berenisadf/ybdrij8t.tfm
texmf-dist/fonts/tfm/arkandis/berenisadf/ybdrij8y.tfm
texmf-dist/fonts/tfm/arkandis/berenisadf/ybdrijw8y.tfm
texmf-dist/fonts/tfm/arkandis/berenisadf/ybdriw8y.tfm
+ texmf-dist/fonts/tfm/arkandis/berenisadf/ybdrj8c.tfm
+ texmf-dist/fonts/tfm/arkandis/berenisadf/ybdrj8t.tfm
texmf-dist/fonts/tfm/arkandis/berenisadf/ybdrj8y.tfm
texmf-dist/fonts/tfm/arkandis/berenisadf/ybdrjw8y.tfm
texmf-dist/fonts/tfm/arkandis/berenisadf/ybdrw8y.tfm
@@ -19090,11 +22583,32 @@ runfiles size=968
texmf-dist/tex/latex/berenisadf/ly1ybdj.fd
texmf-dist/tex/latex/berenisadf/ly1ybdjw.fd
texmf-dist/tex/latex/berenisadf/ly1ybdw.fd
+ texmf-dist/tex/latex/berenisadf/t1ybd.fd
+ texmf-dist/tex/latex/berenisadf/t1ybd0.fd
+ texmf-dist/tex/latex/berenisadf/t1ybd1.fd
+ texmf-dist/tex/latex/berenisadf/t1ybd2.fd
+ texmf-dist/tex/latex/berenisadf/t1ybd2j.fd
+ texmf-dist/tex/latex/berenisadf/t1ybdj.fd
+ texmf-dist/tex/latex/berenisadf/ts1ybd.fd
+ texmf-dist/tex/latex/berenisadf/ts1ybd0.fd
+ texmf-dist/tex/latex/berenisadf/ts1ybd1.fd
+ texmf-dist/tex/latex/berenisadf/ts1ybd2.fd
+ texmf-dist/tex/latex/berenisadf/ts1ybd2j.fd
+ texmf-dist/tex/latex/berenisadf/ts1ybdj.fd
catalogue-ctan /fonts/berenisadf
-catalogue-date 2012-11-30 15:48:00 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license other-free
catalogue-version 1.004
+name besjournals
+category Package
+revision 32275
+docfiles size=8
+ texmf-dist/doc/bibtex/besjournals/README
+ texmf-dist/doc/bibtex/besjournals/besjournals.dbj
+runfiles size=11
+ texmf-dist/bibtex/bst/besjournals/besjournals.bst
+
name betababel
category Package
revision 15878
@@ -19160,13 +22674,13 @@ name bezos
category Package
revision 25507
shortdesc Packages by Javier Bezos.
-longdesc A set of packages that provide: - tools for maths accents; - a
-longdesc tool that changes page-numbering in frontmatter to arabic; -
-longdesc tools for dealing with some annoyances in babel; - a tool for
-longdesc making end-environment checking more meaningful; - tensorial
-longdesc indexes; - support for multi-file documents; - tools for easy
-longdesc entry of Spanish index entries; - dotless i's and j's for maths
-longdesc fonts; and - fancy underlining.
+longdesc A set of packages that provide: tools for maths accents; a tool
+longdesc that changes page-numbering in frontmatter to arabic; tools for
+longdesc dealing with some annoyances in babel; a tool for making end-
+longdesc environment checking more meaningful; tensorial indexes;
+longdesc support for multi-file documents; tools for easy entry of
+longdesc Spanish index entries; dotless i's and j's for maths fonts; and
+longdesc fancy underlining.
docfiles size=266
texmf-dist/doc/latex/bezos/README details="Bundle Readme"
texmf-dist/doc/latex/bezos/accents.pdf
@@ -19192,7 +22706,7 @@ runfiles size=16
texmf-dist/tex/latex/bezos/subdocs.sty
texmf-dist/tex/latex/bezos/tensind.sty
catalogue-ctan /macros/latex/contrib/bezos
-catalogue-date 2012-04-24 11:13:54 +0200
+catalogue-date 2013-12-16 12:19:51 +0100
catalogue-license lppl
name bgreek
@@ -19512,7 +23026,7 @@ runfiles size=396
texmf-dist/tex/latex/bgreek/bgreek.sty
texmf-dist/tex/latex/bgreek/ibygreek.ldf
catalogue-ctan /language/greek/bgreek
-catalogue-date 2012-02-27 22:13:39 +0100
+catalogue-date 2014-04-07 13:51:00 +0200
catalogue-license lppl
catalogue-version 0.3
@@ -19652,7 +23166,7 @@ runfiles size=69
texmf-dist/tex/latex/bgteubner/hhsubfigure.sty
texmf-dist/tex/latex/bgteubner/ptmxcomp.sty
catalogue-ctan /macros/latex/contrib/bgteubner
-catalogue-date 2012-04-10 15:57:21 +0200
+catalogue-date 2013-10-30 13:49:16 +0100
catalogue-license lppl
catalogue-version 2.02
@@ -19720,7 +23234,7 @@ runfiles size=43
texmf-dist/tex/latex/bguq/bguq.cfg
texmf-dist/tex/latex/bguq/bguq.sty
catalogue-ctan /fonts/bguq
-catalogue-date 2012-08-17 18:25:08 +0200
+catalogue-date 2014-04-07 13:51:00 +0200
catalogue-license lppl
catalogue-version 0.4
@@ -19801,7 +23315,7 @@ catalogue-license gpl
name biber
category Package
-revision 30591
+revision 33828
shortdesc A BibTeX replacement for users of biblatex.
longdesc Biber is a BibTeX replacement for users of biblatex. Biber
longdesc supports full UTF-8, can (re)-encode input and output, supports
@@ -19813,85 +23327,85 @@ longdesc biber is formally named "biblatex-biber", to distinguish it
longdesc from an earlier (now apparently moribund) project called
longdesc "biber".
depend biber.ARCH
-docfiles size=80
+docfiles size=87
texmf-dist/doc/bibtex/biber/biber.pdf
-srcfiles size=525
+srcfiles size=542
texmf-dist/source/bibtex/biber/Changes
texmf-dist/source/bibtex/biber/biblatex-biber.tar.gz
texmf-dist/source/bibtex/biber/utf8-macro-map.html
catalogue-ctan /biblio/biber
-catalogue-date 2013-05-09 11:57:32 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license artistic
-catalogue-version 1.6
+catalogue-version 1.8
name biber.amd64-freebsd
category Package
-revision 30357
+revision 33698
shortdesc amd64-freebsd files of biber
-binfiles arch=amd64-freebsd size=4352
+binfiles arch=amd64-freebsd size=4317
bin/amd64-freebsd/biber
name biber.i386-cygwin
category Package
-revision 30357
+revision 32012
shortdesc i386-cygwin files of biber
-binfiles arch=i386-cygwin size=4259
+binfiles arch=i386-cygwin size=4271
bin/i386-cygwin/biber.exe
name biber.i386-freebsd
category Package
-revision 30357
+revision 33698
shortdesc i386-freebsd files of biber
-binfiles arch=i386-freebsd size=3885
+binfiles arch=i386-freebsd size=3850
bin/i386-freebsd/biber
name biber.i386-linux
category Package
-revision 30357
+revision 32012
shortdesc i386-linux files of biber
-binfiles arch=i386-linux size=4308
+binfiles arch=i386-linux size=4315
bin/i386-linux/biber
name biber.i386-solaris
category Package
-revision 30357
+revision 32690
shortdesc i386-solaris files of biber
-binfiles arch=i386-solaris size=4218
+binfiles arch=i386-solaris size=4226
bin/i386-solaris/biber
name biber.universal-darwin
category Package
-revision 30357
+revision 32012
shortdesc universal-darwin files of biber
-binfiles arch=universal-darwin size=3945
+binfiles arch=universal-darwin size=3953
bin/universal-darwin/biber
name biber.win32
category Package
-revision 30357
+revision 32012
shortdesc win32 files of biber
-binfiles arch=win32 size=5292
+binfiles arch=win32 size=5300
bin/win32/biber.exe
name biber.x86_64-darwin
category Package
-revision 30357
+revision 32012
shortdesc x86_64-darwin files of biber
-binfiles arch=x86_64-darwin size=3804
+binfiles arch=x86_64-darwin size=3811
bin/x86_64-darwin/biber
name biber.x86_64-linux
category Package
-revision 30357
+revision 32054
shortdesc x86_64-linux files of biber
-binfiles arch=x86_64-linux size=4843
+binfiles arch=x86_64-linux size=4851
bin/x86_64-linux/biber
name biber.x86_64-solaris
category Package
-revision 30357
+revision 32690
shortdesc x86_64-solaris files of biber
-binfiles arch=x86_64-solaris size=4860
+binfiles arch=x86_64-solaris size=4868
bin/x86_64-solaris/biber
name bibexport
@@ -20003,13 +23517,6 @@ shortdesc i386-solaris files of bibexport
binfiles arch=i386-solaris size=1
bin/i386-solaris/bibexport
-name bibexport.mips-irix
-category Package
-revision 29949
-shortdesc mips-irix files of bibexport
-binfiles arch=mips-irix size=1
- bin/mips-irix/bibexport
-
name bibexport.mipsel-linux
category Package
revision 29946
@@ -20038,6 +23545,13 @@ shortdesc universal-darwin files of bibexport
binfiles arch=universal-darwin size=1
bin/universal-darwin/bibexport
+name bibexport.x86_64-cygwin
+category Package
+revision 33557
+shortdesc x86_64-cygwin files of bibexport
+binfiles arch=x86_64-cygwin size=1
+ bin/x86_64-cygwin/bibexport
+
name bibexport.x86_64-darwin
category Package
revision 18441
@@ -20061,7 +23575,7 @@ binfiles arch=x86_64-solaris size=1
name bibhtml
category Package
-revision 16093
+revision 31607
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 output a bibliography as a
@@ -20072,7 +23586,7 @@ 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, as well as two style files
longdesc derived from abbrv.bst and unsrt.bst (i.e., eight in total).
-docfiles size=23
+docfiles size=24
texmf-dist/doc/bibtex/bibhtml/LICENCE
texmf-dist/doc/bibtex/bibhtml/README details="Readme"
texmf-dist/doc/bibtex/bibhtml/bibhtml
@@ -20092,13 +23606,13 @@ runfiles size=57
texmf-dist/bibtex/bst/bibhtml/plainhtmldater.bst
texmf-dist/bibtex/bst/bibhtml/unsrthtml.bst
catalogue-ctan /biblio/bibtex/contrib/bibhtml
-catalogue-date 2012-05-23 20:08:37 +0200
+catalogue-date 2013-09-08 21:40:59 +0200
catalogue-license gpl
-catalogue-version 2.0.1
+catalogue-version 2.0.2
name biblatex
category Package
-revision 30358
+revision 32245
shortdesc Bibliographies in LaTeX using BibTeX for sorting only.
longdesc Biblatex is a complete reimplementation of the bibliographic
longdesc facilities provided by LaTeX in conjunction with BibTeX. It
@@ -20128,7 +23642,7 @@ longdesc bibliographic shorthands. Bibliographies may be subdivided into
longdesc parts (by chapter, by section, etc.) and/or segmented by topics
longdesc (by type, by keyword, etc.). Biblatex is fully localized and
longdesc can interface with the babel.
-docfiles size=2447
+docfiles size=2452
texmf-dist/doc/latex/biblatex/README details="Readme" language="en"
texmf-dist/doc/latex/biblatex/RELEASE details="Release notes for current version" language="en"
texmf-dist/doc/latex/biblatex/biblatex.pdf
@@ -20223,7 +23737,7 @@ docfiles size=2447
texmf-dist/doc/latex/biblatex/examples/91-sorting-schemes.pdf
texmf-dist/doc/latex/biblatex/examples/91-sorting-schemes.tex
texmf-dist/doc/latex/biblatex/examples/biblatex-examples.bib
-runfiles size=501
+runfiles size=514
texmf-dist/bibtex/bib/biblatex/biblatex/biblatex-examples.bib
texmf-dist/bibtex/bst/biblatex/biblatex.bst
texmf-dist/bibtex/csf/biblatex/latin1.csf
@@ -20343,13 +23857,13 @@ runfiles size=501
texmf-dist/tex/latex/biblatex/lbx/spanish.lbx
texmf-dist/tex/latex/biblatex/lbx/swedish.lbx
catalogue-ctan /macros/latex/contrib/biblatex
-catalogue-date 2013-05-09 11:57:32 +0200
+catalogue-date 2013-11-24 17:41:16 +0100
catalogue-license lppl
-catalogue-version 2.6
+catalogue-version 2.8a
name biblatex-apa
category Package
-revision 30359
+revision 33482
shortdesc Biblatex citation and reference style for APA.
longdesc This is a fairly complete biblatex style (citations and
longdesc references) for APA (American Psychological Association)
@@ -20361,7 +23875,7 @@ longdesc backed system). An example document is also given which
longdesc typesets every citation and reference example in the APA 6th
longdesc edition style guide. This version of the package requires use
longdesc of biblatex v2.0 and biber v1.0 (at least).
-docfiles size=69
+docfiles size=99
texmf-dist/doc/latex/biblatex-apa/README details="Readme"
texmf-dist/doc/latex/biblatex-apa/biblatex-apa-test-citations.bib
texmf-dist/doc/latex/biblatex-apa/biblatex-apa-test-references.bib
@@ -20369,7 +23883,8 @@ docfiles size=69
texmf-dist/doc/latex/biblatex-apa/biblatex-apa-test.tex
texmf-dist/doc/latex/biblatex-apa/biblatex-apa.pdf details="Package documentation"
texmf-dist/doc/latex/biblatex-apa/biblatex-apa.tex
-runfiles size=50
+ texmf-dist/doc/latex/biblatex-apa/reference.pdf
+runfiles size=56
texmf-dist/tex/latex/biblatex-apa/american-apa.lbx
texmf-dist/tex/latex/biblatex-apa/apa.bbx
texmf-dist/tex/latex/biblatex-apa/apa.cbx
@@ -20378,6 +23893,7 @@ runfiles size=50
texmf-dist/tex/latex/biblatex-apa/brazilian-apa.lbx
texmf-dist/tex/latex/biblatex-apa/british-apa.lbx
texmf-dist/tex/latex/biblatex-apa/dutch-apa.lbx
+ texmf-dist/tex/latex/biblatex-apa/english-apa.lbx
texmf-dist/tex/latex/biblatex-apa/french-apa.lbx
texmf-dist/tex/latex/biblatex-apa/german-apa.lbx
texmf-dist/tex/latex/biblatex-apa/greek-apa.lbx
@@ -20387,11 +23903,13 @@ runfiles size=50
texmf-dist/tex/latex/biblatex-apa/norsk-apa.lbx
texmf-dist/tex/latex/biblatex-apa/norwegian-apa.lbx
texmf-dist/tex/latex/biblatex-apa/nynorsk-apa.lbx
+ texmf-dist/tex/latex/biblatex-apa/slovene-apa.lbx
texmf-dist/tex/latex/biblatex-apa/spanish-apa.lbx
+ texmf-dist/tex/latex/biblatex-apa/swedish-apa.lbx
catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-apa
-catalogue-date 2013-05-09 11:57:32 +0200
+catalogue-date 2014-04-17 05:56:09 +0200
catalogue-license lppl
-catalogue-version 5.9
+catalogue-version 6.5
name biblatex-bwl
category Package
@@ -20409,13 +23927,13 @@ runfiles size=2
texmf-dist/tex/latex/biblatex-bwl/bwl-FU.bbx
texmf-dist/tex/latex/biblatex-bwl/bwl-FU.cbx
catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-bwl
-catalogue-date 2012-12-19 20:26:21 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 0.02
name biblatex-caspervector
category Package
-revision 29794
+revision 32516
shortdesc A simple citation style for Chinese users.
longdesc The package provides a simple and easily extensible
longdesc biblography/citation style for Chinese LaTeX users, using
@@ -20432,19 +23950,19 @@ runfiles size=5
texmf-dist/tex/latex/biblatex-caspervector/caspervector.bbx
texmf-dist/tex/latex/biblatex-caspervector/caspervector.cbx
catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-caspervector
-catalogue-date 2013-04-08 10:17:07 +0200
+catalogue-date 2014-05-24 12:14:28 +0200
catalogue-license lppl1.3
-catalogue-version 0.1.8
+catalogue-version 0.2.0
name biblatex-chem
category Package
-revision 29089
+revision 31874
shortdesc A set of biblatex implementations of chemistry-related bibliography styles.
longdesc The bundle offers a set of styles to allow chemists to use
-longdesc biblatex. The package has complete styles for: - all ACS
-longdesc journals; - RSC journals using standard (Chem. Commun.) style;
-longdesc and - Angewandte Chem. style, thus covering a wide range of
-longdesc journals. A comprehensive set of examples of use is included.
+longdesc biblatex. The package has complete styles for: all ACS
+longdesc journals; RSC journals using standard (Chem. Commun.) style;
+longdesc and Angewandte Chem. style, (thus covering a wide range of
+longdesc journals). A comprehensive set of examples of use is included.
docfiles size=400
texmf-dist/doc/latex/biblatex-chem/README details="Readme"
texmf-dist/doc/latex/biblatex-chem/biblatex-chem-acs.pdf
@@ -20456,7 +23974,7 @@ docfiles size=400
texmf-dist/doc/latex/biblatex-chem/biblatex-chem-rsc.pdf
texmf-dist/doc/latex/biblatex-chem/biblatex-chem-rsc.tex
texmf-dist/doc/latex/biblatex-chem/biblatex-chem.bib
- texmf-dist/doc/latex/biblatex-chem/biblatex-chem.pdf details="Package documentation"
+ texmf-dist/doc/latex/biblatex-chem/biblatex-chem.pdf
texmf-dist/doc/latex/biblatex-chem/biblatex-chem.tex
runfiles size=24
texmf-dist/tex/latex/biblatex-chem/chem-acs.bbx
@@ -20468,20 +23986,20 @@ runfiles size=24
texmf-dist/tex/latex/biblatex-chem/chem-rsc.bbx
texmf-dist/tex/latex/biblatex-chem/chem-rsc.cbx
catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-chem
-catalogue-date 2013-02-11 23:55:50 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
-catalogue-version 1.1k
+catalogue-version 1.1l
name biblatex-chicago
category Package
-revision 29410
+revision 32816
shortdesc Chicago style files for biblatex.
longdesc This is a biblatex style that implements the Chicago 'author-
longdesc date' and 'notes with bibliography' style specifications given
longdesc in the Chicago Manual of Style, 16th edition. The style
longdesc implements entry types for citing audio-visual materials. The
longdesc package was previously known as biblatex-chicago-notes-df.
-docfiles size=1245
+docfiles size=1288
texmf-dist/doc/latex/biblatex-chicago/README details="Readme and usage outline"
texmf-dist/doc/latex/biblatex-chicago/RELEASE
texmf-dist/doc/latex/biblatex-chicago/biblatex-chicago.pdf
@@ -20500,7 +24018,7 @@ docfiles size=1245
texmf-dist/doc/latex/biblatex-chicago/cms15-notes-sample.tex
texmf-dist/doc/latex/biblatex-chicago/dates-test.bib
texmf-dist/doc/latex/biblatex-chicago/notes-test.bib
-runfiles size=254
+runfiles size=276
texmf-dist/tex/latex/biblatex-chicago/biblatex-chicago.sty
texmf-dist/tex/latex/biblatex-chicago/chicago-authordate-trad.bbx
texmf-dist/tex/latex/biblatex-chicago/chicago-authordate-trad.cbx
@@ -20523,13 +24041,13 @@ runfiles size=254
texmf-dist/tex/latex/biblatex-chicago/cms-norwegian.lbx
texmf-dist/tex/latex/biblatex-chicago/cms-nynorsk.lbx
catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-chicago
-catalogue-date 2013-03-16 10:45:28 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
-catalogue-version 0.9.9c
+catalogue-version 0.9.9e
name biblatex-dw
category Package
-revision 27035
+revision 31752
shortdesc Humanities styles for biblatex.
longdesc A small collection of styles for the biblatex package. It was
longdesc designed for citations in the humanities and offers some
@@ -20542,7 +24060,7 @@ longdesc den Standard-Stilen von biblatex nicht direkt bereitgestellt
longdesc werden. Biblatex-dw baut vollstandig auf biblatex auf und kann
longdesc nicht ohne biblatex (mindestens in der Version 0.9b) verwendet
longdesc werden.
-docfiles size=644
+docfiles size=492
texmf-dist/doc/latex/biblatex-dw/CHANGES
texmf-dist/doc/latex/biblatex-dw/LIESMICH details="Readme (German)" language="de"
texmf-dist/doc/latex/biblatex-dw/README details="Readme (English)" language="en"
@@ -20573,13 +24091,13 @@ runfiles size=35
texmf-dist/tex/latex/biblatex-dw/lbx/english-dw.lbx
texmf-dist/tex/latex/biblatex-dw/lbx/german-dw.lbx
catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-dw
-catalogue-date 2012-06-28 18:57:40 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
-catalogue-version 1.5
+catalogue-version 1.6a
name biblatex-fiwi
category Package
-revision 30448
+revision 32629
shortdesc Biblatex styles for use in German humanities.
longdesc The package provides a collection of styles for biblatex
longdesc (version 1.7 is required, currently). It was designed for
@@ -20588,7 +24106,7 @@ longdesc offers some features that are not provided by the standard
longdesc biblatex styles. The style is highly optimized for documents
longdesc written in German, and the main documentation is only available
longdesc in German.
-docfiles size=223
+docfiles size=225
texmf-dist/doc/latex/biblatex-fiwi/README details="Readme"
texmf-dist/doc/latex/biblatex-fiwi/biblatex-fiwi.pdf
texmf-dist/doc/latex/biblatex-fiwi/biblatex-fiwi.tex
@@ -20601,7 +24119,7 @@ docfiles size=223
texmf-dist/doc/latex/biblatex-fiwi/example-biblatex-fiwi2.pdf
texmf-dist/doc/latex/biblatex-fiwi/example-biblatex-fiwi2.tex
texmf-dist/doc/latex/biblatex-fiwi/examples.bib
-runfiles size=25
+runfiles size=26
texmf-dist/tex/latex/biblatex-fiwi/fiwi-yearbeginning.bbx
texmf-dist/tex/latex/biblatex-fiwi/fiwi.bbx
texmf-dist/tex/latex/biblatex-fiwi/fiwi.cbx
@@ -20610,17 +24128,17 @@ runfiles size=25
texmf-dist/tex/latex/biblatex-fiwi/fiwi2.cbx
texmf-dist/tex/latex/biblatex-fiwi/fiwi2.dbx
catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-fiwi
-catalogue-date 2013-05-13 20:00:44 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
-catalogue-version 1.2d
+catalogue-version 1.2e
name biblatex-gost
category Package
-revision 29663
+revision 32980
shortdesc Biblatex support for GOST standard bibliographies.
longdesc The package provides biblatex support for Russian bibliography
longdesc style GOST 7.0.5-2008
-docfiles size=281
+docfiles size=296
texmf-dist/doc/latex/biblatex-gost/README details="Readme"
texmf-dist/doc/latex/biblatex-gost/biblatex-gost-examples.bib
texmf-dist/doc/latex/biblatex-gost/biblatex-gost-examples.pdf
@@ -20628,7 +24146,7 @@ docfiles size=281
texmf-dist/doc/latex/biblatex-gost/biblatex-gost.pdf
texmf-dist/doc/latex/biblatex-gost/biblatex-gost.tex
texmf-dist/doc/latex/biblatex-gost/ltxdockit.cfg
-runfiles size=70
+runfiles size=65
texmf-dist/tex/latex/biblatex-gost/biblatex-gost.dbx
texmf-dist/tex/latex/biblatex-gost/biblatex-gost.def
texmf-dist/tex/latex/biblatex-gost/gost-alphabetic-min.bbx
@@ -20664,9 +24182,9 @@ runfiles size=70
texmf-dist/tex/latex/biblatex-gost/gost-standard.bbx
texmf-dist/tex/latex/biblatex-gost/russian-gost.lbx
catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-gost
-catalogue-date 2013-04-05 13:20:40 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
-catalogue-version 0.8
+catalogue-version 1.0
name biblatex-historian
category Package
@@ -20689,7 +24207,7 @@ catalogue-version 0.4
name biblatex-ieee
category Package
-revision 29068
+revision 32005
shortdesc Ieee style files for biblatex.
longdesc This is a biblatex style that implements the bibliography style
longdesc of the IEEE for biblatex. The implementation follows standard
@@ -20697,7 +24215,7 @@ longdesc biblatex conventions, and can be used simply by loading
longdesc biblatex with the appropriate option:
longdesc \usepackage[style=ieee]{biblatex} A demonstration database is
longdesc provided to show how to format input for the style.
-docfiles size=170
+docfiles size=174
texmf-dist/doc/latex/biblatex-ieee/README details="Readme"
texmf-dist/doc/latex/biblatex-ieee/biblatex-ieee-alphabetic.pdf
texmf-dist/doc/latex/biblatex-ieee/biblatex-ieee-alphabetic.tex
@@ -20710,9 +24228,9 @@ runfiles size=9
texmf-dist/tex/latex/biblatex-ieee/ieee.bbx
texmf-dist/tex/latex/biblatex-ieee/ieee.cbx
catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-ieee
-catalogue-date 2013-02-09 14:33:43 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
-catalogue-version 1.1h
+catalogue-version 1.1j
name biblatex-juradiss
category Package
@@ -20736,7 +24254,7 @@ catalogue-version 0.1g
name biblatex-luh-ipw
category Package
-revision 25093
+revision 32180
shortdesc Biblatex styles for social sciences.
longdesc The bundle is a small collection of styles for biblatex. It was
longdesc designed for citations in the Humanities, following the
@@ -20744,14 +24262,14 @@ longdesc guidelines of style of the institutes for the social sciences
longdesc of the Leibniz University Hannover/LUH (especially the
longdesc Institute of Political Science). The bundle depends on biblatex
longdesc (version 1.1 at least) and cannot be used without it.
-docfiles size=120
- texmf-dist/doc/latex/biblatex-luh-ipw/README
+docfiles size=93
+ texmf-dist/doc/latex/biblatex-luh-ipw/README details="Readme"
texmf-dist/doc/latex/biblatex-luh-ipw/biblatex-luh-ipw-preamble.tex
texmf-dist/doc/latex/biblatex-luh-ipw/biblatex-luh-ipw-print.tex
texmf-dist/doc/latex/biblatex-luh-ipw/biblatex-luh-ipw-screen.tex
texmf-dist/doc/latex/biblatex-luh-ipw/de-biblatex-luh-ipw.pdf
texmf-dist/doc/latex/biblatex-luh-ipw/de-biblatex-luh-ipw.tex
-runfiles size=10
+runfiles size=11
texmf-dist/tex/latex/biblatex-luh-ipw/bbx/authoryear-luh-ipw.bbx
texmf-dist/tex/latex/biblatex-luh-ipw/bbx/standard-luh-ipw.bbx
texmf-dist/tex/latex/biblatex-luh-ipw/bbx/verbose-inote-luh-ipw.bbx
@@ -20761,9 +24279,39 @@ runfiles size=10
texmf-dist/tex/latex/biblatex-luh-ipw/lbx/english-luh-ipw.lbx
texmf-dist/tex/latex/biblatex-luh-ipw/lbx/german-luh-ipw.lbx
catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-luh-ipw
-catalogue-date 2012-01-10 17:14:00 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
-catalogue-version 0.2
+catalogue-version 0.3
+
+name biblatex-manuscripts-philology
+category Package
+revision 33446
+shortdesc Manage classical manuscripts with biblatex.
+longdesc The package adds a new entry type: @manuscript to manage
+longdesc manuscript in classical philology, for example to prepare a
+longdesc critical edition.
+docfiles size=37
+ texmf-dist/doc/latex/biblatex-manuscripts-philology/README details="Readme"
+ texmf-dist/doc/latex/biblatex-manuscripts-philology/documentation/biblatex-manuscripts-philology.pdf details="Package documentation"
+ texmf-dist/doc/latex/biblatex-manuscripts-philology/documentation/biblatex-manuscripts-philology.tex
+ texmf-dist/doc/latex/biblatex-manuscripts-philology/documentation/example.bib
+ texmf-dist/doc/latex/biblatex-manuscripts-philology/documentation/example.pdf
+ texmf-dist/doc/latex/biblatex-manuscripts-philology/documentation/example.tex
+ texmf-dist/doc/latex/biblatex-manuscripts-philology/documentation/makefile
+ texmf-dist/doc/latex/biblatex-manuscripts-philology/makefile
+runfiles size=9
+ texmf-dist/tex/latex/biblatex-manuscripts-philology/english-manuscripts.lbx
+ texmf-dist/tex/latex/biblatex-manuscripts-philology/french-manuscripts.lbx
+ texmf-dist/tex/latex/biblatex-manuscripts-philology/manuscripts-noautoshorthand.bbx
+ texmf-dist/tex/latex/biblatex-manuscripts-philology/manuscripts-noautoshorthand.dbx
+ texmf-dist/tex/latex/biblatex-manuscripts-philology/manuscripts-shared.bbx
+ texmf-dist/tex/latex/biblatex-manuscripts-philology/manuscripts-shared.dbx
+ texmf-dist/tex/latex/biblatex-manuscripts-philology/manuscripts.bbx
+ texmf-dist/tex/latex/biblatex-manuscripts-philology/manuscripts.dbx
+catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-manuscripts-philology
+catalogue-date 2014-04-09 21:40:32 +0200
+catalogue-license lppl1.3
+catalogue-version 1.2.0
name biblatex-mla
category Package
@@ -20790,7 +24338,7 @@ runfiles size=27
texmf-dist/tex/latex/biblatex-mla/portuguese-mla.lbx
texmf-dist/tex/latex/biblatex-mla/spanish-mla.lbx
catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-mla
-catalogue-date 2013-05-07 01:17:41 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.5
@@ -20810,7 +24358,7 @@ runfiles size=5
texmf-dist/tex/latex/biblatex-musuos/musuos.bbx
texmf-dist/tex/latex/biblatex-musuos/musuos.cbx
catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-musuos
-catalogue-date 2011-09-23 15:58:32 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.0
@@ -20829,7 +24377,7 @@ runfiles size=5
texmf-dist/tex/latex/biblatex-nature/nature.bbx
texmf-dist/tex/latex/biblatex-nature/nature.cbx
catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-nature
-catalogue-date 2013-05-20 17:36:30 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.2e
@@ -20853,7 +24401,7 @@ catalogue-version 0.4
name biblatex-philosophy
category Package
-revision 29893
+revision 33313
shortdesc Styles for using biblatex for work in philosophy.
longdesc The packages offers two styles philosophy-classic and
longdesc philosophy-modern, that facilitate the production of produce
@@ -20864,17 +24412,14 @@ longdesc Though the package's default settings are based on the
longdesc conventions used in Italian publications, these styles can be
longdesc used with every language recognized by babel, possibly with
longdesc some simple redefinitions.
-docfiles size=130
+docfiles size=182
texmf-dist/doc/latex/biblatex-philosophy/README details="Readme"
texmf-dist/doc/latex/biblatex-philosophy/biblatex-philosophy.pdf details="Package documentation"
- texmf-dist/doc/latex/biblatex-philosophy/philosophy-examples.bib
- texmf-dist/doc/latex/biblatex-philosophy/test-classic.tex
- texmf-dist/doc/latex/biblatex-philosophy/test-modern.tex
- texmf-dist/doc/latex/biblatex-philosophy/test-verbose.tex
-srcfiles size=36
+ texmf-dist/doc/latex/biblatex-philosophy/examples.zip
+srcfiles size=45
texmf-dist/source/latex/biblatex-philosophy/biblatex-philosophy.bib
texmf-dist/source/latex/biblatex-philosophy/biblatex-philosophy.dtx
-runfiles size=22
+runfiles size=24
texmf-dist/tex/latex/biblatex-philosophy/english-philosophy.lbx
texmf-dist/tex/latex/biblatex-philosophy/italian-philosophy.lbx
texmf-dist/tex/latex/biblatex-philosophy/philosophy-classic.bbx
@@ -20885,13 +24430,13 @@ runfiles size=22
texmf-dist/tex/latex/biblatex-philosophy/philosophy-verbose.bbx
texmf-dist/tex/latex/biblatex-philosophy/philosophy-verbose.cbx
catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-philosophy
-catalogue-date 2013-04-14 10:19:50 +0200
+catalogue-date 2014-03-28 09:30:53 +0100
catalogue-license lppl1.3
-catalogue-version 0.8e
+catalogue-version 0.9f
name biblatex-phys
category Package
-revision 29139
+revision 34035
shortdesc A biblatex implementation of the AIP and APS bibliography style.
longdesc The biblatex-phys package provides an implementation of the
longdesc bibliography styles of both the AIP and the APS for biblatex.
@@ -20901,8 +24446,7 @@ longdesc option: \usepackage[style=phys]{biblatex} A demonstration
longdesc database is provided to show how to format input for the style.
longdesc Style options are provided to cover the minor formatting
longdesc variations between the AIP and APS bibliography styles.
-docfiles size=107
- texmf-dist/doc/latex/biblatex-phys/README details="Readme"
+docfiles size=106
texmf-dist/doc/latex/biblatex-phys/biblatex-phys.bib
texmf-dist/doc/latex/biblatex-phys/biblatex-phys.pdf details="Package documentation"
texmf-dist/doc/latex/biblatex-phys/biblatex-phys.tex
@@ -20910,29 +24454,29 @@ runfiles size=5
texmf-dist/tex/latex/biblatex-phys/phys.bbx
texmf-dist/tex/latex/biblatex-phys/phys.cbx
catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-phys
-catalogue-date 2013-02-15 22:57:04 +0100
+catalogue-date 2014-05-14 19:30:50 +0200
catalogue-license lppl1.3
-catalogue-version 0.9e
+catalogue-version 0.9f
name biblatex-publist
category Package
-revision 30382
+revision 33176
shortdesc BibLaTeX bibliography support for publication lists.
longdesc The package provides a BibLaTeX bibliography style file (*.bbx)
longdesc for publication lists. The style file draws on BibLaTeX's
longdesc authoryear style, but provides some extra features often
longdesc desired for publication lists, such as the omission of the
longdesc author's own name from author or editor data.
-docfiles size=30
+docfiles size=31
texmf-dist/doc/latex/biblatex-publist/README details="Readme"
texmf-dist/doc/latex/biblatex-publist/biblatex-publist.pdf details="Package documentation"
texmf-dist/doc/latex/biblatex-publist/biblatex-publist.tex
-runfiles size=4
+runfiles size=5
texmf-dist/tex/latex/biblatex-publist/publist.bbx
catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-publist
-catalogue-date 2013-05-11 15:56:14 +0200
+catalogue-date 2014-03-14 11:11:58 +0100
catalogue-license lppl1.3
-catalogue-version 0.5
+catalogue-version 0.9
name biblatex-science
category Package
@@ -20949,38 +24493,65 @@ runfiles size=5
texmf-dist/tex/latex/biblatex-science/science.bbx
texmf-dist/tex/latex/biblatex-science/science.cbx
catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-science
-catalogue-date 2013-01-28 09:21:48 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.1d
+name biblatex-source-division
+category Package
+revision 33304
+shortdesc References by "division" in classical sources.
+longdesc The package enables the user to make reference to "division
+longdesc marks" (such as book, chapter, section), in the document being
+longdesc referenced, in addition to the page-based references that
+longdesc BibTeX-based citations have always had. The citation is made in
+longdesc the same way as the LaTeX standard, but what's inside the
+longdesc square brackets may include the "division" specification, as in
+longdesc \cite[<division spec.>]{<document>}
+docfiles size=21
+ texmf-dist/doc/latex/biblatex-source-division/README details="Readme"
+ texmf-dist/doc/latex/biblatex-source-division/biblatex-source-division.bib
+ texmf-dist/doc/latex/biblatex-source-division/biblatex-source-division.pdf details="Package documentation"
+ texmf-dist/doc/latex/biblatex-source-division/biblatex-source-division.tex
+ texmf-dist/doc/latex/biblatex-source-division/latexmkrc
+ texmf-dist/doc/latex/biblatex-source-division/makefile
+runfiles size=1
+ texmf-dist/tex/latex/biblatex-source-division/biblatex-source-division.sty
+catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-source-division
+catalogue-date 2014-03-25 21:39:08 +0100
+catalogue-license lppl1.3
+catalogue-version 2.1.1
+
name biblatex-swiss-legal
category Package
-revision 29803
+revision 32750
shortdesc Bibliography and citation styles following Swiss legal practice.
longdesc The package provides biblatex bibliography and citation styles
longdesc for documents written in accordance with Swiss legal citation
-longdesc standards. Currently, the package is only usable for French
-longdesc documents; translations to German and Italian are under
-longdesc development for future versions.
-docfiles size=187
+longdesc standards. Currently, the package is usable for French and
+longdesc German documents.
+docfiles size=145
texmf-dist/doc/latex/biblatex-swiss-legal/README details="Readme (French and English)"
texmf-dist/doc/latex/biblatex-swiss-legal/biblatex-swiss-legal.pdf details="Package documentation (French)" language="fr"
texmf-dist/doc/latex/biblatex-swiss-legal/doc_source/biblatex-swiss-legal.bib
texmf-dist/doc/latex/biblatex-swiss-legal/doc_source/biblatex-swiss-legal.tex
-runfiles size=23
+runfiles size=28
texmf-dist/tex/latex/biblatex-swiss-legal/biblatex-swiss-legal-base.bbx
texmf-dist/tex/latex/biblatex-swiss-legal/biblatex-swiss-legal-base.cbx
texmf-dist/tex/latex/biblatex-swiss-legal/biblatex-swiss-legal-bibliography.bbx
texmf-dist/tex/latex/biblatex-swiss-legal/biblatex-swiss-legal-bibliography.cbx
+ texmf-dist/tex/latex/biblatex-swiss-legal/biblatex-swiss-legal-de.lbx
texmf-dist/tex/latex/biblatex-swiss-legal/biblatex-swiss-legal-fr.lbx
texmf-dist/tex/latex/biblatex-swiss-legal/biblatex-swiss-legal-general.bbx
texmf-dist/tex/latex/biblatex-swiss-legal/biblatex-swiss-legal-general.cbx
texmf-dist/tex/latex/biblatex-swiss-legal/biblatex-swiss-legal-longarticle.bbx
texmf-dist/tex/latex/biblatex-swiss-legal/biblatex-swiss-legal-longarticle.cbx
+ texmf-dist/tex/latex/biblatex-swiss-legal/biblatex-swiss-legal-shortarticle.bbx
+ texmf-dist/tex/latex/biblatex-swiss-legal/biblatex-swiss-legal-shortarticle.cbx
catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-swiss-legal
-catalogue-date 2012-12-28 11:19:15 +0100
+catalogue-date 2014-01-21 12:42:17 +0100
catalogue-license lppl1.3
-catalogue-version 1.0.1a
+catalogue-version 1.1.2a
name biblatex-trad
category Package
@@ -21004,10 +24575,35 @@ runfiles size=11
texmf-dist/tex/latex/biblatex-trad/cbx/trad-standard.cbx
texmf-dist/tex/latex/biblatex-trad/cbx/trad-unsrt.cbx
catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-trad
-catalogue-date 2012-09-29 14:32:13 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 0.2
+name biblatex-true-citepages-omit
+category Package
+revision 33305
+shortdesc Correction of some limitation of the citepages=omit option of biblatex styles
+longdesc This package corrects a limitation of the citepages=omit option
+longdesc of the verbose family of biblatex citestyles. The option works
+longdesc when you \cite[xx]{key}, but not when you \cite[\pno~xx, some
+longdesc text]{key}. The package correct this problem.
+docfiles size=30
+ texmf-dist/doc/latex/biblatex-true-citepages-omit/README details="Readme"
+ texmf-dist/doc/latex/biblatex-true-citepages-omit/biblatex-true-citepages-omit.bib
+ texmf-dist/doc/latex/biblatex-true-citepages-omit/biblatex-true-citepages-omit.pdf details="Package documentation"
+ texmf-dist/doc/latex/biblatex-true-citepages-omit/biblatex-true-citepages-omit.tex
+ texmf-dist/doc/latex/biblatex-true-citepages-omit/exemple.bib
+ texmf-dist/doc/latex/biblatex-true-citepages-omit/exemple.pdf
+ texmf-dist/doc/latex/biblatex-true-citepages-omit/exemple.tex
+ texmf-dist/doc/latex/biblatex-true-citepages-omit/latexmkrc
+ texmf-dist/doc/latex/biblatex-true-citepages-omit/makefile
+runfiles size=1
+ texmf-dist/tex/latex/biblatex-true-citepages-omit/biblatex-true-citepages-omit.sty
+catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-true-citepages-omit
+catalogue-date 2014-04-08 11:06:38 +0200
+catalogue-license lppl
+catalogue-version 1.0.0
+
name bibleref
category Package
revision 21145
@@ -21064,7 +24660,7 @@ srcfiles size=12
runfiles size=8
texmf-dist/tex/latex/bibleref-french/bibleref-french.sty
catalogue-ctan /macros/latex/contrib/bibleref-french
-catalogue-date 2012-07-14 16:43:20 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 2.3.1
@@ -21091,7 +24687,7 @@ docfiles size=243
runfiles size=17
texmf-dist/tex/latex/bibleref-german/bibleref-german.sty
catalogue-ctan /macros/latex/contrib/bibleref-german
-catalogue-date 2012-04-25 18:26:47 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.0a
@@ -21113,7 +24709,7 @@ srcfiles size=11
runfiles size=5
texmf-dist/tex/latex/bibleref-lds/bibleref-lds.sty
catalogue-ctan /macros/latex/contrib/bibleref-lds
-catalogue-date 2012-03-03 13:44:47 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.0
@@ -21136,7 +24732,7 @@ srcfiles size=24
runfiles size=8
texmf-dist/tex/latex/bibleref-mouth/bibleref-mouth.sty
catalogue-ctan /macros/latex/contrib/bibleref-mouth
-catalogue-date 2012-03-03 13:44:47 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.0
@@ -21155,7 +24751,7 @@ docfiles size=35
runfiles size=12
texmf-dist/tex/latex/bibleref-parse/bibleref-parse.sty
catalogue-ctan /macros/latex/contrib/bibleref-parse
-catalogue-date 2012-04-25 18:26:47 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.1
@@ -21180,7 +24776,7 @@ catalogue-license gpl
name bibtex
category Package
-revision 29764
+revision 33736
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
@@ -21226,149 +24822,149 @@ catalogue-version 0.99d
name bibtex.alpha-linux
category Package
-revision 29891
+revision 33553
shortdesc alpha-linux files of bibtex
binfiles arch=alpha-linux size=53
bin/alpha-linux/bibtex
name bibtex.amd64-freebsd
category Package
-revision 29874
+revision 33488
shortdesc amd64-freebsd files of bibtex
binfiles arch=amd64-freebsd size=40
bin/amd64-freebsd/bibtex
name bibtex.amd64-kfreebsd
category Package
-revision 30655
+revision 33864
shortdesc amd64-kfreebsd files of bibtex
binfiles arch=amd64-kfreebsd size=40
bin/amd64-kfreebsd/bibtex
name bibtex.amd64-netbsd
category Package
-revision 30660
+revision 33726
shortdesc amd64-netbsd files of bibtex
-binfiles arch=amd64-netbsd size=40
+binfiles arch=amd64-netbsd size=41
bin/amd64-netbsd/bibtex
name bibtex.armel-linux
category Package
-revision 29888
+revision 33916
shortdesc armel-linux files of bibtex
binfiles arch=armel-linux size=37
bin/armel-linux/bibtex
name bibtex.armhf-linux
category Package
-revision 30443
+revision 34125
shortdesc armhf-linux files of bibtex
binfiles arch=armhf-linux size=36
bin/armhf-linux/bibtex
name bibtex.i386-cygwin
category Package
-revision 30526
+revision 34161
shortdesc i386-cygwin files of bibtex
-binfiles arch=i386-cygwin size=38
+binfiles arch=i386-cygwin size=43
bin/i386-cygwin/bibtex.exe
name bibtex.i386-freebsd
category Package
-revision 29874
+revision 33488
shortdesc i386-freebsd files of bibtex
binfiles arch=i386-freebsd size=40
bin/i386-freebsd/bibtex
name bibtex.i386-kfreebsd
category Package
-revision 30440
+revision 33864
shortdesc i386-kfreebsd files of bibtex
binfiles arch=i386-kfreebsd size=41
bin/i386-kfreebsd/bibtex
name bibtex.i386-linux
category Package
-revision 30088
+revision 33479
shortdesc i386-linux files of bibtex
-binfiles arch=i386-linux size=41
+binfiles arch=i386-linux size=44
bin/i386-linux/bibtex
name bibtex.i386-netbsd
category Package
-revision 30191
+revision 33562
shortdesc i386-netbsd files of bibtex
binfiles arch=i386-netbsd size=37
bin/i386-netbsd/bibtex
name bibtex.i386-solaris
category Package
-revision 30112
+revision 34203
shortdesc i386-solaris files of bibtex
binfiles arch=i386-solaris size=50
bin/i386-solaris/bibtex
-name bibtex.mips-irix
-category Package
-revision 30131
-shortdesc mips-irix files of bibtex
-binfiles arch=mips-irix size=90
- bin/mips-irix/bibtex
-
name bibtex.mipsel-linux
category Package
-revision 29995
+revision 33811
shortdesc mipsel-linux files of bibtex
-binfiles arch=mipsel-linux size=53
+binfiles arch=mipsel-linux size=43
bin/mipsel-linux/bibtex
name bibtex.powerpc-linux
category Package
-revision 30114
+revision 33889
shortdesc powerpc-linux files of bibtex
-binfiles arch=powerpc-linux size=44
+binfiles arch=powerpc-linux size=41
bin/powerpc-linux/bibtex
name bibtex.sparc-solaris
category Package
-revision 29877
+revision 33871
shortdesc sparc-solaris files of bibtex
binfiles arch=sparc-solaris size=45
bin/sparc-solaris/bibtex
name bibtex.universal-darwin
category Package
-revision 30764
+revision 34201
shortdesc universal-darwin files of bibtex
binfiles arch=universal-darwin size=87
bin/universal-darwin/bibtex
name bibtex.win32
category Package
-revision 29816
+revision 33897
shortdesc win32 files of bibtex
-binfiles arch=win32 size=19
+binfiles arch=win32 size=25
bin/win32/bibtex.exe
+name bibtex.x86_64-cygwin
+category Package
+revision 34161
+shortdesc x86_64-cygwin files of bibtex
+binfiles arch=x86_64-cygwin size=41
+ bin/x86_64-cygwin/bibtex.exe
+
name bibtex.x86_64-darwin
category Package
-revision 29879
+revision 34201
shortdesc x86_64-darwin files of bibtex
binfiles arch=x86_64-darwin size=47
bin/x86_64-darwin/bibtex
name bibtex.x86_64-linux
category Package
-revision 30204
+revision 33723
shortdesc x86_64-linux files of bibtex
binfiles arch=x86_64-linux size=40
bin/x86_64-linux/bibtex
name bibtex.x86_64-solaris
category Package
-revision 30112
+revision 34203
shortdesc x86_64-solaris files of bibtex
-binfiles arch=x86_64-solaris size=58
+binfiles arch=x86_64-solaris size=57
bin/x86_64-solaris/bibtex
name bibtex8
@@ -21402,153 +24998,153 @@ runfiles size=36
texmf-dist/bibtex/csf/polish-csf/cp852pl.csf
texmf-dist/bibtex/csf/polish-csf/iso8859-7.csf
catalogue-ctan /biblio/bibtex/8-bit
-catalogue-date 2012-04-27 15:08:24 +0200
+catalogue-date 2014-01-03 12:07:14 +0100
catalogue-license gpl
catalogue-version 3.71
name bibtex8.alpha-linux
category TLCore
-revision 29891
+revision 33553
shortdesc alpha-linux files of bibtex8
binfiles arch=alpha-linux size=64
bin/alpha-linux/bibtex8
name bibtex8.amd64-freebsd
category TLCore
-revision 29874
+revision 33488
shortdesc amd64-freebsd files of bibtex8
binfiles arch=amd64-freebsd size=46
bin/amd64-freebsd/bibtex8
name bibtex8.amd64-kfreebsd
category TLCore
-revision 30655
+revision 33864
shortdesc amd64-kfreebsd files of bibtex8
binfiles arch=amd64-kfreebsd size=47
bin/amd64-kfreebsd/bibtex8
name bibtex8.amd64-netbsd
category TLCore
-revision 30660
+revision 33726
shortdesc amd64-netbsd files of bibtex8
binfiles arch=amd64-netbsd size=46
bin/amd64-netbsd/bibtex8
name bibtex8.armel-linux
category TLCore
-revision 29888
+revision 33916
shortdesc armel-linux files of bibtex8
binfiles arch=armel-linux size=43
bin/armel-linux/bibtex8
name bibtex8.armhf-linux
category TLCore
-revision 30443
+revision 34125
shortdesc armhf-linux files of bibtex8
binfiles arch=armhf-linux size=42
bin/armhf-linux/bibtex8
name bibtex8.i386-cygwin
category TLCore
-revision 30526
+revision 34161
shortdesc i386-cygwin files of bibtex8
-binfiles arch=i386-cygwin size=45
+binfiles arch=i386-cygwin size=50
bin/i386-cygwin/bibtex8.exe
name bibtex8.i386-freebsd
category TLCore
-revision 29874
+revision 33488
shortdesc i386-freebsd files of bibtex8
binfiles arch=i386-freebsd size=45
bin/i386-freebsd/bibtex8
name bibtex8.i386-kfreebsd
category TLCore
-revision 30440
+revision 33864
shortdesc i386-kfreebsd files of bibtex8
binfiles arch=i386-kfreebsd size=48
bin/i386-kfreebsd/bibtex8
name bibtex8.i386-linux
category TLCore
-revision 30088
+revision 33479
shortdesc i386-linux files of bibtex8
-binfiles arch=i386-linux size=48
+binfiles arch=i386-linux size=50
bin/i386-linux/bibtex8
name bibtex8.i386-netbsd
category TLCore
-revision 30191
+revision 33562
shortdesc i386-netbsd files of bibtex8
binfiles arch=i386-netbsd size=43
bin/i386-netbsd/bibtex8
name bibtex8.i386-solaris
category TLCore
-revision 30112
+revision 34203
shortdesc i386-solaris files of bibtex8
binfiles arch=i386-solaris size=58
bin/i386-solaris/bibtex8
-name bibtex8.mips-irix
-category TLCore
-revision 30131
-shortdesc mips-irix files of bibtex8
-binfiles arch=mips-irix size=95
- bin/mips-irix/bibtex8
-
name bibtex8.mipsel-linux
category TLCore
-revision 29995
+revision 33811
shortdesc mipsel-linux files of bibtex8
-binfiles arch=mipsel-linux size=65
+binfiles arch=mipsel-linux size=49
bin/mipsel-linux/bibtex8
name bibtex8.powerpc-linux
category TLCore
-revision 30114
+revision 33889
shortdesc powerpc-linux files of bibtex8
-binfiles arch=powerpc-linux size=52
+binfiles arch=powerpc-linux size=47
bin/powerpc-linux/bibtex8
name bibtex8.sparc-solaris
category TLCore
-revision 29877
+revision 33871
shortdesc sparc-solaris files of bibtex8
binfiles arch=sparc-solaris size=52
bin/sparc-solaris/bibtex8
name bibtex8.universal-darwin
category TLCore
-revision 30764
+revision 34201
shortdesc universal-darwin files of bibtex8
binfiles arch=universal-darwin size=102
bin/universal-darwin/bibtex8
name bibtex8.win32
category TLCore
-revision 29816
+revision 33897
shortdesc win32 files of bibtex8
-binfiles arch=win32 size=64
+binfiles arch=win32 size=65
bin/win32/bibtex8.exe
+name bibtex8.x86_64-cygwin
+category TLCore
+revision 34161
+shortdesc x86_64-cygwin files of bibtex8
+binfiles arch=x86_64-cygwin size=49
+ bin/x86_64-cygwin/bibtex8.exe
+
name bibtex8.x86_64-darwin
category TLCore
-revision 29879
+revision 34201
shortdesc x86_64-darwin files of bibtex8
binfiles arch=x86_64-darwin size=54
bin/x86_64-darwin/bibtex8
name bibtex8.x86_64-linux
category TLCore
-revision 30204
+revision 33723
shortdesc x86_64-linux files of bibtex8
-binfiles arch=x86_64-linux size=46
+binfiles arch=x86_64-linux size=47
bin/x86_64-linux/bibtex8
name bibtex8.x86_64-solaris
category TLCore
-revision 30112
+revision 34203
shortdesc x86_64-solaris files of bibtex8
binfiles arch=x86_64-solaris size=66
bin/x86_64-solaris/bibtex8
@@ -21565,149 +25161,149 @@ docfiles size=15
name bibtexu.alpha-linux
category TLCore
-revision 29891
+revision 34190
shortdesc alpha-linux files of bibtexu
-binfiles arch=alpha-linux size=4112
+binfiles arch=alpha-linux size=3816
bin/alpha-linux/bibtexu
name bibtexu.amd64-freebsd
category TLCore
-revision 29874
+revision 33837
shortdesc amd64-freebsd files of bibtexu
-binfiles arch=amd64-freebsd size=4028
+binfiles arch=amd64-freebsd size=3750
bin/amd64-freebsd/bibtexu
name bibtexu.amd64-kfreebsd
category TLCore
-revision 30655
+revision 33864
shortdesc amd64-kfreebsd files of bibtexu
-binfiles arch=amd64-kfreebsd size=4007
+binfiles arch=amd64-kfreebsd size=3738
bin/amd64-kfreebsd/bibtexu
name bibtexu.amd64-netbsd
category TLCore
-revision 30660
+revision 33726
shortdesc amd64-netbsd files of bibtexu
-binfiles arch=amd64-netbsd size=4003
+binfiles arch=amd64-netbsd size=3736
bin/amd64-netbsd/bibtexu
name bibtexu.armel-linux
category TLCore
-revision 29888
+revision 33916
shortdesc armel-linux files of bibtexu
-binfiles arch=armel-linux size=3986
+binfiles arch=armel-linux size=3715
bin/armel-linux/bibtexu
name bibtexu.armhf-linux
category TLCore
-revision 30443
+revision 34125
shortdesc armhf-linux files of bibtexu
-binfiles arch=armhf-linux size=3944
+binfiles arch=armhf-linux size=3686
bin/armhf-linux/bibtexu
name bibtexu.i386-cygwin
category TLCore
-revision 30526
+revision 34161
shortdesc i386-cygwin files of bibtexu
-binfiles arch=i386-cygwin size=3987
+binfiles arch=i386-cygwin size=3736
bin/i386-cygwin/bibtexu.exe
name bibtexu.i386-freebsd
category TLCore
-revision 29874
+revision 33837
shortdesc i386-freebsd files of bibtexu
-binfiles arch=i386-freebsd size=3992
+binfiles arch=i386-freebsd size=3716
bin/i386-freebsd/bibtexu
name bibtexu.i386-kfreebsd
category TLCore
-revision 30440
+revision 33864
shortdesc i386-kfreebsd files of bibtexu
-binfiles arch=i386-kfreebsd size=4010
+binfiles arch=i386-kfreebsd size=3740
bin/i386-kfreebsd/bibtexu
name bibtexu.i386-linux
category TLCore
-revision 30088
+revision 33479
shortdesc i386-linux files of bibtexu
-binfiles arch=i386-linux size=4011
+binfiles arch=i386-linux size=3766
bin/i386-linux/bibtexu
name bibtexu.i386-netbsd
category TLCore
-revision 30191
+revision 33562
shortdesc i386-netbsd files of bibtexu
-binfiles arch=i386-netbsd size=3986
+binfiles arch=i386-netbsd size=3717
bin/i386-netbsd/bibtexu
name bibtexu.i386-solaris
category TLCore
-revision 30112
+revision 34203
shortdesc i386-solaris files of bibtexu
-binfiles arch=i386-solaris size=4115
+binfiles arch=i386-solaris size=3839
bin/i386-solaris/bibtexu
-name bibtexu.mips-irix
-category TLCore
-revision 30131
-shortdesc mips-irix files of bibtexu
-binfiles arch=mips-irix size=4434
- bin/mips-irix/bibtexu
-
name bibtexu.mipsel-linux
category TLCore
-revision 29995
+revision 33811
shortdesc mipsel-linux files of bibtexu
-binfiles arch=mipsel-linux size=4113
+binfiles arch=mipsel-linux size=3768
bin/mipsel-linux/bibtexu
name bibtexu.powerpc-linux
category TLCore
-revision 30114
+revision 33889
shortdesc powerpc-linux files of bibtexu
-binfiles arch=powerpc-linux size=4044
+binfiles arch=powerpc-linux size=3743
bin/powerpc-linux/bibtexu
name bibtexu.sparc-solaris
category TLCore
-revision 29877
+revision 33871
shortdesc sparc-solaris files of bibtexu
-binfiles arch=sparc-solaris size=4056
+binfiles arch=sparc-solaris size=3778
bin/sparc-solaris/bibtexu
name bibtexu.universal-darwin
category TLCore
-revision 30764
+revision 34201
shortdesc universal-darwin files of bibtexu
-binfiles arch=universal-darwin size=7997
+binfiles arch=universal-darwin size=7443
bin/universal-darwin/bibtexu
name bibtexu.win32
category TLCore
-revision 29816
+revision 33897
shortdesc win32 files of bibtexu
-binfiles arch=win32 size=294
+binfiles arch=win32 size=214
bin/win32/bibtexu.exe
+name bibtexu.x86_64-cygwin
+category TLCore
+revision 34161
+shortdesc x86_64-cygwin files of bibtexu
+binfiles arch=x86_64-cygwin size=3740
+ bin/x86_64-cygwin/bibtexu.exe
+
name bibtexu.x86_64-darwin
category TLCore
-revision 29879
+revision 34201
shortdesc x86_64-darwin files of bibtexu
-binfiles arch=x86_64-darwin size=4031
+binfiles arch=x86_64-darwin size=3759
bin/x86_64-darwin/bibtexu
name bibtexu.x86_64-linux
category TLCore
-revision 30204
+revision 33723
shortdesc x86_64-linux files of bibtexu
-binfiles arch=x86_64-linux size=4004
+binfiles arch=x86_64-linux size=3740
bin/x86_64-linux/bibtexu
name bibtexu.x86_64-solaris
category TLCore
-revision 30112
+revision 34203
shortdesc x86_64-solaris files of bibtexu
-binfiles arch=x86_64-solaris size=4224
+binfiles arch=x86_64-solaris size=3933
bin/x86_64-solaris/bibtexu
name bibtopic
@@ -21792,174 +25388,170 @@ catalogue-version 2.2
name bidi
category Package
-revision 30783
-shortdesc Support for bidirectional typesetting in plain TeX and LaTeX.
+revision 33647
+shortdesc Bidirectional typesetting in plain TeX and LaTeX, using XeTeX engine.
longdesc A convenient interface for typesetting bidirectional texts with
longdesc plain TeX and LaTeX. The package includes adaptations for use
longdesc with many other commonly-used packages.
-docfiles size=277
- texmf-dist/doc/latex/bidi/ChangeLog
- texmf-dist/doc/latex/bidi/README details="Readme"
- texmf-dist/doc/latex/bidi/bidi-logo.pdf
- texmf-dist/doc/latex/bidi/bidi-logo.tex
- texmf-dist/doc/latex/bidi/bidi.pdf details="Package documentation"
- texmf-dist/doc/latex/bidi/bidisample2e.tex
- texmf-dist/doc/latex/bidi/bidismall2e.tex
- texmf-dist/doc/latex/bidi/gull.jpg
- texmf-dist/doc/latex/bidi/picture.jpg
- texmf-dist/doc/latex/bidi/presentation-sample.tex
- texmf-dist/doc/latex/bidi/test-arydshln.tex
- texmf-dist/doc/latex/bidi/test-bidi.tex
- texmf-dist/doc/latex/bidi/test-brochure.tex
- texmf-dist/doc/latex/bidi/test-casualcv.tex
- texmf-dist/doc/latex/bidi/test-classiccv.tex
- texmf-dist/doc/latex/bidi/test-color.tex
- texmf-dist/doc/latex/bidi/test-supertabular.tex
- texmf-dist/doc/latex/bidi/test-tabular.tex
- texmf-dist/doc/latex/bidi/test-tabularx.tex
- texmf-dist/doc/latex/bidi/test-tabulary.tex
- texmf-dist/doc/latex/bidi/test1-colortbl.tex
- texmf-dist/doc/latex/bidi/test1-wrapfig.tex
- texmf-dist/doc/latex/bidi/test2-colortbl.tex
- texmf-dist/doc/latex/bidi/test2-wrapfig.tex
- texmf-dist/doc/latex/bidi/test3-wrapfig.tex
+docfiles size=824
+ texmf-dist/doc/xelatex/bidi/README details="Readme"
+ texmf-dist/doc/xelatex/bidi/bidi-logo.pdf
+ texmf-dist/doc/xelatex/bidi/bidi-logo.tex
+ texmf-dist/doc/xelatex/bidi/bidi.pdf details="Package documentation"
+ texmf-dist/doc/xelatex/bidi/bidisample2e.tex
+ texmf-dist/doc/xelatex/bidi/bidismall2e.tex
+ texmf-dist/doc/xelatex/bidi/gull.jpg
+ texmf-dist/doc/xelatex/bidi/picture.jpg
+ texmf-dist/doc/xelatex/bidi/presentation-sample.tex
+ texmf-dist/doc/xelatex/bidi/test-arydshln.tex
+ texmf-dist/doc/xelatex/bidi/test-bidi.tex
+ texmf-dist/doc/xelatex/bidi/test-brochure.tex
+ texmf-dist/doc/xelatex/bidi/test-casualcv.tex
+ texmf-dist/doc/xelatex/bidi/test-classiccv.tex
+ texmf-dist/doc/xelatex/bidi/test-color.tex
+ texmf-dist/doc/xelatex/bidi/test-supertabular.tex
+ texmf-dist/doc/xelatex/bidi/test-tabular.tex
+ texmf-dist/doc/xelatex/bidi/test-tabularx.tex
+ texmf-dist/doc/xelatex/bidi/test-tabulary.tex
+ texmf-dist/doc/xelatex/bidi/test1-colortbl.tex
+ texmf-dist/doc/xelatex/bidi/test1-wrapfig.tex
+ texmf-dist/doc/xelatex/bidi/test2-colortbl.tex
+ texmf-dist/doc/xelatex/bidi/test2-wrapfig.tex
+ texmf-dist/doc/xelatex/bidi/test3-wrapfig.tex
srcfiles size=191
- texmf-dist/source/latex/bidi/bidi.dtx
- texmf-dist/source/latex/bidi/bidi.ins
-runfiles size=230
- texmf-dist/tex/latex/bidi/amsart-xetex-bidi.def
- texmf-dist/tex/latex/bidi/amsbook-xetex-bidi.def
- texmf-dist/tex/latex/bidi/amsmath-xetex-bidi.def
- texmf-dist/tex/latex/bidi/amstext-xetex-bidi.def
- texmf-dist/tex/latex/bidi/amsthm-xetex-bidi.def
- texmf-dist/tex/latex/bidi/array-xetex-bidi.def
- texmf-dist/tex/latex/bidi/article-xetex-bidi.def
- texmf-dist/tex/latex/bidi/artikel1-xetex-bidi.def
- texmf-dist/tex/latex/bidi/artikel2-xetex-bidi.def
- texmf-dist/tex/latex/bidi/artikel3-xetex-bidi.def
- texmf-dist/tex/latex/bidi/arydshln-xetex-bidi.def
- texmf-dist/tex/latex/bidi/bibitem.pdf
- texmf-dist/tex/latex/bidi/bidi-longtable.sty
- texmf-dist/tex/latex/bidi/bidi.sty
- texmf-dist/tex/latex/bidi/bidi.tex
- texmf-dist/tex/latex/bidi/bidi2in1.sty
- texmf-dist/tex/latex/bidi/bidicode.sty
- texmf-dist/tex/latex/bidi/bidiftnxtra.sty
- texmf-dist/tex/latex/bidi/bidimoderncv.cls
- texmf-dist/tex/latex/bidi/bidipoem.sty
- texmf-dist/tex/latex/bidi/bidipresentation.cls
- texmf-dist/tex/latex/bidi/biditools.sty
- texmf-dist/tex/latex/bidi/biditufte-book.cls
- texmf-dist/tex/latex/bidi/biditufte-handout.cls
- texmf-dist/tex/latex/bidi/bidituftefloat.sty
- texmf-dist/tex/latex/bidi/bidituftegeneralstructure.sty
- texmf-dist/tex/latex/bidi/bidituftehyperref.sty
- texmf-dist/tex/latex/bidi/bidituftesidenote.sty
- texmf-dist/tex/latex/bidi/bidituftetitle.sty
- texmf-dist/tex/latex/bidi/bidituftetoc.sty
- texmf-dist/tex/latex/bidi/boek-xetex-bidi.def
- texmf-dist/tex/latex/bidi/boek3-xetex-bidi.def
- texmf-dist/tex/latex/bidi/book-xetex-bidi.def
- texmf-dist/tex/latex/bidi/bookest-xetex-bidi.def
- texmf-dist/tex/latex/bidi/breqn-xetex-bidi.def
- texmf-dist/tex/latex/bidi/cals-xetex-bidi.def
- texmf-dist/tex/latex/bidi/caption-xetex-bidi.def
- texmf-dist/tex/latex/bidi/caption3-xetex-bidi.def
- texmf-dist/tex/latex/bidi/color-xetex-bidi.def
- texmf-dist/tex/latex/bidi/colortbl-xetex-bidi.def
- texmf-dist/tex/latex/bidi/combine-xetex-bidi.def
- texmf-dist/tex/latex/bidi/crop-xetex-bidi.def
- texmf-dist/tex/latex/bidi/cuted-xetex-bidi.def
- texmf-dist/tex/latex/bidi/cutwin-xetex-bidi.def
- texmf-dist/tex/latex/bidi/cvthemebidicasual.sty
- texmf-dist/tex/latex/bidi/cvthemebidiclassic.sty
- texmf-dist/tex/latex/bidi/dblfnote-xetex-bidi.def
- texmf-dist/tex/latex/bidi/draftwatermark-xetex-bidi.def
- texmf-dist/tex/latex/bidi/empheq-xetex-bidi.def
- texmf-dist/tex/latex/bidi/eso-pic-xetex-bidi.def
- texmf-dist/tex/latex/bidi/extarticle-xetex-bidi.def
- texmf-dist/tex/latex/bidi/extbook-xetex-bidi.def
- texmf-dist/tex/latex/bidi/extletter-xetex-bidi.def
- texmf-dist/tex/latex/bidi/extrafootnotefeatures.def
- texmf-dist/tex/latex/bidi/extreport-xetex-bidi.def
- texmf-dist/tex/latex/bidi/fancybox-xetex-bidi.def
- texmf-dist/tex/latex/bidi/fancyhdr-xetex-bidi.def
- texmf-dist/tex/latex/bidi/fix2col-xetex-bidi.def
- texmf-dist/tex/latex/bidi/fleqn-xetex-bidi.def
- texmf-dist/tex/latex/bidi/float-xetex-bidi.def
- texmf-dist/tex/latex/bidi/floatrow-xetex-bidi.def
- texmf-dist/tex/latex/bidi/flowfram-xetex-bidi.def
- texmf-dist/tex/latex/bidi/footnote-luatex-bidi.def
- texmf-dist/tex/latex/bidi/footnote-xetex-bidi.def
- texmf-dist/tex/latex/bidi/framed-xetex-bidi.def
- texmf-dist/tex/latex/bidi/ftnright-xetex-bidi.def
- texmf-dist/tex/latex/bidi/geometry-xetex-bidi.def
- texmf-dist/tex/latex/bidi/graphicx-xetex-bidi.def
- texmf-dist/tex/latex/bidi/hvfloat-xetex-bidi.def
- texmf-dist/tex/latex/bidi/hyperref-xetex-bidi.def
- texmf-dist/tex/latex/bidi/leqno-xetex-bidi.def
- texmf-dist/tex/latex/bidi/letter-xetex-bidi.def
- texmf-dist/tex/latex/bidi/lettrine-xetex-bidi.def
- texmf-dist/tex/latex/bidi/listings-xetex-bidi.def
- texmf-dist/tex/latex/bidi/loadingorder-bidi.def
- texmf-dist/tex/latex/bidi/longtable-xetex-bidi.def
- texmf-dist/tex/latex/bidi/luatex-bidi.def
- texmf-dist/tex/latex/bidi/mdframed-xetex-bidi.def
- texmf-dist/tex/latex/bidi/memoir-xetex-bidi.def
- texmf-dist/tex/latex/bidi/midfloat-xetex-bidi.def
- texmf-dist/tex/latex/bidi/minitoc-xetex-bidi.def
- texmf-dist/tex/latex/bidi/multicol-xetex-bidi.def
- texmf-dist/tex/latex/bidi/multienum-xetex-bidi.def
- texmf-dist/tex/latex/bidi/natbib-xetex-bidi.def
- texmf-dist/tex/latex/bidi/newfloat-xetex-bidi.def
- texmf-dist/tex/latex/bidi/ntheorem-hyper-xetex-bidi.def
- texmf-dist/tex/latex/bidi/ntheorem-xetex-bidi.def
- texmf-dist/tex/latex/bidi/pdfpages-xetex-bidi.def
- texmf-dist/tex/latex/bidi/pgf-xetex-bidi.def
- texmf-dist/tex/latex/bidi/picinpar-xetex-bidi.def
- texmf-dist/tex/latex/bidi/plain-luatex-bidi.def
- texmf-dist/tex/latex/bidi/plain-xetex-bidi.def
- texmf-dist/tex/latex/bidi/pstricks-xetex-bidi.def
- texmf-dist/tex/latex/bidi/quotchap-xetex-bidi.def
- texmf-dist/tex/latex/bidi/ragged2e-xetex-bidi.def
- texmf-dist/tex/latex/bidi/rapport1-xetex-bidi.def
- texmf-dist/tex/latex/bidi/rapport3-xetex-bidi.def
- texmf-dist/tex/latex/bidi/refrep-xetex-bidi.def
- texmf-dist/tex/latex/bidi/report-xetex-bidi.def
- texmf-dist/tex/latex/bidi/rotating-xetex-bidi.def
- texmf-dist/tex/latex/bidi/scrartcl-xetex-bidi.def
- texmf-dist/tex/latex/bidi/scrbook-xetex-bidi.def
- texmf-dist/tex/latex/bidi/scrlettr-xetex-bidi.def
- texmf-dist/tex/latex/bidi/scrreprt-xetex-bidi.def
- texmf-dist/tex/latex/bidi/sidecap-xetex-bidi.def
- texmf-dist/tex/latex/bidi/stabular-xetex-bidi.def
- texmf-dist/tex/latex/bidi/subfigure-xetex-bidi.def
- texmf-dist/tex/latex/bidi/tabls-xetex-bidi.def
- texmf-dist/tex/latex/bidi/tabulary-xetex-bidi.def
- texmf-dist/tex/latex/bidi/titlesec-xetex-bidi.def
- texmf-dist/tex/latex/bidi/titletoc-xetex-bidi.def
- texmf-dist/tex/latex/bidi/tocbibind-xetex-bidi.def
- texmf-dist/tex/latex/bidi/tocloft-xetex-bidi.def
- texmf-dist/tex/latex/bidi/tocstyle-xetex-bidi.def
- texmf-dist/tex/latex/bidi/wrapfig-xetex-bidi.def
- texmf-dist/tex/latex/bidi/xcolor-xetex-bidi.def
- texmf-dist/tex/latex/bidi/xetex-bidi.def
- texmf-dist/tex/latex/bidi/xltxtra-xetex-bidi.def
-catalogue-ctan /macros/latex/contrib/bidi
-catalogue-date 2013-05-28 19:52:13 +0200
-catalogue-license lppl1.3
-catalogue-version 13.5
+ texmf-dist/source/xelatex/bidi/bidi.dtx
+ texmf-dist/source/xelatex/bidi/bidi.ins
+runfiles size=239
+ texmf-dist/tex/xelatex/bidi/amsart-xetex-bidi.def
+ texmf-dist/tex/xelatex/bidi/amsbook-xetex-bidi.def
+ texmf-dist/tex/xelatex/bidi/amsmath-xetex-bidi.def
+ texmf-dist/tex/xelatex/bidi/amstext-xetex-bidi.def
+ texmf-dist/tex/xelatex/bidi/amsthm-xetex-bidi.def
+ texmf-dist/tex/xelatex/bidi/array-xetex-bidi.def
+ texmf-dist/tex/xelatex/bidi/article-xetex-bidi.def
+ texmf-dist/tex/xelatex/bidi/artikel1-xetex-bidi.def
+ texmf-dist/tex/xelatex/bidi/artikel2-xetex-bidi.def
+ texmf-dist/tex/xelatex/bidi/artikel3-xetex-bidi.def
+ texmf-dist/tex/xelatex/bidi/arydshln-xetex-bidi.def
+ texmf-dist/tex/xelatex/bidi/bibitem.pdf
+ texmf-dist/tex/xelatex/bidi/bidi-longtable.sty
+ texmf-dist/tex/xelatex/bidi/bidi.sty
+ texmf-dist/tex/xelatex/bidi/bidi.tex
+ texmf-dist/tex/xelatex/bidi/bidi2in1.sty
+ texmf-dist/tex/xelatex/bidi/bidicode.sty
+ texmf-dist/tex/xelatex/bidi/bidiftnxtra.sty
+ texmf-dist/tex/xelatex/bidi/bidimoderncv.cls
+ texmf-dist/tex/xelatex/bidi/bidipoem.sty
+ texmf-dist/tex/xelatex/bidi/bidipresentation.cls
+ texmf-dist/tex/xelatex/bidi/biditools.sty
+ texmf-dist/tex/xelatex/bidi/biditufte-book.cls
+ texmf-dist/tex/xelatex/bidi/biditufte-handout.cls
+ texmf-dist/tex/xelatex/bidi/bidituftefloat.sty
+ texmf-dist/tex/xelatex/bidi/bidituftegeneralstructure.sty
+ texmf-dist/tex/xelatex/bidi/bidituftehyperref.sty
+ texmf-dist/tex/xelatex/bidi/bidituftesidenote.sty
+ texmf-dist/tex/xelatex/bidi/bidituftetitle.sty
+ texmf-dist/tex/xelatex/bidi/bidituftetoc.sty
+ texmf-dist/tex/xelatex/bidi/boek-xetex-bidi.def
+ texmf-dist/tex/xelatex/bidi/boek3-xetex-bidi.def
+ texmf-dist/tex/xelatex/bidi/book-xetex-bidi.def
+ texmf-dist/tex/xelatex/bidi/bookest-xetex-bidi.def
+ texmf-dist/tex/xelatex/bidi/breqn-xetex-bidi.def
+ texmf-dist/tex/xelatex/bidi/cals-xetex-bidi.def
+ texmf-dist/tex/xelatex/bidi/caption-xetex-bidi.def
+ texmf-dist/tex/xelatex/bidi/caption3-xetex-bidi.def
+ texmf-dist/tex/xelatex/bidi/color-xetex-bidi.def
+ texmf-dist/tex/xelatex/bidi/colortbl-xetex-bidi.def
+ texmf-dist/tex/xelatex/bidi/combine-xetex-bidi.def
+ texmf-dist/tex/xelatex/bidi/crop-xetex-bidi.def
+ texmf-dist/tex/xelatex/bidi/cuted-xetex-bidi.def
+ texmf-dist/tex/xelatex/bidi/cutwin-xetex-bidi.def
+ texmf-dist/tex/xelatex/bidi/cvthemebidicasual.sty
+ texmf-dist/tex/xelatex/bidi/cvthemebidiclassic.sty
+ texmf-dist/tex/xelatex/bidi/dblfnote-xetex-bidi.def
+ texmf-dist/tex/xelatex/bidi/draftwatermark-xetex-bidi.def
+ texmf-dist/tex/xelatex/bidi/empheq-xetex-bidi.def
+ texmf-dist/tex/xelatex/bidi/eso-pic-xetex-bidi.def
+ texmf-dist/tex/xelatex/bidi/extarticle-xetex-bidi.def
+ texmf-dist/tex/xelatex/bidi/extbook-xetex-bidi.def
+ texmf-dist/tex/xelatex/bidi/extletter-xetex-bidi.def
+ texmf-dist/tex/xelatex/bidi/extrafootnotefeatures-xetex-bidi.def
+ texmf-dist/tex/xelatex/bidi/extreport-xetex-bidi.def
+ texmf-dist/tex/xelatex/bidi/fancybox-xetex-bidi.def
+ texmf-dist/tex/xelatex/bidi/fancyhdr-xetex-bidi.def
+ texmf-dist/tex/xelatex/bidi/fix2col-xetex-bidi.def
+ texmf-dist/tex/xelatex/bidi/fleqn-xetex-bidi.def
+ texmf-dist/tex/xelatex/bidi/float-xetex-bidi.def
+ texmf-dist/tex/xelatex/bidi/floatrow-xetex-bidi.def
+ texmf-dist/tex/xelatex/bidi/flowfram-xetex-bidi.def
+ texmf-dist/tex/xelatex/bidi/footnote-xetex-bidi.def
+ texmf-dist/tex/xelatex/bidi/framed-xetex-bidi.def
+ texmf-dist/tex/xelatex/bidi/ftnright-xetex-bidi.def
+ texmf-dist/tex/xelatex/bidi/geometry-xetex-bidi.def
+ texmf-dist/tex/xelatex/bidi/graphicx-xetex-bidi.def
+ texmf-dist/tex/xelatex/bidi/hvfloat-xetex-bidi.def
+ texmf-dist/tex/xelatex/bidi/hyperref-xetex-bidi.def
+ texmf-dist/tex/xelatex/bidi/latex-xetex-bidi.def
+ texmf-dist/tex/xelatex/bidi/leqno-xetex-bidi.def
+ texmf-dist/tex/xelatex/bidi/letter-xetex-bidi.def
+ texmf-dist/tex/xelatex/bidi/lettrine-xetex-bidi.def
+ texmf-dist/tex/xelatex/bidi/listings-xetex-bidi.def
+ texmf-dist/tex/xelatex/bidi/loadingorder-xetex-bidi.def
+ texmf-dist/tex/xelatex/bidi/longtable-xetex-bidi.def
+ texmf-dist/tex/xelatex/bidi/mdframed-xetex-bidi.def
+ texmf-dist/tex/xelatex/bidi/memoir-xetex-bidi.def
+ texmf-dist/tex/xelatex/bidi/midfloat-xetex-bidi.def
+ texmf-dist/tex/xelatex/bidi/minitoc-xetex-bidi.def
+ texmf-dist/tex/xelatex/bidi/multicol-xetex-bidi.def
+ texmf-dist/tex/xelatex/bidi/multienum-xetex-bidi.def
+ texmf-dist/tex/xelatex/bidi/natbib-xetex-bidi.def
+ texmf-dist/tex/xelatex/bidi/newfloat-xetex-bidi.def
+ texmf-dist/tex/xelatex/bidi/ntheorem-hyper-xetex-bidi.def
+ texmf-dist/tex/xelatex/bidi/ntheorem-xetex-bidi.def
+ texmf-dist/tex/xelatex/bidi/pdfpages-xetex-bidi.def
+ texmf-dist/tex/xelatex/bidi/pgf-xetex-bidi.def
+ texmf-dist/tex/xelatex/bidi/picinpar-xetex-bidi.def
+ texmf-dist/tex/xelatex/bidi/plain-xetex-bidi.def
+ texmf-dist/tex/xelatex/bidi/pstricks-xetex-bidi.def
+ texmf-dist/tex/xelatex/bidi/quotchap-xetex-bidi.def
+ texmf-dist/tex/xelatex/bidi/ragged2e-xetex-bidi.def
+ texmf-dist/tex/xelatex/bidi/rapport1-xetex-bidi.def
+ texmf-dist/tex/xelatex/bidi/rapport3-xetex-bidi.def
+ texmf-dist/tex/xelatex/bidi/refrep-xetex-bidi.def
+ texmf-dist/tex/xelatex/bidi/report-xetex-bidi.def
+ texmf-dist/tex/xelatex/bidi/rotating-xetex-bidi.def
+ texmf-dist/tex/xelatex/bidi/scrartcl-xetex-bidi.def
+ texmf-dist/tex/xelatex/bidi/scrbook-xetex-bidi.def
+ texmf-dist/tex/xelatex/bidi/scrlettr-xetex-bidi.def
+ texmf-dist/tex/xelatex/bidi/scrreprt-xetex-bidi.def
+ texmf-dist/tex/xelatex/bidi/sidecap-xetex-bidi.def
+ texmf-dist/tex/xelatex/bidi/stabular-xetex-bidi.def
+ texmf-dist/tex/xelatex/bidi/subfigure-xetex-bidi.def
+ texmf-dist/tex/xelatex/bidi/tabls-xetex-bidi.def
+ texmf-dist/tex/xelatex/bidi/tabulary-xetex-bidi.def
+ texmf-dist/tex/xelatex/bidi/titlesec-xetex-bidi.def
+ texmf-dist/tex/xelatex/bidi/titletoc-xetex-bidi.def
+ texmf-dist/tex/xelatex/bidi/tocbibind-xetex-bidi.def
+ texmf-dist/tex/xelatex/bidi/tocloft-xetex-bidi.def
+ texmf-dist/tex/xelatex/bidi/tocstyle-xetex-bidi.def
+ texmf-dist/tex/xelatex/bidi/wrapfig-xetex-bidi.def
+ texmf-dist/tex/xelatex/bidi/xcolor-xetex-bidi.def
+ texmf-dist/tex/xelatex/bidi/xltxtra-xetex-bidi.def
+catalogue-ctan /macros/xetex/latex/bidi
+catalogue-date 2014-04-28 08:25:15 +0200
+catalogue-license lppl1.3
+catalogue-version 14.8
name bigfoot
category Package
revision 15878
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 be
+longdesc requirements for footnotes. It offers: Multiple footnote
+longdesc apparatus superior to that of manyfoot Footnotes can be
longdesc 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 paragraph (this choice may be selected per footnote series);
+longdesc Things you might have expected (such as \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
@@ -21983,7 +25575,7 @@ runfiles size=13
texmf-dist/tex/latex/bigfoot/perpage.sty
texmf-dist/tex/latex/bigfoot/suffix.sty
catalogue-ctan /macros/latex/contrib/bigfoot
-catalogue-date 2011-10-03 08:51:46 +0200
+catalogue-date 2013-12-17 14:10:26 +0100
catalogue-license gpl2
name bigints
@@ -22003,7 +25595,7 @@ docfiles size=61
runfiles size=2
texmf-dist/tex/latex/bigints/bigints.sty
catalogue-ctan /macros/latex/contrib/bigints
-catalogue-date 2012-04-28 20:54:25 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
name binomexp
@@ -22011,8 +25603,8 @@ category Package
revision 15878
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 triangle,
-longdesc or - to print the rows inside an array or tabular.
+longdesc may be used: simply to print successive rows of the triangle,
+longdesc or to print the rows inside an array or tabular.
docfiles size=22
texmf-dist/doc/latex/binomexp/README details="Readme"
texmf-dist/doc/latex/binomexp/binomexp.pdf details="Package documentation"
@@ -22022,7 +25614,7 @@ srcfiles size=5
runfiles size=2
texmf-dist/tex/latex/binomexp/binomexp.sty
catalogue-ctan /macros/latex/contrib/binomexp
-catalogue-date 2012-04-28 20:54:25 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.0
@@ -22065,9 +25657,9 @@ longdesc The package provides commands for "splitting" a token list at
longdesc the first occurrence of another (specified) token list. I.e.,
longdesc for given token lists s, t return b and the shortest a, such
longdesc that t = a s b. The package's mechanism differs from those of
-longdesc packages providing similar features, in the following ways: -
-longdesc the method uses TeX's mechanism of reading delimited macro
-longdesc parameters; - the splitting macros work by pure expansion,
+longdesc packages providing similar features, in the following ways: the
+longdesc method uses TeX's mechanism of reading delimited macro
+longdesc parameters; the splitting macros work by pure expansion,
longdesc without assignments; - the operation is carried out in a single
longdesc macro call. A variant of the operation is provided, that
longdesc retains outer braces.
@@ -22081,7 +25673,7 @@ runfiles size=4
texmf-dist/tex/generic/bitelist/bitedemo.tex
texmf-dist/tex/generic/bitelist/bitelist.sty
catalogue-ctan /macros/generic/bitelist
-catalogue-date 2012-04-05 11:02:37 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 0.1
@@ -22150,7 +25742,7 @@ runfiles size=14
texmf-dist/fonts/vf/public/blacklettert1/tswab.vf
texmf-dist/tex/latex/blacklettert1/t1yfrak.fd
catalogue-ctan /fonts/gothic/blacklettert1
-catalogue-date 2012-04-27 14:49:55 +0200
+catalogue-date 2014-04-07 13:51:00 +0200
catalogue-license other-free
name blindtext
@@ -22264,7 +25856,7 @@ docfiles size=35
runfiles size=3
texmf-dist/tex/latex/bloques/bloques.sty
catalogue-ctan /graphics/pgf/contrib/bloques
-catalogue-date 2012-04-23 23:26:21 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.0
@@ -22485,30 +26077,31 @@ docfiles size=281
runfiles size=18
texmf-dist/tex/latex/bodegraph/bodegraph.sty
catalogue-ctan /graphics/pgf/contrib/bodegraph
-catalogue-date 2012-06-14 23:01:55 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.4
name bohr
category Package
-revision 28700
+revision 32118
shortdesc Simple atom representation according to the Bohr model.
longdesc The package provides means for the creation of simple Bohr
longdesc models of atoms up to the atomic number 112. In addition,
longdesc commands are provided to convert atomic numbers to element
longdesc symbols or element names and vice versa.
-docfiles size=30
+docfiles size=112
texmf-dist/doc/latex/bohr/README details="Readme"
texmf-dist/doc/latex/bohr/bohr_en.pdf details="Package documentation"
texmf-dist/doc/latex/bohr/bohr_en.tex
-runfiles size=6
+runfiles size=11
texmf-dist/tex/latex/bohr/bohr.sty
texmf-dist/tex/latex/bohr/bohr_elements_english.def
+ texmf-dist/tex/latex/bohr/bohr_elements_french.def
texmf-dist/tex/latex/bohr/bohr_elements_german.def
catalogue-ctan /macros/latex/contrib/bohr
-catalogue-date 2013-01-03 19:46:00 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
-catalogue-version 0.2c
+catalogue-version 0.4
name boisik
category Package
@@ -22647,33 +26240,34 @@ runfiles size=670
texmf-dist/tex/latex/boisik/ts1bsk.fd
texmf-dist/tex/latex/boisik/ubskex.fd
catalogue-ctan /fonts/boisik
-catalogue-date 2012-11-30 15:48:00 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license gpl2
catalogue-version 0.5
name boites
category Package
-revision 15878
+revision 32235
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=40
+docfiles size=94
+ texmf-dist/doc/latex/boites/Makefile
texmf-dist/doc/latex/boites/README details="Readme"
texmf-dist/doc/latex/boites/README.docu
texmf-dist/doc/latex/boites/boites.pdf details="English translation"
- texmf-dist/doc/latex/boites/boites_exemples.pdf details="(Contrived) examples of use"
- texmf-dist/doc/latex/boites/boites_exemples.tex
+ texmf-dist/doc/latex/boites/demo.pdf details="Examples of use"
+ texmf-dist/doc/latex/boites/demo.tex
texmf-dist/doc/latex/boites/ligne_qui_ondule_sur_la_gauche.eps
-srcfiles size=6
- texmf-dist/source/latex/boites/Makefile
+srcfiles size=5
texmf-dist/source/latex/boites/boites.dtx
-runfiles size=3
+runfiles size=4
texmf-dist/tex/latex/boites/boites.sty
texmf-dist/tex/latex/boites/boites_exemples.sty
catalogue-ctan /macros/latex/contrib/boites
-catalogue-date 2011-10-26 08:45:54 +0200
+catalogue-date 2013-11-23 08:21:35 +0100
catalogue-license gpl
+catalogue-version 1.1
name bold-extra
category Package
@@ -22722,7 +26316,7 @@ docfiles size=19
runfiles size=2
texmf-dist/tex/latex/bondgraph/bondgraph.sty
catalogue-ctan /macros/latex/contrib/bondgraph
-catalogue-date 2012-06-15 00:14:06 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.0
@@ -22742,7 +26336,7 @@ docfiles size=76
runfiles size=5
texmf-dist/tex/latex/bookest/bookest.cls
catalogue-ctan /macros/latex/contrib/bookest
-catalogue-date 2012-06-15 00:14:06 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.1
@@ -23097,7 +26691,7 @@ runfiles size=412
texmf-dist/tex/latex/bookhands/t1uncl.fd
texmf-dist/tex/latex/bookhands/uncial.sty
catalogue-ctan /fonts/bookhands
-catalogue-date 2012-04-26 14:33:15 +0200
+catalogue-date 2013-12-16 12:19:51 +0100
catalogue-license lppl
name booklet
@@ -23126,7 +26720,7 @@ catalogue-version 0.7b
name bookman
category Package
-revision 28614
+revision 31835
catalogue urw-base35
shortdesc URW "Base 35" font pack for LaTeX.
longdesc A set of fonts for use as "drop-in" replacements for Adobe's
@@ -23140,6 +26734,7 @@ longdesc Symbol); - URW Bookman; - URW Chancery L Medium Italic
longdesc (substituting for Adobe's Zapf Chancery); - URW Gothic L Book
longdesc (substituting for Adobe's Avant Garde); and - URW Palladio L
longdesc (substituting for Adobe's Palatino).
+execute addMap ubk.map
runfiles size=400
texmf-dist/dvips/bookman/config.ubk
texmf-dist/fonts/afm/adobe/bookman/pbkd8a.afm
@@ -23369,7 +26964,7 @@ docfiles size=82
texmf-dist/doc/latex/booktabs-de/booktabs-de.ins
texmf-dist/doc/latex/booktabs-de/booktabs-de.pdf details="Package documentation"
catalogue-ctan /macros/latex/contrib/booktabs-de
-catalogue-date 2012-04-26 14:33:15 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license gpl
catalogue-version 1.61803
@@ -23385,7 +26980,7 @@ docfiles size=67
texmf-dist/doc/latex/booktabs-fr/f-booktabs.pdf details="The document itself"
texmf-dist/doc/latex/booktabs-fr/ltxdoc.cfg
catalogue-ctan /info/translations/booktabs/fr
-catalogue-date 2012-04-26 14:33:15 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.00
@@ -23395,16 +26990,15 @@ revision 17830
shortdesc A boolean expression evaluator and a switch command.
longdesc The \boolexpr macro evaluates boolean expressions in a purely
longdesc expandable way. \boolexpr{ A \OR B \AND C } expands to 0 if the
-longdesc logical expression is TRUE. A, B, C may be: - numeric
-longdesc expressions such as: x=y, x<>y, x>y or x<y; - boolean switches:
-longdesc \iftrue 0\else 1\fi; - conditionals: \ifcsname
-longdesc whatsit\endcsname 0\else 1\fi; - another \boolexpr: \boolexpr{
-longdesc D \OR E \AND F }: \boolexpr may be used with \ifcase:
-longdesc \ifcase\boolexpr{ A \OR B \AND C } What to do if true \else
-longdesc What to do if false \fi The \switch command (which is also
-longdesc expandable) has the form: \switch \case{<boolean expression>}
-longdesc ... \case{<boolean expression>} ... ... \otherwise ...
-longdesc \endswitch
+longdesc logical expression is TRUE. A, B, C may be: numeric expressions
+longdesc such as: x=y, x<>y, x>y or x<y; - boolean switches: \iftrue
+longdesc 0\else 1\fi; - conditionals: \ifcsname whatsit\endcsname 0\else
+longdesc 1\fi; - another \boolexpr: \boolexpr{ D \OR E \AND F }:
+longdesc \boolexpr may be used with \ifcase: \ifcase\boolexpr{ A \OR B
+longdesc \AND C } What to do if true \else What to do if false \fi The
+longdesc \switch command (which is also expandable) has the form:
+longdesc \switch \case{<boolean expression>} ... \case{<boolean
+longdesc expression>} ... ... \otherwise ... \endswitch
docfiles size=55
texmf-dist/doc/latex/boolexpr/README details="Readme"
texmf-dist/doc/latex/boolexpr/boolexpr.pdf details="Package documentation"
@@ -23414,7 +27008,7 @@ srcfiles size=12
runfiles size=2
texmf-dist/tex/latex/boolexpr/boolexpr.sty
catalogue-ctan /macros/latex/contrib/boolexpr
-catalogue-date 2012-03-12 20:01:10 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 3.14
@@ -23479,7 +27073,7 @@ runfiles size=66
texmf-dist/tex/latex/boondox/uboondox-ds.fd
texmf-dist/tex/latex/boondox/uboondox-frak.fd
catalogue-ctan /fonts/boondox
-catalogue-date 2012-04-26 14:33:15 +0200
+catalogue-date 2014-04-07 13:51:00 +0200
catalogue-license lppl
catalogue-version 1.0
@@ -23677,7 +27271,7 @@ docfiles size=67
runfiles size=3
texmf-dist/metapost/bpolynomial/bpolynomial.mp
catalogue-ctan /graphics/metapost/contrib/macros/bpolynomial
-catalogue-date 2012-06-15 00:14:06 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 0.5
@@ -23696,7 +27290,7 @@ docfiles size=79
runfiles size=1
texmf-dist/tex/latex/bracketkey/bracketkey.sty
catalogue-ctan /macros/latex/contrib/bracketkey
-catalogue-date 2012-04-29 15:53:50 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.0
@@ -23717,7 +27311,7 @@ srcfiles size=8
runfiles size=4
texmf-dist/tex/latex/braids/braids.sty
catalogue-ctan /graphics/pgf/contrib/braids
-catalogue-date 2012-04-29 15:53:50 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.0
@@ -23765,6 +27359,27 @@ catalogue-ctan /macros/latex/contrib/braket
catalogue-date 2012-04-29 15:53:50 +0200
catalogue-license pd
+name brandeis-dissertation
+category Package
+revision 32047
+shortdesc Class for Brandeis University dissertations.
+longdesc The class will enable the user to typeset a dissertation which
+longdesc adheres to the formatting guidelines of Brandeis University
+longdesc Graduate School of Arts and Sciences (GSAS).
+docfiles size=64
+ texmf-dist/doc/latex/brandeis-dissertation/README
+ texmf-dist/doc/latex/brandeis-dissertation/brandeis-dissertation.pdf details="Package documentation"
+ texmf-dist/doc/latex/brandeis-dissertation/brandeis-dissertation.tex
+srcfiles size=13
+ texmf-dist/source/latex/brandeis-dissertation/brandeis-dissertation.dtx
+ texmf-dist/source/latex/brandeis-dissertation/brandeis-dissertation.ins
+runfiles size=4
+ texmf-dist/tex/latex/brandeis-dissertation/brandeis-dissertation.cls
+catalogue-ctan /macros/latex/contrib/brandeis-dissertation
+catalogue-date 2014-02-26 23:03:13 +0100
+catalogue-license lppl1.2
+catalogue-version 2.0
+
name breakcites
category Package
revision 21014
@@ -23823,7 +27438,7 @@ srcfiles size=4
runfiles size=1
texmf-dist/tex/latex/bropd/bropd.sty
catalogue-ctan /macros/latex/contrib/bropd
-catalogue-date 2012-11-09 11:55:25 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.1
@@ -23857,7 +27472,7 @@ runfiles size=31
texmf-dist/tex/latex/brushscr/pbsi.sty
texmf-dist/tex/latex/brushscr/t1pbsi.fd
catalogue-ctan /fonts/brushscr
-catalogue-date 2012-10-18 12:56:21 +0200
+catalogue-date 2014-04-07 13:51:00 +0200
catalogue-license pd
name bullcntr
@@ -24015,14 +27630,6 @@ binfiles arch=i386-solaris size=2
bin/i386-solaris/arlatex
bin/i386-solaris/bundledoc
-name bundledoc.mips-irix
-category Package
-revision 29949
-shortdesc mips-irix files of bundledoc
-binfiles arch=mips-irix size=2
- bin/mips-irix/arlatex
- bin/mips-irix/bundledoc
-
name bundledoc.mipsel-linux
category Package
revision 29946
@@ -24063,6 +27670,14 @@ binfiles arch=win32 size=2
bin/win32/arlatex.exe
bin/win32/bundledoc.exe
+name bundledoc.x86_64-cygwin
+category Package
+revision 33557
+shortdesc x86_64-cygwin files of bundledoc
+binfiles arch=x86_64-cygwin size=2
+ bin/x86_64-cygwin/arlatex
+ bin/x86_64-cygwin/bundledoc
+
name bundledoc.x86_64-darwin
category Package
revision 18441
@@ -24141,7 +27756,7 @@ shortdesc BX bundle base components.
docfiles size=8
texmf-dist/doc/latex/bxbase/00README
texmf-dist/doc/latex/bxbase/LICENSE
- texmf-dist/doc/latex/bxbase/README details="Readme" language="japanese"
+ texmf-dist/doc/latex/bxbase/README details="Readme" language="ja"
runfiles size=14
texmf-dist/tex/latex/bxbase/bxbase.def
texmf-dist/tex/latex/bxbase/bxbase.sty
@@ -24150,10 +27765,34 @@ runfiles size=14
texmf-dist/tex/latex/bxbase/bxutf8x.def
texmf-dist/tex/latex/bxbase/zxbase.sty
catalogue-ctan /language/japanese/BX/bxbase
-catalogue-date 2013-01-15 18:22:19 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license other-free
catalogue-version 0.5
+name bxcjkjatype
+category Package
+revision 32048
+shortdesc Typeset Japanese with pdfLaTeX and CJK.
+longdesc The package provides a working configuration of the CJK
+longdesc package, suitable for Japanese typesetting of moderate quality.
+longdesc Moreover, it facilitates use of the CJK package for pLaTeX
+longdesc users, by providing commands that are similar to those used by
+longdesc the pLaTeX kernel and some other packages used with it.
+docfiles size=73
+ texmf-dist/doc/latex/bxcjkjatype/LICENSE
+ texmf-dist/doc/latex/bxcjkjatype/README details="Readme (English)" language="en"
+ texmf-dist/doc/latex/bxcjkjatype/README-ja.md details="Readme (Japanese)" language="ja"
+ texmf-dist/doc/latex/bxcjkjatype/sample-bxcjkjatype-beamer.pdf details="Sample: introductory beamer slides (Japanese)" language="ja"
+ texmf-dist/doc/latex/bxcjkjatype/sample-bxcjkjatype-beamer.tex
+ texmf-dist/doc/latex/bxcjkjatype/sample-bxcjkjatype.pdf
+ texmf-dist/doc/latex/bxcjkjatype/sample-bxcjkjatype.tex
+runfiles size=6
+ texmf-dist/tex/latex/bxcjkjatype/bxcjkjatype.sty
+catalogue-ctan /language/japanese/bxcjkjatype
+catalogue-date 2014-02-26 23:03:13 +0100
+catalogue-license other-free
+catalogue-version 0.2c
+
name bxdpx-beamer
category Package
revision 30220
@@ -24170,7 +27809,7 @@ docfiles size=4
runfiles size=1
texmf-dist/tex/latex/bxdpx-beamer/bxdpx-beamer.sty
catalogue-ctan /macros/latex/contrib/beamer-contrib/bxdpx-beamer
-catalogue-date 2013-05-07 12:36:07 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license other-free
catalogue-version 0.2
@@ -24188,7 +27827,7 @@ runfiles size=7
texmf-dist/tex/latex/bxeepic/bxdpxp2e.def
texmf-dist/tex/latex/bxeepic/bxeepic.sty
catalogue-ctan /macros/latex/contrib/bxeepic
-catalogue-date 2013-05-27 13:55:07 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license other-free
catalogue-version 0.2
@@ -24209,7 +27848,7 @@ runfiles size=25
texmf-dist/tex/latex/bxjscls/bxjsptex.def
texmf-dist/tex/latex/bxjscls/bxjsreport.cls
catalogue-ctan /language/japanese/BX/bxjscls
-catalogue-date 2013-01-22 11:20:42 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license other-free
catalogue-version 0.3a
@@ -24276,19 +27915,20 @@ runfiles size=1
name cabin
category Package
-revision 28942
+revision 31265
shortdesc A humanist Sans Serif font, with LaTeX support.
longdesc Cabin is a humanist sans with four weights and true italics and
longdesc small capitals. According to the designer, Pablo Impallari,
longdesc Cabin was inspired by Edward Johnston's and Eric Gill's
longdesc typefaces, with a touch of modernism. Cabin incorporates modern
longdesc proportions, optical adjustments, and some elements of the
-longdesc geometric sans. cabin.sty supports LaTeX, pdfLaTeX, xeLaTeX and
-longdesc luaLaTeX. An sfdefault option is provided to enable Cabin as
-longdesc the default text font. The fontaxes package is required for use
-longdesc with [pdf]LaTeX.
+longdesc geometric sans. cabin.sty supports use of the font under LaTeX,
+longdesc pdfLaTeX, xeLaTeX and luaLaTeX; it uses the mweights, to manage
+longdesc the user's view of all those font weights. An sfdefault option
+longdesc is provided to enable Cabin as the default text font. The
+longdesc fontaxes package is required for use with [pdf]LaTeX.
execute addMap cabin.map
-docfiles size=58
+docfiles size=49
texmf-dist/doc/fonts/cabin/OFL.txt
texmf-dist/doc/fonts/cabin/README details="Readme (primary documentation)"
texmf-dist/doc/fonts/cabin/samples-condensed.pdf
@@ -24658,7 +28298,7 @@ runfiles size=1480
texmf-dist/tex/latex/cabin/TS1CabinCondensed-TLF.fd
texmf-dist/tex/latex/cabin/cabin.sty
catalogue-ctan /fonts/cabin
-catalogue-date 2013-01-25 11:29:15 +0100
+catalogue-date 2014-04-07 15:39:41 +0200
catalogue-license ofl
name cachepic
@@ -24681,7 +28321,7 @@ runfiles size=5
texmf-dist/tex/latex/cachepic/cachepic.sty
texmf-dist/tex/latex/cachepic/prcachepic.def
catalogue-ctan /macros/latex/contrib/cachepic
-catalogue-date 2012-04-29 18:30:38 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.0
@@ -24769,13 +28409,6 @@ shortdesc i386-solaris files of cachepic
binfiles arch=i386-solaris size=1
bin/i386-solaris/cachepic
-name cachepic.mips-irix
-category Package
-revision 29949
-shortdesc mips-irix files of cachepic
-binfiles arch=mips-irix size=1
- bin/mips-irix/cachepic
-
name cachepic.mipsel-linux
category Package
revision 29946
@@ -24811,6 +28444,13 @@ shortdesc win32 files of cachepic
binfiles arch=win32 size=1
bin/win32/cachepic.exe
+name cachepic.x86_64-cygwin
+category Package
+revision 33557
+shortdesc x86_64-cygwin files of cachepic
+binfiles arch=x86_64-cygwin size=1
+ bin/x86_64-cygwin/cachepic
+
name cachepic.x86_64-darwin
category Package
revision 18441
@@ -24849,7 +28489,7 @@ srcfiles size=5
runfiles size=1
texmf-dist/tex/latex/calcage/calcage.sty
catalogue-ctan /macros/latex/contrib/calcage
-catalogue-date 2012-09-27 12:35:27 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 0.90
@@ -24875,7 +28515,7 @@ catalogue-version v0.6.1
name calculator
category Package
-revision 27112
+revision 33041
shortdesc Use LaTeX as a scientific calculator.
longdesc The calculator and calculus packages define several
longdesc instructions which allow us to realise algebraic operations and
@@ -24887,72 +28527,78 @@ longdesc "calculus" may be useful in other contexts.
docfiles size=203
texmf-dist/doc/latex/calculator/README details="Readme"
texmf-dist/doc/latex/calculator/calculator.pdf details="Package documentation"
- texmf-dist/doc/latex/calculator/calculator1.tex
- texmf-dist/doc/latex/calculator/calculator10.tex
- texmf-dist/doc/latex/calculator/calculator11.tex
- texmf-dist/doc/latex/calculator/calculator12.tex
- texmf-dist/doc/latex/calculator/calculator13.tex
- texmf-dist/doc/latex/calculator/calculator14.tex
- texmf-dist/doc/latex/calculator/calculator15.tex
- texmf-dist/doc/latex/calculator/calculator16.tex
- texmf-dist/doc/latex/calculator/calculator17.tex
- texmf-dist/doc/latex/calculator/calculator18.tex
- texmf-dist/doc/latex/calculator/calculator19.tex
- texmf-dist/doc/latex/calculator/calculator2.tex
- texmf-dist/doc/latex/calculator/calculator20.tex
- texmf-dist/doc/latex/calculator/calculator21.tex
- texmf-dist/doc/latex/calculator/calculator22.tex
- texmf-dist/doc/latex/calculator/calculator23.tex
- texmf-dist/doc/latex/calculator/calculator24.tex
- texmf-dist/doc/latex/calculator/calculator25.tex
- texmf-dist/doc/latex/calculator/calculator26.tex
- texmf-dist/doc/latex/calculator/calculator27.tex
- texmf-dist/doc/latex/calculator/calculator28.tex
- texmf-dist/doc/latex/calculator/calculator29.tex
- texmf-dist/doc/latex/calculator/calculator3.tex
- texmf-dist/doc/latex/calculator/calculator30.tex
- texmf-dist/doc/latex/calculator/calculator31.tex
- texmf-dist/doc/latex/calculator/calculator32.tex
- texmf-dist/doc/latex/calculator/calculator33.tex
- texmf-dist/doc/latex/calculator/calculator34.tex
- texmf-dist/doc/latex/calculator/calculator35.tex
- texmf-dist/doc/latex/calculator/calculator36.tex
- texmf-dist/doc/latex/calculator/calculator37.tex
- texmf-dist/doc/latex/calculator/calculator38.tex
- texmf-dist/doc/latex/calculator/calculator39.tex
- texmf-dist/doc/latex/calculator/calculator4.tex
- texmf-dist/doc/latex/calculator/calculator40.tex
- texmf-dist/doc/latex/calculator/calculator41.tex
- texmf-dist/doc/latex/calculator/calculator42.tex
- texmf-dist/doc/latex/calculator/calculator43.tex
- texmf-dist/doc/latex/calculator/calculator44.tex
- texmf-dist/doc/latex/calculator/calculator45.tex
- texmf-dist/doc/latex/calculator/calculator46.tex
- texmf-dist/doc/latex/calculator/calculator47.tex
- texmf-dist/doc/latex/calculator/calculator48.tex
- texmf-dist/doc/latex/calculator/calculator49.tex
- texmf-dist/doc/latex/calculator/calculator5.tex
- texmf-dist/doc/latex/calculator/calculator50.tex
- texmf-dist/doc/latex/calculator/calculator51.tex
- texmf-dist/doc/latex/calculator/calculator52.tex
- texmf-dist/doc/latex/calculator/calculator53.tex
- texmf-dist/doc/latex/calculator/calculator54.tex
- texmf-dist/doc/latex/calculator/calculator55.tex
- texmf-dist/doc/latex/calculator/calculator56.tex
- texmf-dist/doc/latex/calculator/calculator57.tex
- texmf-dist/doc/latex/calculator/calculator6.tex
- texmf-dist/doc/latex/calculator/calculator7.tex
- texmf-dist/doc/latex/calculator/calculator8.tex
- texmf-dist/doc/latex/calculator/calculator9.tex
-srcfiles size=38
+ texmf-dist/doc/latex/calculator/examples/calculator1.tex
+ texmf-dist/doc/latex/calculator/examples/calculator10.tex
+ texmf-dist/doc/latex/calculator/examples/calculator11.tex
+ texmf-dist/doc/latex/calculator/examples/calculator12.tex
+ texmf-dist/doc/latex/calculator/examples/calculator13.tex
+ texmf-dist/doc/latex/calculator/examples/calculator14.tex
+ texmf-dist/doc/latex/calculator/examples/calculator15.tex
+ texmf-dist/doc/latex/calculator/examples/calculator16.tex
+ texmf-dist/doc/latex/calculator/examples/calculator17.tex
+ texmf-dist/doc/latex/calculator/examples/calculator18.tex
+ texmf-dist/doc/latex/calculator/examples/calculator19.tex
+ texmf-dist/doc/latex/calculator/examples/calculator2.tex
+ texmf-dist/doc/latex/calculator/examples/calculator20.tex
+ texmf-dist/doc/latex/calculator/examples/calculator21.tex
+ texmf-dist/doc/latex/calculator/examples/calculator22.tex
+ texmf-dist/doc/latex/calculator/examples/calculator23.tex
+ texmf-dist/doc/latex/calculator/examples/calculator24.tex
+ texmf-dist/doc/latex/calculator/examples/calculator25.tex
+ texmf-dist/doc/latex/calculator/examples/calculator26.tex
+ texmf-dist/doc/latex/calculator/examples/calculator27.tex
+ texmf-dist/doc/latex/calculator/examples/calculator28.tex
+ texmf-dist/doc/latex/calculator/examples/calculator29.tex
+ texmf-dist/doc/latex/calculator/examples/calculator3.tex
+ texmf-dist/doc/latex/calculator/examples/calculator30.tex
+ texmf-dist/doc/latex/calculator/examples/calculator31.tex
+ texmf-dist/doc/latex/calculator/examples/calculator32.tex
+ texmf-dist/doc/latex/calculator/examples/calculator33.tex
+ texmf-dist/doc/latex/calculator/examples/calculator34.tex
+ texmf-dist/doc/latex/calculator/examples/calculator35.tex
+ texmf-dist/doc/latex/calculator/examples/calculator36.tex
+ texmf-dist/doc/latex/calculator/examples/calculator37.tex
+ texmf-dist/doc/latex/calculator/examples/calculator38.tex
+ texmf-dist/doc/latex/calculator/examples/calculator39.tex
+ texmf-dist/doc/latex/calculator/examples/calculator4.tex
+ texmf-dist/doc/latex/calculator/examples/calculator40.tex
+ texmf-dist/doc/latex/calculator/examples/calculator41.tex
+ texmf-dist/doc/latex/calculator/examples/calculator42.tex
+ texmf-dist/doc/latex/calculator/examples/calculator43.tex
+ texmf-dist/doc/latex/calculator/examples/calculator44.tex
+ texmf-dist/doc/latex/calculator/examples/calculator45.tex
+ texmf-dist/doc/latex/calculator/examples/calculator46.tex
+ texmf-dist/doc/latex/calculator/examples/calculator47.tex
+ texmf-dist/doc/latex/calculator/examples/calculator48.tex
+ texmf-dist/doc/latex/calculator/examples/calculator49.tex
+ texmf-dist/doc/latex/calculator/examples/calculator5.tex
+ texmf-dist/doc/latex/calculator/examples/calculator50.tex
+ texmf-dist/doc/latex/calculator/examples/calculator51.tex
+ texmf-dist/doc/latex/calculator/examples/calculator52.tex
+ texmf-dist/doc/latex/calculator/examples/calculator53.tex
+ texmf-dist/doc/latex/calculator/examples/calculator54.tex
+ texmf-dist/doc/latex/calculator/examples/calculator55.tex
+ texmf-dist/doc/latex/calculator/examples/calculator56.tex
+ texmf-dist/doc/latex/calculator/examples/calculator57.tex
+ texmf-dist/doc/latex/calculator/examples/calculator58.tex
+ texmf-dist/doc/latex/calculator/examples/calculator59.tex
+ texmf-dist/doc/latex/calculator/examples/calculator6.tex
+ texmf-dist/doc/latex/calculator/examples/calculator60.tex
+ texmf-dist/doc/latex/calculator/examples/calculator61.tex
+ texmf-dist/doc/latex/calculator/examples/calculator62.tex
+ texmf-dist/doc/latex/calculator/examples/calculator7.tex
+ texmf-dist/doc/latex/calculator/examples/calculator8.tex
+ texmf-dist/doc/latex/calculator/examples/calculator9.tex
+srcfiles size=45
texmf-dist/source/latex/calculator/calculator.dtx
-runfiles size=15
+ texmf-dist/source/latex/calculator/calculator.ins
+runfiles size=19
texmf-dist/tex/latex/calculator/calculator.sty
texmf-dist/tex/latex/calculator/calculus.sty
catalogue-ctan /macros/latex/contrib/calculator
-catalogue-date 2012-07-24 10:27:04 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.2
-catalogue-version 1.0a
+catalogue-version 2.0
name calligra
category Package
@@ -24970,7 +28616,7 @@ runfiles size=76
texmf-dist/fonts/source/public/calligra/calligra.mf
texmf-dist/fonts/tfm/public/calligra/callig15.tfm
catalogue-ctan /fonts/calligra
-catalogue-date 2011-10-16 10:45:25 +0200
+catalogue-date 2014-04-07 15:39:41 +0200
catalogue-license other-free
name calligra-type1
@@ -24987,7 +28633,7 @@ runfiles size=19
texmf-dist/fonts/map/dvips/calligra-type1/calligra.map
texmf-dist/fonts/type1/public/calligra-type1/callig15.pfb
catalogue-ctan /fonts/calligra-type1
-catalogue-date 2012-11-09 11:57:25 +0100
+catalogue-date 2014-04-07 15:39:41 +0200
catalogue-license other-free
catalogue-version 001.000
@@ -25004,7 +28650,7 @@ runfiles size=2
texmf-dist/tex/latex/calrsfs/OMSrsfs.fd
texmf-dist/tex/latex/calrsfs/calrsfs.sty
catalogue-ctan /macros/latex/contrib/calrsfs
-catalogue-date 2012-03-14 17:52:43 +0100
+catalogue-date 2014-04-07 15:40:09 +0200
catalogue-license pd
name cals
@@ -25142,13 +28788,13 @@ srcfiles size=21
runfiles size=5
texmf-dist/tex/latex/cals/cals.sty
catalogue-ctan /macros/latex/contrib/cals
-catalogue-date 2013-05-29 10:39:38 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 2.2
name calxxxx-yyyy
category Package
-revision 28675
+revision 32526
shortdesc Print a calendar for a group of years.
longdesc The package prints a calendar for 2 or more years, according to
longdesc a language selection. The package is also "culture dependent",
@@ -25159,32 +28805,32 @@ docfiles size=107
texmf-dist/doc/latex/calxxxx-yyyy/README details="Readme"
texmf-dist/doc/latex/calxxxx-yyyy/README.pdf details="Outline of usage"
texmf-dist/doc/latex/calxxxx-yyyy/README.tex
- texmf-dist/doc/latex/calxxxx-yyyy/cal2013-2030_DE.pdf details="Sample (German) Calendar" language="de"
- texmf-dist/doc/latex/calxxxx-yyyy/cal2013-2030_DK.pdf details="Sample (Danish) Calendar" language="dk"
- texmf-dist/doc/latex/calxxxx-yyyy/cal2013-2030_EN.pdf details="Sample (English) Calendar" language="en"
+ texmf-dist/doc/latex/calxxxx-yyyy/cal2014-2031_DE.pdf details="Sample (German) Calendar" language="de"
+ texmf-dist/doc/latex/calxxxx-yyyy/cal2014-2031_DK.pdf details="Sample (Danish) Calendar" language="da"
+ texmf-dist/doc/latex/calxxxx-yyyy/cal2014-2031_EN.pdf details="Sample (English) Calendar" language="en"
runfiles size=4
texmf-dist/tex/latex/calxxxx-yyyy/calxxxx-yyyy.tex
catalogue-ctan /macros/latex/contrib/calxxxx-yyyy
-catalogue-date 2012-12-31 22:53:16 +0100
+catalogue-date 2014-03-01 11:20:43 +0100
catalogue-license lppl1.3
-catalogue-version 1.0e
+catalogue-version 1.0f
name cancel
category Package
-revision 17124
+revision 32508
shortdesc Place lines through maths formulae.
longdesc A package to draw diagonal lines ("cancelling" a term) and
longdesc arrows with limits (cancelling a term "to a value") through
longdesc parts of maths formulae.
-docfiles size=67
+docfiles size=65
texmf-dist/doc/latex/cancel/cancel.pdf details="Package documentation"
texmf-dist/doc/latex/cancel/cancel.tex
runfiles size=2
texmf-dist/tex/latex/cancel/cancel.sty
catalogue-ctan /macros/latex/contrib/cancel
-catalogue-date 2012-04-27 20:27:12 +0200
+catalogue-date 2013-12-30 10:37:07 +0100
catalogue-license pd
-catalogue-version 2.0
+catalogue-version 2.2
name canoniclayout
category Package
@@ -25201,7 +28847,7 @@ srcfiles size=7
runfiles size=1
texmf-dist/tex/latex/canoniclayout/canoniclayout.sty
catalogue-ctan /macros/latex/contrib/canoniclayout
-catalogue-date 2011-11-06 17:08:08 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 0.4
@@ -25373,7 +29019,7 @@ runfiles size=196
texmf-dist/tex/latex/cantarell/ts1fca.fd
texmf-dist/tex/latex/cantarell/x2fca.fd
catalogue-ctan /fonts/cantarell
-catalogue-date 2012-11-30 16:37:48 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 2.4
@@ -25496,7 +29142,7 @@ runfiles size=51
texmf-dist/tex/latex/caption/subcaption.sty
texmf-dist/tex/latex/caption/totalcount.sty
catalogue-ctan /macros/latex/contrib/caption
-catalogue-date 2013-05-13 11:02:43 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 2013-05-12
@@ -25506,15 +29152,15 @@ revision 18258
shortdesc David Carlisle's small packages.
longdesc Many of David Carlisle's more substantial packages stand on
longdesc their own, or as part of the LaTeX tools set; this set
-longdesc contains: - Making dotless 'j' characters for fonts that don't
-longdesc have them; - Fix marks in 2-column output; - A method for
-longdesc combining the capabilities of longtable and tabularx; - A
-longdesc proforma for building personalised LaTeX formats; - A jiffy to
-longdesc suppress page numbers; - An environment for including Plain TeX
-longdesc in LaTeX documents; - A jiffy to remove counters from other
-longdesc counters' reset lists; - A package to rescale fonts to
-longdesc arbitrary sizes; - A jiffy to create 'slashed' for physicists;
-longdesc and - An environment for including HTML in LaTeX documents.
+longdesc contains: Making dotless 'j' characters for fonts that don't
+longdesc have them; Fix marks in 2-column output; A method for combining
+longdesc the capabilities of longtable and tabularx; A proforma for
+longdesc building personalised LaTeX formats; A jiffy to suppress page
+longdesc numbers; An environment for including Plain TeX in LaTeX
+longdesc documents; A jiffy to remove counters from other counters'
+longdesc reset lists; A package to rescale fonts to arbitrary sizes; A
+longdesc jiffy to create 'slashed' for physicists; and An environment
+longdesc for including HTML in LaTeX documents.
docfiles size=9
texmf-dist/doc/latex/carlisle/README details="Bundle README"
texmf-dist/doc/latex/carlisle/ltx1.tex
@@ -25530,7 +29176,7 @@ runfiles size=11
texmf-dist/tex/latex/carlisle/scalefnt.sty
texmf-dist/tex/latex/carlisle/slashed.sty
catalogue-ctan /macros/latex/contrib/carlisle
-catalogue-date 2012-04-27 22:37:01 +0200
+catalogue-date 2013-12-17 15:08:32 +0100
catalogue-license lppl
name carolmin-ps
@@ -25560,7 +29206,7 @@ runfiles size=38
texmf-dist/fonts/type1/public/carolmin-ps/cminb17.pfb
texmf-dist/fonts/type1/public/carolmin-ps/cminb7.pfb
catalogue-ctan /fonts/carolmin-ps
-catalogue-date 2012-02-03 13:05:45 +0100
+catalogue-date 2014-04-07 15:39:41 +0200
catalogue-license lppl
name cascadilla
@@ -25644,7 +29290,7 @@ srcfiles size=10
runfiles size=1
texmf-dist/tex/latex/catchfilebetweentags/catchfilebetweentags.sty
catalogue-ctan /macros/latex/contrib/catchfilebetweentags
-catalogue-date 2012-03-21 15:27:24 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.1
@@ -25675,7 +29321,7 @@ runfiles size=7
texmf-dist/tex/generic/catcodes/catcodes.RLS
texmf-dist/tex/generic/catcodes/stacklet.sty
catalogue-ctan /macros/generic/catcodes
-catalogue-date 2012-11-08 10:49:44 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 0.3a
@@ -25683,10 +29329,10 @@ name catechis
category Package
revision 15878
shortdesc Macros for typesetting catechisms.
-longdesc The macros include: - format for question-and-answer; -
-longdesc comments on answers; - citations; - a specialised enumerate
-longdesc which only operates in the catechism parts of a document. The
-longdesc macros are all highly customisable.
+longdesc The macros include: format for question-and-answer; comments on
+longdesc answers; citations; a specialised enumerate which only operates
+longdesc in the catechism parts of a document. The macros are all highly
+longdesc customisable.
docfiles size=45
texmf-dist/doc/latex/catechis/README details="Readme"
texmf-dist/doc/latex/catechis/catechis.pdf details="Package documentation"
@@ -25696,7 +29342,7 @@ srcfiles size=1
runfiles size=7
texmf-dist/tex/latex/catechis/catechis.sty
catalogue-ctan /macros/latex/contrib/catechis
-catalogue-date 2012-08-25 23:38:06 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.1
@@ -25721,7 +29367,7 @@ runfiles size=47
texmf-dist/tex/latex/catoptions/catoptions-guide.cfg
texmf-dist/tex/latex/catoptions/catoptions.sty
catalogue-ctan /macros/latex/contrib/catoptions
-catalogue-date 2012-11-22 12:57:51 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 0.2.7f
@@ -25759,7 +29405,7 @@ catalogue-version 0.2
name cbfonts
category Package
-revision 20304
+revision 31624
catalogue cbgreek-complete
shortdesc Complete set of Greek fonts.
longdesc This bundle presents the whole of Beccari's original Greek font
@@ -25768,6 +29414,7 @@ longdesc shape of the fonts used in printers' shops in Lispia. The fonts
longdesc are available both as Metafont source and in Adobe Type 1
longdesc format, and at the same wide set of design sizes as are such
longdesc font sets as the EC fonts.
+depend cbfonts-fd
execute addMixedMap cbgreek-full.map
docfiles size=149
texmf-dist/doc/fonts/cbfonts/README details="Readme"
@@ -28698,9 +32345,39 @@ runfiles size=20512
texmf-dist/fonts/type1/public/cbfonts/gttu2986.pfb
texmf-dist/fonts/type1/public/cbfonts/gttu3583.pfb
catalogue-ctan /fonts/greek/cbfonts
-catalogue-date 2013-04-19 12:28:38 +0200
+catalogue-date 2014-04-24 13:41:31 +0200
catalogue-license lppl
+name cbfonts-fd
+category Package
+revision 31624
+shortdesc LaTeX font description files for the CB Greek fonts.
+longdesc The package provides font description files for all the many
+longdesc shapes available from the cbfonts collection. The files provide
+longdesc the means whereby the NFSS knows which fonts a LaTeX user is
+longdesc requesting.
+docfiles size=162
+ texmf-dist/doc/fonts/cbfonts-fd/README details="Readme"
+ texmf-dist/doc/fonts/cbfonts-fd/cbfonts-fd.pdf details="Package documentation"
+ texmf-dist/doc/fonts/cbfonts-fd/manifest.txt
+srcfiles size=8
+ texmf-dist/source/fonts/cbfonts-fd/cbfonts-fd.fdd
+runfiles size=12
+ texmf-dist/tex/latex/cbfonts-fd/lgrcmr.fd
+ texmf-dist/tex/latex/cbfonts-fd/lgrcmro.fd
+ texmf-dist/tex/latex/cbfonts-fd/lgrcmss.fd
+ texmf-dist/tex/latex/cbfonts-fd/lgrcmtt.fd
+ texmf-dist/tex/latex/cbfonts-fd/lgrlcmss.fd
+ texmf-dist/tex/latex/cbfonts-fd/lgrlcmtt.fd
+ texmf-dist/tex/latex/cbfonts-fd/lgrlmr.fd
+ texmf-dist/tex/latex/cbfonts-fd/lgrlmro.fd
+ texmf-dist/tex/latex/cbfonts-fd/lgrlmss.fd
+ texmf-dist/tex/latex/cbfonts-fd/lgrlmtt.fd
+catalogue-ctan /fonts/greek/cbfonts-fd
+catalogue-date 2014-02-26 23:03:13 +0100
+catalogue-license lppl1.3
+catalogue-version 1.0
+
name cc-pl
category Package
revision 15878
@@ -28824,7 +32501,7 @@ runfiles size=10
texmf-dist/fonts/type1/public/ccicons/ccicons.pfb
texmf-dist/tex/latex/ccicons/ccicons.sty
catalogue-ctan /fonts/ccicons
-catalogue-date 2013-04-17 11:42:52 +0200
+catalogue-date 2014-04-14 00:53:06 +0200
catalogue-license lppl1.3
catalogue-version 1.5
@@ -28974,26 +32651,26 @@ catalogue-version 1.6
name censor
category Package
-revision 30208
+revision 31332
shortdesc Facilities for controlling restricted text in a document.
longdesc The package allows a convenient redaction/censor capability to
longdesc be employed, for those who need to protect restricted
longdesc information, etc. The package can "redact" anything that can be
longdesc enclosed by a LaTeX box.
-docfiles size=52
+docfiles size=54
texmf-dist/doc/latex/censor/README details="Readme"
texmf-dist/doc/latex/censor/censor.pdf details="Package documentation"
texmf-dist/doc/latex/censor/censor.tex
runfiles size=2
texmf-dist/tex/latex/censor/censor.sty
catalogue-ctan /macros/latex/contrib/censor
-catalogue-date 2013-05-02 20:50:09 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
-catalogue-version 3.10
+catalogue-version 3.21
name cfr-lm
category Package
-revision 19666
+revision 33090
shortdesc Enhanced support for the Latin Modern fonts.
longdesc The package supports a number of features of the Latin Modern
longdesc fonts which are not easily accessible via the default (La)TeX
@@ -29017,11 +32694,11 @@ longdesc and TS1 encodings are supported for text fonts. The set up of
longdesc fonts for mathematics is identical to that provided by Latin
longdesc Modern.
execute addMap clm.map
-docfiles size=676
+docfiles size=670
texmf-dist/doc/fonts/cfr-lm/README details="Readme"
- texmf-dist/doc/fonts/cfr-lm/cfr-lm.pdf details="Package documentation"
+ texmf-dist/doc/fonts/cfr-lm/cfr-lm.pdf
texmf-dist/doc/fonts/cfr-lm/cfr-lm.tex
- texmf-dist/doc/fonts/cfr-lm/clm-test.pdf details="Samples from available fonts"
+ texmf-dist/doc/fonts/cfr-lm/clm-test.pdf
texmf-dist/doc/fonts/cfr-lm/clm-test.tex
texmf-dist/doc/fonts/cfr-lm/manifest.txt
srcfiles size=37
@@ -29918,10 +33595,10 @@ runfiles size=1536
texmf-dist/tex/latex/cfr-lm/uclms.fd
texmf-dist/tex/latex/cfr-lm/uclmt.fd
texmf-dist/tex/latex/cfr-lm/uclmv.fd
-catalogue-ctan /macros/latex/contrib/cfr-lm
-catalogue-date 2012-04-28 23:45:30 +0200
+catalogue-ctan /fonts/cfr-lm
+catalogue-date 2014-03-03 08:32:08 +0100
catalogue-license lppl
-catalogue-version 1.3
+catalogue-version 1.4
name changebar
category Package
@@ -29970,7 +33647,7 @@ docfiles size=19
runfiles size=5
texmf-dist/tex/latex/changelayout/changelayout.sty
catalogue-ctan /macros/latex/contrib/changelayout
-catalogue-date 2012-04-28 23:45:30 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.0
@@ -29995,13 +33672,13 @@ runfiles size=4
texmf-dist/tex/latex/changepage/changepage.sty
texmf-dist/tex/latex/changepage/chngpage.sty
catalogue-ctan /macros/latex/contrib/changepage
-catalogue-date 2012-04-28 23:45:30 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.0c
name changes
category Package
-revision 26165
+revision 31424
shortdesc Manual change markup.
longdesc The package allows the user to manually markup changes of text,
longdesc such as additions, deletions, or replacements. Changed text is
@@ -30010,156 +33687,82 @@ longdesc package allows definition of additional authors and their
longdesc associated colour. It also allows you to define a markup for
longdesc authors or annotations. A bash script is provided for removing
longdesc the changes.
-docfiles size=1479
+docfiles size=235
texmf-dist/doc/latex/changes/README details="Readme" language="en"
texmf-dist/doc/latex/changes/changes.english.pdf details="Package documentation (English)" language="en"
texmf-dist/doc/latex/changes/changes.english.withcode.pdf details="Package documentation, with code listing (English)" language="en"
+ texmf-dist/doc/latex/changes/changes.example.addedmarkup.bf.tex
+ texmf-dist/doc/latex/changes/changes.example.addedmarkup.dashuline.tex
+ texmf-dist/doc/latex/changes/changes.example.addedmarkup.dotuline.tex
+ texmf-dist/doc/latex/changes/changes.example.addedmarkup.em.tex
+ texmf-dist/doc/latex/changes/changes.example.addedmarkup.it.tex
+ texmf-dist/doc/latex/changes/changes.example.addedmarkup.none.tex
+ texmf-dist/doc/latex/changes/changes.example.addedmarkup.sl.tex
+ texmf-dist/doc/latex/changes/changes.example.addedmarkup.sout.tex
+ texmf-dist/doc/latex/changes/changes.example.addedmarkup.uline.tex
+ texmf-dist/doc/latex/changes/changes.example.addedmarkup.uuline.tex
+ texmf-dist/doc/latex/changes/changes.example.addedmarkup.uwave.tex
+ texmf-dist/doc/latex/changes/changes.example.addedmarkup.wrong.tex
+ texmf-dist/doc/latex/changes/changes.example.addedmarkup.xout.tex
+ texmf-dist/doc/latex/changes/changes.example.authormarkup.brackets.tex
+ texmf-dist/doc/latex/changes/changes.example.authormarkup.footnote.tex
+ texmf-dist/doc/latex/changes/changes.example.authormarkup.none.tex
+ texmf-dist/doc/latex/changes/changes.example.authormarkup.subscript.tex
+ texmf-dist/doc/latex/changes/changes.example.authormarkup.superscript.tex
+ texmf-dist/doc/latex/changes/changes.example.authormarkup.wrong.tex
+ texmf-dist/doc/latex/changes/changes.example.authormarkupposition.left.tex
+ texmf-dist/doc/latex/changes/changes.example.authormarkupposition.right.tex
+ texmf-dist/doc/latex/changes/changes.example.authormarkupposition.wrong.tex
+ texmf-dist/doc/latex/changes/changes.example.authormarkuptext.id.tex
+ texmf-dist/doc/latex/changes/changes.example.authormarkuptext.name.tex
+ texmf-dist/doc/latex/changes/changes.example.authormarkuptext.wrong.tex
+ texmf-dist/doc/latex/changes/changes.example.deletedmarkup.bf.tex
+ texmf-dist/doc/latex/changes/changes.example.deletedmarkup.dashuline.tex
+ texmf-dist/doc/latex/changes/changes.example.deletedmarkup.dotuline.tex
+ texmf-dist/doc/latex/changes/changes.example.deletedmarkup.em.tex
+ texmf-dist/doc/latex/changes/changes.example.deletedmarkup.it.tex
+ texmf-dist/doc/latex/changes/changes.example.deletedmarkup.none.tex
+ texmf-dist/doc/latex/changes/changes.example.deletedmarkup.sl.tex
+ texmf-dist/doc/latex/changes/changes.example.deletedmarkup.sout.tex
+ texmf-dist/doc/latex/changes/changes.example.deletedmarkup.uline.tex
+ texmf-dist/doc/latex/changes/changes.example.deletedmarkup.uuline.tex
+ texmf-dist/doc/latex/changes/changes.example.deletedmarkup.uwave.tex
+ texmf-dist/doc/latex/changes/changes.example.deletedmarkup.wrong.tex
+ texmf-dist/doc/latex/changes/changes.example.deletedmarkup.xout.tex
+ texmf-dist/doc/latex/changes/changes.example.draft.tex
+ texmf-dist/doc/latex/changes/changes.example.final.tex
+ texmf-dist/doc/latex/changes/changes.example.listofchanges.both.tex
+ texmf-dist/doc/latex/changes/changes.example.listofchanges.list.tex
+ texmf-dist/doc/latex/changes/changes.example.listofchanges.summary.tex
+ texmf-dist/doc/latex/changes/changes.example.listofchanges.wrong.tex
+ texmf-dist/doc/latex/changes/changes.example.markup.bfit.tex
+ texmf-dist/doc/latex/changes/changes.example.markup.default.tex
+ texmf-dist/doc/latex/changes/changes.example.markup.nocolor.tex
+ texmf-dist/doc/latex/changes/changes.example.markup.underlined.tex
+ texmf-dist/doc/latex/changes/changes.example.markup.wrong.tex
+ texmf-dist/doc/latex/changes/changes.example.setaddedmarkup.tex
+ texmf-dist/doc/latex/changes/changes.example.setauthormarkup.tex
+ texmf-dist/doc/latex/changes/changes.example.setauthormarkupposition.tex
+ texmf-dist/doc/latex/changes/changes.example.setauthormarkuptext.tex
+ texmf-dist/doc/latex/changes/changes.example.setdeletedmarkup.tex
+ texmf-dist/doc/latex/changes/changes.example.setremarkmarkup.tex
+ texmf-dist/doc/latex/changes/changes.example.setsocextension.tex
+ texmf-dist/doc/latex/changes/changes.example.simple.tex
texmf-dist/doc/latex/changes/changes.ngerman.pdf details="Package documentation (German)" language="de"
- texmf-dist/doc/latex/changes/examples/changes.example.addedmarkup.bf.pdf
- texmf-dist/doc/latex/changes/examples/changes.example.addedmarkup.bf.tex
- texmf-dist/doc/latex/changes/examples/changes.example.addedmarkup.dashuline.pdf
- texmf-dist/doc/latex/changes/examples/changes.example.addedmarkup.dashuline.tex
- texmf-dist/doc/latex/changes/examples/changes.example.addedmarkup.dotuline.pdf
- texmf-dist/doc/latex/changes/examples/changes.example.addedmarkup.dotuline.tex
- texmf-dist/doc/latex/changes/examples/changes.example.addedmarkup.em.pdf
- texmf-dist/doc/latex/changes/examples/changes.example.addedmarkup.em.tex
- texmf-dist/doc/latex/changes/examples/changes.example.addedmarkup.it.pdf
- texmf-dist/doc/latex/changes/examples/changes.example.addedmarkup.it.tex
- texmf-dist/doc/latex/changes/examples/changes.example.addedmarkup.none.pdf
- texmf-dist/doc/latex/changes/examples/changes.example.addedmarkup.none.tex
- texmf-dist/doc/latex/changes/examples/changes.example.addedmarkup.sl.pdf
- texmf-dist/doc/latex/changes/examples/changes.example.addedmarkup.sl.tex
- texmf-dist/doc/latex/changes/examples/changes.example.addedmarkup.sout.pdf
- texmf-dist/doc/latex/changes/examples/changes.example.addedmarkup.sout.tex
- texmf-dist/doc/latex/changes/examples/changes.example.addedmarkup.uline.pdf
- texmf-dist/doc/latex/changes/examples/changes.example.addedmarkup.uline.tex
- texmf-dist/doc/latex/changes/examples/changes.example.addedmarkup.uuline.pdf
- texmf-dist/doc/latex/changes/examples/changes.example.addedmarkup.uuline.tex
- texmf-dist/doc/latex/changes/examples/changes.example.addedmarkup.uwave.pdf
- texmf-dist/doc/latex/changes/examples/changes.example.addedmarkup.uwave.tex
- texmf-dist/doc/latex/changes/examples/changes.example.addedmarkup.wrong.pdf
- texmf-dist/doc/latex/changes/examples/changes.example.addedmarkup.wrong.tex
- texmf-dist/doc/latex/changes/examples/changes.example.addedmarkup.xout.pdf
- texmf-dist/doc/latex/changes/examples/changes.example.addedmarkup.xout.tex
- texmf-dist/doc/latex/changes/examples/changes.example.authormarkup.brackets.pdf
- texmf-dist/doc/latex/changes/examples/changes.example.authormarkup.brackets.tex
- texmf-dist/doc/latex/changes/examples/changes.example.authormarkup.footnote.pdf
- texmf-dist/doc/latex/changes/examples/changes.example.authormarkup.footnote.tex
- texmf-dist/doc/latex/changes/examples/changes.example.authormarkup.subscript.pdf
- texmf-dist/doc/latex/changes/examples/changes.example.authormarkup.subscript.tex
- texmf-dist/doc/latex/changes/examples/changes.example.authormarkup.superscript.pdf
- texmf-dist/doc/latex/changes/examples/changes.example.authormarkup.superscript.tex
- texmf-dist/doc/latex/changes/examples/changes.example.authormarkup.wrong.pdf
- texmf-dist/doc/latex/changes/examples/changes.example.authormarkup.wrong.tex
- texmf-dist/doc/latex/changes/examples/changes.example.authormarkupposition.left.pdf
- texmf-dist/doc/latex/changes/examples/changes.example.authormarkupposition.left.tex
- texmf-dist/doc/latex/changes/examples/changes.example.authormarkupposition.right.pdf
- texmf-dist/doc/latex/changes/examples/changes.example.authormarkupposition.right.tex
- texmf-dist/doc/latex/changes/examples/changes.example.authormarkupposition.wrong.pdf
- texmf-dist/doc/latex/changes/examples/changes.example.authormarkupposition.wrong.tex
- texmf-dist/doc/latex/changes/examples/changes.example.authormarkuptext.id.pdf
- texmf-dist/doc/latex/changes/examples/changes.example.authormarkuptext.id.tex
- texmf-dist/doc/latex/changes/examples/changes.example.authormarkuptext.name.pdf
- texmf-dist/doc/latex/changes/examples/changes.example.authormarkuptext.name.tex
- texmf-dist/doc/latex/changes/examples/changes.example.authormarkuptext.wrong.pdf
- texmf-dist/doc/latex/changes/examples/changes.example.authormarkuptext.wrong.tex
- texmf-dist/doc/latex/changes/examples/changes.example.deletedmarkup.bf.pdf
- texmf-dist/doc/latex/changes/examples/changes.example.deletedmarkup.bf.tex
- texmf-dist/doc/latex/changes/examples/changes.example.deletedmarkup.dashuline.pdf
- texmf-dist/doc/latex/changes/examples/changes.example.deletedmarkup.dashuline.tex
- texmf-dist/doc/latex/changes/examples/changes.example.deletedmarkup.dotuline.pdf
- texmf-dist/doc/latex/changes/examples/changes.example.deletedmarkup.dotuline.tex
- texmf-dist/doc/latex/changes/examples/changes.example.deletedmarkup.em.pdf
- texmf-dist/doc/latex/changes/examples/changes.example.deletedmarkup.em.tex
- texmf-dist/doc/latex/changes/examples/changes.example.deletedmarkup.it.pdf
- texmf-dist/doc/latex/changes/examples/changes.example.deletedmarkup.it.tex
- texmf-dist/doc/latex/changes/examples/changes.example.deletedmarkup.none.pdf
- texmf-dist/doc/latex/changes/examples/changes.example.deletedmarkup.none.tex
- texmf-dist/doc/latex/changes/examples/changes.example.deletedmarkup.sl.pdf
- texmf-dist/doc/latex/changes/examples/changes.example.deletedmarkup.sl.tex
- texmf-dist/doc/latex/changes/examples/changes.example.deletedmarkup.sout.pdf
- texmf-dist/doc/latex/changes/examples/changes.example.deletedmarkup.sout.tex
- texmf-dist/doc/latex/changes/examples/changes.example.deletedmarkup.uline.pdf
- texmf-dist/doc/latex/changes/examples/changes.example.deletedmarkup.uline.tex
- texmf-dist/doc/latex/changes/examples/changes.example.deletedmarkup.uuline.pdf
- texmf-dist/doc/latex/changes/examples/changes.example.deletedmarkup.uuline.tex
- texmf-dist/doc/latex/changes/examples/changes.example.deletedmarkup.uwave.pdf
- texmf-dist/doc/latex/changes/examples/changes.example.deletedmarkup.uwave.tex
- texmf-dist/doc/latex/changes/examples/changes.example.deletedmarkup.wrong.pdf
- texmf-dist/doc/latex/changes/examples/changes.example.deletedmarkup.wrong.tex
- texmf-dist/doc/latex/changes/examples/changes.example.deletedmarkup.xout.pdf
- texmf-dist/doc/latex/changes/examples/changes.example.deletedmarkup.xout.tex
- texmf-dist/doc/latex/changes/examples/changes.example.draft.pdf
- texmf-dist/doc/latex/changes/examples/changes.example.draft.tex
- texmf-dist/doc/latex/changes/examples/changes.example.final.pdf
- texmf-dist/doc/latex/changes/examples/changes.example.final.tex
- texmf-dist/doc/latex/changes/examples/changes.example.markup.bfit.pdf
- texmf-dist/doc/latex/changes/examples/changes.example.markup.bfit.tex
- texmf-dist/doc/latex/changes/examples/changes.example.markup.default.pdf
- texmf-dist/doc/latex/changes/examples/changes.example.markup.default.tex
- texmf-dist/doc/latex/changes/examples/changes.example.markup.nocolor.pdf
- texmf-dist/doc/latex/changes/examples/changes.example.markup.nocolor.tex
- texmf-dist/doc/latex/changes/examples/changes.example.markup.underlined.pdf
- texmf-dist/doc/latex/changes/examples/changes.example.markup.underlined.tex
- texmf-dist/doc/latex/changes/examples/changes.example.markup.wrong.pdf
- texmf-dist/doc/latex/changes/examples/changes.example.markup.wrong.tex
- texmf-dist/doc/latex/changes/examples/changes.example.setaddedmarkup.pdf
- texmf-dist/doc/latex/changes/examples/changes.example.setaddedmarkup.tex
- texmf-dist/doc/latex/changes/examples/changes.example.setauthormarkup.pdf
- texmf-dist/doc/latex/changes/examples/changes.example.setauthormarkup.tex
- texmf-dist/doc/latex/changes/examples/changes.example.setauthormarkupposition.pdf
- texmf-dist/doc/latex/changes/examples/changes.example.setauthormarkupposition.tex
- texmf-dist/doc/latex/changes/examples/changes.example.setauthormarkuptext.pdf
- texmf-dist/doc/latex/changes/examples/changes.example.setauthormarkuptext.tex
- texmf-dist/doc/latex/changes/examples/changes.example.setdeletedmarkup.pdf
- texmf-dist/doc/latex/changes/examples/changes.example.setdeletedmarkup.tex
- texmf-dist/doc/latex/changes/examples/changes.example.setlocextension.pdf
- texmf-dist/doc/latex/changes/examples/changes.example.setlocextension.tex
- texmf-dist/doc/latex/changes/examples/changes.example.setremarkmarkup.pdf
- texmf-dist/doc/latex/changes/examples/changes.example.setremarkmarkup.tex
- texmf-dist/doc/latex/changes/examples/changes.example.simple.pdf
- texmf-dist/doc/latex/changes/examples/changes.example.simple.tex
-srcfiles size=54
+ texmf-dist/doc/latex/changes/delcmdchanges.bash
+ texmf-dist/doc/latex/changes/userdoc/changes.de.tex
+ texmf-dist/doc/latex/changes/userdoc/changes.en.tex
+srcfiles size=15
texmf-dist/source/latex/changes/changes.drv
texmf-dist/source/latex/changes/changes.dtx
texmf-dist/source/latex/changes/changes.ins
texmf-dist/source/latex/changes/examples.dtx
- texmf-dist/source/latex/changes/userdoc/authors.tex
- texmf-dist/source/latex/changes/userdoc/changes.de.tex
- texmf-dist/source/latex/changes/userdoc/changes.en.tex
- texmf-dist/source/latex/changes/userdoc/command_definechangesauthor.tex
- texmf-dist/source/latex/changes/userdoc/command_listofchanges.tex
- texmf-dist/source/latex/changes/userdoc/command_setaddedmarkup.tex
- texmf-dist/source/latex/changes/userdoc/command_setauthormarkup.tex
- texmf-dist/source/latex/changes/userdoc/command_setauthormarkupposition.tex
- texmf-dist/source/latex/changes/userdoc/command_setauthormarkuptext.tex
- texmf-dist/source/latex/changes/userdoc/command_setdeletedmarkup.tex
- texmf-dist/source/latex/changes/userdoc/command_setlocextension.tex
- texmf-dist/source/latex/changes/userdoc/command_setremarkmarkup.tex
- texmf-dist/source/latex/changes/userdoc/copyright.tex
- texmf-dist/source/latex/changes/userdoc/email.tex
- texmf-dist/source/latex/changes/userdoc/files_generated.tex
- texmf-dist/source/latex/changes/userdoc/files_original.tex
- texmf-dist/source/latex/changes/userdoc/option_addedmarkup.tex
- texmf-dist/source/latex/changes/userdoc/option_authormarkup.tex
- texmf-dist/source/latex/changes/userdoc/option_authormarkupposition.tex
- texmf-dist/source/latex/changes/userdoc/option_authormarkuptext.tex
- texmf-dist/source/latex/changes/userdoc/option_deletedmarkup.tex
- texmf-dist/source/latex/changes/userdoc/option_draft.tex
- texmf-dist/source/latex/changes/userdoc/option_final.tex
- texmf-dist/source/latex/changes/userdoc/option_markup.tex
- texmf-dist/source/latex/changes/userdoc/option_ulem.tex
- texmf-dist/source/latex/changes/userdoc/option_xcolor.tex
- texmf-dist/source/latex/changes/userdoc/path_examples.tex
- texmf-dist/source/latex/changes/userdoc/path_scripts.tex
- texmf-dist/source/latex/changes/userdoc/url.tex
-runfiles size=8
- texmf-dist/scripts/changes/delcmdchanges.bash
+runfiles size=5
texmf-dist/tex/latex/changes/changes.sty
catalogue-ctan /macros/latex/contrib/changes
-catalogue-date 2012-06-08 21:17:59 +0200
+catalogue-date 2013-08-13 17:34:49 +0200
catalogue-license lppl1.3
-catalogue-version 1.0.0
+catalogue-version 2.0.2
name chappg
category Package
@@ -30306,7 +33909,7 @@ docfiles size=58
runfiles size=4
texmf-dist/scripts/checkcites/checkcites.lua
catalogue-ctan /support/checkcites
-catalogue-date 2012-12-21 17:28:17 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.0i
@@ -30394,13 +33997,6 @@ shortdesc i386-solaris files of checkcites
binfiles arch=i386-solaris size=1
bin/i386-solaris/checkcites
-name checkcites.mips-irix
-category Package
-revision 29949
-shortdesc mips-irix files of checkcites
-binfiles arch=mips-irix size=1
- bin/mips-irix/checkcites
-
name checkcites.mipsel-linux
category Package
revision 29946
@@ -30436,6 +34032,13 @@ shortdesc win32 files of checkcites
binfiles arch=win32 size=1
bin/win32/checkcites.exe
+name checkcites.x86_64-cygwin
+category Package
+revision 33557
+shortdesc x86_64-cygwin files of checkcites
+binfiles arch=x86_64-cygwin size=1
+ bin/x86_64-cygwin/checkcites
+
name checkcites.x86_64-darwin
category Package
revision 25623
@@ -30535,7 +34138,7 @@ runfiles size=48
texmf-dist/bibtex/bst/chembst/JAmChemSoc_all.bst
texmf-dist/bibtex/bst/chembst/cv.bst
catalogue-ctan /biblio/bibtex/contrib/chembst
-catalogue-date 2012-04-17 18:08:02 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 0.2.5
@@ -30599,13 +34202,13 @@ docfiles size=131
runfiles size=9
texmf-dist/tex/latex/chemexec/chemexec.sty
catalogue-ctan /macros/latex/contrib/chemexec
-catalogue-date 2012-04-17 18:08:02 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.0
name chemfig
category Package
-revision 28287
+revision 32270
shortdesc Draw molecules with easy syntax.
longdesc The package provides the command \chemfig{<code>}, which draws
longdesc molecules using the tikz package. The <code> argument provides
@@ -30614,7 +34217,7 @@ longdesc produced are essentially 2-dimensional, the package supports
longdesc many of the conventional notations for illustrating the 3-
longdesc dimensional layout of a molecule. The package uses TikZ for its
longdesc actual drawing operations.
-docfiles size=716
+docfiles size=626
texmf-dist/doc/generic/chemfig/README details="Readme"
texmf-dist/doc/generic/chemfig/chemfig_doc_en.pdf details="Package documentation (English)" language="en"
texmf-dist/doc/generic/chemfig/chemfig_doc_en.tex
@@ -30625,30 +34228,40 @@ runfiles size=25
texmf-dist/tex/generic/chemfig/chemfig.tex
texmf-dist/tex/generic/chemfig/t-chemfig.tex
catalogue-ctan /macros/generic/chemfig
-catalogue-date 2012-02-24 23:23:08 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
-catalogue-version 1.0f
+catalogue-version 1.0g
name chemmacros
category Package
-revision 30082
+revision 33447
shortdesc A collection of macros to support typesetting chemistry documents.
-longdesc The package offers a collection of macros and commands which
-longdesc are intended to make typesetting chemistry documents faster and
+longdesc The bundle offers a collection of macros and commands which are
+longdesc intended to make typesetting chemistry documents faster and
longdesc more convenient. Coverage includes some nomenclature commands,
longdesc oxidation numbers, thermodynamic data, newman projections, etc.
-docfiles size=734
+longdesc The four packages in the bundle are: chemmacros, providing the
+longdesc basic requirements; chemformula (v4.2a), providing a command
+longdesc for typesetting chemical formulae and reactions (doing a
+longdesc similar task to that of mhchem); chemgreek (v0.2a), offering
+longdesc support for use of greek letters; and ghsystem, providing for
+longdesc the UN globally harmonised chemical notation. The packages are
+longdesc written using current versions of the experimental LaTeX 3
+longdesc coding conventions and the LaTeX 3 support packages.
+docfiles size=837
texmf-dist/doc/latex/chemmacros/README details="Readme"
+ texmf-dist/doc/latex/chemmacros/chemformula_en.pdf details="Chemformula package documentation" language="en"
+ texmf-dist/doc/latex/chemmacros/chemformula_en.tex
texmf-dist/doc/latex/chemmacros/chemformula_test_sub_and_superscripts.tex
- texmf-dist/doc/latex/chemmacros/chemmacros_de.pdf details="Package documentation" language="de"
- texmf-dist/doc/latex/chemmacros/chemmacros_de.tex
- texmf-dist/doc/latex/chemmacros/chemmacros_en.pdf details="Package documentation" language="en"
+ texmf-dist/doc/latex/chemmacros/chemgreek_en.pdf details="Chemgreek package documentation" language="en"
+ texmf-dist/doc/latex/chemmacros/chemgreek_en.tex
+ texmf-dist/doc/latex/chemmacros/chemmacros_en.pdf details="Chemmacros package documentation" language="en"
texmf-dist/doc/latex/chemmacros/chemmacros_en.tex
- texmf-dist/doc/latex/chemmacros/chemmacros_it.pdf details="Package documentation" language="it"
- texmf-dist/doc/latex/chemmacros/chemmacros_it.tex
-runfiles size=1500
+ texmf-dist/doc/latex/chemmacros/ghsystem_en.pdf details="Ghsystem package documentation" language="en"
+ texmf-dist/doc/latex/chemmacros/ghsystem_en.tex
+runfiles size=1517
texmf-dist/tex/latex/chemmacros/chemformula.sty
- texmf-dist/tex/latex/chemmacros/chemmacros-version1.cfg
+ texmf-dist/tex/latex/chemmacros/chemgreek.sty
texmf-dist/tex/latex/chemmacros/chemmacros.sty
texmf-dist/tex/latex/chemmacros/ghsystem.sty
texmf-dist/tex/latex/chemmacros/language/ghsystem_english.def
@@ -30780,38 +34393,34 @@ runfiles size=1500
texmf-dist/tex/latex/chemmacros/pictures/ghsystem_skull.pdf
texmf-dist/tex/latex/chemmacros/pictures/ghsystem_skull.png
catalogue-ctan /macros/latex/contrib/chemmacros
-catalogue-date 2013-04-21 12:55:17 +0200
+catalogue-date 2014-04-10 17:34:17 +0200
catalogue-license lppl1.3
-catalogue-version 3.6b
+catalogue-version 4.5
name chemnum
category Package
-revision 30024
+revision 33161
shortdesc A method of numbering chemical compounds.
longdesc The package defines a \label- and \ref-like commands for
longdesc compound numbers. The package requires LaTeX 3 packages expl3
longdesc (from the l3kernel bundle) and xparse (from the l3packages
longdesc bundle).
-docfiles size=650
+docfiles size=263
texmf-dist/doc/latex/chemnum/README details="Readme"
- texmf-dist/doc/latex/chemnum/chemnum_de.pdf details="Package documentation (German)" language="de"
- texmf-dist/doc/latex/chemnum/chemnum_de.tex
texmf-dist/doc/latex/chemnum/chemnum_en.pdf details="Package documentation (English)" language="en"
texmf-dist/doc/latex/chemnum/chemnum_en.tex
- texmf-dist/doc/latex/chemnum/chemnum_it.pdf
- texmf-dist/doc/latex/chemnum/chemnum_it.tex
texmf-dist/doc/latex/chemnum/scheme-bla.ps
texmf-dist/doc/latex/chemnum/scheme-tmp.ps
runfiles size=17
texmf-dist/tex/latex/chemnum/chemnum.sty
catalogue-ctan /macros/latex/contrib/chemnum
-catalogue-date 2013-04-18 11:12:49 +0200
+catalogue-date 2014-03-12 17:25:07 +0100
catalogue-license lppl1.3
-catalogue-version 0.6a
+catalogue-version 1.0
name chemstyle
category Package
-revision 25246
+revision 31096
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
@@ -30824,13 +34433,12 @@ longdesc the rsc LaTeX package are present in chemstyle). The package
longdesc chemscheme is distributed with chemstyle; chemstyle itself
longdesc incorporates ideas that come from the trivfloat package; the
longdesc documentation uses the auto-pst-pdf package.
-docfiles size=78
+docfiles size=71
texmf-dist/doc/latex/chemstyle/README details="Readme"
texmf-dist/doc/latex/chemstyle/chemscheme.cdx
+ texmf-dist/doc/latex/chemstyle/chemstyle-demo.tex
texmf-dist/doc/latex/chemstyle/chemstyle.pdf details="Package documentation"
- texmf-dist/doc/latex/chemstyle/scheme-one.eps
- texmf-dist/doc/latex/chemstyle/scheme-two.eps
-srcfiles size=24
+srcfiles size=25
texmf-dist/source/latex/chemstyle/chemstyle.dtx
texmf-dist/source/latex/chemstyle/chemstyle.ins
runfiles size=14
@@ -30844,9 +34452,9 @@ runfiles size=14
texmf-dist/tex/latex/chemstyle/config/rsc.chemstyle.cfg
texmf-dist/tex/latex/chemstyle/config/tetlett.chemstyle.cfg
catalogue-ctan /macros/latex/contrib/chemstyle
-catalogue-date 2012-01-29 01:08:38 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
-catalogue-version 2.0l
+catalogue-version 2.0m
name cherokee
category Package
@@ -30870,7 +34478,7 @@ runfiles size=8
texmf-dist/fonts/tfm/public/cherokee/cherokee.tfm
texmf-dist/tex/latex/cherokee/cherokee.sty
catalogue-ctan /fonts/cherokee
-catalogue-date 2012-02-03 13:24:48 +0100
+catalogue-date 2014-04-14 00:54:59 +0200
catalogue-license other-free
name chess
@@ -30917,18 +34525,18 @@ runfiles size=21
texmf-dist/fonts/tfm/public/chess/chessfig10.tfm
texmf-dist/tex/latex/chess/chess.sty
catalogue-ctan /fonts/chess/chess
-catalogue-date 2012-06-13 20:28:58 +0200
+catalogue-date 2014-04-14 00:53:06 +0200
catalogue-license pd
catalogue-version 1.2
name chess-problem-diagrams
category Package
-revision 28303
+revision 30870
shortdesc A package for typesetting chess problem diagrams.
longdesc This package provides macros to typeset chess problem diagrams
longdesc including fairy chess problems (mostly using rotated images of
longdesc pieces) and other boards.
-docfiles size=82
+docfiles size=84
texmf-dist/doc/latex/chess-problem-diagrams/README details="Readme"
texmf-dist/doc/latex/chess-problem-diagrams/diagram.pdf details="Package documentation"
srcfiles size=25
@@ -30937,13 +34545,13 @@ srcfiles size=25
runfiles size=14
texmf-dist/tex/latex/chess-problem-diagrams/diagram.sty
catalogue-ctan /macros/latex/contrib/chess-problem-diagrams
-catalogue-date 2012-11-19 10:39:58 +0100
+catalogue-date 2013-06-22 23:41:37 +0200
catalogue-license lppl1.2
-catalogue-version 1.6.4
+catalogue-version 1.6.5
name chessboard
category Package
-revision 19440
+revision 33801
shortdesc Print chess boards.
longdesc This package offers commands to print chessboards. It can print
longdesc partial boards, hide pieces and fields, color the boards and
@@ -30964,9 +34572,9 @@ runfiles size=48
texmf-dist/tex/latex/chessboard/chessboard-pgf.sty
texmf-dist/tex/latex/chessboard/chessboard.sty
catalogue-ctan /macros/latex/contrib/chessboard
-catalogue-date 2012-06-13 20:28:58 +0200
+catalogue-date 2014-05-01 22:32:50 +0200
catalogue-license lppl
-catalogue-version 1.5
+catalogue-version 1.7
name chessfss
category Package
@@ -31026,7 +34634,7 @@ catalogue-version 1.2a
name chet
category Package
-revision 28606
+revision 32384
shortdesc LaTeX layout inspired by harvmac.
longdesc The package is designed to streamline the work of typesetting,
longdesc and to provide the look and feel of harvmac for readers.
@@ -31038,9 +34646,9 @@ runfiles size=7
texmf-dist/bibtex/bst/chet/chetref.bst
texmf-dist/tex/latex/chet/chet.sty
catalogue-ctan /macros/latex/contrib/chet
-catalogue-date 2012-12-09 16:35:11 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
-catalogue-version 1.5
+catalogue-version 1.6
name chextras
category Package
@@ -31067,7 +34675,7 @@ runfiles size=11
texmf-dist/tex/latex/chextras/t1lmttos.fd
texmf-dist/tex/latex/chextras/t1lmvttos.fd
catalogue-ctan /macros/latex/contrib/chextras
-catalogue-date 2012-07-20 19:39:58 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.01
@@ -31097,12 +34705,12 @@ docfiles size=1
runfiles size=10
texmf-dist/bibtex/bst/chicago-annote/chicago-annote.bst
catalogue-ctan /biblio/bibtex/contrib/chicago-annote/chicago-annote.bst
-catalogue-date 2012-06-13 23:10:20 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
name chickenize
category Package
-revision 29232
+revision 31505
shortdesc Use lua callbacks for "interesting" textual effects.
longdesc The package allows manipulations of any LuaTeX document (it is
longdesc known to work with Plain LuaTeX and LuaLaTeX). Most of the
@@ -31114,16 +34722,16 @@ longdesc document.
docfiles size=44
texmf-dist/doc/luatex/chickenize/README details="Readme"
texmf-dist/doc/luatex/chickenize/chickenize.pdf details="Package documentation"
-srcfiles size=22
+srcfiles size=23
texmf-dist/source/luatex/chickenize/chickenize.dtx
-runfiles size=11
+runfiles size=12
texmf-dist/tex/luatex/chickenize/chickenize.lua
texmf-dist/tex/luatex/chickenize/chickenize.sty
texmf-dist/tex/luatex/chickenize/chickenize.tex
catalogue-ctan /macros/luatex/generic/chickenize
-catalogue-date 2013-02-24 22:35:53 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
-catalogue-version 0.2
+catalogue-version 0.2.1a
name chkfloat
category Package
@@ -31139,13 +34747,13 @@ docfiles size=15
runfiles size=1
texmf-dist/tex/latex/chkfloat/chkfloat.sty
catalogue-ctan /macros/latex/contrib/chkfloat
-catalogue-date 2012-08-22 17:34:41 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 0.1
name chktex
category TLCore
-revision 29821
+revision 33741
shortdesc Check for errors in LaTeX documents.
longdesc The program reports typographic and other errors in LaTeX
longdesc documents. Filters are also provided for checking the LaTeX
@@ -31164,13 +34772,13 @@ runfiles size=8
texmf-dist/scripts/chktex/chkweb.sh
texmf-dist/scripts/chktex/deweb.pl
catalogue-ctan /support/chktex
-catalogue-date 2013-04-19 00:48:42 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license gpl
catalogue-version 1.7.2
name chktex.alpha-linux
category TLCore
-revision 29891
+revision 33553
shortdesc alpha-linux files of chktex
binfiles arch=alpha-linux size=44
bin/alpha-linux/chktex
@@ -31179,7 +34787,7 @@ binfiles arch=alpha-linux size=44
name chktex.amd64-freebsd
category TLCore
-revision 29874
+revision 33488
shortdesc amd64-freebsd files of chktex
binfiles arch=amd64-freebsd size=33
bin/amd64-freebsd/chktex
@@ -31188,7 +34796,7 @@ binfiles arch=amd64-freebsd size=33
name chktex.amd64-kfreebsd
category TLCore
-revision 30655
+revision 33864
shortdesc amd64-kfreebsd files of chktex
binfiles arch=amd64-kfreebsd size=34
bin/amd64-kfreebsd/chktex
@@ -31197,7 +34805,7 @@ binfiles arch=amd64-kfreebsd size=34
name chktex.amd64-netbsd
category TLCore
-revision 30660
+revision 33726
shortdesc amd64-netbsd files of chktex
binfiles arch=amd64-netbsd size=33
bin/amd64-netbsd/chktex
@@ -31206,7 +34814,7 @@ binfiles arch=amd64-netbsd size=33
name chktex.armel-linux
category TLCore
-revision 29888
+revision 33916
shortdesc armel-linux files of chktex
binfiles arch=armel-linux size=32
bin/armel-linux/chktex
@@ -31215,25 +34823,25 @@ binfiles arch=armel-linux size=32
name chktex.armhf-linux
category TLCore
-revision 30443
+revision 34125
shortdesc armhf-linux files of chktex
-binfiles arch=armhf-linux size=29
+binfiles arch=armhf-linux size=30
bin/armhf-linux/chktex
bin/armhf-linux/chkweb
bin/armhf-linux/deweb
name chktex.i386-cygwin
category TLCore
-revision 30526
+revision 34161
shortdesc i386-cygwin files of chktex
-binfiles arch=i386-cygwin size=30
+binfiles arch=i386-cygwin size=34
bin/i386-cygwin/chktex.exe
bin/i386-cygwin/chkweb
bin/i386-cygwin/deweb
name chktex.i386-freebsd
category TLCore
-revision 29874
+revision 33488
shortdesc i386-freebsd files of chktex
binfiles arch=i386-freebsd size=31
bin/i386-freebsd/chktex
@@ -31242,25 +34850,25 @@ binfiles arch=i386-freebsd size=31
name chktex.i386-kfreebsd
category TLCore
-revision 30440
+revision 33864
shortdesc i386-kfreebsd files of chktex
-binfiles arch=i386-kfreebsd size=33
+binfiles arch=i386-kfreebsd size=34
bin/i386-kfreebsd/chktex
bin/i386-kfreebsd/chkweb
bin/i386-kfreebsd/deweb
name chktex.i386-linux
category TLCore
-revision 30088
+revision 33479
shortdesc i386-linux files of chktex
-binfiles arch=i386-linux size=33
+binfiles arch=i386-linux size=35
bin/i386-linux/chktex
bin/i386-linux/chkweb
bin/i386-linux/deweb
name chktex.i386-netbsd
category TLCore
-revision 30191
+revision 33562
shortdesc i386-netbsd files of chktex
binfiles arch=i386-netbsd size=29
bin/i386-netbsd/chktex
@@ -31269,52 +34877,43 @@ binfiles arch=i386-netbsd size=29
name chktex.i386-solaris
category TLCore
-revision 30112
+revision 34203
shortdesc i386-solaris files of chktex
binfiles arch=i386-solaris size=36
bin/i386-solaris/chktex
bin/i386-solaris/chkweb
bin/i386-solaris/deweb
-name chktex.mips-irix
-category TLCore
-revision 30131
-shortdesc mips-irix files of chktex
-binfiles arch=mips-irix size=63
- bin/mips-irix/chktex
- bin/mips-irix/chkweb
- bin/mips-irix/deweb
-
name chktex.mipsel-linux
category TLCore
-revision 29995
+revision 33811
shortdesc mipsel-linux files of chktex
-binfiles arch=mipsel-linux size=43
+binfiles arch=mipsel-linux size=34
bin/mipsel-linux/chktex
bin/mipsel-linux/chkweb
bin/mipsel-linux/deweb
name chktex.powerpc-linux
category TLCore
-revision 30114
+revision 33889
shortdesc powerpc-linux files of chktex
-binfiles arch=powerpc-linux size=36
+binfiles arch=powerpc-linux size=33
bin/powerpc-linux/chktex
bin/powerpc-linux/chkweb
bin/powerpc-linux/deweb
name chktex.sparc-solaris
category TLCore
-revision 29877
+revision 33871
shortdesc sparc-solaris files of chktex
-binfiles arch=sparc-solaris size=34
+binfiles arch=sparc-solaris size=33
bin/sparc-solaris/chktex
bin/sparc-solaris/chkweb
bin/sparc-solaris/deweb
name chktex.universal-darwin
category TLCore
-revision 30764
+revision 34201
shortdesc universal-darwin files of chktex
binfiles arch=universal-darwin size=65
bin/universal-darwin/chktex
@@ -31323,15 +34922,24 @@ binfiles arch=universal-darwin size=65
name chktex.win32
category TLCore
-revision 29816
+revision 33897
shortdesc win32 files of chktex
binfiles arch=win32 size=18
bin/win32/chktex.exe
bin/win32/deweb.exe
+name chktex.x86_64-cygwin
+category TLCore
+revision 34161
+shortdesc x86_64-cygwin files of chktex
+binfiles arch=x86_64-cygwin size=33
+ bin/x86_64-cygwin/chktex.exe
+ bin/x86_64-cygwin/chkweb
+ bin/x86_64-cygwin/deweb
+
name chktex.x86_64-darwin
category TLCore
-revision 29879
+revision 34201
shortdesc x86_64-darwin files of chktex
binfiles arch=x86_64-darwin size=37
bin/x86_64-darwin/chktex
@@ -31340,7 +34948,7 @@ binfiles arch=x86_64-darwin size=37
name chktex.x86_64-linux
category TLCore
-revision 30204
+revision 33723
shortdesc x86_64-linux files of chktex
binfiles arch=x86_64-linux size=34
bin/x86_64-linux/chktex
@@ -31349,7 +34957,7 @@ binfiles arch=x86_64-linux size=34
name chktex.x86_64-solaris
category TLCore
-revision 30112
+revision 34203
shortdesc x86_64-solaris files of chktex
binfiles arch=x86_64-solaris size=43
bin/x86_64-solaris/chktex
@@ -31376,7 +34984,7 @@ srcfiles size=17
runfiles size=3
texmf-dist/tex/latex/chletter/chletter.cls
catalogue-ctan /macros/latex/contrib/chletter
-catalogue-date 2012-06-13 23:10:20 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 2.0
@@ -31412,7 +35020,7 @@ docfiles size=6
runfiles size=1
texmf-dist/tex/latex/chronology/chronology.sty
catalogue-ctan /macros/latex/contrib/chronology
-catalogue-date 2013-04-05 17:50:33 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.1
@@ -31434,7 +35042,7 @@ runfiles size=12
texmf-dist/tex/generic/chronosys/chronosyschr.tex
texmf-dist/tex/generic/chronosys/x-chronosys.tex
catalogue-ctan /macros/latex/contrib/chronosys
-catalogue-date 2012-05-28 13:36:39 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.2
@@ -31456,10 +35064,119 @@ runfiles size=9
texmf-dist/bibtex/bst/chscite/chscite.bst
texmf-dist/tex/latex/chscite/chscite.sty
catalogue-ctan /macros/latex/contrib/chscite
-catalogue-date 2012-12-17 20:14:05 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.2
catalogue-version 2.9999
+name cinzel
+category Package
+revision 33386
+shortdesc LaTeX support for Cinzel and Cinzel Decorative fonts.
+longdesc Cinzel and Cinzel Decorative fonts, designed by Natanael Gama
+longdesc Natanael Gama), find their inspiration in first century roman
+longdesc inscriptions, and are based on classical proportions. Cinzel is
+longdesc all-caps (similar to Trajan and Michelangelo), but is available
+longdesc in three weights (Regular, Bold, Black). There are no italic
+longdesc fonts, but there are Decorative variants, which can be selected
+longdesc by the usual italic-selection commands in the package's LaTeX
+longdesc support.
+execute addMap cinzel.map
+docfiles size=9
+ texmf-dist/doc/fonts/cinzel/README details="Readme"
+ texmf-dist/doc/fonts/cinzel/SIL_Open_Font_License.txt
+ texmf-dist/doc/fonts/cinzel/cinzel-samples.pdf
+ texmf-dist/doc/fonts/cinzel/cinzel-samples.tex
+runfiles size=426
+ texmf-dist/fonts/enc/dvips/cinzel/cnzl_7luz43.enc
+ texmf-dist/fonts/enc/dvips/cinzel/cnzl_7t2zcj.enc
+ texmf-dist/fonts/enc/dvips/cinzel/cnzl_fzt4gv.enc
+ texmf-dist/fonts/enc/dvips/cinzel/cnzl_k6z3ge.enc
+ texmf-dist/fonts/map/dvips/cinzel/cinzel.map
+ texmf-dist/fonts/opentype/ndiscovered/cinzel/Cinzel-Black.otf
+ texmf-dist/fonts/opentype/ndiscovered/cinzel/Cinzel-Bold.otf
+ texmf-dist/fonts/opentype/ndiscovered/cinzel/Cinzel-Regular.otf
+ texmf-dist/fonts/opentype/ndiscovered/cinzel/CinzelDecorative-Black.otf
+ texmf-dist/fonts/opentype/ndiscovered/cinzel/CinzelDecorative-Bold.otf
+ texmf-dist/fonts/opentype/ndiscovered/cinzel/CinzelDecorative-Regular.otf
+ texmf-dist/fonts/tfm/ndiscovered/cinzel/Cinzel-Black-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/ndiscovered/cinzel/Cinzel-Black-lf-ly1.tfm
+ texmf-dist/fonts/tfm/ndiscovered/cinzel/Cinzel-Black-lf-ot1.tfm
+ texmf-dist/fonts/tfm/ndiscovered/cinzel/Cinzel-Black-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/ndiscovered/cinzel/Cinzel-Black-lf-t1.tfm
+ texmf-dist/fonts/tfm/ndiscovered/cinzel/Cinzel-Black-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/ndiscovered/cinzel/Cinzel-Black-lf-ts1.tfm
+ texmf-dist/fonts/tfm/ndiscovered/cinzel/Cinzel-Bold-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/ndiscovered/cinzel/Cinzel-Bold-lf-ly1.tfm
+ texmf-dist/fonts/tfm/ndiscovered/cinzel/Cinzel-Bold-lf-ot1.tfm
+ texmf-dist/fonts/tfm/ndiscovered/cinzel/Cinzel-Bold-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/ndiscovered/cinzel/Cinzel-Bold-lf-t1.tfm
+ texmf-dist/fonts/tfm/ndiscovered/cinzel/Cinzel-Bold-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/ndiscovered/cinzel/Cinzel-Bold-lf-ts1.tfm
+ texmf-dist/fonts/tfm/ndiscovered/cinzel/Cinzel-Regular-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/ndiscovered/cinzel/Cinzel-Regular-lf-ly1.tfm
+ texmf-dist/fonts/tfm/ndiscovered/cinzel/Cinzel-Regular-lf-ot1.tfm
+ texmf-dist/fonts/tfm/ndiscovered/cinzel/Cinzel-Regular-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/ndiscovered/cinzel/Cinzel-Regular-lf-t1.tfm
+ texmf-dist/fonts/tfm/ndiscovered/cinzel/Cinzel-Regular-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/ndiscovered/cinzel/Cinzel-Regular-lf-ts1.tfm
+ texmf-dist/fonts/tfm/ndiscovered/cinzel/CinzelDecorative-Black-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/ndiscovered/cinzel/CinzelDecorative-Black-lf-ly1.tfm
+ texmf-dist/fonts/tfm/ndiscovered/cinzel/CinzelDecorative-Black-lf-ot1.tfm
+ texmf-dist/fonts/tfm/ndiscovered/cinzel/CinzelDecorative-Black-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/ndiscovered/cinzel/CinzelDecorative-Black-lf-t1.tfm
+ texmf-dist/fonts/tfm/ndiscovered/cinzel/CinzelDecorative-Black-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/ndiscovered/cinzel/CinzelDecorative-Black-lf-ts1.tfm
+ texmf-dist/fonts/tfm/ndiscovered/cinzel/CinzelDecorative-Bold-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/ndiscovered/cinzel/CinzelDecorative-Bold-lf-ly1.tfm
+ texmf-dist/fonts/tfm/ndiscovered/cinzel/CinzelDecorative-Bold-lf-ot1.tfm
+ texmf-dist/fonts/tfm/ndiscovered/cinzel/CinzelDecorative-Bold-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/ndiscovered/cinzel/CinzelDecorative-Bold-lf-t1.tfm
+ texmf-dist/fonts/tfm/ndiscovered/cinzel/CinzelDecorative-Bold-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/ndiscovered/cinzel/CinzelDecorative-Bold-lf-ts1.tfm
+ texmf-dist/fonts/tfm/ndiscovered/cinzel/CinzelDecorative-Regular-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/ndiscovered/cinzel/CinzelDecorative-Regular-lf-ly1.tfm
+ texmf-dist/fonts/tfm/ndiscovered/cinzel/CinzelDecorative-Regular-lf-ot1.tfm
+ texmf-dist/fonts/tfm/ndiscovered/cinzel/CinzelDecorative-Regular-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/ndiscovered/cinzel/CinzelDecorative-Regular-lf-t1.tfm
+ texmf-dist/fonts/tfm/ndiscovered/cinzel/CinzelDecorative-Regular-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/ndiscovered/cinzel/CinzelDecorative-Regular-lf-ts1.tfm
+ texmf-dist/fonts/type1/ndiscovered/cinzel/Cinzel-Black.pfb
+ texmf-dist/fonts/type1/ndiscovered/cinzel/Cinzel-Bold.pfb
+ texmf-dist/fonts/type1/ndiscovered/cinzel/Cinzel-Regular.pfb
+ texmf-dist/fonts/type1/ndiscovered/cinzel/CinzelDecorative-Black.pfb
+ texmf-dist/fonts/type1/ndiscovered/cinzel/CinzelDecorative-Bold.pfb
+ texmf-dist/fonts/type1/ndiscovered/cinzel/CinzelDecorative-Regular.pfb
+ texmf-dist/fonts/vf/ndiscovered/cinzel/Cinzel-Black-lf-ly1.vf
+ texmf-dist/fonts/vf/ndiscovered/cinzel/Cinzel-Black-lf-t1.vf
+ texmf-dist/fonts/vf/ndiscovered/cinzel/Cinzel-Black-lf-ts1.vf
+ texmf-dist/fonts/vf/ndiscovered/cinzel/Cinzel-Bold-lf-ly1.vf
+ texmf-dist/fonts/vf/ndiscovered/cinzel/Cinzel-Bold-lf-t1.vf
+ texmf-dist/fonts/vf/ndiscovered/cinzel/Cinzel-Bold-lf-ts1.vf
+ texmf-dist/fonts/vf/ndiscovered/cinzel/Cinzel-Regular-lf-ly1.vf
+ texmf-dist/fonts/vf/ndiscovered/cinzel/Cinzel-Regular-lf-t1.vf
+ texmf-dist/fonts/vf/ndiscovered/cinzel/Cinzel-Regular-lf-ts1.vf
+ texmf-dist/fonts/vf/ndiscovered/cinzel/CinzelDecorative-Black-lf-ly1.vf
+ texmf-dist/fonts/vf/ndiscovered/cinzel/CinzelDecorative-Black-lf-t1.vf
+ texmf-dist/fonts/vf/ndiscovered/cinzel/CinzelDecorative-Black-lf-ts1.vf
+ texmf-dist/fonts/vf/ndiscovered/cinzel/CinzelDecorative-Bold-lf-ly1.vf
+ texmf-dist/fonts/vf/ndiscovered/cinzel/CinzelDecorative-Bold-lf-t1.vf
+ texmf-dist/fonts/vf/ndiscovered/cinzel/CinzelDecorative-Bold-lf-ts1.vf
+ texmf-dist/fonts/vf/ndiscovered/cinzel/CinzelDecorative-Regular-lf-ly1.vf
+ texmf-dist/fonts/vf/ndiscovered/cinzel/CinzelDecorative-Regular-lf-t1.vf
+ texmf-dist/fonts/vf/ndiscovered/cinzel/CinzelDecorative-Regular-lf-ts1.vf
+ texmf-dist/tex/latex/cinzel/LY1Cinzel-LF.fd
+ texmf-dist/tex/latex/cinzel/LY1CinzelDecorative-LF.fd
+ texmf-dist/tex/latex/cinzel/OT1Cinzel-LF.fd
+ texmf-dist/tex/latex/cinzel/OT1CinzelDecorative-LF.fd
+ texmf-dist/tex/latex/cinzel/T1Cinzel-LF.fd
+ texmf-dist/tex/latex/cinzel/T1CinzelDecorative-LF.fd
+ texmf-dist/tex/latex/cinzel/TS1Cinzel-LF.fd
+ texmf-dist/tex/latex/cinzel/TS1CinzelDecorative-LF.fd
+ texmf-dist/tex/latex/cinzel/cinzel.sty
+catalogue-ctan /fonts/cinzel
+catalogue-date 2014-05-24 16:58:58 +0200
+catalogue-license ofl
+
name circ
category Package
revision 15878
@@ -31543,7 +35260,7 @@ runfiles size=76
texmf-dist/tex/latex/circuitikz/pgfcircvoltage.sty
texmf-dist/tex/latex/circuitikz/t-circuitikz.tex
catalogue-ctan /graphics/pgf/contrib/circuitikz
-catalogue-date 2012-12-29 14:51:49 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 0.3.0
@@ -31604,7 +35321,7 @@ runfiles size=27
texmf-dist/fonts/vf/public/cjhebrew/cjhbltx.vf
texmf-dist/tex/latex/cjhebrew/cjhebrew.sty
catalogue-ctan /language/hebrew/cjhebrew
-catalogue-date 2012-11-30 16:37:48 +0100
+catalogue-date 2013-09-30 11:39:01 +0200
catalogue-license lppl
catalogue-version 0.1a
@@ -31614,12 +35331,12 @@ revision 30576
shortdesc CJK language support.
longdesc CJK is a macro package for LaTeX, providing simultaneous
longdesc support for various Asian scripts in many encodings (including
-longdesc Unicode): - Chinese (both traditional and simplified), -
-longdesc Japanese, - Korean and - Thai. A special add-on feature is an
-longdesc interface to the Emacs editor (cjk-enc.el) which gives
-longdesc simultaneous, easy-to-use support to a bunch of other scripts
-longdesc in addition to the above: - Cyrillic, - Greek, - Latin-based
-longdesc scripts, - Russian and - Vietnamese.
+longdesc Unicode): Chinese (both traditional and simplified), Japanese,
+longdesc Korean and Thai. A special add-on feature is an interface to
+longdesc the Emacs editor (cjk-enc.el) which gives simultaneous, easy-
+longdesc to-use support to a bunch of other scripts in addition to the
+longdesc above: Cyrillic, Greek, Latin-based scripts, Russian and
+longdesc Vietnamese.
depend arphic
depend cns
depend garuda-c90
@@ -32003,23 +35720,23 @@ runfiles size=294
texmf-dist/tex/latex/cjk/texinput/thai/thaicjk.ldf
texmf-dist/tex/latex/cjk/utils/pyhyphen/pinyin.ldf
catalogue-ctan /language/chinese/CJK
-catalogue-date 2012-05-09 20:27:35 +0200
+catalogue-date 2013-12-18 10:15:31 +0100
catalogue-license gpl
catalogue-version 4.8.3
name cjk-ko
category Package
-revision 30106
+revision 32342
shortdesc Extension of the CJK package for Korean typesetting.
longdesc The package supports typesetting UTF-8-encoded modern Korean
longdesc documents with the help of the LaTeX2e CJK package. The package
longdesc requires nanumtype1 fonts.
-docfiles size=40
+docfiles size=41
texmf-dist/doc/latex/cjk-ko/ChangeLog
texmf-dist/doc/latex/cjk-ko/README details="Readme"
texmf-dist/doc/latex/cjk-ko/cjk-ko-doc.pdf details="Package documentation (Korean)" language="ko"
texmf-dist/doc/latex/cjk-ko/cjk-ko-doc.tex
-runfiles size=10
+runfiles size=11
texmf-dist/tex/latex/cjk-ko/cjkutf8-josa.sty
texmf-dist/tex/latex/cjk-ko/cjkutf8-ko.sty
texmf-dist/tex/latex/cjk-ko/cjkutf8-nanummjhanja.sty
@@ -32027,9 +35744,9 @@ runfiles size=10
texmf-dist/tex/latex/cjk-ko/konames-utf.sty
texmf-dist/tex/latex/cjk-ko/kotex.sty
catalogue-ctan /language/korean/cjk-ko
-catalogue-date 2013-04-25 18:30:27 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license other-free
-catalogue-version 1.1
+catalogue-version 1.3
name cjkpunct
category Package
@@ -32052,13 +35769,13 @@ srcfiles size=6
runfiles size=4
texmf-dist/tex/latex/cjkpunct/CJKpunct.sty
catalogue-ctan /language/chinese/cjkpunct
-catalogue-date 2012-06-22 12:24:33 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 4.8.1-2
name cjkutils
category TLCore
-revision 29764
+revision 33736
depend cjkutils.ARCH
docfiles size=138
texmf-dist/doc/bg5conv/bg5conv.pdf
@@ -32102,7 +35819,7 @@ runfiles size=16
name cjkutils.alpha-linux
category TLCore
-revision 29891
+revision 33553
shortdesc alpha-linux files of cjkutils
binfiles arch=alpha-linux size=59
bin/alpha-linux/bg5+latex
@@ -32129,7 +35846,7 @@ binfiles arch=alpha-linux size=59
name cjkutils.amd64-freebsd
category TLCore
-revision 29874
+revision 33488
shortdesc amd64-freebsd files of cjkutils
binfiles arch=amd64-freebsd size=50
bin/amd64-freebsd/bg5+latex
@@ -32156,7 +35873,7 @@ binfiles arch=amd64-freebsd size=50
name cjkutils.amd64-kfreebsd
category TLCore
-revision 30655
+revision 33864
shortdesc amd64-kfreebsd files of cjkutils
binfiles arch=amd64-kfreebsd size=50
bin/amd64-kfreebsd/bg5+latex
@@ -32183,7 +35900,7 @@ binfiles arch=amd64-kfreebsd size=50
name cjkutils.amd64-netbsd
category TLCore
-revision 30660
+revision 33726
shortdesc amd64-netbsd files of cjkutils
binfiles arch=amd64-netbsd size=50
bin/amd64-netbsd/bg5+latex
@@ -32210,7 +35927,7 @@ binfiles arch=amd64-netbsd size=50
name cjkutils.armel-linux
category TLCore
-revision 29888
+revision 33916
shortdesc armel-linux files of cjkutils
binfiles arch=armel-linux size=45
bin/armel-linux/bg5+latex
@@ -32237,7 +35954,7 @@ binfiles arch=armel-linux size=45
name cjkutils.armhf-linux
category TLCore
-revision 30443
+revision 34125
shortdesc armhf-linux files of cjkutils
binfiles arch=armhf-linux size=44
bin/armhf-linux/bg5+latex
@@ -32264,9 +35981,9 @@ binfiles arch=armhf-linux size=44
name cjkutils.i386-cygwin
category TLCore
-revision 30526
+revision 34161
shortdesc i386-cygwin files of cjkutils
-binfiles arch=i386-cygwin size=48
+binfiles arch=i386-cygwin size=58
bin/i386-cygwin/bg5+latex
bin/i386-cygwin/bg5+pdflatex
bin/i386-cygwin/bg5conv.exe
@@ -32291,7 +36008,7 @@ binfiles arch=i386-cygwin size=48
name cjkutils.i386-freebsd
category TLCore
-revision 29874
+revision 33488
shortdesc i386-freebsd files of cjkutils
binfiles arch=i386-freebsd size=46
bin/i386-freebsd/bg5+latex
@@ -32318,7 +36035,7 @@ binfiles arch=i386-freebsd size=46
name cjkutils.i386-kfreebsd
category TLCore
-revision 30440
+revision 33864
shortdesc i386-kfreebsd files of cjkutils
binfiles arch=i386-kfreebsd size=47
bin/i386-kfreebsd/bg5+latex
@@ -32345,9 +36062,9 @@ binfiles arch=i386-kfreebsd size=47
name cjkutils.i386-linux
category TLCore
-revision 30088
+revision 33479
shortdesc i386-linux files of cjkutils
-binfiles arch=i386-linux size=47
+binfiles arch=i386-linux size=49
bin/i386-linux/bg5+latex
bin/i386-linux/bg5+pdflatex
bin/i386-linux/bg5conv
@@ -32372,7 +36089,7 @@ binfiles arch=i386-linux size=47
name cjkutils.i386-netbsd
category TLCore
-revision 30191
+revision 33562
shortdesc i386-netbsd files of cjkutils
binfiles arch=i386-netbsd size=47
bin/i386-netbsd/bg5+latex
@@ -32399,7 +36116,7 @@ binfiles arch=i386-netbsd size=47
name cjkutils.i386-solaris
category TLCore
-revision 30112
+revision 34203
shortdesc i386-solaris files of cjkutils
binfiles arch=i386-solaris size=53
bin/i386-solaris/bg5+latex
@@ -32424,38 +36141,11 @@ binfiles arch=i386-solaris size=53
bin/i386-solaris/sjislatex
bin/i386-solaris/sjispdflatex
-name cjkutils.mips-irix
-category TLCore
-revision 30131
-shortdesc mips-irix files of cjkutils
-binfiles arch=mips-irix size=100
- 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
-
name cjkutils.mipsel-linux
category TLCore
-revision 29995
+revision 33811
shortdesc mipsel-linux files of cjkutils
-binfiles arch=mipsel-linux size=56
+binfiles arch=mipsel-linux size=50
bin/mipsel-linux/bg5+latex
bin/mipsel-linux/bg5+pdflatex
bin/mipsel-linux/bg5conv
@@ -32480,9 +36170,9 @@ binfiles arch=mipsel-linux size=56
name cjkutils.powerpc-linux
category TLCore
-revision 30114
+revision 33889
shortdesc powerpc-linux files of cjkutils
-binfiles arch=powerpc-linux size=51
+binfiles arch=powerpc-linux size=50
bin/powerpc-linux/bg5+latex
bin/powerpc-linux/bg5+pdflatex
bin/powerpc-linux/bg5conv
@@ -32507,7 +36197,7 @@ binfiles arch=powerpc-linux size=51
name cjkutils.sparc-solaris
category TLCore
-revision 29877
+revision 33871
shortdesc sparc-solaris files of cjkutils
binfiles arch=sparc-solaris size=51
bin/sparc-solaris/bg5+latex
@@ -32534,7 +36224,7 @@ binfiles arch=sparc-solaris size=51
name cjkutils.universal-darwin
category TLCore
-revision 30764
+revision 34201
shortdesc universal-darwin files of cjkutils
binfiles arch=universal-darwin size=113
bin/universal-darwin/bg5+latex
@@ -32561,9 +36251,9 @@ binfiles arch=universal-darwin size=113
name cjkutils.win32
category TLCore
-revision 29816
+revision 33897
shortdesc win32 files of cjkutils
-binfiles arch=win32 size=40
+binfiles arch=win32 size=56
bin/win32/bg5conv.exe
bin/win32/bg5latex.exe
bin/win32/bg5pdflatex.exe
@@ -32584,9 +36274,36 @@ binfiles arch=win32 size=40
bin/win32/sjislatex.exe
bin/win32/sjispdflatex.exe
+name cjkutils.x86_64-cygwin
+category TLCore
+revision 34161
+shortdesc x86_64-cygwin files of cjkutils
+binfiles arch=x86_64-cygwin size=56
+ bin/x86_64-cygwin/bg5+latex
+ bin/x86_64-cygwin/bg5+pdflatex
+ bin/x86_64-cygwin/bg5conv.exe
+ bin/x86_64-cygwin/bg5latex
+ bin/x86_64-cygwin/bg5pdflatex
+ bin/x86_64-cygwin/cef5conv.exe
+ bin/x86_64-cygwin/cef5latex
+ bin/x86_64-cygwin/cef5pdflatex
+ bin/x86_64-cygwin/cefconv.exe
+ bin/x86_64-cygwin/ceflatex
+ bin/x86_64-cygwin/cefpdflatex
+ bin/x86_64-cygwin/cefsconv.exe
+ bin/x86_64-cygwin/cefslatex
+ bin/x86_64-cygwin/cefspdflatex
+ bin/x86_64-cygwin/extconv.exe
+ bin/x86_64-cygwin/gbklatex
+ bin/x86_64-cygwin/gbkpdflatex
+ bin/x86_64-cygwin/hbf2gf.exe
+ bin/x86_64-cygwin/sjisconv.exe
+ bin/x86_64-cygwin/sjislatex
+ bin/x86_64-cygwin/sjispdflatex
+
name cjkutils.x86_64-darwin
category TLCore
-revision 29879
+revision 34201
shortdesc x86_64-darwin files of cjkutils
binfiles arch=x86_64-darwin size=60
bin/x86_64-darwin/bg5+latex
@@ -32613,9 +36330,9 @@ binfiles arch=x86_64-darwin size=60
name cjkutils.x86_64-linux
category TLCore
-revision 30204
+revision 33723
shortdesc x86_64-linux files of cjkutils
-binfiles arch=x86_64-linux size=50
+binfiles arch=x86_64-linux size=51
bin/x86_64-linux/bg5+latex
bin/x86_64-linux/bg5+pdflatex
bin/x86_64-linux/bg5conv
@@ -32640,7 +36357,7 @@ binfiles arch=x86_64-linux size=50
name cjkutils.x86_64-solaris
category TLCore
-revision 30112
+revision 34203
shortdesc x86_64-solaris files of cjkutils
binfiles arch=x86_64-solaris size=59
bin/x86_64-solaris/bg5+latex
@@ -32681,7 +36398,7 @@ docfiles size=55
runfiles size=1
texmf-dist/tex/latex/classics/classics.sty
catalogue-ctan /macros/latex/contrib/classics
-catalogue-date 2013-02-05 09:56:15 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 0.1
@@ -32740,6 +36457,179 @@ catalogue-date 2012-08-15 13:45:23 +0200
catalogue-license gpl
catalogue-version 4.1
+name classpack
+category Package
+revision 33101
+shortdesc XML mastering for LaTeX classes and packages.
+longdesc The package provides an experiment in using XML (specifically
+longdesc DocBook 5) to mark up and maintain LaTeX classes and packages.
+longdesc XSLT 2 styleheets generate the .dtx and .ins distribution files
+longdesc expected by end users.
+docfiles size=158
+ texmf-dist/doc/support/classpack/MANIFEST
+ texmf-dist/doc/support/classpack/README details="Readme"
+ texmf-dist/doc/support/classpack/classpack.pdf details="Package documentation"
+ texmf-dist/doc/support/classpack/db2bibtex.xsl
+ texmf-dist/doc/support/classpack/db2dtx.xsl
+ texmf-dist/doc/support/classpack/db2plaintext.xsl
+ texmf-dist/doc/support/classpack/decommentbbl.awk
+ texmf-dist/doc/support/classpack/doctexbook.dtd
+ texmf-dist/doc/support/classpack/getgis.sh
+ texmf-dist/doc/support/classpack/lppl.xml
+ texmf-dist/doc/support/classpack/prepost.xml
+ texmf-dist/doc/support/classpack/readme.xml
+ texmf-dist/doc/support/classpack/test.sh
+srcfiles size=33
+ texmf-dist/source/support/classpack/classpack.dtx
+ texmf-dist/source/support/classpack/classpack.ins
+runfiles size=1
+ texmf-dist/tex/latex/classpack/classpack.sty
+catalogue-ctan /support/classpack
+catalogue-date 2014-03-06 12:57:31 +0100
+catalogue-license lppl1.3
+catalogue-version 0.77
+
+name clearsans
+category Package
+revision 33207
+shortdesc Clear Sans fonts with LaTeX support.
+longdesc Clear Sans was designed by Daniel Ratighan at Monotype under
+longdesc the direction of the User Experience team at Intel's Open
+longdesc Source Technology Center. Clear Sans is available in three
+longdesc weights (regular, medium, and bold) with corresponding italics,
+longdesc plus light and thin upright (without italics). Clear Sans has
+longdesc minimized, unambiguous characters and slightly narrow
+longdesc proportions, making it ideal for UI design. Its strong,
+longdesc recognizable forms avoid distracting ambiguity, making Clear
+longdesc Sans comfortable for reading short UI labels and long passages
+longdesc in both screen and print. The fonts are available in both
+longdesc TrueType and Type 1 formats.
+execute addMap ClearSans.map
+docfiles size=58
+ texmf-dist/doc/fonts/clearsans/LICENSE-2.0.txt
+ texmf-dist/doc/fonts/clearsans/README details="Readme"
+ texmf-dist/doc/fonts/clearsans/clear-samples.pdf
+ texmf-dist/doc/fonts/clearsans/clear-samples.tex
+ texmf-dist/doc/fonts/clearsans/clearsans.png
+runfiles size=970
+ texmf-dist/fonts/enc/dvips/clearsans/clr_er7w2x.enc
+ texmf-dist/fonts/enc/dvips/clearsans/clr_nrghxx.enc
+ texmf-dist/fonts/enc/dvips/clearsans/clr_y7ge35.enc
+ texmf-dist/fonts/enc/dvips/clearsans/clr_zjpm5y.enc
+ texmf-dist/fonts/map/dvips/clearsans/ClearSans.map
+ texmf-dist/fonts/tfm/intel/clearsans/ClearSans-Bold-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/intel/clearsans/ClearSans-Bold-lf-ly1.tfm
+ texmf-dist/fonts/tfm/intel/clearsans/ClearSans-Bold-lf-ot1.tfm
+ texmf-dist/fonts/tfm/intel/clearsans/ClearSans-Bold-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/intel/clearsans/ClearSans-Bold-lf-t1.tfm
+ texmf-dist/fonts/tfm/intel/clearsans/ClearSans-Bold-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/intel/clearsans/ClearSans-Bold-lf-ts1.tfm
+ texmf-dist/fonts/tfm/intel/clearsans/ClearSans-BoldItalic-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/intel/clearsans/ClearSans-BoldItalic-lf-ly1.tfm
+ texmf-dist/fonts/tfm/intel/clearsans/ClearSans-BoldItalic-lf-ot1.tfm
+ texmf-dist/fonts/tfm/intel/clearsans/ClearSans-BoldItalic-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/intel/clearsans/ClearSans-BoldItalic-lf-t1.tfm
+ texmf-dist/fonts/tfm/intel/clearsans/ClearSans-BoldItalic-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/intel/clearsans/ClearSans-BoldItalic-lf-ts1.tfm
+ texmf-dist/fonts/tfm/intel/clearsans/ClearSans-Italic-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/intel/clearsans/ClearSans-Italic-lf-ly1.tfm
+ texmf-dist/fonts/tfm/intel/clearsans/ClearSans-Italic-lf-ot1.tfm
+ texmf-dist/fonts/tfm/intel/clearsans/ClearSans-Italic-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/intel/clearsans/ClearSans-Italic-lf-t1.tfm
+ texmf-dist/fonts/tfm/intel/clearsans/ClearSans-Italic-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/intel/clearsans/ClearSans-Italic-lf-ts1.tfm
+ texmf-dist/fonts/tfm/intel/clearsans/ClearSans-Light-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/intel/clearsans/ClearSans-Light-lf-ly1.tfm
+ texmf-dist/fonts/tfm/intel/clearsans/ClearSans-Light-lf-ot1.tfm
+ texmf-dist/fonts/tfm/intel/clearsans/ClearSans-Light-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/intel/clearsans/ClearSans-Light-lf-t1.tfm
+ texmf-dist/fonts/tfm/intel/clearsans/ClearSans-Light-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/intel/clearsans/ClearSans-Light-lf-ts1.tfm
+ texmf-dist/fonts/tfm/intel/clearsans/ClearSans-Medium-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/intel/clearsans/ClearSans-Medium-lf-ly1.tfm
+ texmf-dist/fonts/tfm/intel/clearsans/ClearSans-Medium-lf-ot1.tfm
+ texmf-dist/fonts/tfm/intel/clearsans/ClearSans-Medium-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/intel/clearsans/ClearSans-Medium-lf-t1.tfm
+ texmf-dist/fonts/tfm/intel/clearsans/ClearSans-Medium-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/intel/clearsans/ClearSans-Medium-lf-ts1.tfm
+ texmf-dist/fonts/tfm/intel/clearsans/ClearSans-MediumItalic-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/intel/clearsans/ClearSans-MediumItalic-lf-ly1.tfm
+ texmf-dist/fonts/tfm/intel/clearsans/ClearSans-MediumItalic-lf-ot1.tfm
+ texmf-dist/fonts/tfm/intel/clearsans/ClearSans-MediumItalic-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/intel/clearsans/ClearSans-MediumItalic-lf-t1.tfm
+ texmf-dist/fonts/tfm/intel/clearsans/ClearSans-MediumItalic-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/intel/clearsans/ClearSans-MediumItalic-lf-ts1.tfm
+ texmf-dist/fonts/tfm/intel/clearsans/ClearSans-Thin-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/intel/clearsans/ClearSans-Thin-lf-ly1.tfm
+ texmf-dist/fonts/tfm/intel/clearsans/ClearSans-Thin-lf-ot1.tfm
+ texmf-dist/fonts/tfm/intel/clearsans/ClearSans-Thin-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/intel/clearsans/ClearSans-Thin-lf-t1.tfm
+ texmf-dist/fonts/tfm/intel/clearsans/ClearSans-Thin-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/intel/clearsans/ClearSans-Thin-lf-ts1.tfm
+ texmf-dist/fonts/tfm/intel/clearsans/ClearSans-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/intel/clearsans/ClearSans-lf-ly1.tfm
+ texmf-dist/fonts/tfm/intel/clearsans/ClearSans-lf-ot1.tfm
+ texmf-dist/fonts/tfm/intel/clearsans/ClearSans-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/intel/clearsans/ClearSans-lf-t1.tfm
+ texmf-dist/fonts/tfm/intel/clearsans/ClearSans-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/intel/clearsans/ClearSans-lf-ts1.tfm
+ texmf-dist/fonts/truetype/intel/clearsans/ClearSans-Bold.ttf
+ texmf-dist/fonts/truetype/intel/clearsans/ClearSans-BoldItalic.ttf
+ texmf-dist/fonts/truetype/intel/clearsans/ClearSans-Italic.ttf
+ texmf-dist/fonts/truetype/intel/clearsans/ClearSans-Light.ttf
+ texmf-dist/fonts/truetype/intel/clearsans/ClearSans-Medium.ttf
+ texmf-dist/fonts/truetype/intel/clearsans/ClearSans-MediumItalic.ttf
+ texmf-dist/fonts/truetype/intel/clearsans/ClearSans-Regular.ttf
+ texmf-dist/fonts/truetype/intel/clearsans/ClearSans-Thin.ttf
+ texmf-dist/fonts/type1/intel/clearsans/ClearSans-Bold.pfb
+ texmf-dist/fonts/type1/intel/clearsans/ClearSans-BoldItalic.pfb
+ texmf-dist/fonts/type1/intel/clearsans/ClearSans-Italic.pfb
+ texmf-dist/fonts/type1/intel/clearsans/ClearSans-Light.pfb
+ texmf-dist/fonts/type1/intel/clearsans/ClearSans-Medium.pfb
+ texmf-dist/fonts/type1/intel/clearsans/ClearSans-MediumItalic.pfb
+ texmf-dist/fonts/type1/intel/clearsans/ClearSans-Regular.pfb
+ texmf-dist/fonts/type1/intel/clearsans/ClearSans-Thin.pfb
+ texmf-dist/fonts/vf/intel/clearsans/ClearSans-Bold-lf-ly1.vf
+ texmf-dist/fonts/vf/intel/clearsans/ClearSans-Bold-lf-t1.vf
+ texmf-dist/fonts/vf/intel/clearsans/ClearSans-Bold-lf-ts1.vf
+ texmf-dist/fonts/vf/intel/clearsans/ClearSans-BoldItalic-lf-ly1.vf
+ texmf-dist/fonts/vf/intel/clearsans/ClearSans-BoldItalic-lf-t1.vf
+ texmf-dist/fonts/vf/intel/clearsans/ClearSans-BoldItalic-lf-ts1.vf
+ texmf-dist/fonts/vf/intel/clearsans/ClearSans-Italic-lf-ly1.vf
+ texmf-dist/fonts/vf/intel/clearsans/ClearSans-Italic-lf-t1.vf
+ texmf-dist/fonts/vf/intel/clearsans/ClearSans-Italic-lf-ts1.vf
+ texmf-dist/fonts/vf/intel/clearsans/ClearSans-Light-lf-ly1.vf
+ texmf-dist/fonts/vf/intel/clearsans/ClearSans-Light-lf-t1.vf
+ texmf-dist/fonts/vf/intel/clearsans/ClearSans-Light-lf-ts1.vf
+ texmf-dist/fonts/vf/intel/clearsans/ClearSans-Medium-lf-ly1.vf
+ texmf-dist/fonts/vf/intel/clearsans/ClearSans-Medium-lf-t1.vf
+ texmf-dist/fonts/vf/intel/clearsans/ClearSans-Medium-lf-ts1.vf
+ texmf-dist/fonts/vf/intel/clearsans/ClearSans-MediumItalic-lf-ly1.vf
+ texmf-dist/fonts/vf/intel/clearsans/ClearSans-MediumItalic-lf-t1.vf
+ texmf-dist/fonts/vf/intel/clearsans/ClearSans-MediumItalic-lf-ts1.vf
+ texmf-dist/fonts/vf/intel/clearsans/ClearSans-Thin-lf-ly1.vf
+ texmf-dist/fonts/vf/intel/clearsans/ClearSans-Thin-lf-t1.vf
+ texmf-dist/fonts/vf/intel/clearsans/ClearSans-Thin-lf-ts1.vf
+ texmf-dist/fonts/vf/intel/clearsans/ClearSans-lf-ly1.vf
+ texmf-dist/fonts/vf/intel/clearsans/ClearSans-lf-t1.vf
+ texmf-dist/fonts/vf/intel/clearsans/ClearSans-lf-ts1.vf
+ texmf-dist/tex/latex/clearsans/ClearSans.sty
+ texmf-dist/tex/latex/clearsans/LY1ClearSans-LF.fd
+ texmf-dist/tex/latex/clearsans/LY1ClearSansLight-LF.fd
+ texmf-dist/tex/latex/clearsans/LY1ClearSansThin-LF.fd
+ texmf-dist/tex/latex/clearsans/OT1ClearSans-LF.fd
+ texmf-dist/tex/latex/clearsans/OT1ClearSansLight-LF.fd
+ texmf-dist/tex/latex/clearsans/OT1ClearSansThin-LF.fd
+ texmf-dist/tex/latex/clearsans/T1ClearSans-LF.fd
+ texmf-dist/tex/latex/clearsans/T1ClearSansLight-LF.fd
+ texmf-dist/tex/latex/clearsans/T1ClearSansThin-LF.fd
+ texmf-dist/tex/latex/clearsans/TS1ClearSans-LF.fd
+ texmf-dist/tex/latex/clearsans/TS1ClearSansLight-LF.fd
+ texmf-dist/tex/latex/clearsans/TS1ClearSansThin-LF.fd
+catalogue-ctan /fonts/clearsans
+catalogue-date 2014-04-09 15:04:56 +0200
+catalogue-license apache2
+
name clefval
category Package
revision 16549
@@ -32775,7 +36665,7 @@ catalogue-version 0
name cleveref
category Package
-revision 29503
+revision 32513
shortdesc Intelligent cross-referencing.
longdesc The package enhances LaTeX's cross-referencing features,
longdesc allowing the format of references to be determined
@@ -32788,18 +36678,18 @@ longdesc also offers a means of referencing a list of references, each
longdesc formatted according to its type. In such lists, it can collapse
longdesc sequences of numerically-consecutive labels to a reference
longdesc range.
-docfiles size=94
+docfiles size=95
texmf-dist/doc/latex/cleveref/README details="Readme"
texmf-dist/doc/latex/cleveref/cleveref.pdf details="Package documentation"
-srcfiles size=136
+srcfiles size=140
texmf-dist/source/latex/cleveref/cleveref.dtx
texmf-dist/source/latex/cleveref/cleveref.ins
-runfiles size=82
+runfiles size=83
texmf-dist/tex/latex/cleveref/cleveref.sty
catalogue-ctan /macros/latex/contrib/cleveref
-catalogue-date 2013-03-24 16:33:18 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
-catalogue-version 0.18.9
+catalogue-version 0.19
name clipboard
category Package
@@ -32815,7 +36705,7 @@ docfiles size=14
runfiles size=1
texmf-dist/tex/latex/clipboard/clipboard.sty
catalogue-ctan /macros/latex/contrib/clipboard
-catalogue-date 2013-01-26 20:33:05 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 0.2
@@ -32868,7 +36758,7 @@ catalogue-version 1.7
name cm
category Package
-revision 29581
+revision 32865
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,
@@ -32884,9 +36774,8 @@ execute addMixedMap cmtext-bsr-interpolated.map
docfiles size=2
texmf-dist/doc/fonts/cm/README
texmf-dist/doc/fonts/cm/README-cmps.txt
-runfiles size=353
+runfiles size=350
texmf-dist/fonts/map/dvips/cm/cmtext-bsr-interpolated.map
- texmf-dist/fonts/pk/ljfour/public/cm/dpi600/black.pk
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
@@ -32901,7 +36790,6 @@ runfiles size=353
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/dpi600/gray.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
@@ -33102,7 +36990,7 @@ runfiles size=353
texmf-dist/fonts/tfm/public/cm/cmu10.tfm
texmf-dist/fonts/tfm/public/cm/cmvtt10.tfm
catalogue-ctan /fonts/cm
-catalogue-date 2012-06-26 21:09:43 +0200
+catalogue-date 2014-04-24 00:33:23 +0200
catalogue-license knuth
name cm-lgc
@@ -33781,13 +37669,12 @@ name cm-super
category Package
revision 15878
shortdesc CM-Super family of fonts
-longdesc CM-Super family of fonts are Adobe Type 1 fonts that replace
+longdesc The CM-Super family provides Adobe Type 1 fonts that replace
longdesc the T1/TS1-encoded Computer Modern (EC/TC), T1/TS1-encoded
-longdesc Concrete, T1/TS1-encoded CM bright and LH fonts (thus
-longdesc supporting all European languages except Greek, and Cyrillic-
-longdesc based languages), and bringing many ameliorations in
-longdesc typesetting quality. The fonts exhibit the same metrics as the
-longdesc Metafont-encoded originals.
+longdesc Concrete, T1/TS1-encoded CM bright and LH Cyrillic fonts (thus
+longdesc supporting all European languages except Greek), and bringing
+longdesc many ameliorations in typesetting quality. The fonts exhibit
+longdesc the same metrics as the Metafont-encoded originals.
execute addMixedMap cm-super-t1.map
execute addMixedMap cm-super-t2a.map
execute addMixedMap cm-super-t2b.map
@@ -34644,23 +38531,23 @@ runfiles size=17068
texmf-dist/fonts/type1/public/cm-super/sfxc3583.pfb
texmf-dist/tex/latex/cm-super/type1ec.sty
catalogue-ctan /fonts/ps-type1/cm-super
-catalogue-date 2012-11-29 15:56:16 +0100
+catalogue-date 2014-04-09 18:30:08 +0200
catalogue-license gpl
name cm-unicode
category Package
revision 19445
shortdesc Computer Modern Unicode font family.
-longdesc Computer Modern Unicode fonts were converted from Metafont
-longdesc sources using mftrace with autotrace backend and fontforge.
-longdesc Some characters in several fonts are copied from Blue Sky type
-longdesc 1 fonts released by AMS. Currently the fonts contain glyphs
-longdesc from Latin (Metafont ec, tc, vnr), Cyrillic (lh), Greek
-longdesc (cbgreek when available) code sets and IPA extensions (from
-longdesc tipa). This font set contains 33 fonts. This archive contains
-longdesc AFM, PFB and OTF versions; the OTF version of the Computer
-longdesc Modern Unicode fonts works with TeX engines that directly
-longdesc support OpenType features, such as XeTeX and LuaTeX.
+longdesc Computer Modern Unicode fonts, converted from Metafont sources
+longdesc using mftrace with autotrace backend and fontforge. Some
+longdesc characters in several fonts are copied from Blue Sky type 1
+longdesc fonts released by AMS. Currently the fonts contain glyphs from
+longdesc Latin (Metafont ec, tc, vnr), Cyrillic (lh), Greek (cbgreek
+longdesc when available) code sets and IPA extensions (from tipa). This
+longdesc font set contains 33 fonts. This archive contains AFM, PFB and
+longdesc OTF versions; the OTF version of the Computer Modern Unicode
+longdesc fonts works with TeX engines that directly support OpenType
+longdesc features, such as XeTeX and LuaTeX.
docfiles size=292
texmf-dist/doc/fonts/cm-unicode/Changes
texmf-dist/doc/fonts/cm-unicode/FAQ
@@ -34795,13 +38682,13 @@ runfiles size=6942
texmf-dist/fonts/type1/public/cm-unicode/cmunvi.pfb
texmf-dist/fonts/type1/public/cm-unicode/cmunvt.pfb
catalogue-ctan /fonts/cm-unicode
-catalogue-date 2012-12-05 12:45:43 +0100
+catalogue-date 2014-04-24 00:33:23 +0200
catalogue-license ofl
catalogue-version 0.7.0
name cmap
category Package
-revision 29849
+revision 31477
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
@@ -34887,8 +38774,8 @@ 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).
+longdesc part of the set), and in the hfbright package (the OT1 encoded
+longdesc part, and the maths fonts).
docfiles size=27
texmf-dist/doc/fonts/cmbright/LICENSE
texmf-dist/doc/fonts/cmbright/README details="Readme"
@@ -35075,7 +38962,7 @@ runfiles size=337
texmf-dist/tex/latex/cmbright/ts1cmbr.fd
texmf-dist/tex/latex/cmbright/ts1cmtl.fd
catalogue-ctan /fonts/cmbright
-catalogue-date 2012-07-05 14:57:44 +0200
+catalogue-date 2014-04-09 15:04:56 +0200
catalogue-license lppl
catalogue-version 8.1
@@ -35840,7 +39727,7 @@ runfiles size=979
texmf-dist/fonts/vf/public/cmcyr/ycmtt9.vf
texmf-dist/fonts/vf/public/cmcyr/ycmu10.vf
catalogue-ctan /fonts/cyrillic/cmcyr
-catalogue-date 2012-03-02 14:16:16 +0100
+catalogue-date 2014-04-09 15:04:56 +0200
catalogue-license pd
name cmdstring
@@ -35856,7 +39743,7 @@ docfiles size=90
runfiles size=1
texmf-dist/tex/latex/cmdstring/cmdstring.sty
catalogue-ctan /macros/latex/contrib/cmdstring
-catalogue-date 2012-06-26 00:41:30 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.1
@@ -35870,8 +39757,8 @@ longdesc After the package is loaded in the preamble of a document, all
longdesc \newcommand (and similar command definitions) 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 command usage
-longdesc will be printed in the TeX log, for example: - "mdash was used
-longdesc on line 25"; - "ndash was never used".
+longdesc will be printed in the TeX log, for example: "mdash was used on
+longdesc line 25"; "ndash was never used".
docfiles size=34
texmf-dist/doc/latex/cmdtrack/Makefile
texmf-dist/doc/latex/cmdtrack/README
@@ -35882,13 +39769,19 @@ srcfiles size=5
runfiles size=2
texmf-dist/tex/latex/cmdtrack/cmdtrack.sty
catalogue-ctan /macros/latex/contrib/cmdtrack
-catalogue-date 2013-01-23 17:34:31 +0100
+catalogue-date 2013-12-16 13:26:17 +0100
catalogue-license lppl1
name cmextra
category Package
-revision 14075
-runfiles size=27
+revision 32831
+catalogue knuth-local
+shortdesc Knuth's local information.
+longdesc A collection of experimental programs and developments based
+longdesc on, or complementary to, the matter in his distribution
+longdesc directories.
+runfiles size=58
+ texmf-dist/fonts/source/public/cmextra/bible12.mf
texmf-dist/fonts/source/public/cmextra/cmbxcd10.mf
texmf-dist/fonts/source/public/cmextra/cmbxti12.mf
texmf-dist/fonts/source/public/cmextra/cmbxti7.mf
@@ -35896,12 +39789,23 @@ runfiles size=27
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/cmman.mf
+ texmf-dist/fonts/source/public/cmextra/cmntex10.mf
+ texmf-dist/fonts/source/public/cmextra/cmntt10.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/cmsytt10.mf
+ texmf-dist/fonts/source/public/cmextra/cmtim.mf
texmf-dist/fonts/source/public/cmextra/cmvtti10.mf
+ texmf-dist/fonts/source/public/cmextra/diam12.mf
+ texmf-dist/fonts/source/public/cmextra/gen.mf
+ texmf-dist/fonts/source/public/cmextra/gen10.mf
+ texmf-dist/fonts/source/public/cmextra/gen8.mf
+ texmf-dist/fonts/source/public/cmextra/gen9.mf
+ texmf-dist/fonts/tfm/public/cmextra/bible12.tfm
texmf-dist/fonts/tfm/public/cmextra/cmbxcd10.tfm
texmf-dist/fonts/tfm/public/cmextra/cmbxti12.tfm
texmf-dist/fonts/tfm/public/cmextra/cmbxti7.tfm
@@ -35909,12 +39813,24 @@ runfiles size=27
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/cmman.tfm
+ texmf-dist/fonts/tfm/public/cmextra/cmntex10.tfm
+ texmf-dist/fonts/tfm/public/cmextra/cmntt10.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/cmsytt10.tfm
+ texmf-dist/fonts/tfm/public/cmextra/cmtim.tfm
texmf-dist/fonts/tfm/public/cmextra/cmvtti10.tfm
+ texmf-dist/fonts/tfm/public/cmextra/diam12.tfm
+ texmf-dist/fonts/tfm/public/cmextra/gen10.tfm
+ texmf-dist/fonts/tfm/public/cmextra/gen8.tfm
+ texmf-dist/fonts/tfm/public/cmextra/gen9.tfm
+catalogue-ctan /systems/knuth/local
+catalogue-date 2014-02-26 23:03:13 +0100
+catalogue-license knuth
name cmll
category Package
@@ -35925,7 +39841,7 @@ 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.
+longdesc support is provided.
execute addMixedMap cmll.map
docfiles size=28
texmf-dist/doc/fonts/cmll/README details="Readme"
@@ -36042,7 +39958,7 @@ runfiles size=191
texmf-dist/tex/latex/cmll/ucmllss.fd
texmf-dist/tex/latex/cmll/ueull.fd
catalogue-ctan /fonts/cmll
-catalogue-date 2012-06-26 00:41:30 +0200
+catalogue-date 2014-04-24 13:39:23 +0200
catalogue-license lppl
name cmpica
@@ -36067,12 +39983,12 @@ runfiles size=13
texmf-dist/fonts/tfm/public/cmpica/cmpicab.tfm
texmf-dist/fonts/tfm/public/cmpica/cmpicati.tfm
catalogue-ctan /fonts/cmpica
-catalogue-date 2012-06-26 21:09:43 +0200
+catalogue-date 2014-04-09 16:14:23 +0200
catalogue-license pd
name cmpj
category Package
-revision 28862
+revision 33275
shortdesc Style for the journal Condensed Matter Physics.
longdesc The package contains macros and some documentation for
longdesc typesetting papers for submission to the Condensed Matter
@@ -36093,9 +40009,9 @@ runfiles size=49
texmf-dist/tex/latex/cmpj/cmpj.sty
texmf-dist/tex/latex/cmpj/cmpj2.sty
catalogue-ctan /macros/latex/contrib/cmpj
-catalogue-date 2013-01-16 12:17:26 +0100
+catalogue-date 2014-03-24 19:05:19 +0100
catalogue-license lppl
-catalogue-version 2.03
+catalogue-version 2.05
name cmsd
category Package
@@ -36119,7 +40035,7 @@ runfiles size=3
texmf-dist/tex/latex/cmsd/t1cmsd.fd
texmf-dist/tex/latex/cmsd/ts1cmsd.fd
catalogue-ctan /macros/latex/contrib/cmsd
-catalogue-date 2012-06-28 20:25:49 +0200
+catalogue-date 2013-09-30 15:43:44 +0200
catalogue-license lppl
name cmtiup
@@ -36159,10 +40075,80 @@ runfiles size=23
texmf-dist/fonts/vf/public/cmtiup/cmtiup9.vf
texmf-dist/tex/latex/cmtiup/cmtiup.sty
catalogue-ctan /fonts/cm/cmtiup
-catalogue-date 2012-06-28 20:25:49 +0200
+catalogue-date 2014-04-24 00:33:23 +0200
catalogue-license lppl1.3
catalogue-version 1.3a
+name cnbwp
+category Package
+revision 32550
+shortdesc Typeset working papers of the Czech National Bank.
+longdesc The package supports proper formatting of Working Papers of the
+longdesc Czech National Bank (WP CNB). The package was developed for CNB
+longdesc but it is also intended for authors from outside CNB.
+docfiles size=246
+ texmf-dist/doc/latex/cnbwp/README details="Readme"
+ texmf-dist/doc/latex/cnbwp/biblio.tex
+ texmf-dist/doc/latex/cnbwp/cnbpaper.pdf
+ texmf-dist/doc/latex/cnbwp/cnbpaper.tex
+ texmf-dist/doc/latex/cnbwp/cnbsample.bib
+ texmf-dist/doc/latex/cnbwp/cnbwp-manual-cs.pdf
+ texmf-dist/doc/latex/cnbwp/cnbwp-manual-cs.tex
+ texmf-dist/doc/latex/cnbwp/cnbwp-manual-en.pdf
+ texmf-dist/doc/latex/cnbwp/cnbwp-manual-en.tex
+ texmf-dist/doc/latex/cnbwp/graph18.eps
+ texmf-dist/doc/latex/cnbwp/graph18.gif
+ texmf-dist/doc/latex/cnbwp/graph18.jpg
+ texmf-dist/doc/latex/cnbwp/graph18.pdf
+ texmf-dist/doc/latex/cnbwp/graph18.png
+ texmf-dist/doc/latex/cnbwp/numtable.tex
+ texmf-dist/doc/latex/cnbwp/widematrix.tex
+runfiles size=15
+ texmf-dist/bibtex/bst/cnbwp/abbrvcnb.bst
+ texmf-dist/makeindex/cnbwp/cnbindex.ist
+ texmf-dist/tex/latex/cnbwp/cnbwp-manual.sty
+ texmf-dist/tex/latex/cnbwp/cnbwp.cls
+ texmf-dist/tex/latex/cnbwp/cnbwpsizes.clo
+catalogue-ctan /macros/latex/contrib/cnbwp
+catalogue-date 2014-02-26 23:03:13 +0100
+catalogue-license lppl
+
+name cnltx
+category Package
+revision 32583
+shortdesc LaTeX tools and documenting facilities.
+longdesc This is a versatile bundle of packages and classes for
+longdesc consistent formatting of control sequences, package options,
+longdesc source code examples, and writing a package manual (including
+longdesc an index containing the explained control sequences, options,
+longdesc ldots). The bundle also provides several other small ideas of
+longdesc mine such as a mechansim for providing abbreviations etc. Not
+longdesc at least it provides a number of programming tools. The
+longdesc intention behind this bundle mainly is a selfish one:
+longdesc documenting my own packages. The bundle contains an index style
+longdesc file cnltx.ist that should be placed in a directory in a TDS
+longdesc makeindex directory.
+docfiles size=217
+ texmf-dist/doc/latex/cnltx/README details="Readme"
+ texmf-dist/doc/latex/cnltx/cnltx_en.pdf details="Package documentation"
+ texmf-dist/doc/latex/cnltx/cnltx_en.tex
+runfiles size=45
+ texmf-dist/bibtex/bib/cnltx/cnltx.bib
+ texmf-dist/makeindex/cnltx/cnltx.ist
+ texmf-dist/tex/latex/cnltx/cnltx-base.sty
+ texmf-dist/tex/latex/cnltx/cnltx-doc.cls
+ texmf-dist/tex/latex/cnltx/cnltx-example.sty
+ texmf-dist/tex/latex/cnltx/cnltx-listings.sty
+ texmf-dist/tex/latex/cnltx/cnltx-tools.sty
+ texmf-dist/tex/latex/cnltx/cnltx.bbx
+ texmf-dist/tex/latex/cnltx/cnltx.cbx
+ texmf-dist/tex/latex/cnltx/cnltx.dbx
+ texmf-dist/tex/latex/cnltx/cnltx.sty
+catalogue-ctan /macros/latex/contrib/cnltx
+catalogue-date 2014-02-26 23:03:13 +0100
+catalogue-license lppl1.3
+catalogue-version 0.9
+
name cns
category Package
revision 15878
@@ -36472,7 +40458,7 @@ docfiles size=187
runfiles size=12
texmf-dist/tex/latex/codedoc/codedoc.cls
catalogue-ctan /macros/latex/contrib/codedoc
-catalogue-date 2012-02-24 11:32:36 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 0.3
@@ -36524,7 +40510,7 @@ srcfiles size=6
runfiles size=1
texmf-dist/tex/latex/codicefiscaleitaliano/codicefiscaleitaliano.sty
catalogue-ctan /macros/latex/contrib/codicefiscaleitaliano
-catalogue-date 2012-05-14 18:00:00 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.2
@@ -36548,7 +40534,7 @@ srcfiles size=8
runfiles size=2
texmf-dist/tex/latex/collcell/collcell.sty
catalogue-ctan /macros/latex/contrib/collcell
-catalogue-date 2012-05-17 00:55:12 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 0.5
@@ -36575,13 +40561,13 @@ srcfiles size=9
runfiles size=3
texmf-dist/tex/latex/collectbox/collectbox.sty
catalogue-ctan /macros/latex/contrib/collectbox
-catalogue-date 2012-05-21 18:06:34 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 0.4b
name collection-basic
category Collection
-revision 30372
+revision 33040
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
@@ -36602,6 +40588,8 @@ depend hyph-utf8
depend hyphen-base
depend ifluatex
depend ifxetex
+depend knuth-lib
+depend knuth-local
depend kpathsea
depend lua-alt-getopt
depend luatex
@@ -36609,7 +40597,6 @@ depend makeindex
depend metafont
depend mflogo
depend mfware
-depend misc
depend pdftex
depend plain
depend tetex
@@ -36624,16 +40611,18 @@ depend xdvi
name collection-bibtexextra
category Collection
-revision 30511
+revision 34016
shortdesc BibTeX additional styles
longdesc Additional BibTeX styles and bibliography data(bases), notably
longdesc including BibLaTeX.
depend collection-latex
depend aichej
+depend ajl
depend amsrefs
depend apacite
depend apalike2
depend beebe
+depend besjournals
depend bibarts
depend biber
depend bibexport
@@ -36651,6 +40640,7 @@ depend biblatex-historian
depend biblatex-ieee
depend biblatex-juradiss
depend biblatex-luh-ipw
+depend biblatex-manuscripts-philology
depend biblatex-mla
depend biblatex-musuos
depend biblatex-nature
@@ -36659,8 +40649,10 @@ depend biblatex-philosophy
depend biblatex-phys
depend biblatex-publist
depend biblatex-science
+depend biblatex-source-division
depend biblatex-swiss-legal
depend biblatex-trad
+depend biblatex-true-citepages-omit
depend biblist
depend bibtopic
depend bibtopicprefix
@@ -36678,6 +40670,7 @@ depend custom-bib
depend din1505
depend dk-bib
depend doipubmed
+depend economic
depend fbs
depend figbib
depend footbib
@@ -36715,7 +40708,7 @@ depend xcite
name collection-binextra
category Collection
-revision 30307
+revision 33155
shortdesc TeX auxiliary programs
longdesc Various useful, but non-essential, support programs. Includes
longdesc programs and macros for DVI file manipulation, literate
@@ -36750,12 +40743,15 @@ depend fragmaster
depend hyphenex
depend installfont
depend lacheck
+depend latex-git-log
depend latex2man
depend latexdiff
depend latexfileversion
depend latexmk
depend latexpand
+depend latexindent
depend ltxfileinfo
+depend ltximg
depend listings-ext
depend match_parens
depend mkjobtexmf
@@ -36767,6 +40763,7 @@ depend pfarrei
depend pkfix
depend pkfix-helper
depend purifyeps
+depend pythontex
depend seetexk
depend sty2dtx
depend synctex
@@ -36775,6 +40772,7 @@ depend texdef
depend texdiff
depend texdirflatten
depend texdoc
+depend texfot
depend texliveonfly
depend texloganalyser
depend texware
@@ -36823,14 +40821,17 @@ depend context-vim
name collection-fontsextra
category Collection
-revision 30396
+revision 33961
shortdesc Additional fonts
depend collection-basic
depend Asana-Math
+depend accanthis
depend adforn
depend adfsymbols
depend aecc
+depend alegreya
depend allrunes
+depend anonymouspro
depend antiqua
depend antt
depend archaic
@@ -36844,6 +40845,7 @@ depend aurical
depend b1encoding
depend barcodes
depend baskervald
+depend baskervaldx
depend bbding
depend bbm
depend bbm-macros
@@ -36867,6 +40869,8 @@ depend carolmin-ps
depend ccicons
depend cfr-lm
depend cherokee
+depend cinzel
+depend clearsans
depend cm-lgc
depend cm-unicode
depend cmbright
@@ -36905,9 +40909,12 @@ depend esstix
depend esvect
depend eulervm
depend euxm
+depend fbb
depend fdsymbol
+depend fetamont
depend feyn
depend fge
+depend fira
depend foekfont
depend fonetika
depend fontawesome
@@ -36915,7 +40922,7 @@ depend fourier
depend fouriernc
depend frcursive
depend genealogy
-depend gentium
+depend gentium-tug
depend gfsartemisia
depend gfsbodoni
depend gfscomplutum
@@ -36923,12 +40930,14 @@ depend gfsdidot
depend gfsneohellenic
depend gfssolomos
depend gillcm
+depend gillius
depend gnu-freefont
depend gothic
depend greenpoint
depend grotesq
depend hacm
depend hands
+depend heuristica
depend hfbright
depend hfoldsty
depend ifsym
@@ -36947,8 +40956,10 @@ depend lato
depend lfb
depend libertine
depend librebaskerville
+depend librecaslon
depend libris
depend linearA
+depend lobster2
depend lxfonts
depend ly1
depend mathabx
@@ -36956,10 +40967,14 @@ depend mathabx-type1
depend mathdesign
depend mdputu
depend mdsymbol
+depend merriweather
+depend mintspirit
depend mnsymbol
depend newpx
depend newtx
+depend newtxtt
depend nkarta
+depend obnov
depend ocherokee
depend ocr-b
depend ocr-b-outline
@@ -36974,6 +40989,7 @@ depend paratype
depend phaistos
depend phonetic
depend pigpen
+depend playfair
depend poltawski
depend prodint
depend punk
@@ -37006,15 +41022,18 @@ depend trajan
depend txfontsb
depend umtypewriter
depend universa
+depend universalis
depend urwchancal
depend venturisadf
depend wsuipa
+depend xcharter
depend xits
depend yfonts
+depend zlmtt
name collection-fontsrecommended
category Collection
-revision 30307
+revision 32620
shortdesc Recommended fonts
longdesc Recommended fonts, including the base 35 PostScript fonts,
longdesc Latin Modern, TeX Gyre, and T1 and other encoding support for
@@ -37026,6 +41045,7 @@ depend charter
depend cm-super
depend cmextra
depend courier
+depend ec
depend euro
depend euro-ce
depend eurosym
@@ -37078,14 +41098,16 @@ depend ttfutils
name collection-formatsextra
category Collection
-revision 30396
+revision 33658
shortdesc Additional formats
longdesc Collected TeX `formats', i.e., large-scale macro packages
-longdesc designed to be dumped into .fmt files, other than most common
-longdesc ones, such as latex and context.
+longdesc designed to be dumped into .fmt files -- excluding the most
+longdesc common ones, such as latex and context, which have their own
+longdesc package(s).
depend collection-basic
depend edmac
depend eplain
+depend lollipop
depend mltex
depend psizzl
depend startex
@@ -37093,7 +41115,7 @@ depend texsis
name collection-games
category Collection
-revision 30530
+revision 33454
shortdesc Games typesetting
longdesc Setups for typesetting various games, including chess.
depend collection-latex
@@ -37110,11 +41132,14 @@ depend go
depend hanoi
depend hexgame
depend horoscop
+depend labyrinth
depend logicpuzzle
depend othello
depend othelloboard
+depend pas-crosswords
depend psgo
depend reverxii
+depend rubik
depend schwalbe-chess
depend sgame
depend skak
@@ -37126,7 +41151,7 @@ depend xskak
name collection-genericextra
category Collection
-revision 30396
+revision 33943
shortdesc Generic additional packages
longdesc Extra packages that work with multiple formats, typically both
longdesc TeX and LaTeX.
@@ -37142,6 +41167,7 @@ depend chronosys
depend colorsep
depend dinat
depend dirtree
+depend docbytex
depend dowith
depend eijkhout
depend encxvlna
@@ -37153,6 +41179,7 @@ depend gates
depend ifetex
depend iftex
depend insbox
+depend lambda-lists
depend langcode
depend lecturer
depend librarian
@@ -37189,12 +41216,13 @@ depend ulem
name collection-htmlxml
category Collection
-revision 30307
+revision 33101
shortdesc HTML/SGML/XML support
-longdesc Packages to convert LaTeX to XML/HTML, and typset XML/SGML
+longdesc Packages to convert LaTeX to XML/HTML, and typset XML/SGML.
depend collection-basic
depend collection-fontsrecommended
depend collection-latex
+depend classpack
depend jadetex
depend passivetex
depend tex4ht
@@ -37202,7 +41230,7 @@ depend xmltex
name collection-humanities
category Collection
-revision 30788
+revision 32323
shortdesc Humanities packages
longdesc Packages for law, linguistics, social sciences, humanities,
longdesc etc.
@@ -37221,6 +41249,7 @@ depend edfnotes
depend ednotes
depend eledform
depend eledmac
+depend expex
depend gb4e
depend gmverse
depend jura
@@ -37230,11 +41259,14 @@ depend jurarsp
depend ledmac
depend leipzig
depend lexikon
+depend lexref
depend lineno
depend linguex
depend liturg
+depend metrix
depend parallel
depend parrun
+depend phonrule
depend plari
depend play
depend poemscol
@@ -37247,6 +41279,7 @@ depend screenplay
depend sides
depend stage
depend textglos
+depend thalie
depend tree-dvips
depend verse
depend xyling
@@ -37264,7 +41297,7 @@ depend hyphen-ethiopic
name collection-langarabic
category Collection
-revision 30779
+revision 31684
shortdesc Arabic
longdesc Support for Arabic and Persian.
depend collection-basic
@@ -37279,66 +41312,52 @@ depend imsproc
depend lshort-persian
depend persian-bib
depend persian-modern
+depend simurgh
depend tram
-name collection-langcjk
+name collection-langchinese
category Collection
-revision 30661
-shortdesc Chinese/Japanese/Korean
-longdesc CJK (Chinese, Japanese, Korean) macros, fonts, documentation.
-longdesc Also Thai in the c90 encoding, since there is some overlap in
-longdesc those fonts. Standard Thai support is in collection-langother.
-depend collection-basic
-depend adobemapping
+revision 33790
+shortdesc Chinese
+longdesc Support for Chinese; additional packages in collection-langcjk.
+depend collection-langcjk
depend arphic
depend asymptote-by-example-zh-cn
depend asymptote-faq-zh-cn
depend asymptote-manual-zh-cn
-depend bxbase
-depend bxjscls
-depend c90
-depend cjk
-depend cjk-ko
-depend cjkpunct
-depend cjkutils
depend cns
-depend convbkmk
depend ctex
depend ctex-faq
-depend dnp
-depend garuda-c90
+depend fandol
depend hyphen-chinese
-depend ipaex
-depend japanese
-depend japanese-otf
-depend japanese-otf-uptex
-depend jfontmaps
-depend jsclasses
depend latex-notes-zh-cn
depend lshort-chinese
-depend lshort-japanese
-depend lshort-korean
-depend luatexja
-depend nanumtype1
-depend norasi-c90
-depend ptex
-depend ptex2pdf
-depend pxbase
-depend pxchfon
-depend pxcjkcat
-depend pxjahyper
-depend pxrubrica
depend texlive-zh-cn
-depend uhc
-depend uptex
-depend wadalab
depend xpinyin
depend zhmetrics
depend zhnumber
depend zhspacing
-depend zxjafbfont
+
+name collection-langcjk
+category Collection
+revision 34022
+shortdesc Chinese/Japanese/Korean (base)
+longdesc Packages supporting a combination of Chinese, Japanese, Korean,
+longdesc including macros, fonts, documentation. Also Thai in the c90
+longdesc encoding, since there is some overlap in those fonts; standard
+longdesc Thai support is in collection-langother. Additional packages
+longdesc for CJK are in their individual language collections.
+depend collection-basic
+depend adobemapping
+depend c90
+depend cjk
+depend cjkpunct
+depend cjkutils
+depend dnp
+depend garuda-c90
+depend norasi-c90
+depend xcjk2uni
depend zxjafont
-depend zxjatype
name collection-langcyrillic
category Collection
@@ -37390,13 +41409,14 @@ depend ukrhyph
name collection-langczechslovak
category Collection
-revision 30372
+revision 32550
shortdesc Czech/Slovak
longdesc Support for Czech/Slovak.
depend collection-basic
depend collection-latex
depend babel-czech
depend babel-slovak
+depend cnbwp
depend cs
depend csbulletin
depend cslatex
@@ -37411,9 +41431,9 @@ depend texlive-cz
name collection-langenglish
category Collection
-revision 30372
+revision 32952
shortdesc US and UK English
-longdesc Support for US and UK English.
+longdesc Support for (and documentation in) English.
depend collection-basic
depend hyphen-english
depend FAQ-en
@@ -37424,6 +41444,7 @@ depend around-the-bend
depend ascii-chart
depend components-of-TeX
depend comprehensive
+depend dickimaw
depend dtxtut
depend first-latex-doc
depend gentle
@@ -37446,7 +41467,6 @@ depend latexfileinfo-pkgs
depend lshort-english
depend macros2e
depend math-e
-depend mathmode
depend memdesign
depend metafont-beginners
depend metapost-examples
@@ -37468,17 +41488,19 @@ depend texbytopic
depend titlepages
depend tlc2
depend visualfaq
+depend voss-mathmode
depend webguide
depend xetexref
name collection-langeuropean
category Collection
-revision 30457
+revision 33888
shortdesc Other European languages
longdesc Support for a number of European languages; others (Greek,
longdesc German, French, ...) have their own collections, depending
longdesc simply on the size of the support.
depend collection-basic
+depend armtex
depend babel-albanian
depend babel-breton
depend babel-croatian
@@ -37573,7 +41595,7 @@ depend variations
name collection-langgerman
category Collection
-revision 30539
+revision 32954
shortdesc German
longdesc Support for German.
depend collection-basic
@@ -37616,12 +41638,13 @@ depend translation-enumitem-de
depend translation-europecv-de
depend translation-filecontents-de
depend translation-moreverb-de
+depend udesoftec
depend umlaute
-depend voss-de
+depend voss-mathcol
name collection-langgreek
category Collection
-revision 30527
+revision 31679
shortdesc Greek
longdesc Support for Greek.
depend collection-basic
@@ -37629,6 +41652,7 @@ depend babel-greek
depend betababel
depend bgreek
depend cbfonts
+depend cbfonts-fd
depend gfsbaskerville
depend gfsporson
depend greek-fontenc
@@ -37642,7 +41666,6 @@ depend ibygrk
depend kerkis
depend levy
depend lgreek
-depend lgrx
depend mkgrkindex
depend teubner
depend xgreek
@@ -37690,9 +41713,55 @@ depend lshort-italian
depend psfrag-italian
depend texlive-it
+name collection-langjapanese
+category Collection
+revision 33790
+shortdesc Japanese
+longdesc Support for Japanese; additional packages in collection-
+longdesc langcjk.
+depend collection-langcjk
+depend bxbase
+depend bxcjkjatype
+depend bxjscls
+depend convbkmk
+depend ipaex
+depend japanese
+depend japanese-otf
+depend japanese-otf-uptex
+depend jfontmaps
+depend jsclasses
+depend lshort-japanese
+depend luatexja
+depend ptex
+depend ptex2pdf
+depend pxbase
+depend pxchfon
+depend pxcjkcat
+depend pxjahyper
+depend pxrubrica
+depend uptex
+depend wadalab
+depend zxjafbfont
+depend zxjatype
+
+name collection-langkorean
+category Collection
+revision 33790
+shortdesc Korean
+longdesc Support for Korean; additional packages in collection-langcjk.
+depend collection-langcjk
+depend cjk-ko
+depend kotex-oblivoir
+depend kotex-plain
+depend kotex-utf
+depend kotex-utils
+depend lshort-korean
+depend nanumtype1
+depend uhc
+
name collection-langother
category Collection
-revision 30661
+revision 31014
shortdesc Other languages
longdesc Support for languages not otherwise listed, including Thai,
longdesc Vietnamese, Hebrew, Indonesian, and plenty more. The split is
@@ -37703,6 +41772,7 @@ depend amsldoc-vn
depend aramaic-serto
depend babel-bahasa
depend babel-esperanto
+depend babel-georgian
depend babel-hebrew
depend babel-interlingua
depend babel-sorbian
@@ -37750,13 +41820,14 @@ depend utf8mex
name collection-langportuguese
category Collection
-revision 30372
+revision 30962
shortdesc Portuguese
longdesc Support for Portuguese.
depend collection-basic
depend babel-portuges
depend beamer-tut-pt
depend cursolatex
+depend feupphdteses
depend hyphen-portuguese
depend latexcheat-ptbr
depend lshort-portuguese
@@ -37784,10 +41855,10 @@ depend spanish-mx
name collection-latex
category Collection
-revision 30308
+revision 33055
shortdesc LaTeX fundamental packages
-longdesc These packages are mandated by the core LaTeX team, or at least
-longdesc very strongly recommended.
+longdesc These packages are either mandated by the core LaTeX team, or
+longdesc very widely used and strongly recommended in practice.
depend collection-basic
depend ae
depend amscls
@@ -37816,10 +41887,11 @@ depend pslatex
depend psnfss
depend pspicture
depend tools
+depend url
name collection-latexextra
category Collection
-revision 30788
+revision 33862
shortdesc LaTeX additional packages
longdesc A very large collection of add-on packages for LaTeX.
depend collection-latexrecommended
@@ -37858,6 +41930,7 @@ depend appendixnumberbeamer
depend apptools
depend arcs
depend arrayjobx
+depend arraysort
depend assignment
depend attachfile
depend autopdf
@@ -37874,7 +41947,7 @@ depend beamersubframe
depend beamertheme-upenn-bc
depend beamerthemejltree
depend beamerthemenirma
-depend begriff
+depend beamerthemephnompenh
depend beton
depend bez123
depend bezos
@@ -37945,6 +42018,7 @@ depend clock
depend cmdstring
depend cmdtrack
depend cmsd
+depend cnltx
depend codedoc
depend codepage
depend collcell
@@ -37953,6 +42027,7 @@ depend colordoc
depend colorinfo
depend colortab
depend colorwav
+depend colorweb
depend colourchange
depend combelow
depend combine
@@ -37988,10 +42063,12 @@ depend currfile
depend currvita
depend cutwin
depend cv
+depend cv4tw
depend cweb-latex
depend dashbox
depend dashrule
depend dashundergaps
+depend dataref
depend datatool
depend dateiliste
depend datenumber
@@ -38001,6 +42078,7 @@ depend decimal
depend decorule
depend delim
depend delimtxt
+depend detlev-cm
depend diagbox
depend diagnose
depend dialogl
@@ -38038,11 +42116,13 @@ depend ecv
depend ed
depend edmargin
depend eemeir
+depend efbox
depend egplot
depend ellipsis
depend elmath
depend elpres
depend emarks
+depend embedall
depend embrac
depend emptypage
depend emulateapj
@@ -38077,7 +42157,9 @@ depend europecv
depend everyhook
depend everypage
depend exam
+depend exam-n
depend examdesign
+depend example
depend examplep
depend exceltex
depend excludeonly
@@ -38094,6 +42176,7 @@ depend fancynum
depend fancypar
depend fancytabs
depend fancytooltips
+depend fifo-stack
depend figsize
depend filecontents
depend filedate
@@ -38162,15 +42245,18 @@ depend gloss
depend glossaries
depend gmdoc
depend gmdoc-enhance
-depend gmeometric
depend gmiflink
depend gmutils
depend gmverb
depend graphicx-psmin
+depend graphicxbox
depend grfpaste
depend grid
+depend grid-system
depend gridset
+depend gtl
depend guitlogo
+depend handout
depend hanging
depend hardwrap
depend harnon-cv
@@ -38190,6 +42276,7 @@ depend hypernat
depend hyperref-docsrc
depend hyperxmp
depend hyphenat
+depend idxcmds
depend idxlayout
depend ifmslide
depend ifmtarg
@@ -38241,6 +42328,7 @@ depend lcg
depend leading
depend leaflet
depend leftidx
+depend lengthconvert
depend lettre
depend lettrine
depend lewis
@@ -38264,6 +42352,7 @@ depend longnamefilelist
depend loops
depend lsc
depend lstaddons
+depend lt3graph
depend ltablex
depend ltabptch
depend ltxdockit
@@ -38271,6 +42360,7 @@ depend ltxindex
depend ltxkeys
depend ltxnew
depend ltxtools
+depend macroswap
depend magaz
depend mailing
depend mailmerge
@@ -38310,9 +42400,9 @@ depend minibox
depend minifp
depend minipage-marginpar
depend minitoc
+depend minorrevision
depend minted
depend minutes
-depend misc209
depend mla-paper
depend mlist
depend mmap
@@ -38342,6 +42432,7 @@ depend multiexpand
depend multirow
depend mversion
depend mwe
+depend mweights
depend mycv
depend mylatexformat
depend nag
@@ -38366,6 +42457,7 @@ depend niceframe
depend nicetext
depend nlctdoc
depend noconflict
+depend noindentafter
depend noitcrul
depend nolbreaks
depend nomencl
@@ -38376,6 +42468,7 @@ depend nopageno
depend notes
depend notoccite
depend nowidow
+depend nox
depend ntheorem
depend numberedblock
depend numname
@@ -38406,6 +42499,9 @@ depend paralist
depend paresse
depend parnotes
depend parselines
+depend pas-cours
+depend pas-cv
+depend pas-tableur
depend patch
depend patchcmd
depend pauldoc
@@ -38423,13 +42519,14 @@ depend pdfsync
depend pdfwin
depend pdfx
depend pecha
+depend perfectcut
depend perltex
depend permute
depend petiteannonce
depend philex
depend photo
depend piff
-depend pittetd
+depend pkgloader
depend placeins
depend plates
depend plantslabels
@@ -38474,6 +42571,8 @@ depend recipe
depend recipecard
depend rectopma
depend refcheck
+depend refenums
+depend reflectgraphics
depend refman
depend refstyle
depend regcount
@@ -38483,6 +42582,7 @@ depend regstats
depend relenc
depend relsize
depend repeatindex
+depend repltext
depend rjlparshap
depend rlepsf
depend rmpage
@@ -38496,6 +42596,7 @@ depend rotpages
depend roundbox
depend rterface
depend rtkinenc
+depend rulercompass
depend rvwrite
depend sauerj
depend savefnmark
@@ -38504,10 +42605,12 @@ depend savetrees
depend scale
depend scalebar
depend scalerel
+depend scanpages
depend sdrt
depend secdot
depend sectionbox
depend sectsty
+depend seealso
depend selectp
depend semantic
depend semioneside
@@ -38556,7 +42659,9 @@ depend spotcolor
depend srbook-mem
depend srcltx
depend sseq
+depend sslides
depend stack
+depend stackengine
depend standalone
depend statistik
depend stdclsdv
@@ -38592,6 +42697,7 @@ depend tablefootnote
depend tableof
depend tablists
depend tabls
+depend tabstackengine
depend tabto-ltx
depend tabu
depend tabularborder
@@ -38644,6 +42750,7 @@ depend toolbox
depend topfloat
depend totcount
depend totpages
+depend translations
depend trfsigns
depend trimspaces
depend trsym
@@ -38664,6 +42771,7 @@ depend underlin
depend underoverlap
depend undolabl
depend units
+depend unravel
depend upmethodology
depend upquote
depend uri
@@ -38681,6 +42789,7 @@ depend verbments
depend version
depend versions
depend vertbars
+depend vgrid
depend vhistory
depend vmargin
depend volumes
@@ -38693,10 +42802,10 @@ depend warpcol
depend was
depend widetable
depend williams
+depend withargs
depend wordlike
depend wrapfig
depend xargs
-depend xbmc
depend xcomment
depend xhfill
depend xtab
@@ -38724,7 +42833,7 @@ depend zwpagelayout
name collection-latexrecommended
category Collection
-revision 30811
+revision 33055
shortdesc LaTeX recommended packages
longdesc A collection of recommended add-on packages for LaTeX which
longdesc have widespread use.
@@ -38737,7 +42846,6 @@ depend cite
depend cmap
depend crop
depend ctable
-depend ec
depend eso-pic
depend euler
depend extsizes
@@ -38777,13 +42885,12 @@ depend textcase
depend thumbpdf
depend typehtml
depend underscore
-depend url
depend xcolor
depend xkeyval
name collection-luatex
category Collection
-revision 30790
+revision 33467
shortdesc LuaTeX packages
longdesc Packages for LuaTeX, a Unicode-aware extension of pdfTeX, using
longdesc Lua as an embedded scripting and extension language.
@@ -38813,19 +42920,21 @@ depend luatexko
depend luatextra
depend luaxml
depend odsfile
+depend placeat
depend selnolig
depend showhyphens
depend spelling
name collection-mathextra
category Collection
-revision 30747
+revision 34176
shortdesc Mathematics packages
depend collection-fontsrecommended
depend collection-latex
depend 12many
depend amstex
depend backnaur
+depend begriff
depend binomexp
depend boldtensors
depend bosisio
@@ -38839,18 +42948,23 @@ depend eqnarray
depend extarrows
depend extpfeil
depend faktor
+depend grundgesetze
depend interval
depend ionumbers
depend isomath
+depend logicproof
+depend lplfitch
depend mathcomp
depend mattens
depend mhequ
depend multiobjective
+depend natded
depend nath
depend ot-tableau
depend oubraces
depend proba
depend rec-thy
+depend ribbonproofs
depend shuffle
depend skmath
depend statex
@@ -38859,6 +42973,7 @@ depend stmaryrd
depend subsupscripts
depend susy
depend syllogism
+depend sympytexpackage
depend synproof
depend tablor
depend tensor
@@ -38872,7 +42987,7 @@ depend ytableau
name collection-metapost
category Collection
-revision 30387
+revision 32455
shortdesc MetaPost and Metafont packages
depend collection-basic
depend automata
@@ -38905,6 +43020,7 @@ depend mpcolornames
depend mpattern
depend mpgraphics
depend piechartmp
+depend repere
depend roex
depend slideshow
depend splines
@@ -38914,7 +43030,7 @@ depend threeddice
name collection-music
category Collection
-revision 30396
+revision 32405
shortdesc Music packages
longdesc Music-related fonts and packages.
depend collection-latex
@@ -38923,12 +43039,15 @@ depend figbas
depend gchords
depend gtrcrd
depend guitar
+depend guitarchordschemes
depend harmony
+depend lilyglyphs
depend m-tx
depend musixguit
depend musixtex
depend musixtex-fonts
depend pmx
+depend pmxchords
depend songbook
depend songs
@@ -38950,11 +43069,15 @@ depend otibet
name collection-pictures
category Collection
-revision 30559
+revision 33688
shortdesc Graphics, pictures, diagrams
-longdesc Including TikZ, pict, etc.; MetaPost and PStricks are separate.
+longdesc Including TikZ, pict, etc., but MetaPost and PStricks are
+longdesc separate.
depend collection-basic
+depend aobs-tikz
+depend askmaps
depend asyfig
+depend asypictureb
depend autoarea
depend bardiag
depend bloques
@@ -38989,6 +43112,8 @@ depend gincltex
depend gnuplottex
depend gradientframe
depend grafcet
+depend graphviz
+depend harveyballs
depend here
depend hf-tikz
depend hobby
@@ -39000,13 +43125,16 @@ depend lpic
depend makeshape
depend mathspic
depend miniplot
+depend mkpic
depend modiagram
+depend neuralnetwork
depend numericplots
depend pb-diagram
depend petri-nets
depend pgf
depend pgf-blur
depend pgf-soroban
+depend pgf-umlcd
depend pgf-umlsd
depend pgfgantt
depend pgfkeyx
@@ -39039,6 +43167,7 @@ depend tikz-bayesnet
depend tikz-cd
depend tikz-dependency
depend tikz-inet
+depend tikz-opm
depend tikz-qtree
depend tikz-timing
depend tikzinclude
@@ -39049,6 +43178,7 @@ depend tikzpfeile
depend tikzposter
depend tikzscale
depend tikzsymbols
+depend timing-diagrams
depend tqft
depend tkz-base
depend tkz-berge
@@ -39068,7 +43198,7 @@ depend xypic
name collection-plainextra
category Collection
-revision 30395
+revision 31683
shortdesc Plain TeX packages
longdesc Add-on packages and macros that work with plain TeX.
depend collection-basic
@@ -39093,10 +43223,11 @@ depend texinfo
depend timetable
depend treetex
depend varisize
+depend xii
name collection-pstricks
category Collection
-revision 30307
+revision 33373
shortdesc PSTricks
longdesc PSTricks core and all add-on packages.
depend collection-basic
@@ -39105,6 +43236,7 @@ depend auto-pst-pdf
depend bclogo
depend makeplot
depend pdftricks
+depend pdftricks2
depend pedigree-perl
depend psbao
depend pst-2dplot
@@ -39141,6 +43273,7 @@ depend pst-gr3d
depend pst-grad
depend pst-graphicx
depend pst-infixplot
+depend pst-intersect
depend pst-jtree
depend pst-knot
depend pst-labo
@@ -39156,8 +43289,10 @@ depend pst-ode
depend pst-optexp
depend pst-optic
depend pst-osci
+depend pst-ovl
depend pst-pad
depend pst-pdgr
+depend pst-perspective
depend pst-platon
depend pst-plot
depend pst-poly
@@ -39191,7 +43326,7 @@ depend vocaltract
name collection-publishers
category Collection
-revision 30444
+revision 34208
shortdesc Publisher styles, theses, etc.
depend collection-latex
depend IEEEconf
@@ -39216,11 +43351,13 @@ depend asaetr
depend ascelike
depend beamer-FUBerlin
depend bgteubner
+depend brandeis-dissertation
depend cascadilla
depend chem-journal
depend classicthesis
depend cmpj
depend confproc
+depend dccpaper
depend ebook
depend ebsthesis
depend ejpecp
@@ -39259,6 +43396,7 @@ depend nrc
depend onrannual
depend opteng
depend philosophersimprint
+depend pittetd
depend pkuthss
depend powerdot-FUBerlin
depend pracjourn
@@ -39274,24 +43412,29 @@ depend ryethesis
depend sageep
depend sapthesis
depend scrjrnl
+depend schule
depend seuthesis
depend soton
depend spie
+depend sr-vorl
depend stellenbosch
depend suftesi
depend sugconf
depend tabriz-thesis
depend texilikechaps
depend texilikecover
+depend thesis-ekf
depend thesis-titlepage-fhac
depend thuthesis
depend toptesi
+depend tudscr
depend tugboat
depend tugboat-plain
depend tui
depend uaclasses
depend uadocs
depend uafthesis
+depend ucbthesis
depend ucdavisthesis
depend ucthesis
depend uestcthesis
@@ -39300,20 +43443,23 @@ depend uiucthesis
depend ulthese
depend umthesis
depend umich-thesis
+depend unamth-template
depend unamthesis
depend unswcover
depend ut-thesis
depend uothesis
depend uowthesis
+depend uowthesistitlepage
depend uspatent
depend uwthesis
depend vancouver
+depend wsemclassic
depend xcookybooky
depend york-thesis
name collection-science
category Collection
-revision 30307
+revision 32182
shortdesc Natural and computer sciences
depend collection-latex
depend SIstyle
@@ -39373,6 +43519,7 @@ depend t-angles
depend textopo
depend ulqda
depend unitsdef
+depend xymtex
depend youngtab
name collection-texworks
@@ -39446,7 +43593,7 @@ srcfiles size=7
runfiles size=1
texmf-dist/tex/latex/collref/collref.sty
catalogue-ctan /macros/latex/contrib/collref
-catalogue-date 2012-05-17 00:55:12 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 2.0
@@ -39471,7 +43618,7 @@ srcfiles size=11
runfiles size=2
texmf-dist/tex/latex/colordoc/colordoc.sty
catalogue-ctan /macros/latex/contrib/colordoc
-catalogue-date 2012-05-17 00:55:12 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1
name colorinfo
@@ -39561,10 +43708,32 @@ srcfiles size=7
runfiles size=2
texmf-dist/tex/latex/colorwav/colorwav.sty
catalogue-ctan /macros/latex/contrib/colorwav
-catalogue-date 2012-05-17 00:55:12 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lgpl
catalogue-version 1.0
+name colorweb
+category Package
+revision 31490
+shortdesc Extend the color package colour space.
+longdesc The package makes the 216 "web-safe colours" available to the
+longdesc standard color package.
+docfiles size=463
+ texmf-dist/doc/latex/colorweb/README details="Readme"
+ texmf-dist/doc/latex/colorweb/colorweb.pdf
+ texmf-dist/doc/latex/colorweb/colorwebfull.pdf details="Full package documentation"
+ texmf-dist/doc/latex/colorweb/colorwebuser.pdf details="Documentation for users"
+ texmf-dist/doc/latex/colorweb/descript.ion
+srcfiles size=21
+ texmf-dist/source/latex/colorweb/colorweb.dtx
+ texmf-dist/source/latex/colorweb/colorweb.ins
+runfiles size=5
+ texmf-dist/tex/latex/colorweb/colorweb.sty
+catalogue-ctan /macros/latex/contrib/colorweb
+catalogue-date 2014-02-26 23:03:13 +0100
+catalogue-license lppl1.3
+catalogue-version 1.3
+
name colourchange
category Package
revision 21741
@@ -39582,7 +43751,7 @@ docfiles size=59
runfiles size=2
texmf-dist/tex/latex/colourchange/colourchange.sty
catalogue-ctan /macros/latex/contrib/colourchange
-catalogue-date 2012-06-27 14:08:30 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license gpl3
catalogue-version 1.22
@@ -39601,7 +43770,7 @@ docfiles size=30
runfiles size=1
texmf-dist/tex/latex/combelow/combelow.sty
catalogue-ctan /macros/latex/contrib/combelow
-catalogue-date 2012-06-27 14:08:30 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 0.99f
@@ -39639,12 +43808,12 @@ longdesc This package provides a macro (\includecombinedgraphics) for
longdesc the inclusion of combined EPS/LaTeX and PDF/LaTeX graphics (an
longdesc export format of Gnuplot, Xfig, and maybe other programs).
longdesc Instead of including the graphics with a simple \input, the
-longdesc \includecombinedgraphics macro has some comforts: - changing
-longdesc the font and color of the text of the LaTeX part; - rescaling
-longdesc the graphics without affecting the font of the LaTeX part; -
+longdesc \includecombinedgraphics macro has some comforts: changing the
+longdesc font and color of the text of the LaTeX part; rescaling the
+longdesc graphics without affecting the font of the LaTeX part;
longdesc automatic inclusion of the vector graphics part, as far as
longdesc LaTeX part does not do it (e.g., for files exported from
-longdesc Gnuplot before version 4.2); and - rescaling and rotating of
+longdesc Gnuplot before version 4.2); and rescaling and rotating of
longdesc complete graphics (similar to \includegraphics from the
longdesc graphicx package).
docfiles size=138
@@ -39669,7 +43838,7 @@ srcfiles size=10
runfiles size=4
texmf-dist/tex/latex/combinedgraphics/combinedgraphics.sty
catalogue-ctan /macros/latex/contrib/combinedgraphics
-catalogue-date 2012-07-16 18:35:20 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license gpl
catalogue-version 0.2.2
@@ -39942,7 +44111,7 @@ runfiles size=696
texmf-dist/tex/latex/comfortaa/ts1fco.fd
texmf-dist/tex/latex/comfortaa/x2fco.fd
catalogue-ctan /fonts/comfortaa
-catalogue-date 2012-08-27 10:11:59 +0200
+catalogue-date 2014-04-24 00:33:23 +0200
catalogue-license lppl1.3
catalogue-version 2.3
@@ -39969,15 +44138,15 @@ revision 28419
shortdesc Expandable iteration on comma-separated and filename lists.
longdesc The bundle provides two packages: commado and filesdo. The
longdesc package commado provides the command \DoWithCSL:
-longdesc \DoWithCSL{cmd}{list} applies an existing one-parameter macro
-longdesc cmd to each item in a list list in which terms are separated by
-longdesc commas. The package filesdo provides the command
-longdesc \DoWithBasesExts: \DoWithBasesExts{cmd}{bases}{exts} which runs
-longdesc the single parameter command cmd on each file whose base and
-longdesc extension are respectively from the comma-separated lists bases
-longdesc and exts. These 'loop'-like commands are (themselves) entirely
-longdesc expandable. The packages rely on packages plainpkg, and
-longdesc stacklet
+longdesc \DoWithCSL{<cmd>}{<list>} applies an existing one-parameter
+longdesc macro <cmd> to each item in a list <list> in which terms are
+longdesc separated by commas. The package filesdo provides the command
+longdesc \DoWithBasesExts: \DoWithBasesExts{<cmd>}{<bases>}{<exts>}
+longdesc which runs the single parameter command <cmd> on each file
+longdesc whose base and extension are respectively from the comma-
+longdesc separated lists <bases> and <exts>. These 'loop'-like commands
+longdesc are (themselves) entirely expandable. The packages rely on
+longdesc packages plainpkg, and stacklet
docfiles size=143
texmf-dist/doc/generic/commado/README details="Readme"
texmf-dist/doc/generic/commado/SrcFILEs.txt
@@ -39990,7 +44159,7 @@ runfiles size=3
texmf-dist/tex/generic/commado/commado.sty
texmf-dist/tex/generic/commado/filesdo.sty
catalogue-ctan /macros/generic/commado
-catalogue-date 2012-12-05 12:44:11 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 0.11
@@ -40015,7 +44184,7 @@ catalogue-version 0.3
name comment
category Package
-revision 17155
+revision 32778
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
@@ -40038,9 +44207,9 @@ docfiles size=68
runfiles size=3
texmf-dist/tex/latex/comment/comment.sty
catalogue-ctan /macros/latex/contrib/comment
-catalogue-date 2011-09-30 20:51:09 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license gpl
-catalogue-version 3.6
+catalogue-version 3.7
name compactbib
category Package
@@ -40128,7 +44297,7 @@ catalogue-version 11.0
name computational-complexity
category Package
-revision 27047
+revision 31923
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
@@ -40142,10 +44311,10 @@ docfiles size=253
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=99
+srcfiles size=100
texmf-dist/source/latex/computational-complexity/cc.dtx
texmf-dist/source/latex/computational-complexity/cc.ins
-runfiles size=73
+runfiles size=74
texmf-dist/bibtex/bib/computational-complexity/journals.bib
texmf-dist/bibtex/bst/computational-complexity/cc.bst
texmf-dist/bibtex/bst/computational-complexity/cc2.bst
@@ -40172,9 +44341,9 @@ runfiles size=73
texmf-dist/tex/latex/computational-complexity/relabel.sty
texmf-dist/tex/latex/computational-complexity/thcc.sty
catalogue-ctan /macros/latex/contrib/computational-complexity
-catalogue-date 2012-06-22 16:58:16 +0200
+catalogue-date 2013-10-16 17:26:58 +0200
catalogue-license lppl
-catalogue-version v2.25
+catalogue-version v2.25c
name concepts
category Package
@@ -40200,7 +44369,7 @@ docfiles size=89
runfiles size=7
texmf-dist/tex/latex/concepts/concepts.sty
catalogue-ctan /macros/latex/contrib/concepts
-catalogue-date 2012-12-31 10:20:52 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 0.0.5-r1
@@ -40305,7 +44474,7 @@ runfiles size=78
texmf-dist/fonts/tfm/public/concmath-fonts/xccsy8.tfm
texmf-dist/fonts/tfm/public/concmath-fonts/xccsy9.tfm
catalogue-ctan /fonts/concmath
-catalogue-date 2006-08-27 16:41:02 +0100
+catalogue-date 2014-04-24 00:33:23 +0200
catalogue-license lppl
name concprog
@@ -40367,7 +44536,7 @@ runfiles size=28
texmf-dist/fonts/tfm/public/concrete/ccslc9.tfm
texmf-dist/fonts/tfm/public/concrete/ccti10.tfm
catalogue-ctan /fonts/concrete
-catalogue-date 2012-05-07 18:06:12 +0200
+catalogue-date 2014-04-24 00:33:23 +0200
catalogue-license knuth
name confproc
@@ -40496,7 +44665,7 @@ runfiles size=23
texmf-dist/tex/latex/confproc/confproc.cls
texmf-dist/tex/latex/confproc/newapave.sty
catalogue-ctan /macros/latex/contrib/conferences/confproc
-catalogue-date 2012-06-27 14:08:30 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 0.8
@@ -40517,7 +44686,7 @@ srcfiles size=7
runfiles size=2
texmf-dist/tex/latex/constants/constants.sty
catalogue-ctan /macros/latex/contrib/constants
-catalogue-date 2012-06-27 14:08:30 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.0
@@ -40528,7 +44697,7 @@ shortdesc Typeset multiline continued equalities.
longdesc The package provides an environment conteq, which will lay out
longdesc systems of continued equalities (or inequalities). Several
longdesc variant layouts of the equalities are provided, and the user
-longdesc may define their own. The package is written use LaTeX 3
+longdesc may define their own. The package is written using LaTeX 3
longdesc macros.
docfiles size=77
texmf-dist/doc/latex/conteq/README details="Readme"
@@ -40541,13 +44710,13 @@ srcfiles size=5
runfiles size=2
texmf-dist/tex/latex/conteq/conteq.sty
catalogue-ctan /macros/latex/contrib/conteq
-catalogue-date 2013-05-26 18:29:07 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 0.1
name context
category Package
-revision 30044
+revision 34221
shortdesc The ConTeXt macro package.
longdesc A full featured, parameter driven macro package, which fully
longdesc supports advanced interactive documents. See the ConTeXt garden
@@ -40564,17 +44733,21 @@ depend mptopdf
depend context.ARCH
execute AddFormat name=cont-en engine=pdftex patterns=cont-usr.tex options="-8bit *cont-en.mkii"
execute AddFormat name=cont-en engine=xetex patterns=cont-usr.tex options="-8bit *cont-en.mkii"
-execute AddFormat name=cont-de mode=disabled engine=pdftex patterns=cont-usr.tex options="-8bit *cont-de.mkii"
execute AddFormat name=cont-fr mode=disabled engine=pdftex patterns=cont-usr.tex options="-8bit *cont-fr.mkii"
execute AddFormat name=cont-it mode=disabled engine=pdftex patterns=cont-usr.tex options="-8bit *cont-it.mkii"
execute AddFormat name=cont-nl mode=disabled engine=pdftex patterns=cont-usr.tex options="-8bit *cont-nl.mkii"
execute AddFormat name=cont-ro mode=disabled engine=pdftex patterns=cont-usr.tex options="-8bit *cont-ro.mkii"
execute addMap original-context-symbol.map
-docfiles size=302
+docfiles size=404
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/mkiv-publications-graph.bib
+ texmf-dist/doc/context/manuals/allkind/mkiv-publications.bib
+ texmf-dist/doc/context/manuals/allkind/mkiv-publications.pdf
+ texmf-dist/doc/context/manuals/allkind/mkiv-publications.tex
texmf-dist/doc/context/manuals/allkind/mreadme.tex
+ texmf-dist/doc/context/manuals/allkind/publications-en.xml
texmf-dist/doc/context/scripts/mkii/ctxtools.html
texmf-dist/doc/context/scripts/mkii/ctxtools.man
texmf-dist/doc/context/scripts/mkii/ctxtools.xml
@@ -40622,6 +44795,9 @@ docfiles size=302
texmf-dist/doc/context/scripts/mkiv/mtx-base.html
texmf-dist/doc/context/scripts/mkiv/mtx-base.man
texmf-dist/doc/context/scripts/mkiv/mtx-base.xml
+ texmf-dist/doc/context/scripts/mkiv/mtx-bibtex.html
+ texmf-dist/doc/context/scripts/mkiv/mtx-bibtex.man
+ texmf-dist/doc/context/scripts/mkiv/mtx-bibtex.xml
texmf-dist/doc/context/scripts/mkiv/mtx-cache.html
texmf-dist/doc/context/scripts/mkiv/mtx-cache.man
texmf-dist/doc/context/scripts/mkiv/mtx-cache.xml
@@ -40673,6 +44849,9 @@ docfiles size=302
texmf-dist/doc/context/scripts/mkiv/mtx-pdf.html
texmf-dist/doc/context/scripts/mkiv/mtx-pdf.man
texmf-dist/doc/context/scripts/mkiv/mtx-pdf.xml
+ texmf-dist/doc/context/scripts/mkiv/mtx-plain.html
+ texmf-dist/doc/context/scripts/mkiv/mtx-plain.man
+ texmf-dist/doc/context/scripts/mkiv/mtx-plain.xml
texmf-dist/doc/context/scripts/mkiv/mtx-profile.html
texmf-dist/doc/context/scripts/mkiv/mtx-profile.man
texmf-dist/doc/context/scripts/mkiv/mtx-profile.xml
@@ -40703,19 +44882,22 @@ docfiles size=302
texmf-dist/doc/context/scripts/mkiv/mtx-watch.html
texmf-dist/doc/context/scripts/mkiv/mtx-watch.man
texmf-dist/doc/context/scripts/mkiv/mtx-watch.xml
+ texmf-dist/doc/context/scripts/mkiv/mtx-youless.html
+ texmf-dist/doc/context/scripts/mkiv/mtx-youless.man
+ texmf-dist/doc/context/scripts/mkiv/mtx-youless.xml
texmf-dist/doc/context/scripts/mkiv/mtxrun.html
texmf-dist/doc/context/scripts/mkiv/mtxrun.man
texmf-dist/doc/context/scripts/mkiv/mtxrun.xml
texmf-dist/doc/man/man1/context.1
texmf-dist/doc/man/man1/context.man1.pdf
- texmf-dist/doc/man/man1/ctxtools.1
- texmf-dist/doc/man/man1/ctxtools.man1.pdf
texmf-dist/doc/man/man1/luatools.1
texmf-dist/doc/man/man1/luatools.man1.pdf
texmf-dist/doc/man/man1/mtx-babel.1
texmf-dist/doc/man/man1/mtx-babel.man1.pdf
texmf-dist/doc/man/man1/mtx-base.1
texmf-dist/doc/man/man1/mtx-base.man1.pdf
+ texmf-dist/doc/man/man1/mtx-bibtex.1
+ texmf-dist/doc/man/man1/mtx-bibtex.man1.pdf
texmf-dist/doc/man/man1/mtx-cache.1
texmf-dist/doc/man/man1/mtx-cache.man1.pdf
texmf-dist/doc/man/man1/mtx-chars.1
@@ -40750,6 +44932,8 @@ docfiles size=302
texmf-dist/doc/man/man1/mtx-patterns.man1.pdf
texmf-dist/doc/man/man1/mtx-pdf.1
texmf-dist/doc/man/man1/mtx-pdf.man1.pdf
+ texmf-dist/doc/man/man1/mtx-plain.1
+ texmf-dist/doc/man/man1/mtx-plain.man1.pdf
texmf-dist/doc/man/man1/mtx-profile.1
texmf-dist/doc/man/man1/mtx-profile.man1.pdf
texmf-dist/doc/man/man1/mtx-rsync.1
@@ -40770,64 +44954,66 @@ docfiles size=302
texmf-dist/doc/man/man1/mtx-update.man1.pdf
texmf-dist/doc/man/man1/mtx-watch.1
texmf-dist/doc/man/man1/mtx-watch.man1.pdf
+ texmf-dist/doc/man/man1/mtx-youless.1
+ texmf-dist/doc/man/man1/mtx-youless.man1.pdf
texmf-dist/doc/man/man1/mtxrun.1
texmf-dist/doc/man/man1/mtxrun.man1.pdf
- texmf-dist/doc/man/man1/pstopdf.1
- texmf-dist/doc/man/man1/pstopdf.man1.pdf
texmf-dist/doc/man/man1/texexec.1
texmf-dist/doc/man/man1/texexec.man1.pdf
texmf-dist/doc/man/man1/texmfstart.1
texmf-dist/doc/man/man1/texmfstart.man1.pdf
-runfiles size=10437
+runfiles size=11193
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/data/scite/lexers/data/scite-context-data-context.lua
- texmf-dist/context/data/scite/lexers/data/scite-context-data-interfaces.lua
- texmf-dist/context/data/scite/lexers/data/scite-context-data-metafun.lua
- texmf-dist/context/data/scite/lexers/data/scite-context-data-metapost.lua
- texmf-dist/context/data/scite/lexers/data/scite-context-data-tex.lua
- texmf-dist/context/data/scite/lexers/scite-context-lexer-cld.lua
- texmf-dist/context/data/scite/lexers/scite-context-lexer-lua-longstring.lua
- texmf-dist/context/data/scite/lexers/scite-context-lexer-lua.lua
- texmf-dist/context/data/scite/lexers/scite-context-lexer-mps.lua
- texmf-dist/context/data/scite/lexers/scite-context-lexer-pdf-object.lua
- texmf-dist/context/data/scite/lexers/scite-context-lexer-pdf-xref.lua
- texmf-dist/context/data/scite/lexers/scite-context-lexer-pdf.lua
- texmf-dist/context/data/scite/lexers/scite-context-lexer-tex.lua
- texmf-dist/context/data/scite/lexers/scite-context-lexer-txt.lua
- texmf-dist/context/data/scite/lexers/scite-context-lexer-web.lua
- texmf-dist/context/data/scite/lexers/scite-context-lexer-xml-cdata.lua
- texmf-dist/context/data/scite/lexers/scite-context-lexer-xml-comment.lua
- texmf-dist/context/data/scite/lexers/scite-context-lexer-xml-script.lua
- texmf-dist/context/data/scite/lexers/scite-context-lexer-xml.lua
- texmf-dist/context/data/scite/lexers/scite-context-lexer.lua
- texmf-dist/context/data/scite/lexers/themes/scite-context-theme-keep.lua
- texmf-dist/context/data/scite/lexers/themes/scite-context-theme.lua
- texmf-dist/context/data/scite/metapost.properties
- texmf-dist/context/data/scite/scite-context-data-context.properties
- texmf-dist/context/data/scite/scite-context-data-interfaces.properties
- texmf-dist/context/data/scite/scite-context-data-metafun.properties
- texmf-dist/context/data/scite/scite-context-data-metapost.properties
- texmf-dist/context/data/scite/scite-context-data-tex.properties
- texmf-dist/context/data/scite/scite-context-external.properties
- texmf-dist/context/data/scite/scite-context-internal.properties
- texmf-dist/context/data/scite/scite-context-readme.pdf
- texmf-dist/context/data/scite/scite-context-readme.tex
- texmf-dist/context/data/scite/scite-context-user.properties
- texmf-dist/context/data/scite/scite-context-visual.pdf
- texmf-dist/context/data/scite/scite-context-visual.png
- texmf-dist/context/data/scite/scite-context-visual.tex
- texmf-dist/context/data/scite/scite-context.properties
- texmf-dist/context/data/scite/scite-ctx-context.properties
- texmf-dist/context/data/scite/scite-ctx-example.properties
- texmf-dist/context/data/scite/scite-ctx.lua
- texmf-dist/context/data/scite/scite-ctx.properties
- texmf-dist/context/data/scite/scite-metapost.properties
- texmf-dist/context/data/scite/scite-pragma.properties
- texmf-dist/context/data/scite/scite-tex.properties
- texmf-dist/context/data/scite/tex.properties
+ texmf-dist/context/data/scite/context/documents/scite-context-readme.pdf
+ texmf-dist/context/data/scite/context/documents/scite-context-readme.tex
+ texmf-dist/context/data/scite/context/documents/scite-context-visual.pdf
+ texmf-dist/context/data/scite/context/documents/scite-context-visual.png
+ texmf-dist/context/data/scite/context/lexers/data/scite-context-data-context.lua
+ texmf-dist/context/data/scite/context/lexers/data/scite-context-data-interfaces.lua
+ texmf-dist/context/data/scite/context/lexers/data/scite-context-data-metafun.lua
+ texmf-dist/context/data/scite/context/lexers/data/scite-context-data-metapost.lua
+ texmf-dist/context/data/scite/context/lexers/data/scite-context-data-tex.lua
+ texmf-dist/context/data/scite/context/lexers/lexer.lua
+ texmf-dist/context/data/scite/context/lexers/scite-context-lexer-bibtex.lua
+ texmf-dist/context/data/scite/context/lexers/scite-context-lexer-cld.lua
+ texmf-dist/context/data/scite/context/lexers/scite-context-lexer-cpp-web.lua
+ texmf-dist/context/data/scite/context/lexers/scite-context-lexer-cpp.lua
+ texmf-dist/context/data/scite/context/lexers/scite-context-lexer-lua-longstring.lua
+ texmf-dist/context/data/scite/context/lexers/scite-context-lexer-lua.lua
+ texmf-dist/context/data/scite/context/lexers/scite-context-lexer-mps.lua
+ texmf-dist/context/data/scite/context/lexers/scite-context-lexer-pdf-object.lua
+ texmf-dist/context/data/scite/context/lexers/scite-context-lexer-pdf-xref.lua
+ texmf-dist/context/data/scite/context/lexers/scite-context-lexer-pdf.lua
+ texmf-dist/context/data/scite/context/lexers/scite-context-lexer-tex-web.lua
+ texmf-dist/context/data/scite/context/lexers/scite-context-lexer-tex.lua
+ texmf-dist/context/data/scite/context/lexers/scite-context-lexer-txt.lua
+ texmf-dist/context/data/scite/context/lexers/scite-context-lexer-web-snippets.lua
+ texmf-dist/context/data/scite/context/lexers/scite-context-lexer-web.lua
+ texmf-dist/context/data/scite/context/lexers/scite-context-lexer-xml-cdata.lua
+ texmf-dist/context/data/scite/context/lexers/scite-context-lexer-xml-comment.lua
+ texmf-dist/context/data/scite/context/lexers/scite-context-lexer-xml-script.lua
+ texmf-dist/context/data/scite/context/lexers/scite-context-lexer-xml.lua
+ texmf-dist/context/data/scite/context/lexers/scite-context-lexer.lua
+ texmf-dist/context/data/scite/context/lexers/themes/scite-context-theme.lua
+ texmf-dist/context/data/scite/context/scite-context-data-context.properties
+ texmf-dist/context/data/scite/context/scite-context-data-interfaces.properties
+ texmf-dist/context/data/scite/context/scite-context-data-metafun.properties
+ texmf-dist/context/data/scite/context/scite-context-data-metapost.properties
+ texmf-dist/context/data/scite/context/scite-context-data-tex.properties
+ texmf-dist/context/data/scite/context/scite-context-external.properties
+ texmf-dist/context/data/scite/context/scite-context-internal.properties
+ texmf-dist/context/data/scite/context/scite-context-user.properties
+ texmf-dist/context/data/scite/context/scite-context.properties
+ texmf-dist/context/data/scite/context/scite-ctx-context.properties
+ texmf-dist/context/data/scite/context/scite-ctx-example.properties
+ texmf-dist/context/data/scite/context/scite-ctx.lua
+ texmf-dist/context/data/scite/context/scite-ctx.properties
+ texmf-dist/context/data/scite/context/scite-metapost.properties
+ texmf-dist/context/data/scite/context/scite-pragma.properties
+ texmf-dist/context/data/scite/context/scite-tex.properties
texmf-dist/context/data/texfont/type-buy.dat
texmf-dist/context/data/texfont/type-fsf.dat
texmf-dist/context/data/texfont/type-ghz.dat
@@ -40930,6 +45116,7 @@ runfiles size=10437
texmf-dist/metapost/context/base/mp-grph.mpii
texmf-dist/metapost/context/base/mp-grph.mpiv
texmf-dist/metapost/context/base/mp-idea.mpiv
+ texmf-dist/metapost/context/base/mp-luas.mpiv
texmf-dist/metapost/context/base/mp-mlib.mpiv
texmf-dist/metapost/context/base/mp-page.mpii
texmf-dist/metapost/context/base/mp-page.mpiv
@@ -40944,14 +45131,19 @@ runfiles size=10437
texmf-dist/metapost/context/base/mp-tool.mpii
texmf-dist/metapost/context/base/mp-tool.mpiv
texmf-dist/metapost/context/base/mp-txts.mpii
- texmf-dist/metapost/context/font/punkfont-bold.mp
- texmf-dist/metapost/context/font/punkfont-boldslanted.mp
- texmf-dist/metapost/context/font/punkfont-characters.mp
- texmf-dist/metapost/context/font/punkfont-definitions.mp
- texmf-dist/metapost/context/font/punkfont-slanted.mp
- texmf-dist/metapost/context/font/punkfont.mp
+ texmf-dist/metapost/context/fonts/bidi-symbols.mp
+ texmf-dist/metapost/context/fonts/bidi-symbols.tex
+ texmf-dist/metapost/context/fonts/demo-symbols.mp
+ texmf-dist/metapost/context/fonts/demo-symbols.tex
+ texmf-dist/metapost/context/fonts/punkfont-bold.mp
+ texmf-dist/metapost/context/fonts/punkfont-boldslanted.mp
+ texmf-dist/metapost/context/fonts/punkfont-characters.mp
+ texmf-dist/metapost/context/fonts/punkfont-definitions.mp
+ texmf-dist/metapost/context/fonts/punkfont-slanted.mp
+ texmf-dist/metapost/context/fonts/punkfont.mp
texmf-dist/scripts/context/lua/mtx-babel.lua
texmf-dist/scripts/context/lua/mtx-base.lua
+ texmf-dist/scripts/context/lua/mtx-bibtex.lua
texmf-dist/scripts/context/lua/mtx-cache.lua
texmf-dist/scripts/context/lua/mtx-chars.lua
texmf-dist/scripts/context/lua/mtx-check.lua
@@ -40973,6 +45165,7 @@ runfiles size=10437
texmf-dist/scripts/context/lua/mtx-package.lua
texmf-dist/scripts/context/lua/mtx-patterns.lua
texmf-dist/scripts/context/lua/mtx-pdf.lua
+ texmf-dist/scripts/context/lua/mtx-plain.lua
texmf-dist/scripts/context/lua/mtx-profile.lua
texmf-dist/scripts/context/lua/mtx-rsync.lua
texmf-dist/scripts/context/lua/mtx-scite.lua
@@ -40986,6 +45179,7 @@ runfiles size=10437
texmf-dist/scripts/context/lua/mtx-unzip.lua
texmf-dist/scripts/context/lua/mtx-update.lua
texmf-dist/scripts/context/lua/mtx-watch.lua
+ texmf-dist/scripts/context/lua/mtx-youless.lua
texmf-dist/scripts/context/lua/mtxlibs.lua
texmf-dist/scripts/context/lua/mtxrun.lua
texmf-dist/scripts/context/perl/makempy.pl
@@ -41034,6 +45228,8 @@ runfiles size=10437
texmf-dist/scripts/context/ruby/texutil.rb
texmf-dist/scripts/context/ruby/tmftools.rb
texmf-dist/scripts/context/ruby/xmltools.rb
+ texmf-dist/scripts/context/stubs/install/first-setup.bat
+ texmf-dist/scripts/context/stubs/install/first-setup.sh
texmf-dist/scripts/context/stubs/mswin/context.exe
texmf-dist/scripts/context/stubs/mswin/ctxtools.exe
texmf-dist/scripts/context/stubs/mswin/luatools.exe
@@ -41041,24 +45237,40 @@ runfiles size=10437
texmf-dist/scripts/context/stubs/mswin/mtxrun.dll
texmf-dist/scripts/context/stubs/mswin/mtxrun.exe
texmf-dist/scripts/context/stubs/mswin/mtxrun.lua
+ texmf-dist/scripts/context/stubs/mswin/mtxrunjit.exe
texmf-dist/scripts/context/stubs/mswin/mtxworks.exe
texmf-dist/scripts/context/stubs/mswin/pstopdf.exe
- texmf-dist/scripts/context/stubs/mswin/setuptex.bat
texmf-dist/scripts/context/stubs/mswin/texexec.exe
texmf-dist/scripts/context/stubs/mswin/texmfstart.exe
+ texmf-dist/scripts/context/stubs/setup/setuptex
+ texmf-dist/scripts/context/stubs/setup/setuptex.bat
+ texmf-dist/scripts/context/stubs/setup/setuptex.csh
texmf-dist/scripts/context/stubs/source/mtxrun_dll.c
texmf-dist/scripts/context/stubs/source/mtxrun_exe.c
texmf-dist/scripts/context/stubs/source/readme.txt
texmf-dist/scripts/context/stubs/unix/context
- texmf-dist/scripts/context/stubs/unix/ctxtools
+ texmf-dist/scripts/context/stubs/unix/contextjit
texmf-dist/scripts/context/stubs/unix/luatools
texmf-dist/scripts/context/stubs/unix/metatex
- texmf-dist/scripts/context/stubs/unix/mptopdf
texmf-dist/scripts/context/stubs/unix/mtxrun
+ texmf-dist/scripts/context/stubs/unix/mtxrunjit
texmf-dist/scripts/context/stubs/unix/mtxworks
- texmf-dist/scripts/context/stubs/unix/pstopdf
texmf-dist/scripts/context/stubs/unix/texexec
texmf-dist/scripts/context/stubs/unix/texmfstart
+ texmf-dist/scripts/context/stubs/win64/context.exe
+ texmf-dist/scripts/context/stubs/win64/contextjit.exe
+ texmf-dist/scripts/context/stubs/win64/ctxtools.exe
+ texmf-dist/scripts/context/stubs/win64/luatools.exe
+ texmf-dist/scripts/context/stubs/win64/metatex.exe
+ texmf-dist/scripts/context/stubs/win64/mptopdf.exe
+ texmf-dist/scripts/context/stubs/win64/mtxrun.dll
+ texmf-dist/scripts/context/stubs/win64/mtxrun.exe
+ texmf-dist/scripts/context/stubs/win64/mtxrun.lua
+ texmf-dist/scripts/context/stubs/win64/mtxrunjit.exe
+ texmf-dist/scripts/context/stubs/win64/mtxworks.exe
+ texmf-dist/scripts/context/stubs/win64/pstopdf.exe
+ texmf-dist/scripts/context/stubs/win64/texexec.exe
+ texmf-dist/scripts/context/stubs/win64/texmfstart.exe
texmf-dist/tex/context/base/anch-bar.mkii
texmf-dist/tex/context/base/anch-bar.mkiv
texmf-dist/tex/context/base/anch-bck.mkvi
@@ -41203,7 +45415,6 @@ runfiles size=10437
texmf-dist/tex/context/base/cont-log.mkiv
texmf-dist/tex/context/base/cont-new.mkii
texmf-dist/tex/context/base/cont-new.mkiv
- texmf-dist/tex/context/base/cont-new.tmp
texmf-dist/tex/context/base/cont-nl.mkii
texmf-dist/tex/context/base/cont-nl.mkiv
texmf-dist/tex/context/base/cont-nop.mkiv
@@ -41226,7 +45437,6 @@ runfiles size=10437
texmf-dist/tex/context/base/context.mkii
texmf-dist/tex/context/base/context.mkiv
texmf-dist/tex/context/base/context.rme
- texmf-dist/tex/context/base/context.tmp
texmf-dist/tex/context/base/core-con.lua
texmf-dist/tex/context/base/core-con.mkii
texmf-dist/tex/context/base/core-con.mkiv
@@ -41399,6 +45609,8 @@ runfiles size=10437
texmf-dist/tex/context/base/font-pre.mkiv
texmf-dist/tex/context/base/font-run.mkii
texmf-dist/tex/context/base/font-run.mkiv
+ texmf-dist/tex/context/base/font-sel.lua
+ texmf-dist/tex/context/base/font-sel.mkvi
texmf-dist/tex/context/base/font-set.mkvi
texmf-dist/tex/context/base/font-sol.lua
texmf-dist/tex/context/base/font-sol.mkvi
@@ -41407,6 +45619,7 @@ runfiles size=10437
texmf-dist/tex/context/base/font-syn.lua
texmf-dist/tex/context/base/font-tfm.lua
texmf-dist/tex/context/base/font-tra.mkiv
+ texmf-dist/tex/context/base/font-trt.lua
texmf-dist/tex/context/base/font-uni.mkii
texmf-dist/tex/context/base/font-uni.mkiv
texmf-dist/tex/context/base/font-unk.mkii
@@ -41449,6 +45662,7 @@ runfiles size=10437
texmf-dist/tex/context/base/l-dir.lua
texmf-dist/tex/context/base/l-file.lua
texmf-dist/tex/context/base/l-function.lua
+ texmf-dist/tex/context/base/l-gzip.lua
texmf-dist/tex/context/base/l-io.lua
texmf-dist/tex/context/base/l-lpeg.lua
texmf-dist/tex/context/base/l-lua.lua
@@ -41496,6 +45710,8 @@ runfiles size=10437
texmf-dist/tex/context/base/lang-lab.mkiv
texmf-dist/tex/context/base/lang-mis.mkii
texmf-dist/tex/context/base/lang-mis.mkiv
+ texmf-dist/tex/context/base/lang-rep.lua
+ texmf-dist/tex/context/base/lang-rep.mkiv
texmf-dist/tex/context/base/lang-run.mkii
texmf-dist/tex/context/base/lang-sla.mkii
texmf-dist/tex/context/base/lang-spa.mkii
@@ -41587,6 +45803,7 @@ runfiles size=10437
texmf-dist/tex/context/base/m-format.tex
texmf-dist/tex/context/base/m-graph.mkii
texmf-dist/tex/context/base/m-graph.mkiv
+ texmf-dist/tex/context/base/m-hemistich.mkiv
texmf-dist/tex/context/base/m-ipsum.mkiv
texmf-dist/tex/context/base/m-json.mkiv
texmf-dist/tex/context/base/m-layout.tex
@@ -41600,21 +45817,26 @@ runfiles size=10437
texmf-dist/tex/context/base/m-morse.mkvi
texmf-dist/tex/context/base/m-narrowtt.tex
texmf-dist/tex/context/base/m-newmat.tex
+ texmf-dist/tex/context/base/m-nodechart.lua
texmf-dist/tex/context/base/m-nodechart.mkvi
texmf-dist/tex/context/base/m-ntb-to-xtb.mkiv
texmf-dist/tex/context/base/m-obsolete.mkii
texmf-dist/tex/context/base/m-obsolete.mkiv
+ texmf-dist/tex/context/base/m-oldbibtex.mkiv
texmf-dist/tex/context/base/m-oldfun.mkiv
texmf-dist/tex/context/base/m-oldnum.mkiv
texmf-dist/tex/context/base/m-pdfsnc.mkii
texmf-dist/tex/context/base/m-pictex.tex
+ texmf-dist/tex/context/base/m-pipemode.mkiv
texmf-dist/tex/context/base/m-pstricks.lua
texmf-dist/tex/context/base/m-pstricks.mkii
texmf-dist/tex/context/base/m-pstricks.mkiv
texmf-dist/tex/context/base/m-punk.mkiv
- texmf-dist/tex/context/base/m-r.tex
+ texmf-dist/tex/context/base/m-r.mkii
+ texmf-dist/tex/context/base/m-scite.mkiv
texmf-dist/tex/context/base/m-spreadsheet.lua
texmf-dist/tex/context/base/m-spreadsheet.mkiv
+ texmf-dist/tex/context/base/m-sql.mkiv
texmf-dist/tex/context/base/m-steps.lua
texmf-dist/tex/context/base/m-steps.mkii
texmf-dist/tex/context/base/m-steps.mkvi
@@ -41629,6 +45851,7 @@ runfiles size=10437
texmf-dist/tex/context/base/m-visual.mkii
texmf-dist/tex/context/base/m-visual.mkiv
texmf-dist/tex/context/base/m-zint.mkiv
+ texmf-dist/tex/context/base/math-acc.mkvi
texmf-dist/tex/context/base/math-act.lua
texmf-dist/tex/context/base/math-ali.mkiv
texmf-dist/tex/context/base/math-ams.mkii
@@ -41638,6 +45861,7 @@ runfiles size=10437
texmf-dist/tex/context/base/math-def.mkiv
texmf-dist/tex/context/base/math-del.mkiv
texmf-dist/tex/context/base/math-dim.lua
+ texmf-dist/tex/context/base/math-dir.lua
texmf-dist/tex/context/base/math-dis.mkiv
texmf-dist/tex/context/base/math-eul.mkii
texmf-dist/tex/context/base/math-ext.lua
@@ -41659,6 +45883,7 @@ runfiles size=10437
texmf-dist/tex/context/base/math-noa.lua
texmf-dist/tex/context/base/math-pln.mkii
texmf-dist/tex/context/base/math-pln.mkiv
+ texmf-dist/tex/context/base/math-rad.mkvi
texmf-dist/tex/context/base/math-ren.lua
texmf-dist/tex/context/base/math-run.mkii
texmf-dist/tex/context/base/math-scr.mkiv
@@ -41673,6 +45898,8 @@ runfiles size=10437
texmf-dist/tex/context/base/meta-dum.mkii
texmf-dist/tex/context/base/meta-fig.mkii
texmf-dist/tex/context/base/meta-fig.mkiv
+ texmf-dist/tex/context/base/meta-fnt.lua
+ texmf-dist/tex/context/base/meta-fnt.mkiv
texmf-dist/tex/context/base/meta-fun.lua
texmf-dist/tex/context/base/meta-fun.mkiv
texmf-dist/tex/context/base/meta-grd.mkiv
@@ -41706,6 +45933,7 @@ runfiles size=10437
texmf-dist/tex/context/base/metatex.tex
texmf-dist/tex/context/base/mlib-ctx.lua
texmf-dist/tex/context/base/mlib-ctx.mkiv
+ texmf-dist/tex/context/base/mlib-lua.lua
texmf-dist/tex/context/base/mlib-pdf.lua
texmf-dist/tex/context/base/mlib-pdf.mkiv
texmf-dist/tex/context/base/mlib-pps.lua
@@ -41719,7 +45947,9 @@ runfiles size=10437
texmf-dist/tex/context/base/mtx-context-listing.tex
texmf-dist/tex/context/base/mtx-context-markdown.tex
texmf-dist/tex/context/base/mtx-context-select.tex
+ texmf-dist/tex/context/base/mtx-context-sql.tex
texmf-dist/tex/context/base/mtx-context-timing.tex
+ texmf-dist/tex/context/base/mtx-context-xml.tex
texmf-dist/tex/context/base/mult-aux.lua
texmf-dist/tex/context/base/mult-aux.mkii
texmf-dist/tex/context/base/mult-aux.mkiv
@@ -41772,10 +46002,14 @@ runfiles size=10437
texmf-dist/tex/context/base/node-ini.lua
texmf-dist/tex/context/base/node-ini.mkiv
texmf-dist/tex/context/base/node-inj.lua
+ texmf-dist/tex/context/base/node-ltp.lua
+ texmf-dist/tex/context/base/node-met.lua
texmf-dist/tex/context/base/node-mig.lua
texmf-dist/tex/context/base/node-mig.mkiv
+ texmf-dist/tex/context/base/node-nut.lua
texmf-dist/tex/context/base/node-pag.lua
texmf-dist/tex/context/base/node-pag.mkiv
+ texmf-dist/tex/context/base/node-ppt.lua
texmf-dist/tex/context/base/node-pro.lua
texmf-dist/tex/context/base/node-ref.lua
texmf-dist/tex/context/base/node-res.lua
@@ -41843,7 +46077,7 @@ runfiles size=10437
texmf-dist/tex/context/base/page-lay.mkiv
texmf-dist/tex/context/base/page-lin.lua
texmf-dist/tex/context/base/page-lin.mkii
- texmf-dist/tex/context/base/page-lin.mkiv
+ texmf-dist/tex/context/base/page-lin.mkvi
texmf-dist/tex/context/base/page-log.mkii
texmf-dist/tex/context/base/page-mak.mkii
texmf-dist/tex/context/base/page-mak.mkvi
@@ -41892,6 +46126,22 @@ runfiles size=10437
texmf-dist/tex/context/base/prop-ini.mkiv
texmf-dist/tex/context/base/prop-lay.mkii
texmf-dist/tex/context/base/prop-mis.mkii
+ texmf-dist/tex/context/base/publ-aut.lua
+ texmf-dist/tex/context/base/publ-dat.lua
+ texmf-dist/tex/context/base/publ-fnd.lua
+ texmf-dist/tex/context/base/publ-imp-apa.mkiv
+ texmf-dist/tex/context/base/publ-imp-cite.mkiv
+ texmf-dist/tex/context/base/publ-imp-commands.mkiv
+ texmf-dist/tex/context/base/publ-imp-definitions.mkiv
+ texmf-dist/tex/context/base/publ-ini.lua
+ texmf-dist/tex/context/base/publ-ini.mkiv
+ texmf-dist/tex/context/base/publ-old.mkiv
+ texmf-dist/tex/context/base/publ-oth.lua
+ texmf-dist/tex/context/base/publ-tra.lua
+ texmf-dist/tex/context/base/publ-tra.mkiv
+ texmf-dist/tex/context/base/publ-usr.lua
+ texmf-dist/tex/context/base/publ-usr.mkiv
+ texmf-dist/tex/context/base/publ-xml.mkiv
texmf-dist/tex/context/base/regi-8859-1.lua
texmf-dist/tex/context/base/regi-8859-1.mkii
texmf-dist/tex/context/base/regi-8859-10.lua
@@ -41963,36 +46213,52 @@ runfiles size=10437
texmf-dist/tex/context/base/s-fnt-01.mkii
texmf-dist/tex/context/base/s-fnt-02.mkii
texmf-dist/tex/context/base/s-fnt-10.mkiv
- texmf-dist/tex/context/base/s-fnt-11.mkiv
texmf-dist/tex/context/base/s-fnt-20.mkiv
texmf-dist/tex/context/base/s-fnt-21.mkiv
- texmf-dist/tex/context/base/s-fnt-23.mkiv
texmf-dist/tex/context/base/s-fnt-24.mkiv
- texmf-dist/tex/context/base/s-fnt-26.mkiv
- texmf-dist/tex/context/base/s-fnt-28.mkiv
- texmf-dist/tex/context/base/s-fnt-29.mkiv
- texmf-dist/tex/context/base/s-fnt-30.mkiv
- texmf-dist/tex/context/base/s-fnt-31.mkiv
- texmf-dist/tex/context/base/s-fnt-32.mkiv
+ texmf-dist/tex/context/base/s-fonts-coverage.lua
+ texmf-dist/tex/context/base/s-fonts-coverage.mkiv
+ texmf-dist/tex/context/base/s-fonts-features.lua
+ texmf-dist/tex/context/base/s-fonts-features.mkiv
+ texmf-dist/tex/context/base/s-fonts-goodies.lua
+ texmf-dist/tex/context/base/s-fonts-goodies.mkiv
+ texmf-dist/tex/context/base/s-fonts-missing.lua
texmf-dist/tex/context/base/s-fonts-missing.mkiv
+ texmf-dist/tex/context/base/s-fonts-shapes.lua
+ texmf-dist/tex/context/base/s-fonts-shapes.mkiv
+ texmf-dist/tex/context/base/s-fonts-system.lua
+ texmf-dist/tex/context/base/s-fonts-system.mkiv
texmf-dist/tex/context/base/s-fonts-tables.lua
texmf-dist/tex/context/base/s-fonts-tables.mkiv
+ texmf-dist/tex/context/base/s-fonts-vectors.lua
+ texmf-dist/tex/context/base/s-fonts-vectors.mkiv
texmf-dist/tex/context/base/s-grk-00.mkii
texmf-dist/tex/context/base/s-inf-01.mkvi
texmf-dist/tex/context/base/s-inf-02.mkiv
texmf-dist/tex/context/base/s-inf-03.mkiv
texmf-dist/tex/context/base/s-inf-04.mkiv
texmf-dist/tex/context/base/s-jap-00.mkii
- texmf-dist/tex/context/base/s-lan-03.mkiv
- texmf-dist/tex/context/base/s-lan-04.mkiv
- texmf-dist/tex/context/base/s-lan-06.mkiv
+ texmf-dist/tex/context/base/s-languages-counters.lua
+ texmf-dist/tex/context/base/s-languages-counters.mkiv
+ texmf-dist/tex/context/base/s-languages-frequencies.lua
+ texmf-dist/tex/context/base/s-languages-frequencies.mkiv
+ texmf-dist/tex/context/base/s-languages-hyphenation.lua
+ texmf-dist/tex/context/base/s-languages-hyphenation.mkiv
+ texmf-dist/tex/context/base/s-languages-sorting.lua
+ texmf-dist/tex/context/base/s-languages-sorting.mkiv
+ texmf-dist/tex/context/base/s-languages-system.lua
+ texmf-dist/tex/context/base/s-languages-system.mkiv
texmf-dist/tex/context/base/s-mag-01.tex
texmf-dist/tex/context/base/s-map-10.mkii
texmf-dist/tex/context/base/s-map-10.mkiv
- texmf-dist/tex/context/base/s-mat-10.mkiv
- texmf-dist/tex/context/base/s-mat-11.mkiv
- texmf-dist/tex/context/base/s-mat-12.mkiv
- texmf-dist/tex/context/base/s-mat-20.mkiv
+ texmf-dist/tex/context/base/s-math-characters.lua
+ texmf-dist/tex/context/base/s-math-characters.mkiv
+ texmf-dist/tex/context/base/s-math-coverage.lua
+ texmf-dist/tex/context/base/s-math-coverage.mkiv
+ texmf-dist/tex/context/base/s-math-extensibles.mkiv
+ texmf-dist/tex/context/base/s-math-parameters.lua
+ texmf-dist/tex/context/base/s-math-parameters.mkiv
+ texmf-dist/tex/context/base/s-math-repertoire.mkiv
texmf-dist/tex/context/base/s-mod-00.mkii
texmf-dist/tex/context/base/s-mod-00.mkiv
texmf-dist/tex/context/base/s-mod-01.mkii
@@ -42000,7 +46266,8 @@ runfiles size=10437
texmf-dist/tex/context/base/s-mod-02.mkii
texmf-dist/tex/context/base/s-mod-02.mkiv
texmf-dist/tex/context/base/s-mod.ctx
- texmf-dist/tex/context/base/s-phy-01.mkiv
+ texmf-dist/tex/context/base/s-pages-statistics.mkiv
+ texmf-dist/tex/context/base/s-physics-units.mkiv
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
@@ -42045,10 +46312,14 @@ runfiles size=10437
texmf-dist/tex/context/base/s-pre-71.mkiv
texmf-dist/tex/context/base/s-pre-93.tex
texmf-dist/tex/context/base/s-pre-96.tex
+ texmf-dist/tex/context/base/s-present-tiles.mkiv
texmf-dist/tex/context/base/s-ptj-01.tex
texmf-dist/tex/context/base/s-reg-01.mkiv
texmf-dist/tex/context/base/s-set-31.mkiv
+ texmf-dist/tex/context/base/s-sql-tables.lua
+ texmf-dist/tex/context/base/s-sql-tables.mkiv
texmf-dist/tex/context/base/s-syn-01.tex
+ texmf-dist/tex/context/base/s-youless.mkiv
texmf-dist/tex/context/base/scrn-bar.mkvi
texmf-dist/tex/context/base/scrn-but.lua
texmf-dist/tex/context/base/scrn-but.mkvi
@@ -42072,6 +46343,7 @@ runfiles size=10437
texmf-dist/tex/context/base/scrp-eth.lua
texmf-dist/tex/context/base/scrp-ini.lua
texmf-dist/tex/context/base/scrp-ini.mkiv
+ texmf-dist/tex/context/base/scrp-tha.lua
texmf-dist/tex/context/base/sort-def.mkii
texmf-dist/tex/context/base/sort-ini.lua
texmf-dist/tex/context/base/sort-ini.mkii
@@ -42082,7 +46354,6 @@ runfiles size=10437
texmf-dist/tex/context/base/spac-adj.mkiv
texmf-dist/tex/context/base/spac-ali.lua
texmf-dist/tex/context/base/spac-ali.mkiv
- texmf-dist/tex/context/base/spac-cha.mkiv
texmf-dist/tex/context/base/spac-chr.lua
texmf-dist/tex/context/base/spac-chr.mkiv
texmf-dist/tex/context/base/spac-def.mkiv
@@ -42289,6 +46560,7 @@ runfiles size=10437
texmf-dist/tex/context/base/trac-jus.mkiv
texmf-dist/tex/context/base/trac-lmx.lua
texmf-dist/tex/context/base/trac-log.lua
+ texmf-dist/tex/context/base/trac-par.lua
texmf-dist/tex/context/base/trac-pro.lua
texmf-dist/tex/context/base/trac-set.lua
texmf-dist/tex/context/base/trac-tex.lua
@@ -42319,6 +46591,7 @@ runfiles size=10437
texmf-dist/tex/context/base/type-imp-computer-modern-unicode.mkiv
texmf-dist/tex/context/base/type-imp-cow.mkiv
texmf-dist/tex/context/base/type-imp-dejavu.mkiv
+ texmf-dist/tex/context/base/type-imp-ebgaramond.mkiv
texmf-dist/tex/context/base/type-imp-euler.mkiv
texmf-dist/tex/context/base/type-imp-ghz.mkiv
texmf-dist/tex/context/base/type-imp-hgz.mkiv
@@ -42329,14 +46602,17 @@ runfiles size=10437
texmf-dist/tex/context/base/type-imp-iwona.mkiv
texmf-dist/tex/context/base/type-imp-kurier.mkiv
texmf-dist/tex/context/base/type-imp-latinmodern.mkiv
+ texmf-dist/tex/context/base/type-imp-lato.mkiv
texmf-dist/tex/context/base/type-imp-liberation.mkiv
texmf-dist/tex/context/base/type-imp-libertine.mkiv
texmf-dist/tex/context/base/type-imp-lmnames.mkiv
texmf-dist/tex/context/base/type-imp-lucida-opentype.mkiv
texmf-dist/tex/context/base/type-imp-lucida-typeone.mkiv
texmf-dist/tex/context/base/type-imp-mathdesign.mkiv
+ texmf-dist/tex/context/base/type-imp-mathdigits.mkiv
texmf-dist/tex/context/base/type-imp-mathtimes.mkiv
texmf-dist/tex/context/base/type-imp-mscore.mkiv
+ texmf-dist/tex/context/base/type-imp-opendyslexic.mkiv
texmf-dist/tex/context/base/type-imp-osx.mkiv
texmf-dist/tex/context/base/type-imp-postscript.mkiv
texmf-dist/tex/context/base/type-imp-punknova.mkiv
@@ -42374,10 +46650,17 @@ runfiles size=10437
texmf-dist/tex/context/base/typo-cln.lua
texmf-dist/tex/context/base/typo-cln.mkiv
texmf-dist/tex/context/base/typo-del.mkiv
+ texmf-dist/tex/context/base/typo-dha.lua
texmf-dist/tex/context/base/typo-dig.lua
texmf-dist/tex/context/base/typo-dig.mkiv
texmf-dist/tex/context/base/typo-dir.lua
texmf-dist/tex/context/base/typo-dir.mkiv
+ texmf-dist/tex/context/base/typo-drp.lua
+ texmf-dist/tex/context/base/typo-drp.mkiv
+ texmf-dist/tex/context/base/typo-dua.lua
+ texmf-dist/tex/context/base/typo-dub.lua
+ texmf-dist/tex/context/base/typo-fln.lua
+ texmf-dist/tex/context/base/typo-fln.mkiv
texmf-dist/tex/context/base/typo-ini.lua
texmf-dist/tex/context/base/typo-ini.mkii
texmf-dist/tex/context/base/typo-ini.mkiv
@@ -42392,7 +46675,6 @@ runfiles size=10437
texmf-dist/tex/context/base/typo-mar.mkiv
texmf-dist/tex/context/base/typo-pag.lua
texmf-dist/tex/context/base/typo-pag.mkiv
- texmf-dist/tex/context/base/typo-par.lua
texmf-dist/tex/context/base/typo-par.mkiv
texmf-dist/tex/context/base/typo-prc.lua
texmf-dist/tex/context/base/typo-prc.mkvi
@@ -42401,6 +46683,8 @@ runfiles size=10437
texmf-dist/tex/context/base/typo-scr.mkiv
texmf-dist/tex/context/base/typo-spa.lua
texmf-dist/tex/context/base/typo-spa.mkiv
+ texmf-dist/tex/context/base/typo-tal.lua
+ texmf-dist/tex/context/base/typo-tal.mkiv
texmf-dist/tex/context/base/typo-txt.mkvi
texmf-dist/tex/context/base/unic-000.mkii
texmf-dist/tex/context/base/unic-001.mkii
@@ -42434,13 +46718,16 @@ runfiles size=10437
texmf-dist/tex/context/base/util-pck.lua
texmf-dist/tex/context/base/util-prs.lua
texmf-dist/tex/context/base/util-ran.lua
+ texmf-dist/tex/context/base/util-sci.lua
texmf-dist/tex/context/base/util-seq.lua
+ texmf-dist/tex/context/base/util-soc.lua
texmf-dist/tex/context/base/util-sql-imp-client.lua
texmf-dist/tex/context/base/util-sql-imp-library.lua
texmf-dist/tex/context/base/util-sql-imp-swiglib.lua
texmf-dist/tex/context/base/util-sql-loggers.lua
texmf-dist/tex/context/base/util-sql-sessions.lua
texmf-dist/tex/context/base/util-sql-tickets.lua
+ texmf-dist/tex/context/base/util-sql-tracers.lua
texmf-dist/tex/context/base/util-sql-users.lua
texmf-dist/tex/context/base/util-sql.lua
texmf-dist/tex/context/base/util-sta.lua
@@ -42448,6 +46735,7 @@ runfiles size=10437
texmf-dist/tex/context/base/util-str.lua
texmf-dist/tex/context/base/util-tab.lua
texmf-dist/tex/context/base/util-tpl.lua
+ texmf-dist/tex/context/base/util-you.lua
texmf-dist/tex/context/base/verb-c.mkii
texmf-dist/tex/context/base/verb-eif.mkii
texmf-dist/tex/context/base/verb-ini.mkii
@@ -42495,6 +46783,7 @@ runfiles size=10437
texmf-dist/tex/context/base/x-ldx.ctx
texmf-dist/tex/context/base/x-ldx.lua
texmf-dist/tex/context/base/x-ldx.mkiv
+ texmf-dist/tex/context/base/x-mathml-html.mkiv
texmf-dist/tex/context/base/x-mathml.lua
texmf-dist/tex/context/base/x-mathml.mkii
texmf-dist/tex/context/base/x-mathml.mkiv
@@ -42603,10 +46892,11 @@ runfiles size=10437
texmf-dist/tex/context/fonts/cambria-math.lfg
texmf-dist/tex/context/fonts/cc-icons.lfg
texmf-dist/tex/context/fonts/ccicons.lfg
- texmf-dist/tex/context/fonts/charter-math.lfg
texmf-dist/tex/context/fonts/demo.lfg
texmf-dist/tex/context/fonts/dingbats.lfg
- texmf-dist/tex/context/fonts/garamond-math.lfg
+ texmf-dist/tex/context/fonts/ebgaramond.lfg
+ texmf-dist/tex/context/fonts/euler-math.lfg
+ texmf-dist/tex/context/fonts/hanbatanglvt.lfg
texmf-dist/tex/context/fonts/husayni.lfg
texmf-dist/tex/context/fonts/hvmath-math.lfg
texmf-dist/tex/context/fonts/informal-math.lfg
@@ -42616,11 +46906,18 @@ runfiles size=10437
texmf-dist/tex/context/fonts/lucida-opentype-math.lfg
texmf-dist/tex/context/fonts/lucida-typeone-math.lfg
texmf-dist/tex/context/fonts/mathtimes-math.lfg
+ texmf-dist/tex/context/fonts/mdbch-math.lfg
+ texmf-dist/tex/context/fonts/mdici-math.lfg
+ texmf-dist/tex/context/fonts/mdpgd-math.lfg
+ texmf-dist/tex/context/fonts/mdpus-math.lfg
+ texmf-dist/tex/context/fonts/mdput-math.lfg
+ texmf-dist/tex/context/fonts/mdugm-math.lfg
texmf-dist/tex/context/fonts/px-math.lfg
texmf-dist/tex/context/fonts/symbol-math.lfg
texmf-dist/tex/context/fonts/texgyre.lfg
+ texmf-dist/tex/context/fonts/treatments.lfg
texmf-dist/tex/context/fonts/tx-math.lfg
- texmf-dist/tex/context/fonts/utopia-math.lfg
+ texmf-dist/tex/context/fonts/unifraktur.lfg
texmf-dist/tex/context/fonts/xits-math.lfg
texmf-dist/tex/context/foxet/fe-bryson.xml
texmf-dist/tex/context/foxet/fe-ward.xml
@@ -42762,6 +47059,10 @@ runfiles size=10437
texmf-dist/tex/context/patterns/lang-lv.lua
texmf-dist/tex/context/patterns/lang-lv.pat
texmf-dist/tex/context/patterns/lang-lv.rme
+ texmf-dist/tex/context/patterns/lang-ml.hyp
+ texmf-dist/tex/context/patterns/lang-ml.lua
+ texmf-dist/tex/context/patterns/lang-ml.pat
+ texmf-dist/tex/context/patterns/lang-ml.rme
texmf-dist/tex/context/patterns/lang-mn.hyp
texmf-dist/tex/context/patterns/lang-mn.lua
texmf-dist/tex/context/patterns/lang-mn.pat
@@ -42810,6 +47111,10 @@ runfiles size=10437
texmf-dist/tex/context/patterns/lang-sv.lua
texmf-dist/tex/context/patterns/lang-sv.pat
texmf-dist/tex/context/patterns/lang-sv.rme
+ texmf-dist/tex/context/patterns/lang-th.hyp
+ texmf-dist/tex/context/patterns/lang-th.lua
+ texmf-dist/tex/context/patterns/lang-th.pat
+ texmf-dist/tex/context/patterns/lang-th.rme
texmf-dist/tex/context/patterns/lang-tk.hyp
texmf-dist/tex/context/patterns/lang-tk.lua
texmf-dist/tex/context/patterns/lang-tk.pat
@@ -42830,8 +47135,10 @@ runfiles size=10437
texmf-dist/tex/context/patterns/lang-zh.lua
texmf-dist/tex/context/patterns/lang-zh.pat
texmf-dist/tex/context/patterns/lang-zh.rme
+ texmf-dist/tex/context/patterns/word-xx.lua
texmf-dist/tex/context/sample/aesop-de.tex
texmf-dist/tex/context/sample/bryson.tex
+ texmf-dist/tex/context/sample/cervantes-es.tex
texmf-dist/tex/context/sample/cow.pdf
texmf-dist/tex/context/sample/d-res-01.xml
texmf-dist/tex/context/sample/davis.tex
@@ -42850,6 +47157,7 @@ runfiles size=10437
texmf-dist/tex/context/sample/materie.tex
texmf-dist/tex/context/sample/mill.png
texmf-dist/tex/context/sample/montgomery.tex
+ texmf-dist/tex/context/sample/quevedo-es.tex
texmf-dist/tex/context/sample/reich.tex
texmf-dist/tex/context/sample/sample.tex
texmf-dist/tex/context/sample/spider.eps
@@ -42877,14 +47185,18 @@ runfiles size=10437
texmf-dist/tex/generic/context/luatex/luatex-fonts-demo-vf-1.lua
texmf-dist/tex/generic/context/luatex/luatex-fonts-enc.lua
texmf-dist/tex/generic/context/luatex/luatex-fonts-ext.lua
+ texmf-dist/tex/generic/context/luatex/luatex-fonts-inj.lua
texmf-dist/tex/generic/context/luatex/luatex-fonts-lua.lua
texmf-dist/tex/generic/context/luatex/luatex-fonts-merged.lua
+ texmf-dist/tex/generic/context/luatex/luatex-fonts-otn.lua
texmf-dist/tex/generic/context/luatex/luatex-fonts-syn.lua
texmf-dist/tex/generic/context/luatex/luatex-fonts-tfm.lua
texmf-dist/tex/generic/context/luatex/luatex-fonts.lua
texmf-dist/tex/generic/context/luatex/luatex-fonts.tex
texmf-dist/tex/generic/context/luatex/luatex-languages.lua
texmf-dist/tex/generic/context/luatex/luatex-languages.tex
+ texmf-dist/tex/generic/context/luatex/luatex-math.lua
+ texmf-dist/tex/generic/context/luatex/luatex-math.tex
texmf-dist/tex/generic/context/luatex/luatex-mplib.lua
texmf-dist/tex/generic/context/luatex/luatex-mplib.tex
texmf-dist/tex/generic/context/luatex/luatex-plain.tex
@@ -42926,12 +47238,12 @@ runfiles size=11
texmf-dist/tex/context/third/account/t-floatnumber.mkiv
texmf-dist/tex/context/third/account/t-floatnumber.tex
catalogue-ctan /macros/context/contrib/context-account
-catalogue-date 2012-07-18 17:38:10 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license pd
name context-algorithmic
category ConTeXt
-revision 28580
+revision 31026
shortdesc Algorithm handling in ConTeXt.
longdesc Support for typesetting algorithms (a port of the LaTeX package
longdesc algorithmic, which was a predecessor of algorithmicx).
@@ -42940,7 +47252,7 @@ runfiles size=5
texmf-dist/tex/context/third/algorithmic/t-algorithmic.mkii
texmf-dist/tex/context/third/algorithmic/t-algorithmic.mkiv
catalogue-ctan /macros/context/contrib/context-algorithmic
-catalogue-date 2012-02-09 16:32:08 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license pd
name context-bnf
@@ -42977,7 +47289,7 @@ docfiles size=60
runfiles size=2
texmf-dist/tex/context/third/chromato/t-chromato.tex
catalogue-ctan /macros/context/contrib/context-chromato
-catalogue-date 2006-08-27 16:41:02 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license gpl
name context-construction-plan
@@ -43013,7 +47325,7 @@ runfiles size=10
texmf-dist/tex/context/third/cyrillicnumbers/t-cyrillicnumbers.mkii
texmf-dist/tex/context/third/cyrillicnumbers/t-cyrillicnumbers.mkvi
catalogue-ctan /macros/context/contrib/context-cyrillicnumbers
-catalogue-date 2013-04-12 11:27:24 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license bsd
name context-degrade
@@ -43049,7 +47361,7 @@ runfiles size=11
texmf-dist/tex/context/third/filter/t-filter.mkiv
texmf-dist/tex/context/third/filter/t-module-catcodes.tex
catalogue-ctan /macros/context/contrib/context-filter
-catalogue-date 2013-04-16 16:51:49 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license other-free
name context-fixme
@@ -43063,7 +47375,7 @@ runfiles size=5
texmf-dist/tex/context/third/fixme/t-fixme.mkii
texmf-dist/tex/context/third/fixme/t-fixme.mkiv
catalogue-ctan /macros/context/contrib/context-fixme
-catalogue-date 2013-03-13 15:44:34 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license pd
name context-french
@@ -43097,7 +47409,7 @@ runfiles size=7
texmf-dist/tex/context/third/fullpage/t-fullpage.mkii
texmf-dist/tex/context/third/fullpage/t-fullpage.mkiv
catalogue-ctan /macros/context/contrib/context-fullpage
-catalogue-date 2012-07-23 21:08:55 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license gpl
name context-games
@@ -43137,7 +47449,7 @@ runfiles size=8
texmf-dist/tex/context/third/gantt/gantt-s-tikz.tex
texmf-dist/tex/context/third/gantt/t-gantt.tex
catalogue-ctan /macros/context/contrib/context-gantt
-catalogue-date 2012-03-20 08:48:23 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license pd
name context-gnuplot
@@ -43160,12 +47472,12 @@ runfiles size=27
texmf-dist/tex/context/third/gnuplot/t-gnuplot.mkii
texmf-dist/tex/context/third/gnuplot/t-gnuplot.mkiv
catalogue-ctan /macros/context/contrib/context-gnuplot
-catalogue-date 2006-08-27 16:41:02 +0100
+catalogue-date 2014-04-27 13:42:31 +0200
catalogue-license gpl
name context-letter
category ConTeXt
-revision 28899
+revision 31331
shortdesc Context package for writing letters.
longdesc A means of writing 'vanilla' letters and memos is provided,
longdesc with support covering Context Mkii and Mkiv. The design of
@@ -43229,7 +47541,7 @@ runfiles size=101
texmf-dist/tex/context/third/letter/style/memo-imp-table.mkii
texmf-dist/tex/context/third/letter/style/memo-imp-table.mkiv
catalogue-ctan /macros/context/contrib/context-letter
-catalogue-date 2012-09-24 22:26:06 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license gpl
name context-lettrine
@@ -43246,7 +47558,7 @@ runfiles size=3
texmf-dist/tex/context/interface/third/lettrine.xml
texmf-dist/tex/context/third/lettrine/t-lettrine.tex
catalogue-ctan /macros/context/contrib/context-lettrine
-catalogue-date 2012-06-18 20:00:19 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license pd
name context-lilypond
@@ -43279,7 +47591,7 @@ runfiles size=4
texmf-dist/tex/context/interface/third/t-mathsets.xml
texmf-dist/tex/context/third/mathsets/t-mathsets.tex
catalogue-ctan /macros/context/contrib/context-mathsets
-catalogue-date 2012-07-23 21:08:55 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license other-free
name context-notes-zh-cn
@@ -43313,21 +47625,21 @@ docfiles size=252
texmf-dist/doc/context/third/context-notes-zh-cn/src/t-zhfonts.mkiv
texmf-dist/doc/context/third/context-notes-zh-cn/src/t-zhspuncs.lua
catalogue-ctan /info/context-notes-zh-cn
-catalogue-date 2012-02-07 15:34:07 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license gpl
name context-rst
category ConTeXt
-revision 29575
+revision 33092
shortdesc Process reStructuredText with ConTeXt.
longdesc The package provides a converter and module for typesetting
longdesc reStructuredText with ConTeXt. The module uses several lua
longdesc scripts in doing its work. Documentation is supplied in rst,
longdesc which seems to be readable as text, but...
depend context
-docfiles size=47
- texmf-dist/doc/context/third/rst/COPYING
- texmf-dist/doc/context/third/rst/README.rst details="Readme"
+docfiles size=46
+ texmf-dist/doc/context/third/rst/OMakefile
+ texmf-dist/doc/context/third/rst/OMakefile.omc
texmf-dist/doc/context/third/rst/documentation.rst
texmf-dist/doc/context/third/rst/hybridtest.tex
texmf-dist/doc/context/third/rst/inc-first.rst
@@ -43335,10 +47647,10 @@ docfiles size=47
texmf-dist/doc/context/third/rst/inc-third.rst
texmf-dist/doc/context/third/rst/inc.tex
texmf-dist/doc/context/third/rst/manual.bib
- texmf-dist/doc/context/third/rst/manual.pdf
+ texmf-dist/doc/context/third/rst/manual.pdf details="Manual"
texmf-dist/doc/context/third/rst/manual.tex
texmf-dist/doc/context/third/rst/moduletest.tex
-runfiles size=41
+runfiles size=42
texmf-dist/scripts/context/lua/third/rst/mtx-t-rst.lua
texmf-dist/tex/context/interface/third/t-rst.xml
texmf-dist/tex/context/third/rst/rst_context.lua
@@ -43348,9 +47660,9 @@ runfiles size=41
texmf-dist/tex/context/third/rst/rst_setups.lua
texmf-dist/tex/context/third/rst/t-rst.mkiv
catalogue-ctan /macros/context/contrib/context-rst
-catalogue-date 2011-10-03 11:06:20 +0200
+catalogue-date 2014-03-03 08:58:55 +0100
catalogue-license other-free
-catalogue-version 0.4
+catalogue-version 0.6c
name context-ruby
category ConTeXt
@@ -43369,7 +47681,7 @@ runfiles size=9
texmf-dist/tex/context/third/ruby/t-ruby.mkiv
texmf-dist/tex/context/third/ruby/t-ruby.mkvi
catalogue-ctan /macros/context/contrib/context-ruby
-catalogue-date 2012-11-30 11:03:17 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license pd
name context-simplefonts
@@ -43386,7 +47698,7 @@ runfiles size=16
texmf-dist/tex/context/third/simplefonts/t-simplefonts.mkii
texmf-dist/tex/context/third/simplefonts/t-simplefonts.mkiv
catalogue-ctan /macros/context/contrib/context-simplefonts
-catalogue-date 2012-08-13 18:29:21 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license gpl
name context-simpleslides
@@ -43495,7 +47807,7 @@ runfiles size=112
texmf-dist/tex/context/third/transliterator/transliterator.run
texmf-dist/tex/context/third/transliterator/transliterator.tuc
catalogue-ctan /macros/context/contrib/context-transliterator
-catalogue-date 2013-04-09 13:56:04 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license bsd
name context-typearea
@@ -43511,7 +47823,7 @@ docfiles size=21
runfiles size=1
texmf-dist/tex/context/third/typearea/t-typearea.tex
catalogue-ctan /macros/context/contrib/context-typearea
-catalogue-date 2012-08-13 18:29:21 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license gpl
name context-typescripts
@@ -43592,7 +47904,7 @@ runfiles size=71
texmf-dist/tex/context/third/typescripts/type-vollkorn.mkii
texmf-dist/tex/context/third/typescripts/type-vollkorn.mkiv
catalogue-ctan /macros/context/contrib/context-typescripts
-catalogue-date 2012-04-27 17:08:26 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license gpl2
name context-vim
@@ -43619,281 +47931,280 @@ runfiles size=11
texmf-dist/tex/context/third/vim/t-syntax-highlight.mkiv
texmf-dist/tex/context/third/vim/t-vim.tex
catalogue-ctan /macros/context/contrib/context-vim
-catalogue-date 2012-08-13 18:31:33 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license bsd
name context.alpha-linux
category Package
-revision 29834
+revision 34112
shortdesc alpha-linux files of context
binfiles arch=alpha-linux size=7
bin/alpha-linux/context
- bin/alpha-linux/ctxtools
+ bin/alpha-linux/contextjit
bin/alpha-linux/luatools
bin/alpha-linux/mtxrun
- bin/alpha-linux/pstopdf
+ bin/alpha-linux/mtxrunjit
bin/alpha-linux/texexec
bin/alpha-linux/texmfstart
name context.amd64-freebsd
category Package
-revision 29785
+revision 34112
shortdesc amd64-freebsd files of context
binfiles arch=amd64-freebsd size=7
bin/amd64-freebsd/context
- bin/amd64-freebsd/ctxtools
+ bin/amd64-freebsd/contextjit
bin/amd64-freebsd/luatools
bin/amd64-freebsd/mtxrun
- bin/amd64-freebsd/pstopdf
+ bin/amd64-freebsd/mtxrunjit
bin/amd64-freebsd/texexec
bin/amd64-freebsd/texmfstart
name context.amd64-kfreebsd
category Package
-revision 29811
+revision 34112
shortdesc amd64-kfreebsd files of context
binfiles arch=amd64-kfreebsd size=7
bin/amd64-kfreebsd/context
- bin/amd64-kfreebsd/ctxtools
+ bin/amd64-kfreebsd/contextjit
bin/amd64-kfreebsd/luatools
bin/amd64-kfreebsd/mtxrun
- bin/amd64-kfreebsd/pstopdf
+ bin/amd64-kfreebsd/mtxrunjit
bin/amd64-kfreebsd/texexec
bin/amd64-kfreebsd/texmfstart
name context.amd64-netbsd
category Package
-revision 30191
+revision 34112
shortdesc amd64-netbsd files of context
binfiles arch=amd64-netbsd size=7
bin/amd64-netbsd/context
- bin/amd64-netbsd/ctxtools
+ bin/amd64-netbsd/contextjit
bin/amd64-netbsd/luatools
bin/amd64-netbsd/mtxrun
- bin/amd64-netbsd/pstopdf
+ bin/amd64-netbsd/mtxrunjit
bin/amd64-netbsd/texexec
bin/amd64-netbsd/texmfstart
name context.armel-linux
category Package
-revision 29805
+revision 34112
shortdesc armel-linux files of context
binfiles arch=armel-linux size=7
bin/armel-linux/context
- bin/armel-linux/ctxtools
+ bin/armel-linux/contextjit
bin/armel-linux/luatools
bin/armel-linux/mtxrun
- bin/armel-linux/pstopdf
+ bin/armel-linux/mtxrunjit
bin/armel-linux/texexec
bin/armel-linux/texmfstart
name context.armhf-linux
category Package
-revision 30044
+revision 34112
shortdesc armhf-linux files of context
binfiles arch=armhf-linux size=7
bin/armhf-linux/context
- bin/armhf-linux/ctxtools
+ bin/armhf-linux/contextjit
bin/armhf-linux/luatools
bin/armhf-linux/mtxrun
- bin/armhf-linux/pstopdf
+ bin/armhf-linux/mtxrunjit
bin/armhf-linux/texexec
bin/armhf-linux/texmfstart
name context.i386-cygwin
category Package
-revision 29836
+revision 34112
shortdesc i386-cygwin files of context
binfiles arch=i386-cygwin size=7
bin/i386-cygwin/context
- bin/i386-cygwin/ctxtools
+ bin/i386-cygwin/contextjit
bin/i386-cygwin/luatools
bin/i386-cygwin/mtxrun
- bin/i386-cygwin/pstopdf
+ bin/i386-cygwin/mtxrunjit
bin/i386-cygwin/texexec
bin/i386-cygwin/texmfstart
name context.i386-freebsd
category Package
-revision 29785
+revision 34112
shortdesc i386-freebsd files of context
binfiles arch=i386-freebsd size=7
bin/i386-freebsd/context
- bin/i386-freebsd/ctxtools
+ bin/i386-freebsd/contextjit
bin/i386-freebsd/luatools
bin/i386-freebsd/mtxrun
- bin/i386-freebsd/pstopdf
+ bin/i386-freebsd/mtxrunjit
bin/i386-freebsd/texexec
bin/i386-freebsd/texmfstart
name context.i386-kfreebsd
category Package
-revision 29810
+revision 34112
shortdesc i386-kfreebsd files of context
binfiles arch=i386-kfreebsd size=7
bin/i386-kfreebsd/context
- bin/i386-kfreebsd/ctxtools
+ bin/i386-kfreebsd/contextjit
bin/i386-kfreebsd/luatools
bin/i386-kfreebsd/mtxrun
- bin/i386-kfreebsd/pstopdf
+ bin/i386-kfreebsd/mtxrunjit
bin/i386-kfreebsd/texexec
bin/i386-kfreebsd/texmfstart
name context.i386-linux
category Package
-revision 29741
+revision 34112
shortdesc i386-linux files of context
binfiles arch=i386-linux size=7
bin/i386-linux/context
- bin/i386-linux/ctxtools
+ bin/i386-linux/contextjit
bin/i386-linux/luatools
bin/i386-linux/mtxrun
- bin/i386-linux/pstopdf
+ bin/i386-linux/mtxrunjit
bin/i386-linux/texexec
bin/i386-linux/texmfstart
name context.i386-netbsd
category Package
-revision 30191
+revision 34112
shortdesc i386-netbsd files of context
binfiles arch=i386-netbsd size=7
bin/i386-netbsd/context
- bin/i386-netbsd/ctxtools
+ bin/i386-netbsd/contextjit
bin/i386-netbsd/luatools
bin/i386-netbsd/mtxrun
- bin/i386-netbsd/pstopdf
+ bin/i386-netbsd/mtxrunjit
bin/i386-netbsd/texexec
bin/i386-netbsd/texmfstart
name context.i386-solaris
category Package
-revision 29806
+revision 34112
shortdesc i386-solaris files of context
binfiles arch=i386-solaris size=7
bin/i386-solaris/context
- bin/i386-solaris/ctxtools
+ bin/i386-solaris/contextjit
bin/i386-solaris/luatools
bin/i386-solaris/mtxrun
- bin/i386-solaris/pstopdf
+ bin/i386-solaris/mtxrunjit
bin/i386-solaris/texexec
bin/i386-solaris/texmfstart
-name context.mips-irix
-category Package
-revision 29949
-shortdesc mips-irix files of context
-binfiles arch=mips-irix size=7
- bin/mips-irix/context
- bin/mips-irix/ctxtools
- bin/mips-irix/luatools
- bin/mips-irix/mtxrun
- bin/mips-irix/pstopdf
- bin/mips-irix/texexec
- bin/mips-irix/texmfstart
-
name context.mipsel-linux
category Package
-revision 29946
+revision 34112
shortdesc mipsel-linux files of context
binfiles arch=mipsel-linux size=7
bin/mipsel-linux/context
- bin/mipsel-linux/ctxtools
+ bin/mipsel-linux/contextjit
bin/mipsel-linux/luatools
bin/mipsel-linux/mtxrun
- bin/mipsel-linux/pstopdf
+ bin/mipsel-linux/mtxrunjit
bin/mipsel-linux/texexec
bin/mipsel-linux/texmfstart
name context.powerpc-linux
category Package
-revision 29833
+revision 34112
shortdesc powerpc-linux files of context
binfiles arch=powerpc-linux size=7
bin/powerpc-linux/context
- bin/powerpc-linux/ctxtools
+ bin/powerpc-linux/contextjit
bin/powerpc-linux/luatools
bin/powerpc-linux/mtxrun
- bin/powerpc-linux/pstopdf
+ bin/powerpc-linux/mtxrunjit
bin/powerpc-linux/texexec
bin/powerpc-linux/texmfstart
name context.sparc-solaris
category Package
-revision 29812
+revision 34112
shortdesc sparc-solaris files of context
binfiles arch=sparc-solaris size=7
bin/sparc-solaris/context
- bin/sparc-solaris/ctxtools
+ bin/sparc-solaris/contextjit
bin/sparc-solaris/luatools
bin/sparc-solaris/mtxrun
- bin/sparc-solaris/pstopdf
+ bin/sparc-solaris/mtxrunjit
bin/sparc-solaris/texexec
bin/sparc-solaris/texmfstart
name context.universal-darwin
category Package
-revision 29808
+revision 34112
shortdesc universal-darwin files of context
binfiles arch=universal-darwin size=7
bin/universal-darwin/context
- bin/universal-darwin/ctxtools
+ bin/universal-darwin/contextjit
bin/universal-darwin/luatools
bin/universal-darwin/mtxrun
- bin/universal-darwin/pstopdf
+ bin/universal-darwin/mtxrunjit
bin/universal-darwin/texexec
bin/universal-darwin/texmfstart
name context.win32
category Package
-revision 30044
+revision 34178
shortdesc win32 files of context
-binfiles arch=win32 size=134
+binfiles arch=win32 size=139
bin/win32/context.exe
- bin/win32/ctxtools.exe
bin/win32/luatools.exe
bin/win32/mtxrun.dll
bin/win32/mtxrun.exe
bin/win32/mtxrun.lua
- bin/win32/pstopdf.exe
+ bin/win32/mtxrunjit.exe
bin/win32/texexec.exe
bin/win32/texmfstart.exe
+name context.x86_64-cygwin
+category Package
+revision 34112
+shortdesc x86_64-cygwin files of context
+binfiles arch=x86_64-cygwin size=7
+ bin/x86_64-cygwin/context
+ bin/x86_64-cygwin/contextjit
+ bin/x86_64-cygwin/luatools
+ bin/x86_64-cygwin/mtxrun
+ bin/x86_64-cygwin/mtxrunjit
+ bin/x86_64-cygwin/texexec
+ bin/x86_64-cygwin/texmfstart
+
name context.x86_64-darwin
category Package
-revision 29809
+revision 34112
shortdesc x86_64-darwin files of context
binfiles arch=x86_64-darwin size=7
bin/x86_64-darwin/context
- bin/x86_64-darwin/ctxtools
+ bin/x86_64-darwin/contextjit
bin/x86_64-darwin/luatools
bin/x86_64-darwin/mtxrun
- bin/x86_64-darwin/pstopdf
+ bin/x86_64-darwin/mtxrunjit
bin/x86_64-darwin/texexec
bin/x86_64-darwin/texmfstart
name context.x86_64-linux
category Package
-revision 29820
+revision 34112
shortdesc x86_64-linux files of context
binfiles arch=x86_64-linux size=7
bin/x86_64-linux/context
- bin/x86_64-linux/ctxtools
+ bin/x86_64-linux/contextjit
bin/x86_64-linux/luatools
bin/x86_64-linux/mtxrun
- bin/x86_64-linux/pstopdf
+ bin/x86_64-linux/mtxrunjit
bin/x86_64-linux/texexec
bin/x86_64-linux/texmfstart
name context.x86_64-solaris
category Package
-revision 29807
+revision 34112
shortdesc x86_64-solaris files of context
binfiles arch=x86_64-solaris size=7
bin/x86_64-solaris/context
- bin/x86_64-solaris/ctxtools
+ bin/x86_64-solaris/contextjit
bin/x86_64-solaris/luatools
bin/x86_64-solaris/mtxrun
- bin/x86_64-solaris/pstopdf
+ bin/x86_64-solaris/mtxrunjit
bin/x86_64-solaris/texexec
bin/x86_64-solaris/texmfstart
@@ -43927,43 +48238,44 @@ catalogue-version 2.14
name contracard
category Package
-revision 29253
+revision 31745
shortdesc Generate calling cards for dances.
-longdesc The class may be used to create calling cards for traditional
-longdesc country dances, such as contra and square dances.
-docfiles size=79
+longdesc A package and a class used to typeset traditional country
+longdesc dances, such as contra and square dances, and to create calling
+longdesc cards for the same.
+docfiles size=57
texmf-dist/doc/latex/contracard/LICENSE
texmf-dist/doc/latex/contracard/Makefile
texmf-dist/doc/latex/contracard/README details="Readme"
- texmf-dist/doc/latex/contracard/contracard-style.sty
+ texmf-dist/doc/latex/contracard/README.md
texmf-dist/doc/latex/contracard/contracard.lod
texmf-dist/doc/latex/contracard/contracard.pdf details="Package documentation"
texmf-dist/doc/latex/contracard/contracard.sty
-srcfiles size=7
+srcfiles size=20
texmf-dist/source/latex/contracard/contracard.dtx
runfiles size=1
texmf-dist/tex/latex/contracard/contracard.cls
catalogue-ctan /macros/latex/contrib/contracard
-catalogue-date 2013-03-01 16:58:29 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
-catalogue-version 0.4
+catalogue-version 1.0.1
name convbkmk
category Package
-revision 30408
+revision 33125
shortdesc Correct platex/uplatex bookmarks in PDF created with hyperref.
longdesc The package provides a small Ruby script that corrects
longdesc bookmarks in PDF files created by platex/uplatex, using
-longdesc hyperref
+longdesc hyperref.
depend convbkmk.ARCH
docfiles size=1
texmf-dist/doc/support/convbkmk/README details="Readme"
runfiles size=4
texmf-dist/scripts/convbkmk/convbkmk.rb
catalogue-ctan /support/convbkmk
-catalogue-date 2013-05-12 22:11:37 +0200
+catalogue-date 2014-03-09 11:14:50 +0100
catalogue-license other-free
-catalogue-version 0.08
+catalogue-version 0.10
name convbkmk.alpha-linux
category Package
@@ -44049,13 +48361,6 @@ shortdesc i386-solaris files of convbkmk
binfiles arch=i386-solaris size=1
bin/i386-solaris/convbkmk
-name convbkmk.mips-irix
-category Package
-revision 30408
-shortdesc mips-irix files of convbkmk
-binfiles arch=mips-irix size=1
- bin/mips-irix/convbkmk
-
name convbkmk.mipsel-linux
category Package
revision 30408
@@ -44091,6 +48396,13 @@ shortdesc win32 files of convbkmk
binfiles arch=win32 size=1
bin/win32/convbkmk.exe
+name convbkmk.x86_64-cygwin
+category Package
+revision 33557
+shortdesc x86_64-cygwin files of convbkmk
+binfiles arch=x86_64-cygwin size=1
+ bin/x86_64-cygwin/convbkmk
+
name convbkmk.x86_64-darwin
category Package
revision 30408
@@ -44151,7 +48463,7 @@ runfiles size=5
texmf-dist/fonts/tfm/public/cookingsymbols/cookingsymbols.tfm
texmf-dist/tex/latex/cookingsymbols/cookingsymbols.sty
catalogue-ctan /macros/latex/contrib/cookingsymbols
-catalogue-date 2011-12-20 12:35:50 +0100
+catalogue-date 2014-04-24 00:33:23 +0200
catalogue-license lppl
catalogue-version 1.0
@@ -44244,7 +48556,7 @@ srcfiles size=9
runfiles size=2
texmf-dist/tex/latex/coolthms/coolthms.sty
catalogue-ctan /macros/latex/contrib/coolthms
-catalogue-date 2013-02-04 23:34:24 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.2
@@ -44310,7 +48622,7 @@ docfiles size=765
runfiles size=1
texmf-dist/tex/latex/copyrightbox/copyrightbox.sty
catalogue-ctan /macros/latex/contrib/copyrightbox
-catalogue-date 2011-12-20 12:39:21 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 0.1
@@ -44331,7 +48643,7 @@ docfiles size=56
runfiles size=1
texmf-dist/tex/latex/coseoul/coseoul.sty
catalogue-ctan /macros/latex/contrib/coseoul
-catalogue-date 2012-06-18 20:32:52 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.1
@@ -44358,7 +48670,7 @@ runfiles size=32
texmf-dist/fonts/type1/public/countriesofeurope/CountriesOfEurope.pfb
texmf-dist/tex/latex/countriesofeurope/CountriesOfEurope.sty
catalogue-ctan /fonts/countriesofeurope
-catalogue-date 2012-04-28 17:44:11 +0200
+catalogue-date 2014-04-25 21:03:35 +0200
catalogue-license lppl
catalogue-version 0.21
@@ -44378,13 +48690,13 @@ srcfiles size=3
runfiles size=1
texmf-dist/tex/latex/counttexruns/counttexruns.sty
catalogue-ctan /macros/latex/contrib/counttexruns
-catalogue-date 2012-09-06 08:51:08 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.00a
name courier
category Package
-revision 28614
+revision 31835
catalogue urw-base35
shortdesc URW "Base 35" font pack for LaTeX.
longdesc A set of fonts for use as "drop-in" replacements for Adobe's
@@ -44398,6 +48710,7 @@ longdesc Symbol); - URW Bookman; - URW Chancery L Medium Italic
longdesc (substituting for Adobe's Zapf Chancery); - URW Gothic L Book
longdesc (substituting for Adobe's Avant Garde); and - URW Palladio L
longdesc (substituting for Adobe's Palatino).
+execute addMap ucr.map
runfiles size=395
texmf-dist/dvips/courier/config.ucr
texmf-dist/fonts/afm/adobe/courier/pcrb8a.afm
@@ -44662,7 +48975,7 @@ catalogue-version 1.01
name covington
category Package
-revision 17750
+revision 34064
shortdesc Linguistic support.
longdesc Numerous minor LaTeX enhancements for linguistics, including
longdesc multiple accents on the same letter, interline glosses (word-
@@ -44676,7 +48989,7 @@ docfiles size=119
runfiles size=4
texmf-dist/tex/latex/covington/covington.sty
catalogue-ctan /macros/latex/contrib/covington
-catalogue-date 2012-05-05 01:04:58 +0200
+catalogue-date 2014-05-16 17:18:37 +0200
catalogue-license pd
name cprotect
@@ -44699,7 +49012,7 @@ srcfiles size=11
runfiles size=3
texmf-dist/tex/latex/cprotect/cprotect.sty
catalogue-ctan /macros/latex/contrib/cprotect
-catalogue-date 2012-05-05 01:04:58 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.0e
@@ -44716,7 +49029,7 @@ docfiles size=11
runfiles size=1
texmf-dist/tex/latex/crbox/crbox.sty
catalogue-ctan /macros/latex/contrib/crbox
-catalogue-date 2013-04-04 12:47:47 +0200
+catalogue-date 2014-04-29 06:13:54 +0200
catalogue-license lppl
catalogue-version 0.1
@@ -44772,38 +49085,37 @@ catalogue-license lppl
name crossword
category Package
-revision 15878
+revision 32657
shortdesc Typeset crossword puzzles.
longdesc An extended grid-based puzzle package, designed to take all
longdesc input (both grid and clues) from the same file. The package can
longdesc typeset grids with holes in them (for advertisements, or other
-longdesc sorts of stuff), and can deal with several sorts of puzzle: -
-longdesc The classical puzzle contains numbers for the words and clues
-longdesc for the words to be filled in. - The numbered puzzle contains
-longdesc numbers in each cell where identical numbers represent
-longdesc identical letters. The goal is to find out which number
-longdesc corresponds to which letter. - The fill-in type of puzzle
-longdesc consists of a grid and a list of words. The goal is to place
-longdesc all words in the grid. - Sudoku and Kakuro puzzles involve
-longdesc filling in grids of numbers according to their own rules.
-longdesc Format may be block-separated, or separated by thick lines.
-longdesc Input to the package is somewhat redundant: specification of
-longdesc the grid is separate from specification of the clues (if
-longdesc they're necessary). The author considers this style both
-longdesc 'natural' and robust.
-docfiles size=57
+longdesc sorts of stuff), and can deal with several sorts of puzzle: The
+longdesc classical puzzle contains numbers for the words and clues for
+longdesc the words to be filled in. The numbered puzzle contains numbers
+longdesc in each cell where identical numbers represent identical
+longdesc letters. The goal is to find out which number corresponds to
+longdesc which letter. The fill-in type of puzzle consists of a grid and
+longdesc a list of words. The goal is to place all words in the grid.
+longdesc Sudoku and Kakuro puzzles involve filling in grids of numbers
+longdesc according to their own rules. Format may be block-separated, or
+longdesc separated by thick lines. Input to the package is somewhat
+longdesc redundant: specification of the grid is separate from
+longdesc specification of the clues (if they're necessary). The author
+longdesc considers this style both 'natural' and robust.
+docfiles size=91
+ texmf-dist/doc/latex/crossword/Makefile
texmf-dist/doc/latex/crossword/README details="Package Readme"
texmf-dist/doc/latex/crossword/cwpuzzle.pdf details="Package documentation"
srcfiles size=20
- texmf-dist/source/latex/crossword/Makefile
texmf-dist/source/latex/crossword/cwpuzzle.dtx
texmf-dist/source/latex/crossword/cwpuzzle.ins
runfiles size=3
texmf-dist/tex/latex/crossword/cwpuzzle.sty
catalogue-ctan /macros/latex/contrib/gene/crossword
-catalogue-date 2012-04-25 13:09:32 +0200
+catalogue-date 2014-01-13 10:33:20 +0100
catalogue-license other-free
-catalogue-version 1.8
+catalogue-version 1.9
name crosswrd
category Package
@@ -44828,7 +49140,7 @@ srcfiles size=17
runfiles size=3
texmf-dist/tex/latex/crosswrd/crosswrd.sty
catalogue-ctan /macros/latex/contrib/crosswrd
-catalogue-date 2012-04-25 13:09:32 +0200
+catalogue-date 2014-01-13 10:33:20 +0100
catalogue-license lppl
catalogue-version 3.0
@@ -44849,20 +49161,21 @@ runfiles size=23
texmf-dist/fonts/tfm/public/cryst/cryst.tfm
texmf-dist/fonts/type1/public/cryst/cryst.pfb
catalogue-ctan /fonts/cryst
-catalogue-date 2012-04-25 13:09:32 +0200
+catalogue-date 2014-04-24 00:33:23 +0200
catalogue-license lppl
name cs
category Package
-revision 28598
+revision 33941
catalogue csfonts
shortdesc Czech/Slovak-tuned Computer Modern fonts.
longdesc The fonts are provided as Metafont source; Type 1 format
longdesc versions (csfonts-t1) are also available.
execute addMap cs-charter.map
execute addMap csfonts.map
-runfiles size=916
+runfiles size=918
texmf-dist/fonts/enc/dvips/cs/xl2.enc
+ texmf-dist/fonts/enc/dvips/cs/xl2f.enc
texmf-dist/fonts/enc/dvips/cs/xt2.enc
texmf-dist/fonts/map/dvips/cs/cs-a35-nodownload.map
texmf-dist/fonts/map/dvips/cs/cs-a35-urwdownload.map
@@ -45262,7 +49575,7 @@ runfiles size=916
texmf-dist/fonts/vf/cs/cs-charter/bchr8z.vf
texmf-dist/fonts/vf/cs/cs-charter/bchri8z.vf
catalogue-ctan /macros/cstex/base/csfonts.tar.gz
-catalogue-date 2012-04-25 13:09:32 +0200
+catalogue-date 2014-04-24 13:39:23 +0200
catalogue-license gpl
name csbulletin
@@ -45282,7 +49595,7 @@ runfiles size=5
texmf-dist/tex/latex/csbulletin/csbulacronym.sty
texmf-dist/tex/latex/csbulletin/csbulletin.cls
catalogue-ctan /macros/latex/contrib/csbulletin
-catalogue-date 2012-04-25 13:09:32 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.0
@@ -45438,14 +49751,6 @@ binfiles arch=i386-solaris size=2
bin/i386-solaris/cslatex
bin/i386-solaris/pdfcslatex
-name cslatex.mips-irix
-category Package
-revision 29975
-shortdesc mips-irix files of cslatex
-binfiles arch=mips-irix size=2
- bin/mips-irix/cslatex
- bin/mips-irix/pdfcslatex
-
name cslatex.mipsel-linux
category Package
revision 29946
@@ -45480,12 +49785,20 @@ binfiles arch=universal-darwin size=2
name cslatex.win32
category Package
-revision 8086
+revision 33512
shortdesc win32 files of cslatex
binfiles arch=win32 size=2
bin/win32/cslatex.exe
bin/win32/pdfcslatex.exe
+name cslatex.x86_64-cygwin
+category Package
+revision 33557
+shortdesc x86_64-cygwin files of cslatex
+binfiles arch=x86_64-cygwin size=2
+ bin/x86_64-cygwin/cslatex
+ bin/x86_64-cygwin/pdfcslatex
+
name cslatex.x86_64-darwin
category Package
revision 18441
@@ -45512,15 +49825,15 @@ binfiles arch=x86_64-solaris size=2
name csplain
category Package
-revision 30594
+revision 34066
shortdesc Plain TeX support for Czech/Slovak typesetting.
depend tex
depend csplain.ARCH
execute AddFormat name=csplain engine=pdftex options="-etex -enc csplain-utf8.ini"
execute AddFormat name=pdfcsplain engine=pdftex options="-etex -enc csplain-utf8.ini"
-execute AddFormat name=pdfcsplain mode=disabled engine=xetex options="-etex csplain.ini"
-execute AddFormat name=pdfcsplain mode=disabled engine=luatex options="-etex csplain.ini"
-runfiles size=99
+execute AddFormat name=pdfcsplain engine=xetex options="-etex csplain.ini"
+execute AddFormat name=pdfcsplain engine=luatex options="-etex csplain.ini"
+runfiles size=124
texmf-dist/tex/csplain/base/csenc-k.tex
texmf-dist/tex/csplain/base/csenc-p.tex
texmf-dist/tex/csplain/base/csenc-u.tex
@@ -45537,12 +49850,14 @@ runfiles size=99
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/luaplain.ini
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/t1code.tex
texmf-dist/tex/csplain/base/t1enc-u.tex
texmf-dist/tex/csplain/base/ucode.tex
+ texmf-dist/tex/csplain/base/xeplain.ini
texmf-dist/tex/csplain/fonts/ams-math.tex
texmf-dist/tex/csplain/fonts/cavantga.tex
texmf-dist/tex/csplain/fonts/cbookman.tex
@@ -45566,10 +49881,15 @@ runfiles size=99
texmf-dist/tex/csplain/fonts/ctimes.tex
texmf-dist/tex/csplain/fonts/dcfonts.tex
texmf-dist/tex/csplain/fonts/ecfonts.tex
+ texmf-dist/tex/csplain/fonts/exchars.tex
texmf-dist/tex/csplain/fonts/lmfonts.tex
texmf-dist/tex/csplain/fonts/luafonts.tex
texmf-dist/tex/csplain/fonts/tx-math.tex
texmf-dist/tex/csplain/fonts/unifam.tex
+ texmf-dist/tex/csplain/opmac/opmac-bib-iso690.tex
+ texmf-dist/tex/csplain/opmac/opmac-bib-simple.tex
+ texmf-dist/tex/csplain/opmac/opmac-bib.tex
+ texmf-dist/tex/csplain/opmac/opmac-xetex.tex
texmf-dist/tex/csplain/opmac/opmac.tex
texmf-dist/tex/csplain/opmac/pdfuni.tex
catalogue-ctan /macros/cstex/base/csplain.tar.gz
@@ -45578,7 +49898,7 @@ catalogue-license other-free
name csplain.alpha-linux
category Package
-revision 3124
+revision 33902
shortdesc alpha-linux files of csplain
binfiles arch=alpha-linux size=2
bin/alpha-linux/csplain
@@ -45586,7 +49906,7 @@ binfiles arch=alpha-linux size=2
name csplain.amd64-freebsd
category Package
-revision 16472
+revision 33902
shortdesc amd64-freebsd files of csplain
binfiles arch=amd64-freebsd size=2
bin/amd64-freebsd/csplain
@@ -45594,7 +49914,7 @@ binfiles arch=amd64-freebsd size=2
name csplain.amd64-kfreebsd
category Package
-revision 18459
+revision 33902
shortdesc amd64-kfreebsd files of csplain
binfiles arch=amd64-kfreebsd size=2
bin/amd64-kfreebsd/csplain
@@ -45602,7 +49922,7 @@ binfiles arch=amd64-kfreebsd size=2
name csplain.amd64-netbsd
category Package
-revision 30191
+revision 33902
shortdesc amd64-netbsd files of csplain
binfiles arch=amd64-netbsd size=2
bin/amd64-netbsd/csplain
@@ -45610,7 +49930,7 @@ binfiles arch=amd64-netbsd size=2
name csplain.armel-linux
category Package
-revision 26458
+revision 33925
shortdesc armel-linux files of csplain
binfiles arch=armel-linux size=2
bin/armel-linux/csplain
@@ -45618,7 +49938,7 @@ binfiles arch=armel-linux size=2
name csplain.armhf-linux
category Package
-revision 30015
+revision 33902
shortdesc armhf-linux files of csplain
binfiles arch=armhf-linux size=2
bin/armhf-linux/csplain
@@ -45626,7 +49946,7 @@ binfiles arch=armhf-linux size=2
name csplain.i386-cygwin
category Package
-revision 13930
+revision 33906
shortdesc i386-cygwin files of csplain
binfiles arch=i386-cygwin size=2
bin/i386-cygwin/csplain
@@ -45634,7 +49954,7 @@ binfiles arch=i386-cygwin size=2
name csplain.i386-freebsd
category Package
-revision 16472
+revision 33902
shortdesc i386-freebsd files of csplain
binfiles arch=i386-freebsd size=2
bin/i386-freebsd/csplain
@@ -45642,7 +49962,7 @@ binfiles arch=i386-freebsd size=2
name csplain.i386-kfreebsd
category Package
-revision 17370
+revision 33902
shortdesc i386-kfreebsd files of csplain
binfiles arch=i386-kfreebsd size=2
bin/i386-kfreebsd/csplain
@@ -45650,7 +49970,7 @@ binfiles arch=i386-kfreebsd size=2
name csplain.i386-linux
category Package
-revision 3006
+revision 33902
shortdesc i386-linux files of csplain
binfiles arch=i386-linux size=2
bin/i386-linux/csplain
@@ -45658,7 +49978,7 @@ binfiles arch=i386-linux size=2
name csplain.i386-netbsd
category Package
-revision 30191
+revision 33902
shortdesc i386-netbsd files of csplain
binfiles arch=i386-netbsd size=2
bin/i386-netbsd/csplain
@@ -45666,23 +49986,15 @@ binfiles arch=i386-netbsd size=2
name csplain.i386-solaris
category Package
-revision 8102
+revision 33902
shortdesc i386-solaris files of csplain
binfiles arch=i386-solaris size=2
bin/i386-solaris/csplain
bin/i386-solaris/pdfcsplain
-name csplain.mips-irix
-category Package
-revision 29975
-shortdesc mips-irix files of csplain
-binfiles arch=mips-irix size=2
- bin/mips-irix/csplain
- bin/mips-irix/pdfcsplain
-
name csplain.mipsel-linux
category Package
-revision 29946
+revision 33902
shortdesc mipsel-linux files of csplain
binfiles arch=mipsel-linux size=2
bin/mipsel-linux/csplain
@@ -45690,7 +50002,7 @@ binfiles arch=mipsel-linux size=2
name csplain.powerpc-linux
category Package
-revision 3469
+revision 33902
shortdesc powerpc-linux files of csplain
binfiles arch=powerpc-linux size=2
bin/powerpc-linux/csplain
@@ -45698,7 +50010,7 @@ binfiles arch=powerpc-linux size=2
name csplain.sparc-solaris
category Package
-revision 3213
+revision 33902
shortdesc sparc-solaris files of csplain
binfiles arch=sparc-solaris size=2
bin/sparc-solaris/csplain
@@ -45706,7 +50018,7 @@ binfiles arch=sparc-solaris size=2
name csplain.universal-darwin
category Package
-revision 9317
+revision 33902
shortdesc universal-darwin files of csplain
binfiles arch=universal-darwin size=2
bin/universal-darwin/csplain
@@ -45714,15 +50026,23 @@ binfiles arch=universal-darwin size=2
name csplain.win32
category Package
-revision 8086
+revision 33512
shortdesc win32 files of csplain
binfiles arch=win32 size=2
bin/win32/csplain.exe
bin/win32/pdfcsplain.exe
+name csplain.x86_64-cygwin
+category Package
+revision 33906
+shortdesc x86_64-cygwin files of csplain
+binfiles arch=x86_64-cygwin size=2
+ bin/x86_64-cygwin/csplain
+ bin/x86_64-cygwin/pdfcsplain
+
name csplain.x86_64-darwin
category Package
-revision 18441
+revision 33902
shortdesc x86_64-darwin files of csplain
binfiles arch=x86_64-darwin size=2
bin/x86_64-darwin/csplain
@@ -45730,7 +50050,7 @@ binfiles arch=x86_64-darwin size=2
name csplain.x86_64-linux
category Package
-revision 3185
+revision 33902
shortdesc x86_64-linux files of csplain
binfiles arch=x86_64-linux size=2
bin/x86_64-linux/csplain
@@ -45738,7 +50058,7 @@ binfiles arch=x86_64-linux size=2
name csplain.x86_64-solaris
category Package
-revision 18442
+revision 33902
shortdesc x86_64-solaris files of csplain
binfiles arch=x86_64-solaris size=2
bin/x86_64-solaris/csplain
@@ -45788,20 +50108,20 @@ docfiles size=143
texmf-dist/doc/latex/csquotes-de/csquotes-DE.pdf details="The document itself"
texmf-dist/doc/latex/csquotes-de/csquotes-DE.tex
catalogue-ctan /info/translations/csquotes/de
-catalogue-date 2012-04-25 15:23:25 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.01
name cstex
category Package
-revision 28620
+revision 34041
shortdesc Support for Czech/Slovak languages.
longdesc This package mirrors the macros part of the home site's
longdesc distribution of CSTeX. The licence (modified GPL) applies to
longdesc some of the additions that make it a Czech/Slovak language
longdesc distribution, rather than the distribution of a basic
longdesc Plain/LaTeX distribution.
-docfiles size=1183
+docfiles size=1131
texmf-dist/doc/cstex/00-README-cslatex
texmf-dist/doc/cstex/INSTALL.cslatex
texmf-dist/doc/cstex/README-csplain
@@ -45822,10 +50142,13 @@ docfiles size=1183
texmf-dist/doc/cstex/jemny.pdf
texmf-dist/doc/cstex/jemny.tar.gz
texmf-dist/doc/cstex/lic-gpl.eng
- texmf-dist/doc/cstex/opmac-d.pdf
texmf-dist/doc/cstex/opmac-d.tex
+ texmf-dist/doc/cstex/opmac-u-en.pdf
+ texmf-dist/doc/cstex/opmac-u-en.tex
texmf-dist/doc/cstex/opmac-u.pdf
texmf-dist/doc/cstex/opmac-u.tex
+ texmf-dist/doc/cstex/pdfuni-article.pdf
+ texmf-dist/doc/cstex/pdfuni-article.tex
texmf-dist/doc/cstex/prvni.pdf
texmf-dist/doc/cstex/prvni.tex
texmf-dist/doc/cstex/test8z.pdf
@@ -45835,12 +50158,12 @@ docfiles size=1183
texmf-dist/doc/cstex/testlat.tex
texmf-dist/doc/cstex/zmeny.txt
catalogue-ctan /macros/cstex
-catalogue-date 2012-12-24 16:43:45 +0100
+catalogue-date 2013-11-21 20:02:41 +0100
catalogue-license other-free
name csvsimple
category Package
-revision 28211
+revision 31777
shortdesc Simple CSV file processing.
longdesc The package provides a simple LaTeX interface for the
longdesc processing of files with comma separated values (CSV); it
@@ -45848,7 +50171,7 @@ longdesc relies on the key value syntax supported by pgfkeys to simplify
longdesc usage. Filtering and table generation is especially supported;
longdesc however, this lightweight tool offers no support for data
longdesc sorting or data base storage.
-docfiles size=187
+docfiles size=197
texmf-dist/doc/latex/csvsimple/CHANGES
texmf-dist/doc/latex/csvsimple/README details="Readme" language="en"
texmf-dist/doc/latex/csvsimple/csvsimple-example.pdf details="example of use" language="en"
@@ -45858,9 +50181,9 @@ docfiles size=187
runfiles size=4
texmf-dist/tex/latex/csvsimple/csvsimple.sty
catalogue-ctan /macros/latex/contrib/csvsimple
-catalogue-date 2012-11-08 19:20:45 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
-catalogue-version 1.06
+catalogue-version 1.07
name csvtools
category Package
@@ -45890,21 +50213,21 @@ runfiles size=8
texmf-dist/tex/latex/csvtools/csvsort.sty
texmf-dist/tex/latex/csvtools/csvtools.sty
catalogue-ctan /obsolete/macros/latex/contrib/csvtools
-catalogue-date 2013-01-31 17:58:59 +0100
+catalogue-date 2013-12-16 13:26:17 +0100
catalogue-license lppl
catalogue-version 1.24
name ctable
category Package
-revision 30740
-shortdesc Easily typeset centered tables.
+revision 33900
+shortdesc Flexible typesetting of table and figure floats using key/value directives.
longdesc Provides commands to typeset centered, left- or right-aligned
longdesc table and (multiple-)figure floats, with footnotes. Instead of
longdesc an environment, a command with 4 arguments is used; the first
longdesc is optional and is used for key,value pairs generating
longdesc variations on the defaults and offering a route for future
longdesc extensions.
-docfiles size=242
+docfiles size=244
texmf-dist/doc/latex/ctable/01a
texmf-dist/doc/latex/ctable/01b
texmf-dist/doc/latex/ctable/02k
@@ -45944,13 +50267,13 @@ srcfiles size=14
runfiles size=4
texmf-dist/tex/latex/ctable/ctable.sty
catalogue-ctan /macros/latex/contrib/ctable
-catalogue-date 2013-05-24 16:26:19 +0200
+catalogue-date 2014-05-07 16:18:46 +0200
catalogue-license lppl
-catalogue-version 1.25
+catalogue-version 1.29
name ctanify
category Package
-revision 30563
+revision 30921
shortdesc Prepare a package for upload to CTAN.
longdesc Given a list of filenames, ctanify creates a tarball (a .tar.gz
longdesc file) with the files laid out in CTAN's preferred structure.
@@ -45969,9 +50292,9 @@ docfiles size=13
runfiles size=6
texmf-dist/scripts/ctanify/ctanify
catalogue-ctan /support/ctanify
-catalogue-date 2013-05-18 17:41:16 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
-catalogue-version 1.3
+catalogue-version 1.4
name ctanify.alpha-linux
category Package
@@ -46057,13 +50380,6 @@ shortdesc i386-solaris files of ctanify
binfiles arch=i386-solaris size=1
bin/i386-solaris/ctanify
-name ctanify.mips-irix
-category Package
-revision 29949
-shortdesc mips-irix files of ctanify
-binfiles arch=mips-irix size=1
- bin/mips-irix/ctanify
-
name ctanify.mipsel-linux
category Package
revision 29946
@@ -46099,6 +50415,13 @@ shortdesc win32 files of ctanify
binfiles arch=win32 size=1
bin/win32/ctanify.exe
+name ctanify.x86_64-cygwin
+category Package
+revision 33557
+shortdesc x86_64-cygwin files of ctanify
+binfiles arch=x86_64-cygwin size=1
+ bin/x86_64-cygwin/ctanify
+
name ctanify.x86_64-darwin
category Package
revision 24061
@@ -46136,7 +50459,7 @@ docfiles size=47
runfiles size=5
texmf-dist/scripts/ctanupload/ctanupload.pl
catalogue-ctan /support/ctanupload
-catalogue-date 2012-05-16 13:34:59 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license gpl3
catalogue-version 1.2c
@@ -46224,13 +50547,6 @@ shortdesc i386-solaris files of ctanupload
binfiles arch=i386-solaris size=1
bin/i386-solaris/ctanupload
-name ctanupload.mips-irix
-category Package
-revision 29949
-shortdesc mips-irix files of ctanupload
-binfiles arch=mips-irix size=1
- bin/mips-irix/ctanupload
-
name ctanupload.mipsel-linux
category Package
revision 29946
@@ -46266,6 +50582,13 @@ shortdesc win32 files of ctanupload
binfiles arch=win32 size=1
bin/win32/ctanupload.exe
+name ctanupload.x86_64-cygwin
+category Package
+revision 33557
+shortdesc x86_64-cygwin files of ctanupload
+binfiles arch=x86_64-cygwin size=1
+ bin/x86_64-cygwin/ctanupload
+
name ctanupload.x86_64-darwin
category Package
revision 23866
@@ -46347,7 +50670,7 @@ runfiles size=53
texmf-dist/tex/latex/ctex/opt/ctex-class-opts.def
texmf-dist/tex/latex/ctex/opt/ctex-common-opts.def
catalogue-ctan /language/chinese/ctex
-catalogue-date 2012-04-25 15:23:25 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.02c
@@ -46364,7 +50687,7 @@ docfiles size=180
texmf-dist/doc/latex/ctex-faq/src/ctex-faq.tex
texmf-dist/doc/latex/ctex-faq/src/make.bat
catalogue-ctan /info/ctex-faq
-catalogue-date 2012-04-25 15:23:25 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license fdl
name ctib
@@ -46407,7 +50730,7 @@ catalogue-license gpl
name ctie
category TLCore
-revision 29764
+revision 33736
shortdesc C version of tie (merging Web change files).
longdesc This is a version of tie converted for use with cweb.
depend kpathsea
@@ -46416,153 +50739,153 @@ docfiles size=3
texmf-dist/doc/man/man1/ctie.1
texmf-dist/doc/man/man1/ctie.man1.pdf
catalogue-ctan /web/c_cpp/ctie
-catalogue-date 2012-06-18 22:39:13 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license gpl
catalogue-version 1.1
name ctie.alpha-linux
category TLCore
-revision 29891
+revision 33553
shortdesc alpha-linux files of ctie
binfiles arch=alpha-linux size=25
bin/alpha-linux/ctie
name ctie.amd64-freebsd
category TLCore
-revision 29874
+revision 33488
shortdesc amd64-freebsd files of ctie
binfiles arch=amd64-freebsd size=20
bin/amd64-freebsd/ctie
name ctie.amd64-kfreebsd
category TLCore
-revision 30655
+revision 33864
shortdesc amd64-kfreebsd files of ctie
binfiles arch=amd64-kfreebsd size=20
bin/amd64-kfreebsd/ctie
name ctie.amd64-netbsd
category TLCore
-revision 30660
+revision 33726
shortdesc amd64-netbsd files of ctie
binfiles arch=amd64-netbsd size=19
bin/amd64-netbsd/ctie
name ctie.armel-linux
category TLCore
-revision 29888
+revision 33916
shortdesc armel-linux files of ctie
binfiles arch=armel-linux size=17
bin/armel-linux/ctie
name ctie.armhf-linux
category TLCore
-revision 30443
+revision 34125
shortdesc armhf-linux files of ctie
binfiles arch=armhf-linux size=17
bin/armhf-linux/ctie
name ctie.i386-cygwin
category TLCore
-revision 30526
+revision 34161
shortdesc i386-cygwin files of ctie
-binfiles arch=i386-cygwin size=18
+binfiles arch=i386-cygwin size=21
bin/i386-cygwin/ctie.exe
name ctie.i386-freebsd
category TLCore
-revision 29874
+revision 33488
shortdesc i386-freebsd files of ctie
binfiles arch=i386-freebsd size=18
bin/i386-freebsd/ctie
name ctie.i386-kfreebsd
category TLCore
-revision 30440
+revision 33864
shortdesc i386-kfreebsd files of ctie
binfiles arch=i386-kfreebsd size=20
bin/i386-kfreebsd/ctie
name ctie.i386-linux
category TLCore
-revision 30088
+revision 33479
shortdesc i386-linux files of ctie
-binfiles arch=i386-linux size=20
+binfiles arch=i386-linux size=21
bin/i386-linux/ctie
name ctie.i386-netbsd
category TLCore
-revision 30191
+revision 33562
shortdesc i386-netbsd files of ctie
binfiles arch=i386-netbsd size=17
bin/i386-netbsd/ctie
name ctie.i386-solaris
category TLCore
-revision 30112
+revision 34203
shortdesc i386-solaris files of ctie
binfiles arch=i386-solaris size=22
bin/i386-solaris/ctie
-name ctie.mips-irix
-category TLCore
-revision 30131
-shortdesc mips-irix files of ctie
-binfiles arch=mips-irix size=40
- bin/mips-irix/ctie
-
name ctie.mipsel-linux
category TLCore
-revision 29995
+revision 33811
shortdesc mipsel-linux files of ctie
-binfiles arch=mipsel-linux size=24
+binfiles arch=mipsel-linux size=19
bin/mipsel-linux/ctie
name ctie.powerpc-linux
category TLCore
-revision 30114
+revision 33889
shortdesc powerpc-linux files of ctie
-binfiles arch=powerpc-linux size=20
+binfiles arch=powerpc-linux size=19
bin/powerpc-linux/ctie
name ctie.sparc-solaris
category TLCore
-revision 29877
+revision 33871
shortdesc sparc-solaris files of ctie
binfiles arch=sparc-solaris size=20
bin/sparc-solaris/ctie
name ctie.universal-darwin
category TLCore
-revision 30764
+revision 34201
shortdesc universal-darwin files of ctie
binfiles arch=universal-darwin size=41
bin/universal-darwin/ctie
name ctie.win32
category TLCore
-revision 29816
+revision 33897
shortdesc win32 files of ctie
-binfiles arch=win32 size=3
+binfiles arch=win32 size=4
bin/win32/ctie.exe
+name ctie.x86_64-cygwin
+category TLCore
+revision 34161
+shortdesc x86_64-cygwin files of ctie
+binfiles arch=x86_64-cygwin size=20
+ bin/x86_64-cygwin/ctie.exe
+
name ctie.x86_64-darwin
category TLCore
-revision 29879
+revision 34201
shortdesc x86_64-darwin files of ctie
binfiles arch=x86_64-darwin size=22
bin/x86_64-darwin/ctie
name ctie.x86_64-linux
category TLCore
-revision 30204
+revision 33723
shortdesc x86_64-linux files of ctie
binfiles arch=x86_64-linux size=19
bin/x86_64-linux/ctie
name ctie.x86_64-solaris
category TLCore
-revision 30112
+revision 34203
shortdesc x86_64-solaris files of ctie
binfiles arch=x86_64-solaris size=26
bin/x86_64-solaris/ctie
@@ -46611,7 +50934,7 @@ runfiles size=5
texmf-dist/tex/latex/currfile/currfile-abspath.sty
texmf-dist/tex/latex/currfile/currfile.sty
catalogue-ctan /macros/latex/contrib/currfile
-catalogue-date 2013-02-02 11:38:19 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 0.7b
@@ -46818,7 +51141,7 @@ srcfiles size=10
runfiles size=3
texmf-dist/tex/latex/cutwin/cutwin.sty
catalogue-ctan /macros/latex/contrib/cutwin
-catalogue-date 2012-05-30 14:33:40 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 0.1
@@ -46843,9 +51166,30 @@ catalogue-ctan /macros/latex/contrib/cv
catalogue-date 2011-09-24 17:57:01 +0200
catalogue-license gpl
+name cv4tw
+category Package
+revision 32719
+shortdesc LaTeX CV class, with extended details.
+longdesc The class offers entries for assets and social networks;
+longdesc customizable styles are provided. The class comes with no
+longdesc documentation, but a worked example offers some guidance.
+docfiles size=12
+ texmf-dist/doc/latex/cv4tw/sample-jules-verne.pdf
+runfiles size=8
+ texmf-dist/tex/latex/cv4tw/cv4tw-scheme.sty
+ texmf-dist/tex/latex/cv4tw/cv4tw-theme-compact.sty
+ texmf-dist/tex/latex/cv4tw/cv4tw-theme-core.sty
+ texmf-dist/tex/latex/cv4tw/cv4tw-theme-sharp.sty
+ texmf-dist/tex/latex/cv4tw/cv4tw-theme-simple.sty
+ texmf-dist/tex/latex/cv4tw/cv4tw.cls
+catalogue-ctan /macros/latex/contrib/cv4tw
+catalogue-date 2014-05-09 21:42:53 +0200
+catalogue-license other-free
+catalogue-version 0.1
+
name cweb
category Package
-revision 29764
+revision 33736
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
@@ -46966,7 +51310,7 @@ catalogue-license gpl
name cweb.alpha-linux
category Package
-revision 29891
+revision 33553
shortdesc alpha-linux files of cweb
binfiles arch=alpha-linux size=78
bin/alpha-linux/ctangle
@@ -46974,7 +51318,7 @@ binfiles arch=alpha-linux size=78
name cweb.amd64-freebsd
category Package
-revision 29874
+revision 33488
shortdesc amd64-freebsd files of cweb
binfiles arch=amd64-freebsd size=60
bin/amd64-freebsd/ctangle
@@ -46982,7 +51326,7 @@ binfiles arch=amd64-freebsd size=60
name cweb.amd64-kfreebsd
category Package
-revision 30655
+revision 33864
shortdesc amd64-kfreebsd files of cweb
binfiles arch=amd64-kfreebsd size=59
bin/amd64-kfreebsd/ctangle
@@ -46990,7 +51334,7 @@ binfiles arch=amd64-kfreebsd size=59
name cweb.amd64-netbsd
category Package
-revision 30660
+revision 33726
shortdesc amd64-netbsd files of cweb
binfiles arch=amd64-netbsd size=59
bin/amd64-netbsd/ctangle
@@ -46998,7 +51342,7 @@ binfiles arch=amd64-netbsd size=59
name cweb.armel-linux
category Package
-revision 29888
+revision 33916
shortdesc armel-linux files of cweb
binfiles arch=armel-linux size=52
bin/armel-linux/ctangle
@@ -47006,7 +51350,7 @@ binfiles arch=armel-linux size=52
name cweb.armhf-linux
category Package
-revision 30443
+revision 34125
shortdesc armhf-linux files of cweb
binfiles arch=armhf-linux size=51
bin/armhf-linux/ctangle
@@ -47014,15 +51358,15 @@ binfiles arch=armhf-linux size=51
name cweb.i386-cygwin
category Package
-revision 30526
+revision 34161
shortdesc i386-cygwin files of cweb
-binfiles arch=i386-cygwin size=54
+binfiles arch=i386-cygwin size=60
bin/i386-cygwin/ctangle.exe
bin/i386-cygwin/cweave.exe
name cweb.i386-freebsd
category Package
-revision 29874
+revision 33488
shortdesc i386-freebsd files of cweb
binfiles arch=i386-freebsd size=55
bin/i386-freebsd/ctangle
@@ -47030,7 +51374,7 @@ binfiles arch=i386-freebsd size=55
name cweb.i386-kfreebsd
category Package
-revision 30440
+revision 33864
shortdesc i386-kfreebsd files of cweb
binfiles arch=i386-kfreebsd size=58
bin/i386-kfreebsd/ctangle
@@ -47038,15 +51382,15 @@ binfiles arch=i386-kfreebsd size=58
name cweb.i386-linux
category Package
-revision 30088
+revision 33479
shortdesc i386-linux files of cweb
-binfiles arch=i386-linux size=58
+binfiles arch=i386-linux size=61
bin/i386-linux/ctangle
bin/i386-linux/cweave
name cweb.i386-netbsd
category Package
-revision 30191
+revision 33562
shortdesc i386-netbsd files of cweb
binfiles arch=i386-netbsd size=52
bin/i386-netbsd/ctangle
@@ -47054,47 +51398,39 @@ binfiles arch=i386-netbsd size=52
name cweb.i386-solaris
category Package
-revision 30112
+revision 34203
shortdesc i386-solaris files of cweb
-binfiles arch=i386-solaris size=67
+binfiles arch=i386-solaris size=66
bin/i386-solaris/ctangle
bin/i386-solaris/cweave
-name cweb.mips-irix
-category Package
-revision 30131
-shortdesc mips-irix files of cweb
-binfiles arch=mips-irix size=121
- bin/mips-irix/ctangle
- bin/mips-irix/cweave
-
name cweb.mipsel-linux
category Package
-revision 29995
+revision 33811
shortdesc mipsel-linux files of cweb
-binfiles arch=mipsel-linux size=74
+binfiles arch=mipsel-linux size=61
bin/mipsel-linux/ctangle
bin/mipsel-linux/cweave
name cweb.powerpc-linux
category Package
-revision 30114
+revision 33889
shortdesc powerpc-linux files of cweb
-binfiles arch=powerpc-linux size=61
+binfiles arch=powerpc-linux size=57
bin/powerpc-linux/ctangle
bin/powerpc-linux/cweave
name cweb.sparc-solaris
category Package
-revision 29877
+revision 33871
shortdesc sparc-solaris files of cweb
-binfiles arch=sparc-solaris size=63
+binfiles arch=sparc-solaris size=61
bin/sparc-solaris/ctangle
bin/sparc-solaris/cweave
name cweb.universal-darwin
category Package
-revision 30764
+revision 34201
shortdesc universal-darwin files of cweb
binfiles arch=universal-darwin size=121
bin/universal-darwin/ctangle
@@ -47102,15 +51438,23 @@ binfiles arch=universal-darwin size=121
name cweb.win32
category Package
-revision 29816
+revision 33897
shortdesc win32 files of cweb
-binfiles arch=win32 size=22
+binfiles arch=win32 size=28
bin/win32/ctangle.exe
bin/win32/cweave.exe
+name cweb.x86_64-cygwin
+category Package
+revision 34161
+shortdesc x86_64-cygwin files of cweb
+binfiles arch=x86_64-cygwin size=58
+ bin/x86_64-cygwin/ctangle.exe
+ bin/x86_64-cygwin/cweave.exe
+
name cweb.x86_64-darwin
category Package
-revision 29879
+revision 34201
shortdesc x86_64-darwin files of cweb
binfiles arch=x86_64-darwin size=63
bin/x86_64-darwin/ctangle
@@ -47118,17 +51462,17 @@ binfiles arch=x86_64-darwin size=63
name cweb.x86_64-linux
category Package
-revision 30204
+revision 33723
shortdesc x86_64-linux files of cweb
-binfiles arch=x86_64-linux size=59
+binfiles arch=x86_64-linux size=60
bin/x86_64-linux/ctangle
bin/x86_64-linux/cweave
name cweb.x86_64-solaris
category Package
-revision 30112
+revision 34203
shortdesc x86_64-solaris files of cweb
-binfiles arch=x86_64-solaris size=79
+binfiles arch=x86_64-solaris size=77
bin/x86_64-solaris/ctangle
bin/x86_64-solaris/cweave
@@ -47230,13 +51574,13 @@ runfiles size=364
texmf-dist/tex/latex/cyklop/t1cyklop.fd
texmf-dist/tex/latex/cyklop/t5cyklop.fd
catalogue-ctan /fonts/cyklop
-catalogue-date 2012-07-10 18:23:15 +0200
+catalogue-date 2014-04-24 13:39:23 +0200
catalogue-license gfl
catalogue-version 0.915
name cyrillic
category Package
-revision 23396
+revision 33946
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
@@ -47245,7 +51589,7 @@ 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.
depend cyrillic-bin
-docfiles size=131
+docfiles size=116
texmf-dist/doc/latex/cyrillic/00readme.txt
texmf-dist/doc/latex/cyrillic/changes.txt
texmf-dist/doc/latex/cyrillic/cyinpenc.pdf
@@ -47267,7 +51611,7 @@ srcfiles size=46
texmf-dist/source/latex/cyrillic/ot2cmams.fdd
texmf-dist/source/latex/cyrillic/ot2cmlh.fdd
texmf-dist/source/latex/cyrillic/t2lhfnt.fdd
-runfiles size=132
+runfiles size=129
texmf-dist/tex/latex/cyrillic/cp1251.def
texmf-dist/tex/latex/cyrillic/cp855.def
texmf-dist/tex/latex/cyrillic/cp866.def
@@ -47376,12 +51720,12 @@ runfiles size=132
texmf-dist/tex/latex/cyrillic/x2lcmss.fd
texmf-dist/tex/latex/cyrillic/x2lcmtt.fd
catalogue-ctan /macros/latex/required/cyrillic
-catalogue-date 2012-04-30 16:43:33 +0200
+catalogue-date 2014-05-06 15:51:33 +0200
catalogue-license lppl
name cyrillic-bin
category TLCore
-revision 29764
+revision 33736
shortdesc Cyrillic bibtex and makeindex.
depend cyrillic-bin.ARCH
docfiles size=6
@@ -47489,14 +51833,6 @@ binfiles arch=i386-solaris size=2
bin/i386-solaris/rubibtex
bin/i386-solaris/rumakeindex
-name cyrillic-bin.mips-irix
-category TLCore
-revision 29949
-shortdesc mips-irix files of cyrillic-bin
-binfiles arch=mips-irix size=2
- bin/mips-irix/rubibtex
- bin/mips-irix/rumakeindex
-
name cyrillic-bin.mipsel-linux
category TLCore
revision 29946
@@ -47529,6 +51865,14 @@ binfiles arch=universal-darwin size=2
bin/universal-darwin/rubibtex
bin/universal-darwin/rumakeindex
+name cyrillic-bin.x86_64-cygwin
+category TLCore
+revision 33557
+shortdesc x86_64-cygwin files of cyrillic-bin
+binfiles arch=x86_64-cygwin size=2
+ bin/x86_64-cygwin/rubibtex
+ bin/x86_64-cygwin/rumakeindex
+
name cyrillic-bin.x86_64-darwin
category TLCore
revision 29809
@@ -47575,7 +51919,7 @@ runfiles size=17
name dancers
category Package
revision 13293
-shortdesc Font for Conan Doyle's "The Dancing Men".
+shortdesc Font for Conan Doyle'ss "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
@@ -47593,7 +51937,7 @@ runfiles size=9
texmf-dist/fonts/source/public/dancers/dancers.mf
texmf-dist/fonts/tfm/public/dancers/dancers.tfm
catalogue-ctan /fonts/dancers/dancers.mf
-catalogue-date 2011-12-27 14:41:40 +0100
+catalogue-date 2014-04-24 17:14:31 +0200
catalogue-license other-free
name dashbox
@@ -47611,7 +51955,7 @@ srcfiles size=5
runfiles size=2
texmf-dist/tex/latex/dashbox/dashbox.sty
catalogue-ctan /macros/latex/contrib/dashbox
-catalogue-date 2012-06-19 00:14:19 +0200
+catalogue-date 2013-11-21 20:02:41 +0100
catalogue-license lppl
catalogue-version 1.14
@@ -47662,49 +52006,97 @@ docfiles size=65
runfiles size=1
texmf-dist/tex/latex/dashundergaps/dashundergaps.sty
catalogue-ctan /macros/latex/contrib/dashundergaps
-catalogue-date 2012-06-19 00:14:19 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.2
+name dataref
+category Package
+revision 32438
+shortdesc Manage references to experimental data.
+longdesc The package provides a mechanism that maintains a fixed
+longdesc symbolic reference to numerical results; such results may vary
+longdesc as the project proceeds (and hence the project report
+longdesc develops).
+docfiles size=57
+ texmf-dist/doc/latex/dataref/README details="Readme"
+ texmf-dist/doc/latex/dataref/dataref.pdf details="Package documentation"
+srcfiles size=9
+ texmf-dist/source/latex/dataref/dataref.dtx
+ texmf-dist/source/latex/dataref/dataref.ins
+runfiles size=3
+ texmf-dist/tex/latex/dataref/dataref.sty
+catalogue-ctan /macros/latex/contrib/dataref
+catalogue-date 2014-02-26 23:03:13 +0100
+catalogue-license other-free
+catalogue-version 0.1
+
name datatool
category Package
-revision 28844
+revision 33136
shortdesc Tools to load and manipulate data.
-longdesc The bundle provides six packages: - datatool.sty: databases may
-longdesc be created using LaTeX commands or by importing external files;
+longdesc The tools comprise six packages: datatool.sty: databases may be
+longdesc created using LaTeX commands or by importing external files;
longdesc they may be sorted numerically or alphabetically; repetitive
longdesc operations (such as mail merging) may be performed on each row
longdesc of a database, subject to conditions to exclude particular
longdesc rows; commands are provided to examine database elements, and
longdesc to convert formats (for example, to convert a numeric element
-longdesc to a format compatible with the fp package; - datapie.sty: a
+longdesc to a format compatible with the fp package; datapie.sty: a
longdesc database may be represented as a pie chart; flexible options
longdesc allow colouring of the chart, and annotation hooks are
-longdesc available; - dataplot.sty: a database may be represented as a
-longdesc 2-dimensional scatter or line plot; flexible options control of
+longdesc available; dataplot.sty: a database may be represented as a 2-
+longdesc dimensional scatter or line plot; flexible options control of
longdesc the plot's overall appearance, and of legends and other extra
-longdesc information; - databar.sty: a database may be represented as a
+longdesc information; databar.sty: a database may be represented as a
longdesc bar chart; overall appearance, colouring and annotation are
-longdesc controllable; - databib.sty: a bibliography may be loaded into
-longdesc a datatool database, and manipulated there before being printed
-longdesc (this permits a LaTeX-based route to printing bibliographies in
-longdesc formats for which no BibTeX style is available); and -
-longdesc person.sty: provides support for displaying a person's name and
-longdesc pronoun in a document, thus avoiding cumbersome use of
-longdesc "he/she", etc. The drawing packages make use of PGF/TikZ for
-longdesc their output. The bundle replaces and supersedes the author's
-longdesc csvtools bundle.
-docfiles size=649
+longdesc controllable; datagidx.sty: provides a way of indexing or
+longdesc creating glossaries/lists of acronyms that uses TeX to do the
+longdesc sorting and collating instead of using an external indexing
+longdesc application, such as xindy or makeindex; 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); and person.sty: provides support
+longdesc for displaying a person's name and pronoun in a document, thus
+longdesc avoiding cumbersome use of "he/she", etc. The drawing packages
+longdesc make use of PGF/TikZ for their output. The bundle replaces and
+longdesc supersedes the author's csvtools bundle.
+docfiles size=741
texmf-dist/doc/latex/datatool/CHANGES
texmf-dist/doc/latex/datatool/INSTALL
texmf-dist/doc/latex/datatool/README details="Readme"
- texmf-dist/doc/latex/datatool/datatool-code.pdf details="Package documentation"
+ texmf-dist/doc/latex/datatool/datatool-code.pdf details="Documented code of the package"
texmf-dist/doc/latex/datatool/datatool-user.pdf details="User guide"
texmf-dist/doc/latex/datatool/datatool-user.tex
+ texmf-dist/doc/latex/datatool/samples/data-raw-psaved.dbtex
+ texmf-dist/doc/latex/datatool/samples/data-raw-saved.dbtex
+ texmf-dist/doc/latex/datatool/samples/data-raw.dbtex
+ texmf-dist/doc/latex/datatool/samples/data.csv
+ texmf-dist/doc/latex/datatool/samples/data2.csv
+ texmf-dist/doc/latex/datatool/samples/exp25a.csv
+ texmf-dist/doc/latex/datatool/samples/exp25b.csv
+ texmf-dist/doc/latex/datatool/samples/exp30a.csv
+ texmf-dist/doc/latex/datatool/samples/fruit.csv
+ texmf-dist/doc/latex/datatool/samples/groupa.csv
+ texmf-dist/doc/latex/datatool/samples/groupb.csv
+ texmf-dist/doc/latex/datatool/samples/index.csv
+ texmf-dist/doc/latex/datatool/samples/mydata.csv
+ texmf-dist/doc/latex/datatool/samples/mynewdata.csv
+ texmf-dist/doc/latex/datatool/samples/onecol.csv
+ texmf-dist/doc/latex/datatool/samples/plotdata.csv
+ texmf-dist/doc/latex/datatool/samples/polygon.csv
+ texmf-dist/doc/latex/datatool/samples/profits.csv
+ texmf-dist/doc/latex/datatool/samples/rawdata.csv
+ texmf-dist/doc/latex/datatool/samples/rawdata2.csv
texmf-dist/doc/latex/datatool/samples/sample-barchart.pdf
texmf-dist/doc/latex/datatool/samples/sample-barchart.tex
+ texmf-dist/doc/latex/datatool/samples/sample-datatooltk.pdf
+ texmf-dist/doc/latex/datatool/samples/sample-datatooltk.tex
texmf-dist/doc/latex/datatool/samples/sample-dict.pdf
texmf-dist/doc/latex/datatool/samples/sample-dict.tex
+ texmf-dist/doc/latex/datatool/samples/sample-europecv-bib.pdf
+ texmf-dist/doc/latex/datatool/samples/sample-europecv-bib.tex
texmf-dist/doc/latex/datatool/samples/sample-gidx.pdf
texmf-dist/doc/latex/datatool/samples/sample-gidx.tex
texmf-dist/doc/latex/datatool/samples/sample-glossary.pdf
@@ -47715,16 +52107,28 @@ docfiles size=649
texmf-dist/doc/latex/datatool/samples/sample-mail-merge.tex
texmf-dist/doc/latex/datatool/samples/sample-piechart.pdf
texmf-dist/doc/latex/datatool/samples/sample-piechart.tex
+ texmf-dist/doc/latex/datatool/samples/sample-sort.pdf
texmf-dist/doc/latex/datatool/samples/sample-sort.tex
texmf-dist/doc/latex/datatool/samples/sample-student-records.csv
texmf-dist/doc/latex/datatool/samples/sample-student-scores.pdf
texmf-dist/doc/latex/datatool/samples/sample-student-scores.tex
texmf-dist/doc/latex/datatool/samples/sample-two-per-row.pdf
texmf-dist/doc/latex/datatool/samples/sample-two-per-row.tex
-srcfiles size=187
+ texmf-dist/doc/latex/datatool/samples/sample3.csv
+ texmf-dist/doc/latex/datatool/samples/sample4.csv
+ texmf-dist/doc/latex/datatool/samples/scores2.csv
+ texmf-dist/doc/latex/datatool/samples/semesterscores.csv
+ texmf-dist/doc/latex/datatool/samples/students.csv
+ texmf-dist/doc/latex/datatool/samples/studentscores.csv
+ texmf-dist/doc/latex/datatool/samples/test-export-from-calc.csv
+ texmf-dist/doc/latex/datatool/samples/test-missing-some-headers.csv
+ texmf-dist/doc/latex/datatool/samples/test-rawtex.dbtex
+ texmf-dist/doc/latex/datatool/samples/test-scores.csv
+srcfiles size=194
texmf-dist/source/latex/datatool/datatool.dtx
texmf-dist/source/latex/datatool/datatool.ins
-runfiles size=104
+runfiles size=114
+ 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/datagidx.sty
@@ -47736,9 +52140,9 @@ runfiles size=104
texmf-dist/tex/latex/datatool/datatool.sty
texmf-dist/tex/latex/datatool/person.sty
catalogue-ctan /macros/latex/contrib/datatool
-catalogue-date 2013-01-15 18:17:02 +0100
+catalogue-date 2014-03-09 11:01:58 +0100
catalogue-license lppl
-catalogue-version 2.13
+catalogue-version 2.21
name dateiliste
category Package
@@ -47796,7 +52200,7 @@ catalogue-version 0.02
name datetime
category Package
-revision 19834
+revision 31622
shortdesc Change format of \today with commands for current time.
longdesc Provides various different formats for the text created by the
longdesc command \today, and also provides commands for displaying the
@@ -47805,28 +52209,35 @@ longdesc format. The package overrides babel's date format, having its
longdesc own library of date formats in different languages. The package
longdesc requires the fmtcount package.
depend fmtcount
-docfiles size=104
+docfiles size=144
texmf-dist/doc/latex/datetime/CHANGES
texmf-dist/doc/latex/datetime/README details="Package README"
texmf-dist/doc/latex/datetime/datetime-manual.css
texmf-dist/doc/latex/datetime/datetime-manual.html
texmf-dist/doc/latex/datetime/datetime-manual.tex
texmf-dist/doc/latex/datetime/datetime.pdf details="Package documentation (PDF)"
-srcfiles size=58
+ texmf-dist/doc/latex/datetime/samples/dt-lang.pdf
+ texmf-dist/doc/latex/datetime/samples/dt-lang.tex
+ texmf-dist/doc/latex/datetime/samples/dt-sampl.pdf
+ texmf-dist/doc/latex/datetime/samples/dt-sampl.tex
+srcfiles size=51
texmf-dist/source/latex/datetime/datetime.dtx
texmf-dist/source/latex/datetime/datetime.ins
- texmf-dist/source/latex/datetime/datetime.perl
-runfiles size=54
+runfiles size=75
+ texmf-dist/scripts/latex/datetime/datetime.perl
+ texmf-dist/tex/latex/datetime/datetime-defaults.sty
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-american.def
+ texmf-dist/tex/latex/datetime/dt-australian.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-canadian.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
@@ -47847,6 +52258,7 @@ runfiles size=54
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-newzealand.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
@@ -47865,9 +52277,9 @@ runfiles size=54
texmf-dist/tex/latex/datetime/dt-usorbian.def
texmf-dist/tex/latex/datetime/dt-welsh.def
catalogue-ctan /macros/latex/contrib/datetime
-catalogue-date 2012-11-17 10:29:25 +0100
+catalogue-date 2013-09-10 21:28:15 +0200
catalogue-license lppl1.3
-catalogue-version 2.58
+catalogue-version 2.59
name dblfloatfix
category Package
@@ -47887,6 +52299,40 @@ catalogue-date 2013-01-29 13:50:02 +0100
catalogue-license lppl1.3
catalogue-version 1.0a
+name dccpaper
+category Package
+revision 33643
+shortdesc Typeset papers for the International Journal of Digital Curation
+longdesc The LaTeX class ijdc-v9 produces camera-ready papers and
+longdesc articles suitable for inclusion in the International Journal of
+longdesc Digital Curation, with applicability from volume 9 onwards. The
+longdesc similar idcc class can be used for submissions to the
+longdesc International Digital Curation Conference, beginning with the
+longdesc 2015 conference.
+docfiles size=95
+ texmf-dist/doc/latex/dccpaper/README details="Readme"
+ texmf-dist/doc/latex/dccpaper/README.txt
+ texmf-dist/doc/latex/dccpaper/dccpaper-apacite.bib
+ texmf-dist/doc/latex/dccpaper/dccpaper-base.doc
+ texmf-dist/doc/latex/dccpaper/dccpaper-biblatex.bib
+ texmf-dist/doc/latex/dccpaper/dccpaper.pdf details="Package documentation"
+ texmf-dist/doc/latex/dccpaper/idcc.doc
+ texmf-dist/doc/latex/dccpaper/ijdc-v9.doc
+srcfiles size=20
+ texmf-dist/source/latex/dccpaper/Makefile
+ texmf-dist/source/latex/dccpaper/dccpaper.dtx
+ texmf-dist/source/latex/dccpaper/dccpaper.ins
+runfiles size=28
+ texmf-dist/tex/latex/dccpaper/dccpaper-base.tex
+ texmf-dist/tex/latex/dccpaper/dccpaper-by.eps
+ texmf-dist/tex/latex/dccpaper/dccpaper-by.pdf
+ texmf-dist/tex/latex/dccpaper/idcc.cls
+ texmf-dist/tex/latex/dccpaper/ijdc-v9.cls
+catalogue-ctan /macros/latex/contrib/dccpaper
+catalogue-date 2014-04-23 19:13:08 +0200
+catalogue-license lppl1.3
+catalogue-version 1.2
+
name dcpic
category Package
revision 30206
@@ -48022,13 +52468,6 @@ shortdesc i386-solaris files of de-macro
binfiles arch=i386-solaris size=1
bin/i386-solaris/de-macro
-name de-macro.mips-irix
-category Package
-revision 29949
-shortdesc mips-irix files of de-macro
-binfiles arch=mips-irix size=1
- bin/mips-irix/de-macro
-
name de-macro.mipsel-linux
category Package
revision 29946
@@ -48064,6 +52503,13 @@ shortdesc win32 files of de-macro
binfiles arch=win32 size=1
bin/win32/de-macro.exe
+name de-macro.x86_64-cygwin
+category Package
+revision 33557
+shortdesc x86_64-cygwin files of de-macro
+binfiles arch=x86_64-cygwin size=1
+ bin/x86_64-cygwin/de-macro
+
name de-macro.x86_64-darwin
category Package
revision 18441
@@ -48123,7 +52569,7 @@ srcfiles size=11
runfiles size=1
texmf-dist/tex/latex/decorule/decorule.sty
catalogue-ctan /macros/latex/contrib/decorule
-catalogue-date 2012-06-20 16:56:39 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 0.6
@@ -48155,40 +52601,40 @@ runfiles size=83
texmf-dist/tex/generic/dehyph-exptl/dehyphts-x-2013-05-26.pat
texmf-dist/tex/generic/dehyph-exptl/dehyphts-x-2013-05-26.tex
catalogue-ctan /language/hyphenation/dehyph-exptl
-catalogue-date 2013-05-29 00:44:55 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 0.3
name dejavu
category Package
-revision 28800
+revision 31771
shortdesc LaTeX support for the DejaVu fonts.
-longdesc The package contains LaTeX support for the DejaVu fonts. They
-longdesc are derived from the Vera fonts, but contain more characters
-longdesc and styles. The fonts are included in the original TrueType
-longdesc format and converted Type 1 format. The (currently) supported
+longdesc The package contains LaTeX support for the DejaVu fonts, which
+longdesc are derived from the Vera fonts but contain more characters and
+longdesc styles. The fonts are included in the original TrueType format,
+longdesc and in converted Type 1 format. The (currently) supported
longdesc encodings are: OT1, T1, IL2, TS1, T2*, X2, QX, and LGR. The
longdesc package doesn't (currently) support mathematics. More encodings
-longdesc and/or features will come later.
+longdesc and/or features are expected.
execute addMap dejavu-type1.map
-docfiles size=687
+docfiles size=656
+ texmf-dist/doc/fonts/dejavu/AUTHORS
+ texmf-dist/doc/fonts/dejavu/BUGS
texmf-dist/doc/fonts/dejavu/CHANGELOG
- texmf-dist/doc/fonts/dejavu/README details="Readme"
- texmf-dist/doc/fonts/dejavu/dejavu-sample.pdf details="Font samples"
+ texmf-dist/doc/fonts/dejavu/LICENSE
+ texmf-dist/doc/fonts/dejavu/NEWS
+ texmf-dist/doc/fonts/dejavu/README-font
+ texmf-dist/doc/fonts/dejavu/README.doc
+ texmf-dist/doc/fonts/dejavu/dejavu-sample.pdf
texmf-dist/doc/fonts/dejavu/dejavu-sample.tex
- texmf-dist/doc/fonts/dejavu/dejavu.pdf details="Package documentation"
+ texmf-dist/doc/fonts/dejavu/dejavu.pdf
texmf-dist/doc/fonts/dejavu/dejavu.tex
texmf-dist/doc/fonts/dejavu/extrakerns.zip
- texmf-dist/doc/fonts/dejavu/font-doc/AUTHORS
- texmf-dist/doc/fonts/dejavu/font-doc/BUGS
- texmf-dist/doc/fonts/dejavu/font-doc/LICENSE
- texmf-dist/doc/fonts/dejavu/font-doc/NEWS
- texmf-dist/doc/fonts/dejavu/font-doc/README details="Readme"
- texmf-dist/doc/fonts/dejavu/font-doc/langcover.txt
- texmf-dist/doc/fonts/dejavu/font-doc/status.txt
- texmf-dist/doc/fonts/dejavu/font-doc/unicover.txt
+ texmf-dist/doc/fonts/dejavu/langcover.txt
texmf-dist/doc/fonts/dejavu/manifest.txt
-runfiles size=6095
+ texmf-dist/doc/fonts/dejavu/status.txt
+ texmf-dist/doc/fonts/dejavu/unicover.txt
+runfiles size=6222
texmf-dist/fonts/afm/public/dejavu/DejaVuSans-Bold.afm
texmf-dist/fonts/afm/public/dejavu/DejaVuSans-BoldOblique.afm
texmf-dist/fonts/afm/public/dejavu/DejaVuSans-ExtraLight.afm
@@ -48760,9 +53206,9 @@ runfiles size=6095
texmf-dist/tex/latex/dejavu/X2DejaVuSerifCondensed-TLF.fd
texmf-dist/tex/latex/dejavu/dejavu.sty
catalogue-ctan /fonts/dejavu
-catalogue-date 2013-04-22 01:01:25 +0200
+catalogue-date 2013-09-26 21:03:19 +0200
catalogue-license lppl
-catalogue-version 2.33
+catalogue-version 2.34
name delim
category Package
@@ -48779,7 +53225,7 @@ srcfiles size=4
runfiles size=1
texmf-dist/tex/latex/delim/delim.sty
catalogue-ctan /macros/latex/contrib/delim
-catalogue-date 2012-04-10 17:44:48 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.2
catalogue-version 1.0
@@ -48810,7 +53256,7 @@ catalogue-license lppl
name detex
category TLCore
-revision 29764
+revision 33736
shortdesc Strip TeX from a source file.
longdesc Detex is a program to remove TeX constructs from a text file.
longdesc It recognizes the \input command. The program assumes it is
@@ -48827,151 +53273,167 @@ catalogue-license other-free
name detex.alpha-linux
category TLCore
-revision 29891
+revision 33553
shortdesc alpha-linux files of detex
-binfiles arch=alpha-linux size=32
+binfiles arch=alpha-linux size=33
bin/alpha-linux/detex
name detex.amd64-freebsd
category TLCore
-revision 29874
+revision 33488
shortdesc amd64-freebsd files of detex
binfiles arch=amd64-freebsd size=27
bin/amd64-freebsd/detex
name detex.amd64-kfreebsd
category TLCore
-revision 30655
+revision 33864
shortdesc amd64-kfreebsd files of detex
binfiles arch=amd64-kfreebsd size=28
bin/amd64-kfreebsd/detex
name detex.amd64-netbsd
category TLCore
-revision 30660
+revision 33726
shortdesc amd64-netbsd files of detex
binfiles arch=amd64-netbsd size=26
bin/amd64-netbsd/detex
name detex.armel-linux
category TLCore
-revision 29888
+revision 33916
shortdesc armel-linux files of detex
binfiles arch=armel-linux size=23
bin/armel-linux/detex
name detex.armhf-linux
category TLCore
-revision 30443
+revision 34125
shortdesc armhf-linux files of detex
binfiles arch=armhf-linux size=23
bin/armhf-linux/detex
name detex.i386-cygwin
category TLCore
-revision 30526
+revision 34161
shortdesc i386-cygwin files of detex
-binfiles arch=i386-cygwin size=24
+binfiles arch=i386-cygwin size=28
bin/i386-cygwin/detex.exe
name detex.i386-freebsd
category TLCore
-revision 29874
+revision 33488
shortdesc i386-freebsd files of detex
binfiles arch=i386-freebsd size=26
bin/i386-freebsd/detex
name detex.i386-kfreebsd
category TLCore
-revision 30440
+revision 33864
shortdesc i386-kfreebsd files of detex
binfiles arch=i386-kfreebsd size=28
bin/i386-kfreebsd/detex
name detex.i386-linux
category TLCore
-revision 30088
+revision 33479
shortdesc i386-linux files of detex
-binfiles arch=i386-linux size=27
+binfiles arch=i386-linux size=28
bin/i386-linux/detex
name detex.i386-netbsd
category TLCore
-revision 30191
+revision 33562
shortdesc i386-netbsd files of detex
binfiles arch=i386-netbsd size=23
bin/i386-netbsd/detex
name detex.i386-solaris
category TLCore
-revision 30112
+revision 34203
shortdesc i386-solaris files of detex
binfiles arch=i386-solaris size=29
bin/i386-solaris/detex
-name detex.mips-irix
-category TLCore
-revision 30131
-shortdesc mips-irix files of detex
-binfiles arch=mips-irix size=50
- bin/mips-irix/detex
-
name detex.mipsel-linux
category TLCore
-revision 29995
+revision 33811
shortdesc mipsel-linux files of detex
-binfiles arch=mipsel-linux size=31
+binfiles arch=mipsel-linux size=27
bin/mipsel-linux/detex
name detex.powerpc-linux
category TLCore
-revision 30114
+revision 33889
shortdesc powerpc-linux files of detex
-binfiles arch=powerpc-linux size=27
+binfiles arch=powerpc-linux size=26
bin/powerpc-linux/detex
name detex.sparc-solaris
category TLCore
-revision 29877
+revision 33871
shortdesc sparc-solaris files of detex
-binfiles arch=sparc-solaris size=27
+binfiles arch=sparc-solaris size=28
bin/sparc-solaris/detex
name detex.universal-darwin
category TLCore
-revision 30764
+revision 34201
shortdesc universal-darwin files of detex
binfiles arch=universal-darwin size=55
bin/universal-darwin/detex
name detex.win32
category TLCore
-revision 29816
+revision 33897
shortdesc win32 files of detex
-binfiles arch=win32 size=8
+binfiles arch=win32 size=9
bin/win32/detex.exe
+name detex.x86_64-cygwin
+category TLCore
+revision 34161
+shortdesc x86_64-cygwin files of detex
+binfiles arch=x86_64-cygwin size=27
+ bin/x86_64-cygwin/detex.exe
+
name detex.x86_64-darwin
category TLCore
-revision 29879
+revision 34201
shortdesc x86_64-darwin files of detex
binfiles arch=x86_64-darwin size=29
bin/x86_64-darwin/detex
name detex.x86_64-linux
category TLCore
-revision 30204
+revision 33723
shortdesc x86_64-linux files of detex
-binfiles arch=x86_64-linux size=28
+binfiles arch=x86_64-linux size=27
bin/x86_64-linux/detex
name detex.x86_64-solaris
category TLCore
-revision 30112
+revision 34203
shortdesc x86_64-solaris files of detex
-binfiles arch=x86_64-solaris size=34
+binfiles arch=x86_64-solaris size=33
bin/x86_64-solaris/detex
+name detlev-cm
+category Package
+revision 32383
+docfiles size=350
+ texmf-dist/doc/latex/detlev-cm/LogoTop.png
+ texmf-dist/doc/latex/detlev-cm/SAS-CRJ900.png
+ texmf-dist/doc/latex/detlev-cm/Sample.pdf
+ texmf-dist/doc/latex/detlev-cm/Sample.tex
+ texmf-dist/doc/latex/detlev-cm/Wing.png
+ texmf-dist/doc/latex/detlev-cm/WingSunrise.png
+runfiles size=5
+ texmf-dist/tex/latex/detlev-cm/beamercolorthemeETII.sty
+ texmf-dist/tex/latex/detlev-cm/beamerfontthemeDetlevCM.sty
+ texmf-dist/tex/latex/detlev-cm/beamerouterthemeDetlevCM.sty
+ texmf-dist/tex/latex/detlev-cm/beamerthemeDetlevCM.sty
+
name devnag
category TLCore
revision 26313
@@ -48981,158 +53443,161 @@ longdesc Frans Velthuis' preprocessor for Devanagari text, and fonts and
longdesc macros to use when typesetting the processed text. The macros
longdesc provide features that support Sanskrit, Hindi, Marathi, Nepali,
longdesc and other languages typically printed in the Devanagari script.
-longdesc The fonts are available both in Metafont and Type 1 format.
+longdesc The package provides fonts, in both Metafont and Type 1
+longdesc formats. Users of modern TeX distributions may care to try the
+longdesc XeTeX based package, which is far preferable for users who can
+longdesc type Unicode text.
depend devnag.ARCH
catalogue-ctan /language/devanagari/velthuis
-catalogue-date 2012-06-19 16:44:25 +0200
+catalogue-date 2013-12-13 11:15:58 +0100
catalogue-license gpl
catalogue-version 2.15.1
name devnag.alpha-linux
category TLCore
-revision 29834
+revision 33553
shortdesc alpha-linux files of devnag
binfiles arch=alpha-linux size=11
bin/alpha-linux/devnag
name devnag.amd64-freebsd
category TLCore
-revision 29785
+revision 33488
shortdesc amd64-freebsd files of devnag
binfiles arch=amd64-freebsd size=8
bin/amd64-freebsd/devnag
name devnag.amd64-kfreebsd
category TLCore
-revision 30655
+revision 33529
shortdesc amd64-kfreebsd files of devnag
binfiles arch=amd64-kfreebsd size=8
bin/amd64-kfreebsd/devnag
name devnag.amd64-netbsd
category TLCore
-revision 30660
+revision 33726
shortdesc amd64-netbsd files of devnag
binfiles arch=amd64-netbsd size=8
bin/amd64-netbsd/devnag
name devnag.armel-linux
category TLCore
-revision 29805
+revision 33508
shortdesc armel-linux files of devnag
binfiles arch=armel-linux size=7
bin/armel-linux/devnag
name devnag.armhf-linux
category TLCore
-revision 30015
+revision 33545
shortdesc armhf-linux files of devnag
binfiles arch=armhf-linux size=7
bin/armhf-linux/devnag
name devnag.i386-cygwin
category TLCore
-revision 30526
+revision 34161
shortdesc i386-cygwin files of devnag
-binfiles arch=i386-cygwin size=7
+binfiles arch=i386-cygwin size=8
bin/i386-cygwin/devnag.exe
name devnag.i386-freebsd
category TLCore
-revision 29785
+revision 33488
shortdesc i386-freebsd files of devnag
binfiles arch=i386-freebsd size=7
bin/i386-freebsd/devnag
name devnag.i386-kfreebsd
category TLCore
-revision 30440
+revision 33529
shortdesc i386-kfreebsd files of devnag
binfiles arch=i386-kfreebsd size=7
bin/i386-kfreebsd/devnag
name devnag.i386-linux
category TLCore
-revision 30088
+revision 33479
shortdesc i386-linux files of devnag
binfiles arch=i386-linux size=7
bin/i386-linux/devnag
name devnag.i386-netbsd
category TLCore
-revision 30191
+revision 33562
shortdesc i386-netbsd files of devnag
binfiles arch=i386-netbsd size=7
bin/i386-netbsd/devnag
name devnag.i386-solaris
category TLCore
-revision 30112
+revision 34203
shortdesc i386-solaris files of devnag
binfiles arch=i386-solaris size=8
bin/i386-solaris/devnag
-name devnag.mips-irix
-category TLCore
-revision 29949
-shortdesc mips-irix files of devnag
-binfiles arch=mips-irix size=24
- bin/mips-irix/devnag
-
name devnag.mipsel-linux
category TLCore
-revision 29783
+revision 33811
shortdesc mipsel-linux files of devnag
-binfiles arch=mipsel-linux size=9
+binfiles arch=mipsel-linux size=8
bin/mipsel-linux/devnag
name devnag.powerpc-linux
category TLCore
-revision 29833
+revision 33561
shortdesc powerpc-linux files of devnag
binfiles arch=powerpc-linux size=8
bin/powerpc-linux/devnag
name devnag.sparc-solaris
category TLCore
-revision 29877
+revision 33871
shortdesc sparc-solaris files of devnag
binfiles arch=sparc-solaris size=8
bin/sparc-solaris/devnag
name devnag.universal-darwin
category TLCore
-revision 30764
+revision 34201
shortdesc universal-darwin files of devnag
binfiles arch=universal-darwin size=19
bin/universal-darwin/devnag
name devnag.win32
category TLCore
-revision 29816
+revision 33513
shortdesc win32 files of devnag
-binfiles arch=win32 size=6
+binfiles arch=win32 size=8
bin/win32/devnag.exe
+name devnag.x86_64-cygwin
+category TLCore
+revision 34161
+shortdesc x86_64-cygwin files of devnag
+binfiles arch=x86_64-cygwin size=8
+ bin/x86_64-cygwin/devnag.exe
+
name devnag.x86_64-darwin
category TLCore
-revision 29809
+revision 34201
shortdesc x86_64-darwin files of devnag
-binfiles arch=x86_64-darwin size=8
+binfiles arch=x86_64-darwin size=9
bin/x86_64-darwin/devnag
name devnag.x86_64-linux
category TLCore
-revision 30204
+revision 33723
shortdesc x86_64-linux files of devnag
binfiles arch=x86_64-linux size=8
bin/x86_64-linux/devnag
name devnag.x86_64-solaris
category TLCore
-revision 30112
+revision 34203
shortdesc x86_64-solaris files of devnag
-binfiles arch=x86_64-solaris size=9
+binfiles arch=x86_64-solaris size=10
bin/x86_64-solaris/devnag
name dhua
@@ -49163,7 +53628,7 @@ runfiles size=4
texmf-dist/tex/latex/dhua/dhua.cfg
texmf-dist/tex/latex/dhua/dhua.sty
catalogue-ctan /macros/latex/contrib/dhua
-catalogue-date 2012-05-08 12:20:07 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 0.11
@@ -49185,7 +53650,7 @@ srcfiles size=8
runfiles size=2
texmf-dist/tex/latex/diagbox/diagbox.sty
catalogue-ctan /macros/latex/contrib/diagbox
-catalogue-date 2011-11-24 16:48:22 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.0
@@ -49205,7 +53670,7 @@ docfiles size=75
runfiles size=11
texmf-dist/tex/latex/diagmac2/diagmac2.sty
catalogue-ctan /macros/latex/contrib/diagmac2
-catalogue-date 2012-06-19 16:44:25 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 2.1
@@ -49260,7 +53725,7 @@ runfiles size=29
texmf-dist/tex/latex/dialogl/listout.tex
texmf-dist/tex/latex/dialogl/menus.sty
catalogue-ctan /macros/latex/contrib/dialogl
-catalogue-date 2013-01-26 20:33:05 +0100
+catalogue-date 2013-11-21 21:20:37 +0100
catalogue-license lppl
name dice
@@ -49275,7 +53740,7 @@ runfiles size=6
texmf-dist/fonts/source/public/dice/dice3d.mf
texmf-dist/fonts/tfm/public/dice/dice3d.tfm
catalogue-ctan /fonts/dice
-catalogue-date 2012-12-11 20:24:18 +0100
+catalogue-date 2013-11-21 21:20:37 +0100
catalogue-license lppl
name dichokey
@@ -49298,6 +53763,187 @@ catalogue-ctan /macros/latex/contrib/dichokey
catalogue-date 2012-06-19 18:43:32 +0200
catalogue-license pd
+name dickimaw
+category Package
+revision 32925
+shortdesc Books and tutorials from the "Dickimaw LaTeX Series".
+longdesc The package provides are some of the books and tutorials that
+longdesc form part of the "Dickimaw LaTeX Series". Only the A4 PDF is
+longdesc included here. Other formats, such as HTML or a screen
+longdesc optimized PDF, are available from the package home page. Books
+longdesc included are: "LaTeX for Complete Novices": an introductory
+longdesc guide to LaTeX. "Using LaTeX to Write a PhD Thesis": a follow-
+longdesc on from "LaTeX for Complete Novices" geared towards students
+longdesc who want to use LaTeX to write their PhD thesis. "Creating a
+longdesc LaTeX minimal example": describes how to create a minimal
+longdesc example, which can be used as a debugging aid when you
+longdesc encounter errors in your LaTeX documents.
+docfiles size=2142
+ texmf-dist/doc/latex/dickimaw/ERRATA
+ texmf-dist/doc/latex/dickimaw/README details="Readme"
+ texmf-dist/doc/latex/dickimaw/dickimaw-minexample.pdf details="Creating a LaTeX minimal example"
+ texmf-dist/doc/latex/dickimaw/dickimaw-novices.pdf details="LaTeX for Complete Novices"
+ texmf-dist/doc/latex/dickimaw/dickimaw-thesis.pdf details="Using LaTeX to Write a PhD Thesis"
+ texmf-dist/doc/latex/dickimaw/src/fdl.tex
+ texmf-dist/doc/latex/dickimaw/src/minexample/dickimaw-minexample.tex
+ texmf-dist/doc/latex/dickimaw/src/minexample/minexample.sty
+ texmf-dist/doc/latex/dickimaw/src/novices/dickimaw-novices.tex
+ texmf-dist/doc/latex/dickimaw/src/novices/glsentries.tex
+ texmf-dist/doc/latex/dickimaw/src/novices/keywords.tex
+ texmf-dist/doc/latex/dickimaw/src/novices/novices-a4paper.sty
+ texmf-dist/doc/latex/dickimaw/src/novices/novices-index.ist
+ texmf-dist/doc/latex/dickimaw/src/novices/novices.bib
+ texmf-dist/doc/latex/dickimaw/src/novices/novices.cls
+ texmf-dist/doc/latex/dickimaw/src/novices/pictures/acrobat.png
+ texmf-dist/doc/latex/dickimaw/src/novices/pictures/backtic.png
+ texmf-dist/doc/latex/dickimaw/src/novices/pictures/circle.pdf
+ texmf-dist/doc/latex/dickimaw/src/novices/pictures/cmdprom.png
+ texmf-dist/doc/latex/dickimaw/src/novices/pictures/cmdprom1.png
+ texmf-dist/doc/latex/dickimaw/src/novices/pictures/cmdprom2.png
+ texmf-dist/doc/latex/dickimaw/src/novices/pictures/cmdprom3.png
+ texmf-dist/doc/latex/dickimaw/src/novices/pictures/cmdprom4.png
+ texmf-dist/doc/latex/dickimaw/src/novices/pictures/cmdprom5.png
+ texmf-dist/doc/latex/dickimaw/src/novices/pictures/cmdprom6.png
+ texmf-dist/doc/latex/dickimaw/src/novices/pictures/cmdprom7.png
+ texmf-dist/doc/latex/dickimaw/src/novices/pictures/dinglist.png
+ texmf-dist/doc/latex/dickimaw/src/novices/pictures/dirviewer1.png
+ texmf-dist/doc/latex/dickimaw/src/novices/pictures/dirviewer2.png
+ texmf-dist/doc/latex/dickimaw/src/novices/pictures/dirviewer3.png
+ texmf-dist/doc/latex/dickimaw/src/novices/pictures/dirviewer4.png
+ texmf-dist/doc/latex/dickimaw/src/novices/pictures/draftimage.png
+ texmf-dist/doc/latex/dickimaw/src/novices/pictures/entersymbol.tex
+ texmf-dist/doc/latex/dickimaw/src/novices/pictures/errormessage.png
+ texmf-dist/doc/latex/dickimaw/src/novices/pictures/exsamp.png
+ texmf-dist/doc/latex/dickimaw/src/novices/pictures/incgraph.png
+ texmf-dist/doc/latex/dickimaw/src/novices/pictures/incgraph2.png
+ texmf-dist/doc/latex/dickimaw/src/novices/pictures/letterbox.tex
+ texmf-dist/doc/latex/dickimaw/src/novices/pictures/maths.png
+ texmf-dist/doc/latex/dickimaw/src/novices/pictures/miktex1.png
+ texmf-dist/doc/latex/dickimaw/src/novices/pictures/newdoc-1.png
+ texmf-dist/doc/latex/dickimaw/src/novices/pictures/newdoc-2.png
+ texmf-dist/doc/latex/dickimaw/src/novices/pictures/notepad1.png
+ texmf-dist/doc/latex/dickimaw/src/novices/pictures/notepad2.png
+ texmf-dist/doc/latex/dickimaw/src/novices/pictures/rectangle.pdf
+ texmf-dist/doc/latex/dickimaw/src/novices/pictures/reflbox.png
+ texmf-dist/doc/latex/dickimaw/src/novices/pictures/resizbox.png
+ texmf-dist/doc/latex/dickimaw/src/novices/pictures/rotbox.png
+ texmf-dist/doc/latex/dickimaw/src/novices/pictures/scalbox.png
+ texmf-dist/doc/latex/dickimaw/src/novices/pictures/shapes.pdf
+ texmf-dist/doc/latex/dickimaw/src/novices/pictures/tds.tex
+ texmf-dist/doc/latex/dickimaw/src/novices/pictures/terminal-texdoc.png
+ texmf-dist/doc/latex/dickimaw/src/novices/pictures/terminal.png
+ texmf-dist/doc/latex/dickimaw/src/novices/pictures/terminal1.png
+ texmf-dist/doc/latex/dickimaw/src/novices/pictures/terminal10.png
+ texmf-dist/doc/latex/dickimaw/src/novices/pictures/terminal11.png
+ texmf-dist/doc/latex/dickimaw/src/novices/pictures/terminal2.png
+ texmf-dist/doc/latex/dickimaw/src/novices/pictures/terminal3.png
+ texmf-dist/doc/latex/dickimaw/src/novices/pictures/terminal4.png
+ texmf-dist/doc/latex/dickimaw/src/novices/pictures/terminal5.png
+ texmf-dist/doc/latex/dickimaw/src/novices/pictures/terminal6.png
+ texmf-dist/doc/latex/dickimaw/src/novices/pictures/terminal7.png
+ texmf-dist/doc/latex/dickimaw/src/novices/pictures/terminal8.png
+ texmf-dist/doc/latex/dickimaw/src/novices/pictures/terminal9.png
+ texmf-dist/doc/latex/dickimaw/src/novices/pictures/texworks-latexmk.png
+ texmf-dist/doc/latex/dickimaw/src/novices/pictures/texworks-preferences.png
+ texmf-dist/doc/latex/dickimaw/src/novices/pictures/texworks-toolconfig1.png
+ texmf-dist/doc/latex/dickimaw/src/novices/pictures/texworks-toolconfig2.png
+ texmf-dist/doc/latex/dickimaw/src/novices/pictures/texworks-toolconfig3.png
+ texmf-dist/doc/latex/dickimaw/src/novices/pictures/texworks-toolconfig4.png
+ texmf-dist/doc/latex/dickimaw/src/novices/pictures/texworks1.png
+ texmf-dist/doc/latex/dickimaw/src/novices/pictures/texworks2.png
+ texmf-dist/doc/latex/dickimaw/src/novices/pictures/texworks3.png
+ texmf-dist/doc/latex/dickimaw/src/novices/pictures/texworks4.png
+ texmf-dist/doc/latex/dickimaw/src/novices/pictures/texworks5-annote.tex
+ texmf-dist/doc/latex/dickimaw/src/novices/pictures/texworks5.png
+ texmf-dist/doc/latex/dickimaw/src/novices/pictures/texworks6.png
+ texmf-dist/doc/latex/dickimaw/src/novices/pictures/texworks7.png
+ texmf-dist/doc/latex/dickimaw/src/novices/pictures/texworks8.png
+ texmf-dist/doc/latex/dickimaw/src/novices/pictures/texworks9.png
+ texmf-dist/doc/latex/dickimaw/src/novices/pictures/yap1.png
+ texmf-dist/doc/latex/dickimaw/src/novices/term-defs/argument.tex
+ texmf-dist/doc/latex/dickimaw/src/novices/term-defs/auxiliary.tex
+ texmf-dist/doc/latex/dickimaw/src/novices/term-defs/cls.tex
+ texmf-dist/doc/latex/dickimaw/src/novices/term-defs/command.tex
+ texmf-dist/doc/latex/dickimaw/src/novices/term-defs/declaration.tex
+ texmf-dist/doc/latex/dickimaw/src/novices/term-defs/dvi.tex
+ texmf-dist/doc/latex/dickimaw/src/novices/term-defs/environment.tex
+ texmf-dist/doc/latex/dickimaw/src/novices/term-defs/fragile.tex
+ texmf-dist/doc/latex/dickimaw/src/novices/term-defs/group.tex
+ texmf-dist/doc/latex/dickimaw/src/novices/term-defs/hyphenation.tex
+ texmf-dist/doc/latex/dickimaw/src/novices/term-defs/intersentencespacing.tex
+ texmf-dist/doc/latex/dickimaw/src/novices/term-defs/introduction.tex
+ texmf-dist/doc/latex/dickimaw/src/novices/term-defs/length.tex
+ texmf-dist/doc/latex/dickimaw/src/novices/term-defs/mandatory.tex
+ texmf-dist/doc/latex/dickimaw/src/novices/term-defs/optional.tex
+ texmf-dist/doc/latex/dickimaw/src/novices/term-defs/output.tex
+ texmf-dist/doc/latex/dickimaw/src/novices/term-defs/perl.tex
+ texmf-dist/doc/latex/dickimaw/src/novices/term-defs/preamble.tex
+ texmf-dist/doc/latex/dickimaw/src/novices/term-defs/robust.tex
+ texmf-dist/doc/latex/dickimaw/src/novices/term-defs/short.tex
+ texmf-dist/doc/latex/dickimaw/src/novices/term-defs/source.tex
+ texmf-dist/doc/latex/dickimaw/src/novices/term-defs/terminal.tex
+ texmf-dist/doc/latex/dickimaw/src/novices/term-defs/tex.tex
+ texmf-dist/doc/latex/dickimaw/src/thesis/dickimaw-thesis.tex
+ texmf-dist/doc/latex/dickimaw/src/thesis/dickimawthesis.cls
+ texmf-dist/doc/latex/dickimaw/src/thesis/glsentries.tex
+ texmf-dist/doc/latex/dickimaw/src/thesis/imgsource/titlepage.tex
+ texmf-dist/doc/latex/dickimaw/src/thesis/listing-samples/helloworld.c
+ texmf-dist/doc/latex/dickimaw/src/thesis/listing-samples/sqrt.c
+ texmf-dist/doc/latex/dickimaw/src/thesis/pictures/arara-installer.png
+ texmf-dist/doc/latex/dickimaw/src/thesis/pictures/bibertool.png
+ texmf-dist/doc/latex/dickimaw/src/thesis/pictures/doibutton.png
+ texmf-dist/doc/latex/dickimaw/src/thesis/pictures/generatekey.png
+ texmf-dist/doc/latex/dickimaw/src/thesis/pictures/jabref-dataprop-thumbnail.png
+ texmf-dist/doc/latex/dickimaw/src/thesis/pictures/jabref-dataprop.png
+ texmf-dist/doc/latex/dickimaw/src/thesis/pictures/jabref-pref-thumbnail.png
+ texmf-dist/doc/latex/dickimaw/src/thesis/pictures/jabref-pref.png
+ texmf-dist/doc/latex/dickimaw/src/thesis/pictures/jabref-textimport1-thumbnail.png
+ texmf-dist/doc/latex/dickimaw/src/thesis/pictures/jabref-textimport1.png
+ texmf-dist/doc/latex/dickimaw/src/thesis/pictures/jabref-textimport2-thumbnail.png
+ texmf-dist/doc/latex/dickimaw/src/thesis/pictures/jabref-textimport2.png
+ texmf-dist/doc/latex/dickimaw/src/thesis/pictures/jabref-textimport3-thumbnail.png
+ texmf-dist/doc/latex/dickimaw/src/thesis/pictures/jabref-textimport3.png
+ texmf-dist/doc/latex/dickimaw/src/thesis/pictures/jabref1-thumbnail.png
+ texmf-dist/doc/latex/dickimaw/src/thesis/pictures/jabref1.png
+ texmf-dist/doc/latex/dickimaw/src/thesis/pictures/jabref10-thumbnail.png
+ texmf-dist/doc/latex/dickimaw/src/thesis/pictures/jabref10.png
+ texmf-dist/doc/latex/dickimaw/src/thesis/pictures/jabref11.png
+ texmf-dist/doc/latex/dickimaw/src/thesis/pictures/jabref12-thumbnail.png
+ texmf-dist/doc/latex/dickimaw/src/thesis/pictures/jabref12.png
+ texmf-dist/doc/latex/dickimaw/src/thesis/pictures/jabref2.png
+ texmf-dist/doc/latex/dickimaw/src/thesis/pictures/jabref3-thumbnail.png
+ texmf-dist/doc/latex/dickimaw/src/thesis/pictures/jabref3.png
+ texmf-dist/doc/latex/dickimaw/src/thesis/pictures/jabref4-thumbnail.png
+ texmf-dist/doc/latex/dickimaw/src/thesis/pictures/jabref4.png
+ texmf-dist/doc/latex/dickimaw/src/thesis/pictures/jabref5-thumbnail.png
+ texmf-dist/doc/latex/dickimaw/src/thesis/pictures/jabref5.png
+ texmf-dist/doc/latex/dickimaw/src/thesis/pictures/jabref6-thumbnail.png
+ texmf-dist/doc/latex/dickimaw/src/thesis/pictures/jabref6.png
+ texmf-dist/doc/latex/dickimaw/src/thesis/pictures/jabref7-thumbnail.png
+ texmf-dist/doc/latex/dickimaw/src/thesis/pictures/jabref7.png
+ texmf-dist/doc/latex/dickimaw/src/thesis/pictures/jabref8-thumbnail.png
+ texmf-dist/doc/latex/dickimaw/src/thesis/pictures/jabref8.png
+ texmf-dist/doc/latex/dickimaw/src/thesis/pictures/jabref9-thumbnail.png
+ texmf-dist/doc/latex/dickimaw/src/thesis/pictures/jabref9.png
+ texmf-dist/doc/latex/dickimaw/src/thesis/pictures/pagestyle.tex
+ texmf-dist/doc/latex/dickimaw/src/thesis/pictures/texworks-addbutton.png
+ texmf-dist/doc/latex/dickimaw/src/thesis/pictures/texworks-arara.png
+ texmf-dist/doc/latex/dickimaw/src/thesis/pictures/texworks-arara2.png
+ texmf-dist/doc/latex/dickimaw/src/thesis/pictures/texworks-bibtex.png
+ texmf-dist/doc/latex/dickimaw/src/thesis/pictures/texworks-latexmk.png
+ texmf-dist/doc/latex/dickimaw/src/thesis/pictures/texworks-latexmkbibtex.png
+ texmf-dist/doc/latex/dickimaw/src/thesis/pictures/texworks-makeglossaries.png
+ texmf-dist/doc/latex/dickimaw/src/thesis/pictures/texworks-pdflatex.png
+ texmf-dist/doc/latex/dickimaw/src/thesis/pictures/texworks-pref.png
+ texmf-dist/doc/latex/dickimaw/src/thesis/pictures/texworks-texindy.png
+ texmf-dist/doc/latex/dickimaw/src/thesis/pictures/titlepage.pdf
+ texmf-dist/doc/latex/dickimaw/src/thesis/thesis-a4paper.sty
+ texmf-dist/doc/latex/dickimaw/src/thesis/thesis-index.ist
+ texmf-dist/doc/latex/dickimaw/src/thesis/thesis.bib
+catalogue-ctan /info/dickimaw
+catalogue-date 2014-02-26 23:03:13 +0100
+catalogue-license fdl
+
name dictsym
category Package
revision 20031
@@ -49320,7 +53966,7 @@ runfiles size=20
texmf-dist/fonts/type1/public/dictsym/dictsym.pfm
texmf-dist/tex/latex/dictsym/dictsym.sty
catalogue-ctan /fonts/dictsym
-catalogue-date 2012-04-27 17:21:29 +0200
+catalogue-date 2014-04-24 17:14:31 +0200
catalogue-license lppl
name digiconfigs
@@ -49445,7 +54091,7 @@ runfiles size=14
texmf-dist/tex/latex/dingbat/uark.fd
texmf-dist/tex/latex/dingbat/udingbat.fd
catalogue-ctan /fonts/dingbat
-catalogue-date 2012-06-28 23:28:54 +0200
+catalogue-date 2014-04-24 17:14:31 +0200
catalogue-license lppl
catalogue-version 1.0
@@ -49516,13 +54162,13 @@ srcfiles size=4
runfiles size=1
texmf-dist/tex/latex/dirtytalk/dirtytalk.sty
catalogue-ctan /macros/latex/contrib/dirtytalk
-catalogue-date 2012-06-28 23:28:54 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license pd
catalogue-version 1.0
name disser
category Package
-revision 28342
+revision 32509
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
@@ -49531,7 +54177,7 @@ longdesc titlepage, headers and elements of automatically generated
longdesc lists (table of contents, list of figures, etc). Bibliography
longdesc styles, that conform to the requirements of the Russian
longdesc standard GOST R 7.0.11-2011, are provided.
-docfiles size=99
+docfiles size=105
texmf-dist/doc/latex/disser/ChangeLog
texmf-dist/doc/latex/disser/Makefile
texmf-dist/doc/latex/disser/README details="Readme (English)" language="en"
@@ -49561,6 +54207,8 @@ docfiles size=99
texmf-dist/doc/latex/disser/templates/candidate/autoref.tex
texmf-dist/doc/latex/disser/templates/candidate/common.tex
texmf-dist/doc/latex/disser/templates/candidate/concl.tex
+ texmf-dist/doc/latex/disser/templates/candidate/defs.tex
+ texmf-dist/doc/latex/disser/templates/candidate/dict.tex
texmf-dist/doc/latex/disser/templates/candidate/fig/Makefile
texmf-dist/doc/latex/disser/templates/candidate/fig/facsimile.eps
texmf-dist/doc/latex/disser/templates/candidate/fig/nomake.cmd
@@ -49576,6 +54224,8 @@ docfiles size=99
texmf-dist/doc/latex/disser/templates/doctor/autoref.tex
texmf-dist/doc/latex/disser/templates/doctor/common.tex
texmf-dist/doc/latex/disser/templates/doctor/concl.tex
+ texmf-dist/doc/latex/disser/templates/doctor/defs.tex
+ texmf-dist/doc/latex/disser/templates/doctor/dict.tex
texmf-dist/doc/latex/disser/templates/doctor/fig/Makefile
texmf-dist/doc/latex/disser/templates/doctor/fig/facsimile.eps
texmf-dist/doc/latex/disser/templates/doctor/fig/nomake.cmd
@@ -49607,7 +54257,7 @@ docfiles size=99
texmf-dist/doc/latex/disser/templates/specialist/nomake.cmd
texmf-dist/doc/latex/disser/templates/specialist/thesis.bib
texmf-dist/doc/latex/disser/templates/specialist/thesis.tex
-srcfiles size=60
+srcfiles size=61
texmf-dist/source/latex/disser/autoref.dtx
texmf-dist/source/latex/disser/bachelor.dtx
texmf-dist/source/latex/disser/candidate.dtx
@@ -49631,7 +54281,7 @@ srcfiles size=60
texmf-dist/source/latex/disser/titledefs.dtx
texmf-dist/source/latex/disser/titlepage.dtx
texmf-dist/source/latex/disser/toc.dtx
-runfiles size=41
+runfiles size=43
texmf-dist/bibtex/bst/disser/gost705.bst
texmf-dist/bibtex/bst/disser/gost705s.bst
texmf-dist/bibtex/csf/disser/cp1251lc.csf
@@ -49646,9 +54296,9 @@ runfiles size=41
texmf-dist/tex/latex/disser/specialist.rtx
texmf-dist/tex/latex/disser/titledefs.rtx
catalogue-ctan /macros/latex/contrib/disser
-catalogue-date 2012-11-23 11:17:42 +0100
+catalogue-date 2013-12-30 11:37:42 +0100
catalogue-license lppl
-catalogue-version 1.2.0
+catalogue-version 1.3.0
name dk-bib
category Package
@@ -49691,18 +54341,18 @@ revision 17337
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 presented in the book as code tips. The bundle comprises:
longdesc dlfltxbcodetips: various macros helpful in typesetting
-longdesc mathematics; - dlfltxbmarkup: provides a macros used throughout
+longdesc mathematics; dlfltxbmarkup: provides a macros used throughout
longdesc the book, for registering macro names, packages etc. in the
longdesc text, in the margin and in the index, all by using categorised
longdesc keys (note, a configuration file may be used; a sample is
-longdesc included in the distribution); - dlfltxbtocconfig: macros for
-longdesc the two tables of contents that the book has; - 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. Interested parties may review the book itself on the web
-longdesc at the author's institution (it is written in Danish).
+longdesc included in the distribution); dlfltxbtocconfig: macros for the
+longdesc two tables of contents that the book has; dlfltxbmisc: various
+longdesc macros for typesetting LaTeX arguments, and the macro used in
+longdesc the bibliography that can wrap a URL up into a bibtex entry.
+longdesc Interested parties may review the book itself on the web at the
+longdesc author's institution (it is written in Danish).
docfiles size=205
texmf-dist/doc/latex/dlfltxb/README details="Readme"
texmf-dist/doc/latex/dlfltxb/dlfltxbbibtex.dbj
@@ -49725,7 +54375,7 @@ runfiles size=26
texmf-dist/tex/latex/dlfltxb/dlfltxbmisc.sty
texmf-dist/tex/latex/dlfltxb/dlfltxbtocconfig.sty
catalogue-ctan /macros/latex/contrib/dlfltxb
-catalogue-date 2012-06-28 23:28:54 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
name dnaseq
@@ -49765,7 +54415,33 @@ longdesc discussing) documentation of PicTeX.
docfiles size=1
texmf-dist/doc/generic/doc-pictex/Doc-PiCTeX.txt
catalogue-ctan /info/pictex/Doc-PiCTeX.txt
-catalogue-date 2012-07-03 17:35:36 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
+catalogue-license other-free
+
+name docbytex
+category Package
+revision 33943
+shortdesc Creating documentation from source code
+longdesc The package creates documentation from C source code, or other
+longdesc programming languages.
+docfiles size=391
+ texmf-dist/doc/generic/docbytex/README details="Readme"
+ texmf-dist/doc/generic/docbytex/annonce
+ texmf-dist/doc/generic/docbytex/base.c
+ texmf-dist/doc/generic/docbytex/base.d
+ texmf-dist/doc/generic/docbytex/cosi.c
+ texmf-dist/doc/generic/docbytex/docby.d
+ texmf-dist/doc/generic/docbytex/docby.pdf details="Package documentation" language="cs"
+ texmf-dist/doc/generic/docbytex/lup.pdf
+ texmf-dist/doc/generic/docbytex/lup.tex
+ texmf-dist/doc/generic/docbytex/main.c
+ texmf-dist/doc/generic/docbytex/main.d
+ texmf-dist/doc/generic/docbytex/win.c
+ texmf-dist/doc/generic/docbytex/win.d
+runfiles size=10
+ texmf-dist/tex/generic/docbytex/docby.tex
+catalogue-ctan /macros/generic/docbytex
+catalogue-date 2014-05-09 21:42:53 +0200
catalogue-license other-free
name docmfp
@@ -49810,7 +54486,7 @@ catalogue-version 1.4
name documentation
category Package
-revision 25405
+revision 32761
shortdesc Documentation support for C, Java and assembler code.
longdesc The package provides a simple means of typesetting computer
longdesc programs such that the result is acceptable for inclusion in
@@ -49824,7 +54500,7 @@ srcfiles size=6
runfiles size=2
texmf-dist/tex/latex/documentation/documentation.sty
catalogue-ctan /macros/latex/contrib/documentation
-catalogue-date 2011-12-02 09:08:13 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.2
catalogue-version 0.1
@@ -49844,7 +54520,7 @@ docfiles size=1
runfiles size=1
texmf-dist/tex/latex/doi/doi.sty
catalogue-ctan /macros/latex/contrib/doi
-catalogue-date 2012-06-20 18:12:53 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
name doipubmed
@@ -49878,12 +54554,12 @@ longdesc A Encapsulated PostScript (EPS) file may given in a special
longdesc binary format to support the inclusion of a thumbnail. This
longdesc file format, commonly known as DOS EPS format starts with a
longdesc binary header that contains the positions of the possible
-longdesc sections: - Postscript (PS); - Windows Metafile Format (WMF);
-longdesc and - Tag Image File Format (TIFF). The PS section must be
-longdesc present and either the WMF file or the TIFF file should be
-longdesc given. The package provides a Perl program that will extract
-longdesc any of the sections of such a file, in particular providing a
-longdesc 'text'-form EPS file for use with (La)TeX.
+longdesc sections: Postscript (PS); Windows Metafile Format (WMF); and
+longdesc Tag Image File Format (TIFF). The PS section must be present
+longdesc and either the WMF file or the TIFF file should be given. The
+longdesc package provides a Perl program that will extract any of the
+longdesc sections of such a file, in particular providing a 'text'-form
+longdesc EPS file for use with (La)TeX.
depend dosepsbin.ARCH
docfiles size=26
texmf-dist/doc/man/man1/dosepsbin.1
@@ -49903,7 +54579,7 @@ srcfiles size=20
runfiles size=3
texmf-dist/scripts/dosepsbin/dosepsbin.pl
catalogue-ctan /support/dosepsbin
-catalogue-date 2012-03-22 21:51:23 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license artistic
catalogue-version 1.2
@@ -49991,13 +54667,6 @@ shortdesc i386-solaris files of dosepsbin
binfiles arch=i386-solaris size=1
bin/i386-solaris/dosepsbin
-name dosepsbin.mips-irix
-category Package
-revision 29949
-shortdesc mips-irix files of dosepsbin
-binfiles arch=mips-irix size=1
- bin/mips-irix/dosepsbin
-
name dosepsbin.mipsel-linux
category Package
revision 29946
@@ -50033,6 +54702,13 @@ shortdesc win32 files of dosepsbin
binfiles arch=win32 size=1
bin/win32/dosepsbin.exe
+name dosepsbin.x86_64-cygwin
+category Package
+revision 33557
+shortdesc x86_64-cygwin files of dosepsbin
+binfiles arch=x86_64-cygwin size=1
+ bin/x86_64-cygwin/dosepsbin
+
name dosepsbin.x86_64-darwin
category Package
revision 24759
@@ -50079,7 +54755,7 @@ docfiles size=95
runfiles size=3
texmf-dist/tex/latex/dot2texi/dot2texi.sty
catalogue-ctan /macros/latex/contrib/dot2texi
-catalogue-date 2012-06-20 18:12:53 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license gpl
catalogue-version 3.0
@@ -50099,7 +54775,7 @@ srcfiles size=4
runfiles size=2
texmf-dist/tex/latex/dotarrow/DotArrow.sty
catalogue-ctan /macros/latex/contrib/dotarrow
-catalogue-date 2012-06-20 18:12:53 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 0.01a
@@ -50194,7 +54870,7 @@ runfiles size=58
texmf-dist/tex/latex/doublestroke/Udsss.fd
texmf-dist/tex/latex/doublestroke/dsfont.sty
catalogue-ctan /fonts/doublestroke
-catalogue-date 2012-04-25 18:00:26 +0200
+catalogue-date 2014-04-24 21:17:57 +0200
catalogue-license other-free
catalogue-version 1.111
@@ -50226,7 +54902,7 @@ runfiles size=6
texmf-dist/tex/generic/dowith/dowith.RLS
texmf-dist/tex/generic/dowith/dowith.sty
catalogue-ctan /macros/generic/dowith
-catalogue-date 2013-03-24 11:10:16 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 0.31a
@@ -50248,7 +54924,7 @@ srcfiles size=5
runfiles size=2
texmf-dist/tex/latex/download/download.sty
catalogue-ctan /macros/latex/contrib/download
-catalogue-date 2013-05-26 19:01:07 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.1
@@ -50274,7 +54950,7 @@ srcfiles size=8
runfiles size=2
texmf-dist/tex/latex/dox/dox.sty
catalogue-ctan /macros/latex/contrib/dox
-catalogue-date 2012-05-15 16:59:15 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 2.2
@@ -50438,7 +55114,7 @@ runfiles size=205
texmf-dist/fonts/vf/public/dozenal/fdzso8t.vf
texmf-dist/tex/latex/dozenal/dozenal.sty
catalogue-ctan /fonts/dozenal
-catalogue-date 2013-05-20 17:36:30 +0200
+catalogue-date 2014-04-25 21:03:35 +0200
catalogue-license lppl
catalogue-version 4.0
@@ -50480,7 +55156,7 @@ srcfiles size=3
runfiles size=2
texmf-dist/tex/latex/dprogress/dprogress.sty
catalogue-ctan /macros/latex/contrib/dprogress
-catalogue-date 2012-05-15 16:59:15 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 0.1
@@ -50508,7 +55184,7 @@ srcfiles size=12
runfiles size=1
texmf-dist/tex/latex/drac/drac.sty
catalogue-ctan /macros/latex/contrib/drac
-catalogue-date 2012-05-15 16:59:15 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1
@@ -50638,7 +55314,7 @@ docfiles size=31
runfiles size=2
texmf-dist/tex/latex/drawstack/drawstack.sty
catalogue-ctan /macros/latex/contrib/drawstack
-catalogue-date 2012-06-18 14:35:47 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
name droid
@@ -51216,21 +55892,22 @@ runfiles size=2093
texmf-dist/tex/latex/droid/x2fdr.fd
texmf-dist/tex/latex/droid/x2fds.fd
catalogue-ctan /fonts/droid
-catalogue-date 2012-11-09 11:57:25 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 2.1
name droit-fr
category Package
-revision 30356
+revision 32918
shortdesc Document class and bibliographic style for French law.
longdesc The bundle provides a toolkit intended for students writing a
-longdesc thesis in French law. It features: - a LaTeX document class; -
-longdesc a bibliographic style for Biblatex package; - a practical
-longdesc example of french thesis document; and - documentation. The
-longdesc class assumes use of biber and biblatex.
-docfiles size=95
+longdesc thesis in French law. It features: a LaTeX document class; a
+longdesc bibliographic style for Biblatex package; a practical example
+longdesc of french thesis document; and documentation. The class assumes
+longdesc use of biber and biblatex.
+docfiles size=99
texmf-dist/doc/latex/droit-fr/.latexmkrc
+ texmf-dist/doc/latex/droit-fr/CHANGELOG
texmf-dist/doc/latex/droit-fr/README
texmf-dist/doc/latex/droit-fr/droit-fr.pdf
texmf-dist/doc/latex/droit-fr/droit-fr.tex
@@ -51242,6 +55919,7 @@ docfiles size=95
texmf-dist/doc/latex/droit-fr/example/glossaire.tex
texmf-dist/doc/latex/droit-fr/example/index.tex
texmf-dist/doc/latex/droit-fr/example/introduction.tex
+ texmf-dist/doc/latex/droit-fr/example/journaux.bib
texmf-dist/doc/latex/droit-fr/example/main.tex
texmf-dist/doc/latex/droit-fr/example/misc.tex
texmf-dist/doc/latex/droit-fr/example/partie1.tex
@@ -51254,9 +55932,9 @@ runfiles size=9
texmf-dist/tex/latex/droit-fr/droit-fr.cbx
texmf-dist/tex/latex/droit-fr/droit-fr.cls
catalogue-ctan /macros/latex/contrib/droit-fr
-catalogue-date 2013-05-13 11:44:06 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
-catalogue-version 0.3
+catalogue-version 0.4
name drs
category Package
@@ -51276,7 +55954,7 @@ docfiles size=30
runfiles size=3
texmf-dist/tex/latex/drs/drs.sty
catalogue-ctan /macros/latex/contrib/drs
-catalogue-date 2012-06-18 14:35:47 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.1b
@@ -51309,7 +55987,7 @@ docfiles size=160
runfiles size=21
texmf-dist/metapost/drv/drv.mp
catalogue-ctan /graphics/metapost/contrib/macros/drv
-catalogue-date 2012-07-03 17:35:36 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 0.97
@@ -51367,13 +56045,13 @@ runfiles size=28
texmf-dist/tex/latex/dtk/dtk12.clo
texmf-dist/tex/latex/dtk/dtklogos.sty
catalogue-ctan /usergrps/dante/dtk
-catalogue-date 2012-06-18 14:12:50 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.29
name dtl
category TLCore
-revision 29764
+revision 33818
shortdesc Tools to dis-assemble and re-assemble DVI files.
longdesc DTL (DVI Text Language) is a means of expressing the content of
longdesc a DVI file, which is readily readable by humans. The DTL bundle
@@ -51382,7 +56060,7 @@ longdesc files) and a disassembler dv2dt (which produces DTL files from
longdesc DVI files). The DTL bundle was developed so as to avoid some
longdesc infelicities of dvitype (among other pressing reasons).
depend dtl.ARCH
-runfiles size=12
+docfiles size=12
texmf-dist/doc/man/man1/dt2dv.1
texmf-dist/doc/man/man1/dt2dv.man1.pdf
texmf-dist/doc/man/man1/dv2dt.1
@@ -51394,7 +56072,7 @@ catalogue-version 0.6.1
name dtl.alpha-linux
category TLCore
-revision 29834
+revision 33553
shortdesc alpha-linux files of dtl
binfiles arch=alpha-linux size=23
bin/alpha-linux/dt2dv
@@ -51402,7 +56080,7 @@ binfiles arch=alpha-linux size=23
name dtl.amd64-freebsd
category TLCore
-revision 29785
+revision 33488
shortdesc amd64-freebsd files of dtl
binfiles arch=amd64-freebsd size=17
bin/amd64-freebsd/dt2dv
@@ -51410,7 +56088,7 @@ binfiles arch=amd64-freebsd size=17
name dtl.amd64-kfreebsd
category TLCore
-revision 30655
+revision 33864
shortdesc amd64-kfreebsd files of dtl
binfiles arch=amd64-kfreebsd size=17
bin/amd64-kfreebsd/dt2dv
@@ -51418,7 +56096,7 @@ binfiles arch=amd64-kfreebsd size=17
name dtl.amd64-netbsd
category TLCore
-revision 30660
+revision 33726
shortdesc amd64-netbsd files of dtl
binfiles arch=amd64-netbsd size=18
bin/amd64-netbsd/dt2dv
@@ -51426,7 +56104,7 @@ binfiles arch=amd64-netbsd size=18
name dtl.armel-linux
category TLCore
-revision 29805
+revision 33916
shortdesc armel-linux files of dtl
binfiles arch=armel-linux size=15
bin/armel-linux/dt2dv
@@ -51434,7 +56112,7 @@ binfiles arch=armel-linux size=15
name dtl.armhf-linux
category TLCore
-revision 30015
+revision 34125
shortdesc armhf-linux files of dtl
binfiles arch=armhf-linux size=14
bin/armhf-linux/dt2dv
@@ -51442,15 +56120,15 @@ binfiles arch=armhf-linux size=14
name dtl.i386-cygwin
category TLCore
-revision 30526
+revision 34161
shortdesc i386-cygwin files of dtl
-binfiles arch=i386-cygwin size=16
+binfiles arch=i386-cygwin size=19
bin/i386-cygwin/dt2dv.exe
bin/i386-cygwin/dv2dt.exe
name dtl.i386-freebsd
category TLCore
-revision 29785
+revision 33488
shortdesc i386-freebsd files of dtl
binfiles arch=i386-freebsd size=16
bin/i386-freebsd/dt2dv
@@ -51458,7 +56136,7 @@ binfiles arch=i386-freebsd size=16
name dtl.i386-kfreebsd
category TLCore
-revision 30440
+revision 33864
shortdesc i386-kfreebsd files of dtl
binfiles arch=i386-kfreebsd size=17
bin/i386-kfreebsd/dt2dv
@@ -51466,15 +56144,15 @@ binfiles arch=i386-kfreebsd size=17
name dtl.i386-linux
category TLCore
-revision 30088
+revision 33479
shortdesc i386-linux files of dtl
-binfiles arch=i386-linux size=16
+binfiles arch=i386-linux size=17
bin/i386-linux/dt2dv
bin/i386-linux/dv2dt
name dtl.i386-netbsd
category TLCore
-revision 30191
+revision 33562
shortdesc i386-netbsd files of dtl
binfiles arch=i386-netbsd size=15
bin/i386-netbsd/dt2dv
@@ -51482,47 +56160,39 @@ binfiles arch=i386-netbsd size=15
name dtl.i386-solaris
category TLCore
-revision 30112
+revision 34203
shortdesc i386-solaris files of dtl
binfiles arch=i386-solaris size=17
bin/i386-solaris/dt2dv
bin/i386-solaris/dv2dt
-name dtl.mips-irix
-category TLCore
-revision 30131
-shortdesc mips-irix files of dtl
-binfiles arch=mips-irix size=45
- bin/mips-irix/dt2dv
- bin/mips-irix/dv2dt
-
name dtl.mipsel-linux
category TLCore
-revision 29783
+revision 33811
shortdesc mipsel-linux files of dtl
-binfiles arch=mipsel-linux size=20
+binfiles arch=mipsel-linux size=17
bin/mipsel-linux/dt2dv
bin/mipsel-linux/dv2dt
name dtl.powerpc-linux
category TLCore
-revision 29833
+revision 33889
shortdesc powerpc-linux files of dtl
-binfiles arch=powerpc-linux size=18
+binfiles arch=powerpc-linux size=16
bin/powerpc-linux/dt2dv
bin/powerpc-linux/dv2dt
name dtl.sparc-solaris
category TLCore
-revision 29877
+revision 33871
shortdesc sparc-solaris files of dtl
-binfiles arch=sparc-solaris size=17
+binfiles arch=sparc-solaris size=16
bin/sparc-solaris/dt2dv
bin/sparc-solaris/dv2dt
name dtl.universal-darwin
category TLCore
-revision 30764
+revision 34201
shortdesc universal-darwin files of dtl
binfiles arch=universal-darwin size=40
bin/universal-darwin/dt2dv
@@ -51530,15 +56200,23 @@ binfiles arch=universal-darwin size=40
name dtl.win32
category TLCore
-revision 29816
+revision 33897
shortdesc win32 files of dtl
-binfiles arch=win32 size=9
+binfiles arch=win32 size=12
bin/win32/dt2dv.exe
bin/win32/dv2dt.exe
+name dtl.x86_64-cygwin
+category TLCore
+revision 34161
+shortdesc x86_64-cygwin files of dtl
+binfiles arch=x86_64-cygwin size=18
+ bin/x86_64-cygwin/dt2dv.exe
+ bin/x86_64-cygwin/dv2dt.exe
+
name dtl.x86_64-darwin
category TLCore
-revision 29809
+revision 34201
shortdesc x86_64-darwin files of dtl
binfiles arch=x86_64-darwin size=21
bin/x86_64-darwin/dt2dv
@@ -51546,7 +56224,7 @@ binfiles arch=x86_64-darwin size=21
name dtl.x86_64-linux
category TLCore
-revision 30204
+revision 33723
shortdesc x86_64-linux files of dtl
binfiles arch=x86_64-linux size=17
bin/x86_64-linux/dt2dv
@@ -51554,7 +56232,7 @@ binfiles arch=x86_64-linux size=17
name dtl.x86_64-solaris
category TLCore
-revision 30112
+revision 34203
shortdesc x86_64-solaris files of dtl
binfiles arch=x86_64-solaris size=21
bin/x86_64-solaris/dt2dv
@@ -51582,27 +56260,27 @@ srcfiles size=5
texmf-dist/source/latex/dtxgallery/rearrange.dtx
texmf-dist/source/latex/dtxgallery/single-source.dtx
catalogue-ctan /info/dtxgallery
-catalogue-date 2012-06-15 14:27:55 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1
name dtxgen
category Package
-revision 30077
+revision 33681
shortdesc Creates a template for a self-extracting .dtx file.
longdesc The bash script dtxgen creates a template for a self-extracting
longdesc .dtx file. It is useful for those who plan to create a new
longdesc Documented LaTeX Source (.dtx) file.
depend dtxgen.ARCH
-docfiles size=17
+docfiles size=12
texmf-dist/doc/support/dtxgen/README details="README"
texmf-dist/doc/support/dtxgen/dtxgen.pdf details="Package documentation"
runfiles size=4
texmf-dist/scripts/dtxgen/dtxgen
catalogue-ctan /support/dtxgen
-catalogue-date 2013-04-22 18:47:59 +0200
+catalogue-date 2014-04-25 13:42:50 +0200
catalogue-license gpl
-catalogue-version 1.03
+catalogue-version 1.04
name dtxgen.alpha-linux
category Package
@@ -51688,13 +56366,6 @@ shortdesc i386-solaris files of dtxgen
binfiles arch=i386-solaris size=1
bin/i386-solaris/dtxgen
-name dtxgen.mips-irix
-category Package
-revision 29949
-shortdesc mips-irix files of dtxgen
-binfiles arch=mips-irix size=1
- bin/mips-irix/dtxgen
-
name dtxgen.mipsel-linux
category Package
revision 29946
@@ -51723,6 +56394,13 @@ shortdesc universal-darwin files of dtxgen
binfiles arch=universal-darwin size=1
bin/universal-darwin/dtxgen
+name dtxgen.x86_64-cygwin
+category Package
+revision 33557
+shortdesc x86_64-cygwin files of dtxgen
+binfiles arch=x86_64-cygwin size=1
+ bin/x86_64-cygwin/dtxgen
+
name dtxgen.x86_64-darwin
category Package
revision 29031
@@ -51791,7 +56469,7 @@ runfiles size=30
texmf-dist/fonts/tfm/public/duerer/cdss10.tfm
texmf-dist/fonts/tfm/public/duerer/cdtt10.tfm
catalogue-ctan /fonts/duerer
-catalogue-date 2012-06-15 14:27:55 +0200
+catalogue-date 2014-04-25 21:03:35 +0200
catalogue-license pd
name duerer-latex
@@ -51829,7 +56507,7 @@ docfiles size=45
runfiles size=10
texmf-dist/tex/latex/duotenzor/duotenzor.sty
catalogue-ctan /graphics/duotenzor
-catalogue-date 2012-06-15 14:27:55 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.00
@@ -51860,7 +56538,7 @@ runfiles size=20
texmf-dist/tex/latex/dutchcal/dutchcal.sty
texmf-dist/tex/latex/dutchcal/udutchcal.fd
catalogue-ctan /fonts/dutchcal
-catalogue-date 2012-06-15 14:27:55 +0200
+catalogue-date 2014-04-25 21:03:35 +0200
catalogue-license lppl
catalogue-version 1.0
@@ -51943,22 +56621,21 @@ srcfiles size=8
runfiles size=1
texmf-dist/tex/latex/dvgloss/dvgloss.sty
catalogue-ctan /macros/latex/contrib/dvgloss
-catalogue-date 2013-02-15 11:53:46 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 0.1
name dvi2tty
category TLCore
-revision 29764
+revision 33818
shortdesc Produce ASCII from DVI.
longdesc A DVI driver to produce an ASCII representation of the
longdesc document. The original version was written in Pascal, and the
longdesc present author translated the program to C.
depend dvi2tty.ARCH
-docfiles size=2
+docfiles size=7
texmf-dist/doc/man/man1/disdvi.1
texmf-dist/doc/man/man1/disdvi.man1.pdf
-runfiles size=5
texmf-dist/doc/man/man1/dvi2tty.1
texmf-dist/doc/man/man1/dvi2tty.man1.pdf
catalogue-ctan /dviware/dvi2tty
@@ -51968,7 +56645,7 @@ catalogue-version 3.5.1
name dvi2tty.alpha-linux
category TLCore
-revision 30403
+revision 33553
shortdesc alpha-linux files of dvi2tty
binfiles arch=alpha-linux size=42
bin/alpha-linux/disdvi
@@ -51976,7 +56653,7 @@ binfiles arch=alpha-linux size=42
name dvi2tty.amd64-freebsd
category TLCore
-revision 30400
+revision 33488
shortdesc amd64-freebsd files of dvi2tty
binfiles arch=amd64-freebsd size=34
bin/amd64-freebsd/disdvi
@@ -51984,7 +56661,7 @@ binfiles arch=amd64-freebsd size=34
name dvi2tty.amd64-kfreebsd
category TLCore
-revision 30655
+revision 33864
shortdesc amd64-kfreebsd files of dvi2tty
binfiles arch=amd64-kfreebsd size=34
bin/amd64-kfreebsd/disdvi
@@ -51992,7 +56669,7 @@ binfiles arch=amd64-kfreebsd size=34
name dvi2tty.amd64-netbsd
category TLCore
-revision 30660
+revision 33726
shortdesc amd64-netbsd files of dvi2tty
binfiles arch=amd64-netbsd size=35
bin/amd64-netbsd/disdvi
@@ -52000,7 +56677,7 @@ binfiles arch=amd64-netbsd size=35
name dvi2tty.armel-linux
category TLCore
-revision 30774
+revision 33916
shortdesc armel-linux files of dvi2tty
binfiles arch=armel-linux size=30
bin/armel-linux/disdvi
@@ -52008,7 +56685,7 @@ binfiles arch=armel-linux size=30
name dvi2tty.armhf-linux
category TLCore
-revision 30443
+revision 34125
shortdesc armhf-linux files of dvi2tty
binfiles arch=armhf-linux size=28
bin/armhf-linux/disdvi
@@ -52016,15 +56693,15 @@ binfiles arch=armhf-linux size=28
name dvi2tty.i386-cygwin
category TLCore
-revision 30526
+revision 34161
shortdesc i386-cygwin files of dvi2tty
-binfiles arch=i386-cygwin size=31
+binfiles arch=i386-cygwin size=35
bin/i386-cygwin/disdvi.exe
bin/i386-cygwin/dvi2tty.exe
name dvi2tty.i386-freebsd
category TLCore
-revision 30400
+revision 33488
shortdesc i386-freebsd files of dvi2tty
binfiles arch=i386-freebsd size=32
bin/i386-freebsd/disdvi
@@ -52032,23 +56709,23 @@ binfiles arch=i386-freebsd size=32
name dvi2tty.i386-kfreebsd
category TLCore
-revision 30440
+revision 33864
shortdesc i386-kfreebsd files of dvi2tty
-binfiles arch=i386-kfreebsd size=33
+binfiles arch=i386-kfreebsd size=34
bin/i386-kfreebsd/disdvi
bin/i386-kfreebsd/dvi2tty
name dvi2tty.i386-linux
category TLCore
-revision 30376
+revision 33479
shortdesc i386-linux files of dvi2tty
-binfiles arch=i386-linux size=33
+binfiles arch=i386-linux size=35
bin/i386-linux/disdvi
bin/i386-linux/dvi2tty
name dvi2tty.i386-netbsd
category TLCore
-revision 30405
+revision 33562
shortdesc i386-netbsd files of dvi2tty
binfiles arch=i386-netbsd size=30
bin/i386-netbsd/disdvi
@@ -52056,39 +56733,31 @@ binfiles arch=i386-netbsd size=30
name dvi2tty.i386-solaris
category TLCore
-revision 30439
+revision 34203
shortdesc i386-solaris files of dvi2tty
binfiles arch=i386-solaris size=36
bin/i386-solaris/disdvi
bin/i386-solaris/dvi2tty
-name dvi2tty.mips-irix
-category TLCore
-revision 30131
-shortdesc mips-irix files of dvi2tty
-binfiles arch=mips-irix size=79
- bin/mips-irix/disdvi
- bin/mips-irix/dvi2tty
-
name dvi2tty.mipsel-linux
category TLCore
-revision 30435
+revision 33811
shortdesc mipsel-linux files of dvi2tty
-binfiles arch=mipsel-linux size=40
+binfiles arch=mipsel-linux size=33
bin/mipsel-linux/disdvi
bin/mipsel-linux/dvi2tty
name dvi2tty.powerpc-linux
category TLCore
-revision 30402
+revision 33889
shortdesc powerpc-linux files of dvi2tty
-binfiles arch=powerpc-linux size=34
+binfiles arch=powerpc-linux size=32
bin/powerpc-linux/disdvi
bin/powerpc-linux/dvi2tty
name dvi2tty.sparc-solaris
category TLCore
-revision 30384
+revision 33871
shortdesc sparc-solaris files of dvi2tty
binfiles arch=sparc-solaris size=34
bin/sparc-solaris/disdvi
@@ -52096,7 +56765,7 @@ binfiles arch=sparc-solaris size=34
name dvi2tty.universal-darwin
category TLCore
-revision 30764
+revision 34201
shortdesc universal-darwin files of dvi2tty
binfiles arch=universal-darwin size=72
bin/universal-darwin/disdvi
@@ -52104,15 +56773,23 @@ binfiles arch=universal-darwin size=72
name dvi2tty.win32
category TLCore
-revision 30245
+revision 33897
shortdesc win32 files of dvi2tty
-binfiles arch=win32 size=46
+binfiles arch=win32 size=50
bin/win32/disdvi.exe
bin/win32/dvi2tty.exe
+name dvi2tty.x86_64-cygwin
+category TLCore
+revision 34161
+shortdesc x86_64-cygwin files of dvi2tty
+binfiles arch=x86_64-cygwin size=34
+ bin/x86_64-cygwin/disdvi.exe
+ bin/x86_64-cygwin/dvi2tty.exe
+
name dvi2tty.x86_64-darwin
category TLCore
-revision 30401
+revision 34201
shortdesc x86_64-darwin files of dvi2tty
binfiles arch=x86_64-darwin size=37
bin/x86_64-darwin/disdvi
@@ -52120,7 +56797,7 @@ binfiles arch=x86_64-darwin size=37
name dvi2tty.x86_64-linux
category TLCore
-revision 30519
+revision 33723
shortdesc x86_64-linux files of dvi2tty
binfiles arch=x86_64-linux size=34
bin/x86_64-linux/disdvi
@@ -52128,7 +56805,7 @@ binfiles arch=x86_64-linux size=34
name dvi2tty.x86_64-solaris
category TLCore
-revision 30439
+revision 34203
shortdesc x86_64-solaris files of dvi2tty
binfiles arch=x86_64-solaris size=43
bin/x86_64-solaris/disdvi
@@ -52146,7 +56823,7 @@ depend dviasm.ARCH
runfiles size=9
texmf-dist/scripts/dviasm/dviasm.py
catalogue-ctan /dviware/dviasm
-catalogue-date 2012-04-10 15:00:16 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license gpl
name dviasm.alpha-linux
@@ -52233,13 +56910,6 @@ shortdesc i386-solaris files of dviasm
binfiles arch=i386-solaris size=1
bin/i386-solaris/dviasm
-name dviasm.mips-irix
-category Package
-revision 29949
-shortdesc mips-irix files of dviasm
-binfiles arch=mips-irix size=1
- bin/mips-irix/dviasm
-
name dviasm.mipsel-linux
category Package
revision 29946
@@ -52275,6 +56945,13 @@ shortdesc win32 files of dviasm
binfiles arch=win32 size=1
bin/win32/dviasm.exe
+name dviasm.x86_64-cygwin
+category Package
+revision 33557
+shortdesc x86_64-cygwin files of dviasm
+binfiles arch=x86_64-cygwin size=1
+ bin/x86_64-cygwin/dviasm
+
name dviasm.x86_64-darwin
category Package
revision 18441
@@ -52298,7 +56975,7 @@ binfiles arch=x86_64-solaris size=1
name dvicopy
category TLCore
-revision 29764
+revision 33736
shortdesc Copy DVI files, flattening VFs.
longdesc DVICOPY is a utility program that allows one to take a DVI file
longdesc that references composite fonts (VF) and convert it into a DVI
@@ -52315,154 +56992,154 @@ catalogue-version 1.5
name dvicopy.alpha-linux
category TLCore
-revision 29891
+revision 33553
shortdesc alpha-linux files of dvicopy
binfiles arch=alpha-linux size=39
bin/alpha-linux/dvicopy
name dvicopy.amd64-freebsd
category TLCore
-revision 29874
+revision 33488
shortdesc amd64-freebsd files of dvicopy
binfiles arch=amd64-freebsd size=32
bin/amd64-freebsd/dvicopy
name dvicopy.amd64-kfreebsd
category TLCore
-revision 30655
+revision 33864
shortdesc amd64-kfreebsd files of dvicopy
binfiles arch=amd64-kfreebsd size=29
bin/amd64-kfreebsd/dvicopy
name dvicopy.amd64-netbsd
category TLCore
-revision 30660
+revision 33726
shortdesc amd64-netbsd files of dvicopy
binfiles arch=amd64-netbsd size=30
bin/amd64-netbsd/dvicopy
name dvicopy.armel-linux
category TLCore
-revision 29888
+revision 33916
shortdesc armel-linux files of dvicopy
binfiles arch=armel-linux size=26
bin/armel-linux/dvicopy
name dvicopy.armhf-linux
category TLCore
-revision 30443
+revision 34125
shortdesc armhf-linux files of dvicopy
binfiles arch=armhf-linux size=25
bin/armhf-linux/dvicopy
name dvicopy.i386-cygwin
category TLCore
-revision 30526
+revision 34161
shortdesc i386-cygwin files of dvicopy
-binfiles arch=i386-cygwin size=27
+binfiles arch=i386-cygwin size=31
bin/i386-cygwin/dvicopy.exe
name dvicopy.i386-freebsd
category TLCore
-revision 29874
+revision 33488
shortdesc i386-freebsd files of dvicopy
binfiles arch=i386-freebsd size=30
bin/i386-freebsd/dvicopy
name dvicopy.i386-kfreebsd
category TLCore
-revision 30440
+revision 33864
shortdesc i386-kfreebsd files of dvicopy
binfiles arch=i386-kfreebsd size=29
bin/i386-kfreebsd/dvicopy
name dvicopy.i386-linux
category TLCore
-revision 30088
+revision 33479
shortdesc i386-linux files of dvicopy
-binfiles arch=i386-linux size=29
+binfiles arch=i386-linux size=31
bin/i386-linux/dvicopy
name dvicopy.i386-netbsd
category TLCore
-revision 30191
+revision 33562
shortdesc i386-netbsd files of dvicopy
binfiles arch=i386-netbsd size=27
bin/i386-netbsd/dvicopy
name dvicopy.i386-solaris
category TLCore
-revision 30112
+revision 34203
shortdesc i386-solaris files of dvicopy
binfiles arch=i386-solaris size=37
bin/i386-solaris/dvicopy
-name dvicopy.mips-irix
-category TLCore
-revision 30131
-shortdesc mips-irix files of dvicopy
-binfiles arch=mips-irix size=66
- bin/mips-irix/dvicopy
-
name dvicopy.mipsel-linux
category TLCore
-revision 29995
+revision 33811
shortdesc mipsel-linux files of dvicopy
-binfiles arch=mipsel-linux size=37
+binfiles arch=mipsel-linux size=30
bin/mipsel-linux/dvicopy
name dvicopy.powerpc-linux
category TLCore
-revision 30114
+revision 33889
shortdesc powerpc-linux files of dvicopy
-binfiles arch=powerpc-linux size=30
+binfiles arch=powerpc-linux size=28
bin/powerpc-linux/dvicopy
name dvicopy.sparc-solaris
category TLCore
-revision 29877
+revision 33871
shortdesc sparc-solaris files of dvicopy
-binfiles arch=sparc-solaris size=34
+binfiles arch=sparc-solaris size=33
bin/sparc-solaris/dvicopy
name dvicopy.universal-darwin
category TLCore
-revision 30764
+revision 34201
shortdesc universal-darwin files of dvicopy
binfiles arch=universal-darwin size=62
bin/universal-darwin/dvicopy
name dvicopy.win32
category TLCore
-revision 29816
+revision 33897
shortdesc win32 files of dvicopy
-binfiles arch=win32 size=11
+binfiles arch=win32 size=18
bin/win32/dvicopy.exe
+name dvicopy.x86_64-cygwin
+category TLCore
+revision 34161
+shortdesc x86_64-cygwin files of dvicopy
+binfiles arch=x86_64-cygwin size=30
+ bin/x86_64-cygwin/dvicopy.exe
+
name dvicopy.x86_64-darwin
category TLCore
-revision 29879
+revision 34201
shortdesc x86_64-darwin files of dvicopy
binfiles arch=x86_64-darwin size=34
bin/x86_64-darwin/dvicopy
name dvicopy.x86_64-linux
category TLCore
-revision 30204
+revision 33723
shortdesc x86_64-linux files of dvicopy
binfiles arch=x86_64-linux size=29
bin/x86_64-linux/dvicopy
name dvicopy.x86_64-solaris
category TLCore
-revision 30112
+revision 34203
shortdesc x86_64-solaris files of dvicopy
-binfiles arch=x86_64-solaris size=42
+binfiles arch=x86_64-solaris size=41
bin/x86_64-solaris/dvicopy
name dvidvi
category TLCore
-revision 29764
+revision 33736
shortdesc Convert one DVI file into another.
longdesc The output DVI file's contents are specified by page selection
longdesc commands; series of pages and page number ranges may be
@@ -52492,37 +57169,37 @@ binfiles arch=amd64-freebsd size=6
name dvidvi.amd64-kfreebsd
category TLCore
-revision 30655
+revision 33529
shortdesc amd64-kfreebsd files of dvidvi
binfiles arch=amd64-kfreebsd size=5
bin/amd64-kfreebsd/dvidvi
name dvidvi.amd64-netbsd
category TLCore
-revision 30660
+revision 33726
shortdesc amd64-netbsd files of dvidvi
binfiles arch=amd64-netbsd size=5
bin/amd64-netbsd/dvidvi
name dvidvi.armel-linux
category TLCore
-revision 29805
+revision 33508
shortdesc armel-linux files of dvidvi
binfiles arch=armel-linux size=5
bin/armel-linux/dvidvi
name dvidvi.armhf-linux
category TLCore
-revision 30015
+revision 33545
shortdesc armhf-linux files of dvidvi
binfiles arch=armhf-linux size=5
bin/armhf-linux/dvidvi
name dvidvi.i386-cygwin
category TLCore
-revision 30526
+revision 34161
shortdesc i386-cygwin files of dvidvi
-binfiles arch=i386-cygwin size=4
+binfiles arch=i386-cygwin size=5
bin/i386-cygwin/dvidvi.exe
name dvidvi.i386-freebsd
@@ -52534,95 +57211,95 @@ binfiles arch=i386-freebsd size=5
name dvidvi.i386-kfreebsd
category TLCore
-revision 30440
+revision 33529
shortdesc i386-kfreebsd files of dvidvi
binfiles arch=i386-kfreebsd size=5
bin/i386-kfreebsd/dvidvi
name dvidvi.i386-linux
category TLCore
-revision 30088
+revision 33479
shortdesc i386-linux files of dvidvi
binfiles arch=i386-linux size=5
bin/i386-linux/dvidvi
name dvidvi.i386-netbsd
category TLCore
-revision 30191
+revision 33562
shortdesc i386-netbsd files of dvidvi
binfiles arch=i386-netbsd size=4
bin/i386-netbsd/dvidvi
name dvidvi.i386-solaris
category TLCore
-revision 30112
+revision 34203
shortdesc i386-solaris files of dvidvi
binfiles arch=i386-solaris size=5
bin/i386-solaris/dvidvi
-name dvidvi.mips-irix
-category TLCore
-revision 29949
-shortdesc mips-irix files of dvidvi
-binfiles arch=mips-irix size=19
- bin/mips-irix/dvidvi
-
name dvidvi.mipsel-linux
category TLCore
-revision 29783
+revision 33811
shortdesc mipsel-linux files of dvidvi
-binfiles arch=mipsel-linux size=6
+binfiles arch=mipsel-linux size=5
bin/mipsel-linux/dvidvi
name dvidvi.powerpc-linux
category TLCore
-revision 29833
+revision 33561
shortdesc powerpc-linux files of dvidvi
binfiles arch=powerpc-linux size=5
bin/powerpc-linux/dvidvi
name dvidvi.sparc-solaris
category TLCore
-revision 29877
+revision 33871
shortdesc sparc-solaris files of dvidvi
binfiles arch=sparc-solaris size=5
bin/sparc-solaris/dvidvi
name dvidvi.universal-darwin
category TLCore
-revision 30764
+revision 34201
shortdesc universal-darwin files of dvidvi
binfiles arch=universal-darwin size=14
bin/universal-darwin/dvidvi
name dvidvi.win32
category TLCore
-revision 29816
+revision 33897
shortdesc win32 files of dvidvi
-binfiles arch=win32 size=8
+binfiles arch=win32 size=9
bin/win32/a5bookle.bat
bin/win32/a5bookle.exe
bin/win32/doubside.bat
bin/win32/doubside.exe
bin/win32/dvidvi.exe
+name dvidvi.x86_64-cygwin
+category TLCore
+revision 34161
+shortdesc x86_64-cygwin files of dvidvi
+binfiles arch=x86_64-cygwin size=5
+ bin/x86_64-cygwin/dvidvi.exe
+
name dvidvi.x86_64-darwin
category TLCore
-revision 29809
+revision 34201
shortdesc x86_64-darwin files of dvidvi
binfiles arch=x86_64-darwin size=6
bin/x86_64-darwin/dvidvi
name dvidvi.x86_64-linux
category TLCore
-revision 30204
+revision 33723
shortdesc x86_64-linux files of dvidvi
binfiles arch=x86_64-linux size=6
bin/x86_64-linux/dvidvi
name dvidvi.x86_64-solaris
category TLCore
-revision 30112
+revision 34203
shortdesc x86_64-solaris files of dvidvi
binfiles arch=x86_64-solaris size=6
bin/x86_64-solaris/dvidvi
@@ -52656,7 +57333,7 @@ catalogue-version 1.00
name dviljk
category TLCore
-revision 29764
+revision 33736
shortdesc DVI to Laserjet output.
longdesc A dvi driver for the LaserJet printers, using kpathsea
longdesc recursive file searching. Note: this program will not compile
@@ -52684,7 +57361,7 @@ catalogue-version 2.6p4
name dviljk.alpha-linux
category TLCore
-revision 29891
+revision 33553
shortdesc alpha-linux files of dviljk
binfiles arch=alpha-linux size=155
bin/alpha-linux/dvihp
@@ -52696,9 +57373,9 @@ binfiles arch=alpha-linux size=155
name dviljk.amd64-freebsd
category TLCore
-revision 29874
+revision 33488
shortdesc amd64-freebsd files of dviljk
-binfiles arch=amd64-freebsd size=117
+binfiles arch=amd64-freebsd size=119
bin/amd64-freebsd/dvihp
bin/amd64-freebsd/dvilj
bin/amd64-freebsd/dvilj2p
@@ -52708,7 +57385,7 @@ binfiles arch=amd64-freebsd size=117
name dviljk.amd64-kfreebsd
category TLCore
-revision 30655
+revision 33864
shortdesc amd64-kfreebsd files of dviljk
binfiles arch=amd64-kfreebsd size=119
bin/amd64-kfreebsd/dvihp
@@ -52720,7 +57397,7 @@ binfiles arch=amd64-kfreebsd size=119
name dviljk.amd64-netbsd
category TLCore
-revision 30660
+revision 33726
shortdesc amd64-netbsd files of dviljk
binfiles arch=amd64-netbsd size=119
bin/amd64-netbsd/dvihp
@@ -52732,7 +57409,7 @@ binfiles arch=amd64-netbsd size=119
name dviljk.armel-linux
category TLCore
-revision 29888
+revision 33916
shortdesc armel-linux files of dviljk
binfiles arch=armel-linux size=107
bin/armel-linux/dvihp
@@ -52744,7 +57421,7 @@ binfiles arch=armel-linux size=107
name dviljk.armhf-linux
category TLCore
-revision 30443
+revision 34125
shortdesc armhf-linux files of dviljk
binfiles arch=armhf-linux size=101
bin/armhf-linux/dvihp
@@ -52756,9 +57433,9 @@ binfiles arch=armhf-linux size=101
name dviljk.i386-cygwin
category TLCore
-revision 30526
+revision 34161
shortdesc i386-cygwin files of dviljk
-binfiles arch=i386-cygwin size=109
+binfiles arch=i386-cygwin size=124
bin/i386-cygwin/dvihp
bin/i386-cygwin/dvilj.exe
bin/i386-cygwin/dvilj2p.exe
@@ -52768,7 +57445,7 @@ binfiles arch=i386-cygwin size=109
name dviljk.i386-freebsd
category TLCore
-revision 29874
+revision 33488
shortdesc i386-freebsd files of dviljk
binfiles arch=i386-freebsd size=111
bin/i386-freebsd/dvihp
@@ -52780,7 +57457,7 @@ binfiles arch=i386-freebsd size=111
name dviljk.i386-kfreebsd
category TLCore
-revision 30440
+revision 33864
shortdesc i386-kfreebsd files of dviljk
binfiles arch=i386-kfreebsd size=119
bin/i386-kfreebsd/dvihp
@@ -52792,9 +57469,9 @@ binfiles arch=i386-kfreebsd size=119
name dviljk.i386-linux
category TLCore
-revision 30088
+revision 33479
shortdesc i386-linux files of dviljk
-binfiles arch=i386-linux size=119
+binfiles arch=i386-linux size=127
bin/i386-linux/dvihp
bin/i386-linux/dvilj
bin/i386-linux/dvilj2p
@@ -52804,7 +57481,7 @@ binfiles arch=i386-linux size=119
name dviljk.i386-netbsd
category TLCore
-revision 30191
+revision 33562
shortdesc i386-netbsd files of dviljk
binfiles arch=i386-netbsd size=107
bin/i386-netbsd/dvihp
@@ -52816,9 +57493,9 @@ binfiles arch=i386-netbsd size=107
name dviljk.i386-solaris
category TLCore
-revision 30112
+revision 34203
shortdesc i386-solaris files of dviljk
-binfiles arch=i386-solaris size=135
+binfiles arch=i386-solaris size=131
bin/i386-solaris/dvihp
bin/i386-solaris/dvilj
bin/i386-solaris/dvilj2p
@@ -52826,23 +57503,11 @@ binfiles arch=i386-solaris size=135
bin/i386-solaris/dvilj4l
bin/i386-solaris/dvilj6
-name dviljk.mips-irix
-category TLCore
-revision 30131
-shortdesc mips-irix files of dviljk
-binfiles arch=mips-irix size=241
- bin/mips-irix/dvihp
- bin/mips-irix/dvilj
- bin/mips-irix/dvilj2p
- bin/mips-irix/dvilj4
- bin/mips-irix/dvilj4l
- bin/mips-irix/dvilj6
-
name dviljk.mipsel-linux
category TLCore
-revision 29995
+revision 33811
shortdesc mipsel-linux files of dviljk
-binfiles arch=mipsel-linux size=143
+binfiles arch=mipsel-linux size=119
bin/mipsel-linux/dvihp
bin/mipsel-linux/dvilj
bin/mipsel-linux/dvilj2p
@@ -52852,9 +57517,9 @@ binfiles arch=mipsel-linux size=143
name dviljk.powerpc-linux
category TLCore
-revision 30114
+revision 33889
shortdesc powerpc-linux files of dviljk
-binfiles arch=powerpc-linux size=123
+binfiles arch=powerpc-linux size=115
bin/powerpc-linux/dvihp
bin/powerpc-linux/dvilj
bin/powerpc-linux/dvilj2p
@@ -52864,7 +57529,7 @@ binfiles arch=powerpc-linux size=123
name dviljk.sparc-solaris
category TLCore
-revision 29877
+revision 33871
shortdesc sparc-solaris files of dviljk
binfiles arch=sparc-solaris size=123
bin/sparc-solaris/dvihp
@@ -52876,7 +57541,7 @@ binfiles arch=sparc-solaris size=123
name dviljk.universal-darwin
category TLCore
-revision 30764
+revision 34201
shortdesc universal-darwin files of dviljk
binfiles arch=universal-darwin size=239
bin/universal-darwin/dvihp
@@ -52888,9 +57553,9 @@ binfiles arch=universal-darwin size=239
name dviljk.win32
category TLCore
-revision 29816
+revision 33897
shortdesc win32 files of dviljk
-binfiles arch=win32 size=44
+binfiles arch=win32 size=54
bin/win32/dvihp.exe
bin/win32/dvilj.exe
bin/win32/dvilj2p.exe
@@ -52898,9 +57563,21 @@ binfiles arch=win32 size=44
bin/win32/dvilj4l.exe
bin/win32/dvilj6.exe
+name dviljk.x86_64-cygwin
+category TLCore
+revision 34161
+shortdesc x86_64-cygwin files of dviljk
+binfiles arch=x86_64-cygwin size=119
+ bin/x86_64-cygwin/dvihp
+ bin/x86_64-cygwin/dvilj.exe
+ bin/x86_64-cygwin/dvilj2p.exe
+ bin/x86_64-cygwin/dvilj4.exe
+ bin/x86_64-cygwin/dvilj4l.exe
+ bin/x86_64-cygwin/dvilj6
+
name dviljk.x86_64-darwin
category TLCore
-revision 29879
+revision 34201
shortdesc x86_64-darwin files of dviljk
binfiles arch=x86_64-darwin size=131
bin/x86_64-darwin/dvihp
@@ -52912,9 +57589,9 @@ binfiles arch=x86_64-darwin size=131
name dviljk.x86_64-linux
category TLCore
-revision 30204
+revision 33723
shortdesc x86_64-linux files of dviljk
-binfiles arch=x86_64-linux size=119
+binfiles arch=x86_64-linux size=121
bin/x86_64-linux/dvihp
bin/x86_64-linux/dvilj
bin/x86_64-linux/dvilj2p
@@ -52924,9 +57601,9 @@ binfiles arch=x86_64-linux size=119
name dviljk.x86_64-solaris
category TLCore
-revision 30112
+revision 34203
shortdesc x86_64-solaris files of dviljk
-binfiles arch=x86_64-solaris size=157
+binfiles arch=x86_64-solaris size=155
bin/x86_64-solaris/dvihp
bin/x86_64-solaris/dvilj
bin/x86_64-solaris/dvilj2p
@@ -52936,7 +57613,7 @@ binfiles arch=x86_64-solaris size=157
name dviout.win32
category TLCore
-revision 26374
+revision 31539
catalogue dviout
shortdesc TeX previewer and printer driver for MS-Windows.
longdesc The program supports a variety of printing mechanisms
@@ -52947,7 +57624,7 @@ longdesc understands a wide variety of \special commands.
postaction shortcut type=menu name="DVIOUT DVI viewer" cmd=TEXDIR/bin/win32/dviout.exe
postaction filetype name=TL.DVIOUT.view cmd='"TEXDIR/bin/win32/dviout.exe" "%1"'
postaction fileassoc extension=.dvi filetype=TL.DVIOUT.view
-binfiles arch=win32 size=1200
+binfiles arch=win32 size=1201
bin/win32/dviout.exe
tlpkg/dviout/00readme.txt
tlpkg/dviout/CFG/newcfg.txt
@@ -53076,6 +57753,7 @@ binfiles arch=win32 size=1200
tlpkg/dviout/files.txt
tlpkg/dviout/gen_pk
tlpkg/dviout/history.txt
+ tlpkg/dviout/install.par
tlpkg/dviout/install.txt
tlpkg/dviout/map/gtfonts.map
tlpkg/dviout/map/japanese.map
@@ -53149,7 +57827,7 @@ catalogue-version 3.18.4
name dvipdfmx
category TLCore
-revision 30386
+revision 33771
shortdesc An extended version of dvipdfm.
longdesc Dvipdfmx (formerly dvipdfm-cjk) is a development of dvipdfm
longdesc created to support multi-byte character encodings and large
@@ -53164,7 +57842,7 @@ depend glyphlist
depend dvipdfmx-def
depend dvipdfmx.ARCH
postaction script file=tlpkg/tlpostcode/dvipdfmx.pl
-docfiles size=135
+docfiles size=145
texmf-dist/doc/dvipdfm/Makefile
texmf-dist/doc/dvipdfm/dvipdfm.pdf
texmf-dist/doc/dvipdfm/dvipdfm.tex
@@ -53183,12 +57861,16 @@ docfiles size=135
texmf-dist/doc/dvipdfmx/dvipdfmx-special.tex
texmf-dist/doc/man/man1/dvipdfm.1
texmf-dist/doc/man/man1/dvipdfm.man1.pdf
+ texmf-dist/doc/man/man1/dvipdfmx.1
+ texmf-dist/doc/man/man1/dvipdfmx.man1.pdf
texmf-dist/doc/man/man1/dvipdft.1
texmf-dist/doc/man/man1/dvipdft.man1.pdf
texmf-dist/doc/man/man1/ebb.1
texmf-dist/doc/man/man1/ebb.man1.pdf
texmf-dist/doc/man/man1/extractbb.1
texmf-dist/doc/man/man1/extractbb.man1.pdf
+ texmf-dist/doc/man/man1/xdvipdfmx.1
+ texmf-dist/doc/man/man1/xdvipdfmx.man1.pdf
runfiles size=42
texmf-dist/dvipdfmx/dvipdfmx.cfg
texmf-dist/fonts/cmap/dvipdfmx/EUC-UCS2
@@ -53199,26 +57881,27 @@ runfiles size=42
texmf-dist/fonts/map/dvipdfmx/updmap/kanjix.map
tlpkg/tlpostcode/dvipdfmx.pl
catalogue-ctan /dviware/dvipdfmx/dvipdfmx.tar.gz
-catalogue-date 2012-04-21 10:57:19 +0200
+catalogue-date 2013-09-22 09:06:20 +0200
catalogue-license gpl
name dvipdfmx-def
category Package
-revision 30729
+revision 33800
shortdesc Configuration file for dvipdfmx graphics.
longdesc This is the graphics driver for use when output is to be
longdesc processed by dvipdfmx.
-runfiles size=2
+runfiles size=3
texmf-dist/tex/latex/dvipdfmx-def/dvipdfmx.def
catalogue-ctan /macros/latex/contrib/dvipdfmx-def/dvipdfmx.def
-catalogue-date 2013-05-29 00:58:50 +0200
+catalogue-date 2014-05-02 18:56:42 +0200
catalogue-license lppl
+catalogue-version 4.01
name dvipdfmx.alpha-linux
category TLCore
-revision 30403
+revision 34190
shortdesc alpha-linux files of dvipdfmx
-binfiles arch=alpha-linux size=285
+binfiles arch=alpha-linux size=294
bin/alpha-linux/dvipdfm
bin/alpha-linux/dvipdfmx
bin/alpha-linux/dvipdft
@@ -53227,9 +57910,9 @@ binfiles arch=alpha-linux size=285
name dvipdfmx.amd64-freebsd
category TLCore
-revision 30400
+revision 34195
shortdesc amd64-freebsd files of dvipdfmx
-binfiles arch=amd64-freebsd size=210
+binfiles arch=amd64-freebsd size=217
bin/amd64-freebsd/dvipdfm
bin/amd64-freebsd/dvipdfmx
bin/amd64-freebsd/dvipdft
@@ -53238,9 +57921,9 @@ binfiles arch=amd64-freebsd size=210
name dvipdfmx.amd64-kfreebsd
category TLCore
-revision 30655
+revision 34198
shortdesc amd64-kfreebsd files of dvipdfmx
-binfiles arch=amd64-kfreebsd size=219
+binfiles arch=amd64-kfreebsd size=226
bin/amd64-kfreebsd/dvipdfm
bin/amd64-kfreebsd/dvipdfmx
bin/amd64-kfreebsd/dvipdft
@@ -53249,9 +57932,9 @@ binfiles arch=amd64-kfreebsd size=219
name dvipdfmx.amd64-netbsd
category TLCore
-revision 30660
+revision 34234
shortdesc amd64-netbsd files of dvipdfmx
-binfiles arch=amd64-netbsd size=212
+binfiles arch=amd64-netbsd size=220
bin/amd64-netbsd/dvipdfm
bin/amd64-netbsd/dvipdfmx
bin/amd64-netbsd/dvipdft
@@ -53260,9 +57943,9 @@ binfiles arch=amd64-netbsd size=212
name dvipdfmx.armel-linux
category TLCore
-revision 30774
+revision 34189
shortdesc armel-linux files of dvipdfmx
-binfiles arch=armel-linux size=191
+binfiles arch=armel-linux size=198
bin/armel-linux/dvipdfm
bin/armel-linux/dvipdfmx
bin/armel-linux/dvipdft
@@ -53271,9 +57954,9 @@ binfiles arch=armel-linux size=191
name dvipdfmx.armhf-linux
category TLCore
-revision 30213
+revision 34202
shortdesc armhf-linux files of dvipdfmx
-binfiles arch=armhf-linux size=180
+binfiles arch=armhf-linux size=186
bin/armhf-linux/dvipdfm
bin/armhf-linux/dvipdfmx
bin/armhf-linux/dvipdft
@@ -53282,9 +57965,9 @@ binfiles arch=armhf-linux size=180
name dvipdfmx.i386-cygwin
category TLCore
-revision 30526
+revision 34225
shortdesc i386-cygwin files of dvipdfmx
-binfiles arch=i386-cygwin size=195
+binfiles arch=i386-cygwin size=224
bin/i386-cygwin/dvipdfm
bin/i386-cygwin/dvipdfmx.exe
bin/i386-cygwin/dvipdft
@@ -53293,9 +57976,9 @@ binfiles arch=i386-cygwin size=195
name dvipdfmx.i386-freebsd
category TLCore
-revision 30400
+revision 34195
shortdesc i386-freebsd files of dvipdfmx
-binfiles arch=i386-freebsd size=195
+binfiles arch=i386-freebsd size=201
bin/i386-freebsd/dvipdfm
bin/i386-freebsd/dvipdfmx
bin/i386-freebsd/dvipdft
@@ -53304,9 +57987,9 @@ binfiles arch=i386-freebsd size=195
name dvipdfmx.i386-kfreebsd
category TLCore
-revision 30440
+revision 34198
shortdesc i386-kfreebsd files of dvipdfmx
-binfiles arch=i386-kfreebsd size=218
+binfiles arch=i386-kfreebsd size=225
bin/i386-kfreebsd/dvipdfm
bin/i386-kfreebsd/dvipdfmx
bin/i386-kfreebsd/dvipdft
@@ -53315,9 +57998,9 @@ binfiles arch=i386-kfreebsd size=218
name dvipdfmx.i386-linux
category TLCore
-revision 30205
+revision 34199
shortdesc i386-linux files of dvipdfmx
-binfiles arch=i386-linux size=218
+binfiles arch=i386-linux size=239
bin/i386-linux/dvipdfm
bin/i386-linux/dvipdfmx
bin/i386-linux/dvipdft
@@ -53326,9 +58009,9 @@ binfiles arch=i386-linux size=218
name dvipdfmx.i386-netbsd
category TLCore
-revision 30405
+revision 34234
shortdesc i386-netbsd files of dvipdfmx
-binfiles arch=i386-netbsd size=186
+binfiles arch=i386-netbsd size=194
bin/i386-netbsd/dvipdfm
bin/i386-netbsd/dvipdfmx
bin/i386-netbsd/dvipdft
@@ -53337,31 +58020,20 @@ binfiles arch=i386-netbsd size=186
name dvipdfmx.i386-solaris
category TLCore
-revision 30439
+revision 34203
shortdesc i386-solaris files of dvipdfmx
-binfiles arch=i386-solaris size=247
+binfiles arch=i386-solaris size=252
bin/i386-solaris/dvipdfm
bin/i386-solaris/dvipdfmx
bin/i386-solaris/dvipdft
bin/i386-solaris/ebb
bin/i386-solaris/extractbb
-name dvipdfmx.mips-irix
-category TLCore
-revision 30176
-shortdesc mips-irix files of dvipdfmx
-binfiles arch=mips-irix size=360
- bin/mips-irix/dvipdfm
- bin/mips-irix/dvipdfmx
- bin/mips-irix/dvipdft
- bin/mips-irix/ebb
- bin/mips-irix/extractbb
-
name dvipdfmx.mipsel-linux
category TLCore
-revision 30435
+revision 34249
shortdesc mipsel-linux files of dvipdfmx
-binfiles arch=mipsel-linux size=274
+binfiles arch=mipsel-linux size=227
bin/mipsel-linux/dvipdfm
bin/mipsel-linux/dvipdfmx
bin/mipsel-linux/dvipdft
@@ -53370,9 +58042,9 @@ binfiles arch=mipsel-linux size=274
name dvipdfmx.powerpc-linux
category TLCore
-revision 30402
+revision 34233
shortdesc powerpc-linux files of dvipdfmx
-binfiles arch=powerpc-linux size=218
+binfiles arch=powerpc-linux size=213
bin/powerpc-linux/dvipdfm
bin/powerpc-linux/dvipdfmx
bin/powerpc-linux/dvipdft
@@ -53381,9 +58053,9 @@ binfiles arch=powerpc-linux size=218
name dvipdfmx.sparc-solaris
category TLCore
-revision 30384
+revision 34184
shortdesc sparc-solaris files of dvipdfmx
-binfiles arch=sparc-solaris size=217
+binfiles arch=sparc-solaris size=224
bin/sparc-solaris/dvipdfm
bin/sparc-solaris/dvipdfmx
bin/sparc-solaris/dvipdft
@@ -53392,9 +58064,9 @@ binfiles arch=sparc-solaris size=217
name dvipdfmx.universal-darwin
category TLCore
-revision 30764
+revision 34201
shortdesc universal-darwin files of dvipdfmx
-binfiles arch=universal-darwin size=418
+binfiles arch=universal-darwin size=433
bin/universal-darwin/dvipdfm
bin/universal-darwin/dvipdfmx
bin/universal-darwin/dvipdft
@@ -53403,20 +58075,31 @@ binfiles arch=universal-darwin size=418
name dvipdfmx.win32
category TLCore
-revision 30196
+revision 34191
shortdesc win32 files of dvipdfmx
-binfiles arch=win32 size=194
+binfiles arch=win32 size=204
bin/win32/dvipdfm.exe
bin/win32/dvipdfmx.dll
bin/win32/dvipdfmx.exe
bin/win32/ebb.exe
bin/win32/extractbb.exe
+name dvipdfmx.x86_64-cygwin
+category TLCore
+revision 34225
+shortdesc x86_64-cygwin files of dvipdfmx
+binfiles arch=x86_64-cygwin size=219
+ bin/x86_64-cygwin/dvipdfm
+ bin/x86_64-cygwin/dvipdfmx.exe
+ bin/x86_64-cygwin/dvipdft
+ bin/x86_64-cygwin/ebb
+ bin/x86_64-cygwin/extractbb
+
name dvipdfmx.x86_64-darwin
category TLCore
-revision 30401
+revision 34201
shortdesc x86_64-darwin files of dvipdfmx
-binfiles arch=x86_64-darwin size=233
+binfiles arch=x86_64-darwin size=241
bin/x86_64-darwin/dvipdfm
bin/x86_64-darwin/dvipdfmx
bin/x86_64-darwin/dvipdft
@@ -53425,9 +58108,9 @@ binfiles arch=x86_64-darwin size=233
name dvipdfmx.x86_64-linux
category TLCore
-revision 30197
+revision 34192
shortdesc x86_64-linux files of dvipdfmx
-binfiles arch=x86_64-linux size=220
+binfiles arch=x86_64-linux size=229
bin/x86_64-linux/dvipdfm
bin/x86_64-linux/dvipdfmx
bin/x86_64-linux/dvipdft
@@ -53436,9 +58119,9 @@ binfiles arch=x86_64-linux size=220
name dvipdfmx.x86_64-solaris
category TLCore
-revision 30439
+revision 34203
shortdesc x86_64-solaris files of dvipdfmx
-binfiles arch=x86_64-solaris size=305
+binfiles arch=x86_64-solaris size=314
bin/x86_64-solaris/dvipdfm
bin/x86_64-solaris/dvipdfmx
bin/x86_64-solaris/dvipdft
@@ -53447,24 +58130,24 @@ binfiles arch=x86_64-solaris size=305
name dvipng
category TLCore
-revision 29821
+revision 34145
shortdesc A fast DVI to PNG/GIF converter.
longdesc This program makes PNG and/or GIF graphics from DVI files as
-longdesc obtained from TeX and its relatives. Its benefits include: -
+longdesc obtained from TeX and its relatives. Its benefits include:
longdesc Speed. It offers very fast rendering of DVI as bitmap files,
longdesc which makes it suitable for generating large amounts of images
-longdesc on-the-fly, as needed in preview-latex, WeBWorK and others; -
-longdesc It does not read the postamble, so it can be started before TeX
+longdesc on-the-fly, as needed in preview-latex, WeBWorK and others; It
+longdesc does not read the postamble, so it can be started before TeX
longdesc finishes. There is a --follow switch that makes dvipng wait at
longdesc end-of-file for further output, unless it finds the POST marker
-longdesc that indicates the end of the DVI; - Interactive query of
+longdesc that indicates the end of the DVI; Interactive query of
longdesc options. dvipng can read options interactively through stdin,
longdesc and all options are usable. It is even possible to change the
-longdesc input file through this interface. - Support for PK, VF,
+longdesc input file through this interface. Support for PK, VF,
longdesc PostScript Type1, and TrueType fonts, colour specials, and
longdesc inclusion of PostScript, PNG, JPEG or GIF images.
depend dvipng.ARCH
-docfiles size=107
+docfiles size=112
texmf-dist/doc/dvipng/dvipng.html
texmf-dist/doc/dvipng/dvipng.pdf
texmf-dist/doc/info/dvipng.info
@@ -53473,181 +58156,181 @@ docfiles size=107
texmf-dist/doc/man/man1/dvipng.1
texmf-dist/doc/man/man1/dvipng.man1.pdf
catalogue-ctan /dviware/dvipng
-catalogue-date 2012-04-21 10:57:19 +0200
+catalogue-date 2013-12-16 20:22:01 +0100
catalogue-license lgpl
catalogue-version 1.14
name dvipng.alpha-linux
category TLCore
-revision 30799
+revision 33553
shortdesc alpha-linux files of dvipng
-binfiles arch=alpha-linux size=343
+binfiles arch=alpha-linux size=286
bin/alpha-linux/dvigif
bin/alpha-linux/dvipng
name dvipng.amd64-freebsd
category TLCore
-revision 29874
+revision 33488
shortdesc amd64-freebsd files of dvipng
-binfiles arch=amd64-freebsd size=270
+binfiles arch=amd64-freebsd size=228
bin/amd64-freebsd/dvigif
bin/amd64-freebsd/dvipng
name dvipng.amd64-kfreebsd
category TLCore
-revision 30655
+revision 33864
shortdesc amd64-kfreebsd files of dvipng
-binfiles arch=amd64-kfreebsd size=284
+binfiles arch=amd64-kfreebsd size=238
bin/amd64-kfreebsd/dvigif
bin/amd64-kfreebsd/dvipng
name dvipng.amd64-netbsd
category TLCore
-revision 30660
+revision 33726
shortdesc amd64-netbsd files of dvipng
-binfiles arch=amd64-netbsd size=274
+binfiles arch=amd64-netbsd size=231
bin/amd64-netbsd/dvigif
bin/amd64-netbsd/dvipng
name dvipng.armel-linux
category TLCore
-revision 29888
+revision 33916
shortdesc armel-linux files of dvipng
-binfiles arch=armel-linux size=247
+binfiles arch=armel-linux size=204
bin/armel-linux/dvigif
bin/armel-linux/dvipng
name dvipng.armhf-linux
category TLCore
-revision 30443
+revision 34125
shortdesc armhf-linux files of dvipng
-binfiles arch=armhf-linux size=234
+binfiles arch=armhf-linux size=198
bin/armhf-linux/dvigif
bin/armhf-linux/dvipng
name dvipng.i386-cygwin
category TLCore
-revision 30526
+revision 34161
shortdesc i386-cygwin files of dvipng
-binfiles arch=i386-cygwin size=247
+binfiles arch=i386-cygwin size=233
bin/i386-cygwin/dvigif
bin/i386-cygwin/dvipng.exe
name dvipng.i386-freebsd
category TLCore
-revision 29874
+revision 33488
shortdesc i386-freebsd files of dvipng
-binfiles arch=i386-freebsd size=249
+binfiles arch=i386-freebsd size=210
bin/i386-freebsd/dvigif
bin/i386-freebsd/dvipng
name dvipng.i386-kfreebsd
category TLCore
-revision 30440
+revision 33864
shortdesc i386-kfreebsd files of dvipng
-binfiles arch=i386-kfreebsd size=281
+binfiles arch=i386-kfreebsd size=236
bin/i386-kfreebsd/dvigif
bin/i386-kfreebsd/dvipng
name dvipng.i386-linux
category TLCore
-revision 30088
+revision 33479
shortdesc i386-linux files of dvipng
-binfiles arch=i386-linux size=281
+binfiles arch=i386-linux size=251
bin/i386-linux/dvigif
bin/i386-linux/dvipng
name dvipng.i386-netbsd
category TLCore
-revision 30191
+revision 33562
shortdesc i386-netbsd files of dvipng
-binfiles arch=i386-netbsd size=239
+binfiles arch=i386-netbsd size=202
bin/i386-netbsd/dvigif
bin/i386-netbsd/dvipng
name dvipng.i386-solaris
category TLCore
-revision 30112
+revision 34203
shortdesc i386-solaris files of dvipng
-binfiles arch=i386-solaris size=325
+binfiles arch=i386-solaris size=270
bin/i386-solaris/dvigif
bin/i386-solaris/dvipng
-name dvipng.mips-irix
-category TLCore
-revision 30131
-shortdesc mips-irix files of dvipng
-binfiles arch=mips-irix size=472
- bin/mips-irix/dvigif
- bin/mips-irix/dvipng
-
name dvipng.mipsel-linux
category TLCore
-revision 29995
+revision 33811
shortdesc mipsel-linux files of dvipng
-binfiles arch=mipsel-linux size=328
+binfiles arch=mipsel-linux size=238
bin/mipsel-linux/dvigif
bin/mipsel-linux/dvipng
name dvipng.powerpc-linux
category TLCore
-revision 30114
+revision 33889
shortdesc powerpc-linux files of dvipng
-binfiles arch=powerpc-linux size=283
+binfiles arch=powerpc-linux size=222
bin/powerpc-linux/dvigif
bin/powerpc-linux/dvipng
name dvipng.sparc-solaris
category TLCore
-revision 29877
+revision 33871
shortdesc sparc-solaris files of dvipng
-binfiles arch=sparc-solaris size=271
+binfiles arch=sparc-solaris size=225
bin/sparc-solaris/dvigif
bin/sparc-solaris/dvipng
name dvipng.universal-darwin
category TLCore
-revision 30764
+revision 34201
shortdesc universal-darwin files of dvipng
-binfiles arch=universal-darwin size=535
+binfiles arch=universal-darwin size=447
bin/universal-darwin/dvigif
bin/universal-darwin/dvipng
name dvipng.win32
category TLCore
-revision 29816
+revision 33897
shortdesc win32 files of dvipng
-binfiles arch=win32 size=191
+binfiles arch=win32 size=204
bin/win32/dvigif.exe
bin/win32/dvipng.exe
+name dvipng.x86_64-cygwin
+category TLCore
+revision 34161
+shortdesc x86_64-cygwin files of dvipng
+binfiles arch=x86_64-cygwin size=227
+ bin/x86_64-cygwin/dvigif
+ bin/x86_64-cygwin/dvipng.exe
+
name dvipng.x86_64-darwin
category TLCore
-revision 29879
+revision 34201
shortdesc x86_64-darwin files of dvipng
-binfiles arch=x86_64-darwin size=300
+binfiles arch=x86_64-darwin size=252
bin/x86_64-darwin/dvigif
bin/x86_64-darwin/dvipng
name dvipng.x86_64-linux
category TLCore
-revision 30204
+revision 33723
shortdesc x86_64-linux files of dvipng
-binfiles arch=x86_64-linux size=285
+binfiles arch=x86_64-linux size=239
bin/x86_64-linux/dvigif
bin/x86_64-linux/dvipng
name dvipng.x86_64-solaris
category TLCore
-revision 30112
+revision 34203
shortdesc x86_64-solaris files of dvipng
-binfiles arch=x86_64-solaris size=408
+binfiles arch=x86_64-solaris size=337
bin/x86_64-solaris/dvigif
bin/x86_64-solaris/dvipng
name dvipos
category TLCore
-revision 29764
+revision 33736
depend dvipos.ARCH
docfiles size=3
texmf-dist/doc/man/man1/dvipos.1
@@ -53655,161 +58338,161 @@ docfiles size=3
name dvipos.alpha-linux
category TLCore
-revision 29891
+revision 33553
shortdesc alpha-linux files of dvipos
binfiles arch=alpha-linux size=35
bin/alpha-linux/dvipos
name dvipos.amd64-freebsd
category TLCore
-revision 29874
+revision 33488
shortdesc amd64-freebsd files of dvipos
binfiles arch=amd64-freebsd size=27
bin/amd64-freebsd/dvipos
name dvipos.amd64-kfreebsd
category TLCore
-revision 30655
+revision 33864
shortdesc amd64-kfreebsd files of dvipos
binfiles arch=amd64-kfreebsd size=26
bin/amd64-kfreebsd/dvipos
name dvipos.amd64-netbsd
category TLCore
-revision 30660
+revision 33726
shortdesc amd64-netbsd files of dvipos
binfiles arch=amd64-netbsd size=27
bin/amd64-netbsd/dvipos
name dvipos.armel-linux
category TLCore
-revision 29888
+revision 33916
shortdesc armel-linux files of dvipos
-binfiles arch=armel-linux size=22
+binfiles arch=armel-linux size=23
bin/armel-linux/dvipos
name dvipos.armhf-linux
category TLCore
-revision 30443
+revision 34125
shortdesc armhf-linux files of dvipos
binfiles arch=armhf-linux size=22
bin/armhf-linux/dvipos
name dvipos.i386-cygwin
category TLCore
-revision 30526
+revision 34161
shortdesc i386-cygwin files of dvipos
-binfiles arch=i386-cygwin size=24
+binfiles arch=i386-cygwin size=28
bin/i386-cygwin/dvipos.exe
name dvipos.i386-freebsd
category TLCore
-revision 29874
+revision 33488
shortdesc i386-freebsd files of dvipos
binfiles arch=i386-freebsd size=25
bin/i386-freebsd/dvipos
name dvipos.i386-kfreebsd
category TLCore
-revision 30440
+revision 33864
shortdesc i386-kfreebsd files of dvipos
binfiles arch=i386-kfreebsd size=26
bin/i386-kfreebsd/dvipos
name dvipos.i386-linux
category TLCore
-revision 30088
+revision 33479
shortdesc i386-linux files of dvipos
-binfiles arch=i386-linux size=26
+binfiles arch=i386-linux size=28
bin/i386-linux/dvipos
name dvipos.i386-netbsd
category TLCore
-revision 30191
+revision 33562
shortdesc i386-netbsd files of dvipos
-binfiles arch=i386-netbsd size=23
+binfiles arch=i386-netbsd size=24
bin/i386-netbsd/dvipos
name dvipos.i386-solaris
category TLCore
-revision 30112
+revision 34203
shortdesc i386-solaris files of dvipos
binfiles arch=i386-solaris size=30
bin/i386-solaris/dvipos
-name dvipos.mips-irix
-category TLCore
-revision 30131
-shortdesc mips-irix files of dvipos
-binfiles arch=mips-irix size=52
- bin/mips-irix/dvipos
-
name dvipos.mipsel-linux
category TLCore
-revision 29995
+revision 33811
shortdesc mipsel-linux files of dvipos
-binfiles arch=mipsel-linux size=32
+binfiles arch=mipsel-linux size=26
bin/mipsel-linux/dvipos
name dvipos.powerpc-linux
category TLCore
-revision 30114
+revision 33889
shortdesc powerpc-linux files of dvipos
-binfiles arch=powerpc-linux size=26
+binfiles arch=powerpc-linux size=25
bin/powerpc-linux/dvipos
name dvipos.sparc-solaris
category TLCore
-revision 29877
+revision 33871
shortdesc sparc-solaris files of dvipos
binfiles arch=sparc-solaris size=27
bin/sparc-solaris/dvipos
name dvipos.universal-darwin
category TLCore
-revision 30764
+revision 34201
shortdesc universal-darwin files of dvipos
binfiles arch=universal-darwin size=55
bin/universal-darwin/dvipos
name dvipos.win32
category TLCore
-revision 29816
+revision 33897
shortdesc win32 files of dvipos
-binfiles arch=win32 size=8
+binfiles arch=win32 size=9
bin/win32/dvipos.exe
+name dvipos.x86_64-cygwin
+category TLCore
+revision 34161
+shortdesc x86_64-cygwin files of dvipos
+binfiles arch=x86_64-cygwin size=27
+ bin/x86_64-cygwin/dvipos.exe
+
name dvipos.x86_64-darwin
category TLCore
-revision 29879
+revision 34201
shortdesc x86_64-darwin files of dvipos
-binfiles arch=x86_64-darwin size=29
+binfiles arch=x86_64-darwin size=30
bin/x86_64-darwin/dvipos
name dvipos.x86_64-linux
category TLCore
-revision 30204
+revision 33723
shortdesc x86_64-linux files of dvipos
binfiles arch=x86_64-linux size=26
bin/x86_64-linux/dvipos
name dvipos.x86_64-solaris
category TLCore
-revision 30112
+revision 34203
shortdesc x86_64-solaris files of dvipos
binfiles arch=x86_64-solaris size=37
bin/x86_64-solaris/dvipos
name dvips
category Package
-revision 30753
+revision 34213
shortdesc A DVI to PostScript driver.
longdesc This package has been withdrawn from CTAN, and bundled into the
longdesc distributions' package sets. The current sources of dvips may
longdesc be found in the distribution of dvipsk which forms part of the
longdesc TeX-live sources.
depend dvips.ARCH
-docfiles size=262
+docfiles size=273
texmf-dist/doc/dvips/dvips.html
texmf-dist/doc/dvips/dvips.pdf
texmf-dist/doc/info/dvips.info
@@ -53817,7 +58500,7 @@ docfiles size=262
texmf-dist/doc/man/man1/afm2tfm.man1.pdf
texmf-dist/doc/man/man1/dvips.1
texmf-dist/doc/man/man1/dvips.man1.pdf
-runfiles size=1095
+runfiles size=1460
texmf-dist/dvips/base/color.pro
texmf-dist/dvips/base/crop.pro
texmf-dist/dvips/base/ehandler.ps
@@ -53906,7 +58589,7 @@ catalogue-license gpl
name dvips.alpha-linux
category Package
-revision 29891
+revision 33553
shortdesc alpha-linux files of dvips
binfiles arch=alpha-linux size=117
bin/alpha-linux/afm2tfm
@@ -53914,7 +58597,7 @@ binfiles arch=alpha-linux size=117
name dvips.amd64-freebsd
category Package
-revision 29874
+revision 33718
shortdesc amd64-freebsd files of dvips
binfiles arch=amd64-freebsd size=89
bin/amd64-freebsd/afm2tfm
@@ -53922,7 +58605,7 @@ binfiles arch=amd64-freebsd size=89
name dvips.amd64-kfreebsd
category Package
-revision 30655
+revision 33864
shortdesc amd64-kfreebsd files of dvips
binfiles arch=amd64-kfreebsd size=88
bin/amd64-kfreebsd/afm2tfm
@@ -53930,7 +58613,7 @@ binfiles arch=amd64-kfreebsd size=88
name dvips.amd64-netbsd
category Package
-revision 30660
+revision 33726
shortdesc amd64-netbsd files of dvips
binfiles arch=amd64-netbsd size=87
bin/amd64-netbsd/afm2tfm
@@ -53938,7 +58621,7 @@ binfiles arch=amd64-netbsd size=87
name dvips.armel-linux
category Package
-revision 29888
+revision 33916
shortdesc armel-linux files of dvips
binfiles arch=armel-linux size=82
bin/armel-linux/afm2tfm
@@ -53946,7 +58629,7 @@ binfiles arch=armel-linux size=82
name dvips.armhf-linux
category Package
-revision 30443
+revision 34125
shortdesc armhf-linux files of dvips
binfiles arch=armhf-linux size=77
bin/armhf-linux/afm2tfm
@@ -53954,15 +58637,15 @@ binfiles arch=armhf-linux size=77
name dvips.i386-cygwin
category Package
-revision 30526
+revision 34161
shortdesc i386-cygwin files of dvips
-binfiles arch=i386-cygwin size=79
+binfiles arch=i386-cygwin size=88
bin/i386-cygwin/afm2tfm.exe
bin/i386-cygwin/dvips.exe
name dvips.i386-freebsd
category Package
-revision 29874
+revision 33718
shortdesc i386-freebsd files of dvips
binfiles arch=i386-freebsd size=82
bin/i386-freebsd/afm2tfm
@@ -53970,7 +58653,7 @@ binfiles arch=i386-freebsd size=82
name dvips.i386-kfreebsd
category Package
-revision 30440
+revision 33864
shortdesc i386-kfreebsd files of dvips
binfiles arch=i386-kfreebsd size=85
bin/i386-kfreebsd/afm2tfm
@@ -53978,15 +58661,15 @@ binfiles arch=i386-kfreebsd size=85
name dvips.i386-linux
category Package
-revision 30088
+revision 33655
shortdesc i386-linux files of dvips
-binfiles arch=i386-linux size=87
+binfiles arch=i386-linux size=91
bin/i386-linux/afm2tfm
bin/i386-linux/dvips
name dvips.i386-netbsd
category Package
-revision 30191
+revision 33562
shortdesc i386-netbsd files of dvips
binfiles arch=i386-netbsd size=77
bin/i386-netbsd/afm2tfm
@@ -53994,39 +58677,31 @@ binfiles arch=i386-netbsd size=77
name dvips.i386-solaris
category Package
-revision 30112
+revision 34203
shortdesc i386-solaris files of dvips
-binfiles arch=i386-solaris size=96
+binfiles arch=i386-solaris size=94
bin/i386-solaris/afm2tfm
bin/i386-solaris/dvips
-name dvips.mips-irix
-category Package
-revision 30131
-shortdesc mips-irix files of dvips
-binfiles arch=mips-irix size=196
- bin/mips-irix/afm2tfm
- bin/mips-irix/dvips
-
name dvips.mipsel-linux
category Package
-revision 29995
+revision 33811
shortdesc mipsel-linux files of dvips
-binfiles arch=mipsel-linux size=114
+binfiles arch=mipsel-linux size=91
bin/mipsel-linux/afm2tfm
bin/mipsel-linux/dvips
name dvips.powerpc-linux
category Package
-revision 30114
+revision 33889
shortdesc powerpc-linux files of dvips
-binfiles arch=powerpc-linux size=93
+binfiles arch=powerpc-linux size=89
bin/powerpc-linux/afm2tfm
bin/powerpc-linux/dvips
name dvips.sparc-solaris
category Package
-revision 29877
+revision 33871
shortdesc sparc-solaris files of dvips
binfiles arch=sparc-solaris size=94
bin/sparc-solaris/afm2tfm
@@ -54034,7 +58709,7 @@ binfiles arch=sparc-solaris size=94
name dvips.universal-darwin
category Package
-revision 30764
+revision 34201
shortdesc universal-darwin files of dvips
binfiles arch=universal-darwin size=179
bin/universal-darwin/afm2tfm
@@ -54042,15 +58717,23 @@ binfiles arch=universal-darwin size=179
name dvips.win32
category Package
-revision 29816
+revision 33897
shortdesc win32 files of dvips
-binfiles arch=win32 size=41
+binfiles arch=win32 size=51
bin/win32/afm2tfm.exe
bin/win32/dvips.exe
+name dvips.x86_64-cygwin
+category Package
+revision 34161
+shortdesc x86_64-cygwin files of dvips
+binfiles arch=x86_64-cygwin size=87
+ bin/x86_64-cygwin/afm2tfm.exe
+ bin/x86_64-cygwin/dvips.exe
+
name dvips.x86_64-darwin
category Package
-revision 29879
+revision 34201
shortdesc x86_64-darwin files of dvips
binfiles arch=x86_64-darwin size=96
bin/x86_64-darwin/afm2tfm
@@ -54058,7 +58741,7 @@ binfiles arch=x86_64-darwin size=96
name dvips.x86_64-linux
category Package
-revision 30204
+revision 33723
shortdesc x86_64-linux files of dvips
binfiles arch=x86_64-linux size=88
bin/x86_64-linux/afm2tfm
@@ -54066,9 +58749,9 @@ binfiles arch=x86_64-linux size=88
name dvips.x86_64-solaris
category Package
-revision 30112
+revision 34203
shortdesc x86_64-solaris files of dvips
-binfiles arch=x86_64-solaris size=114
+binfiles arch=x86_64-solaris size=113
bin/x86_64-solaris/afm2tfm
bin/x86_64-solaris/dvips
@@ -54125,174 +58808,174 @@ catalogue-version 1.6
name dvisvgm
category TLCore
-revision 29764
+revision 33825
shortdesc Convert DVI files to Scalable Vector Graphics format (SVG).
longdesc Dvisvgm is a command line utility that converts TeX DVI files
longdesc to the XML-based Scalable Vector Graphics (SVG) format. It
-longdesc provides full full font support including virtual fonts, font
-longdesc maps, and sub-fonts. If necessary, dvisvgm vectorizes
-longdesc Metafont's bitmap output in order to always create lossless
-longdesc scalable output. The embedded SVG fonts can optionally be
-longdesc replaced with graphics paths so that applications that don't
-longdesc support SVG fonts are enabled to render the graphics properly.
-longdesc Besides many other features, dvisvgm also supports color,
-longdesc emTeX, tpic, PDF mapfile and PostScript specials. Users will
-longdesc need a working TeX installation including the kpathsea library.
-longdesc For more detailed information, see the project page.
+longdesc provides full font support including virtual fonts, font maps,
+longdesc and sub-fonts. If necessary, dvisvgm vectorizes Metafont's
+longdesc bitmap output in order to always create lossless scalable
+longdesc output. The embedded SVG fonts can optionally be replaced with
+longdesc graphics paths so that applications that don't support SVG
+longdesc fonts are enabled to render the graphics properly. Besides many
+longdesc other features, dvisvgm also supports color, emTeX, tpic, PDF
+longdesc mapfile and PostScript specials. Users will need a working TeX
+longdesc installation including the kpathsea library. For more detailed
+longdesc information, see the project page.
depend dvisvgm.ARCH
-docfiles size=18
+docfiles size=21
texmf-dist/doc/man/man1/dvisvgm.1
texmf-dist/doc/man/man1/dvisvgm.man1.pdf
catalogue-ctan /dviware/dvisvgm
-catalogue-date 2013-04-28 16:57:58 +0200
+catalogue-date 2014-04-27 12:29:14 +0200
catalogue-license gpl
-catalogue-version 1.2.2
+catalogue-version 1.6
name dvisvgm.alpha-linux
category TLCore
-revision 30799
+revision 33765
shortdesc alpha-linux files of dvisvgm
-binfiles arch=alpha-linux size=574
+binfiles arch=alpha-linux size=622
bin/alpha-linux/dvisvgm
name dvisvgm.amd64-freebsd
category TLCore
-revision 30620
+revision 33837
shortdesc amd64-freebsd files of dvisvgm
-binfiles arch=amd64-freebsd size=471
+binfiles arch=amd64-freebsd size=508
bin/amd64-freebsd/dvisvgm
name dvisvgm.amd64-kfreebsd
category TLCore
-revision 30655
+revision 33864
shortdesc amd64-kfreebsd files of dvisvgm
-binfiles arch=amd64-kfreebsd size=434
+binfiles arch=amd64-kfreebsd size=463
bin/amd64-kfreebsd/dvisvgm
name dvisvgm.amd64-netbsd
category TLCore
-revision 30660
+revision 34102
shortdesc amd64-netbsd files of dvisvgm
-binfiles arch=amd64-netbsd size=422
+binfiles arch=amd64-netbsd size=453
bin/amd64-netbsd/dvisvgm
name dvisvgm.armel-linux
category TLCore
-revision 30774
+revision 33916
shortdesc armel-linux files of dvisvgm
-binfiles arch=armel-linux size=373
+binfiles arch=armel-linux size=400
bin/armel-linux/dvisvgm
name dvisvgm.armhf-linux
category TLCore
-revision 30657
+revision 34125
shortdesc armhf-linux files of dvisvgm
-binfiles arch=armhf-linux size=346
+binfiles arch=armhf-linux size=370
bin/armhf-linux/dvisvgm
name dvisvgm.i386-cygwin
category TLCore
-revision 30730
+revision 34161
shortdesc i386-cygwin files of dvisvgm
-binfiles arch=i386-cygwin size=390
+binfiles arch=i386-cygwin size=456
bin/i386-cygwin/dvisvgm.exe
name dvisvgm.i386-freebsd
category TLCore
-revision 30620
+revision 33837
shortdesc i386-freebsd files of dvisvgm
-binfiles arch=i386-freebsd size=451
+binfiles arch=i386-freebsd size=486
bin/i386-freebsd/dvisvgm
name dvisvgm.i386-kfreebsd
category TLCore
-revision 30655
+revision 34100
shortdesc i386-kfreebsd files of dvisvgm
-binfiles arch=i386-kfreebsd size=436
+binfiles arch=i386-kfreebsd size=464
bin/i386-kfreebsd/dvisvgm
name dvisvgm.i386-linux
category TLCore
-revision 30613
+revision 33784
shortdesc i386-linux files of dvisvgm
-binfiles arch=i386-linux size=438
+binfiles arch=i386-linux size=457
bin/i386-linux/dvisvgm
name dvisvgm.i386-netbsd
category TLCore
-revision 30660
+revision 33797
shortdesc i386-netbsd files of dvisvgm
-binfiles arch=i386-netbsd size=396
+binfiles arch=i386-netbsd size=427
bin/i386-netbsd/dvisvgm
name dvisvgm.i386-solaris
category TLCore
-revision 30771
+revision 34203
shortdesc i386-solaris files of dvisvgm
-binfiles arch=i386-solaris size=929
+binfiles arch=i386-solaris size=1044
bin/i386-solaris/dvisvgm
-name dvisvgm.mips-irix
-category TLCore
-revision 30131
-shortdesc mips-irix files of dvisvgm
-binfiles arch=mips-irix size=1418
- bin/mips-irix/dvisvgm
-
name dvisvgm.mipsel-linux
category TLCore
-revision 30628
+revision 33811
shortdesc mipsel-linux files of dvisvgm
-binfiles arch=mipsel-linux size=592
+binfiles arch=mipsel-linux size=527
bin/mipsel-linux/dvisvgm
name dvisvgm.powerpc-linux
category TLCore
-revision 30656
+revision 33889
shortdesc powerpc-linux files of dvisvgm
-binfiles arch=powerpc-linux size=479
+binfiles arch=powerpc-linux size=477
bin/powerpc-linux/dvisvgm
name dvisvgm.sparc-solaris
category TLCore
-revision 30621
+revision 33871
shortdesc sparc-solaris files of dvisvgm
-binfiles arch=sparc-solaris size=661
+binfiles arch=sparc-solaris size=626
bin/sparc-solaris/dvisvgm
name dvisvgm.universal-darwin
category TLCore
-revision 30764
+revision 34201
shortdesc universal-darwin files of dvisvgm
-binfiles arch=universal-darwin size=665
+binfiles arch=universal-darwin size=748
bin/universal-darwin/dvisvgm
name dvisvgm.win32
category TLCore
-revision 30611
+revision 33897
shortdesc win32 files of dvisvgm
-binfiles arch=win32 size=287
+binfiles arch=win32 size=308
bin/win32/dvisvgm.exe
+name dvisvgm.x86_64-cygwin
+category TLCore
+revision 34161
+shortdesc x86_64-cygwin files of dvisvgm
+binfiles arch=x86_64-cygwin size=447
+ bin/x86_64-cygwin/dvisvgm.exe
+
name dvisvgm.x86_64-darwin
category TLCore
-revision 30654
+revision 34201
shortdesc x86_64-darwin files of dvisvgm
-binfiles arch=x86_64-darwin size=384
+binfiles arch=x86_64-darwin size=433
bin/x86_64-darwin/dvisvgm
name dvisvgm.x86_64-linux
category TLCore
-revision 30608
+revision 33745
shortdesc x86_64-linux files of dvisvgm
-binfiles arch=x86_64-linux size=432
+binfiles arch=x86_64-linux size=473
bin/x86_64-linux/dvisvgm
name dvisvgm.x86_64-solaris
category TLCore
-revision 30771
+revision 34203
shortdesc x86_64-solaris files of dvisvgm
-binfiles arch=x86_64-solaris size=1100
+binfiles arch=x86_64-solaris size=1232
bin/x86_64-solaris/dvisvgm
name dynblocks
@@ -54385,19 +59068,18 @@ docfiles size=87
runfiles size=1
texmf-dist/tex/latex/ean13isbn/ean13isbn.sty
catalogue-ctan /macros/latex/contrib/ean13isbn
-catalogue-date 2012-04-03 18:17:17 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
name easy
category Package
revision 19440
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 equations;
-longdesc - easymat, support for composing matrices; - easytable, support
-longdesc for writing tables; - easyvector, a C-like syntax for writing
-longdesc vectors.
+longdesc The collection comprises: easybib, support for customising
+longdesc bibliographies; easybmat, support for composing block matrices;
+longdesc easyeqn, support for various aspects of equations; easymat,
+longdesc support for composing matrices; easytable, support for writing
+longdesc tables; easyvector, a C-like syntax for writing vectors.
docfiles size=11
texmf-dist/doc/latex/easy/README details="Readme"
texmf-dist/doc/latex/easy/README.TEXLIVE
@@ -54417,17 +59099,17 @@ runfiles size=20
texmf-dist/tex/latex/easy/easytable.sty
texmf-dist/tex/latex/easy/easyvector.sty
catalogue-ctan /macros/latex/contrib/easy
-catalogue-date 2012-05-07 22:43:29 +0200
+catalogue-date 2013-12-17 17:06:14 +0100
catalogue-license lppl
catalogue-version 0.99
name easy-todo
category Package
-revision 21157
+revision 32677
shortdesc To-do notes in a document.
longdesc The package provides to-do notes throughout a document, and
longdesc will provide an index of things to do.
-docfiles size=17
+docfiles size=38
texmf-dist/doc/latex/easy-todo/LICENSE
texmf-dist/doc/latex/easy-todo/README details="Readme"
texmf-dist/doc/latex/easy-todo/easy-todo.pdf details="Package documentation"
@@ -54435,9 +59117,8 @@ docfiles size=17
runfiles size=1
texmf-dist/tex/latex/easy-todo/easy-todo.sty
catalogue-ctan /macros/latex/contrib/easy-todo
-catalogue-date 2012-06-15 14:27:55 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license apache2
-catalogue-version 1.0
name easyfig
category Package
@@ -54461,27 +59142,27 @@ srcfiles size=5
runfiles size=2
texmf-dist/tex/latex/easyfig/easyfig.sty
catalogue-ctan /macros/latex/contrib/easyfig
-catalogue-date 2012-05-15 13:39:37 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.2
name easylist
category Package
-revision 22362
+revision 32661
shortdesc Lists using a single active character.
longdesc This package allows you to create lists of numbered items (as
longdesc in Wittgenstein's 'Tractatus') with a single active character
longdesc as the only command. A variety of parameters are available to
longdesc configure the appearance of the list; lists may be nested
longdesc (effectively to unlimited depth).
-docfiles size=105
+docfiles size=163
texmf-dist/doc/latex/easylist/README details="Bundle readme"
texmf-dist/doc/latex/easylist/easylist-doc.pdf details="Package documentation"
texmf-dist/doc/latex/easylist/easylist-doc.tex
-runfiles size=7
+runfiles size=8
texmf-dist/tex/latex/easylist/easylist.sty
catalogue-ctan /macros/latex/contrib/easylist
-catalogue-date 2012-04-14 11:10:53 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.3
@@ -54824,7 +59505,7 @@ runfiles size=1105
texmf-dist/tex/latex/ebgaramond/ebgaramond.sty
texmf-dist/tex/latex/ebgaramond/mt-EBGaramond.cfg
catalogue-ctan /fonts/ebgaramond
-catalogue-date 2013-05-22 20:40:58 +0200
+catalogue-date 2014-04-25 21:03:35 +0200
catalogue-license ofl
catalogue-version 0.15 (2013-05-22)
@@ -54933,13 +59614,6 @@ shortdesc i386-solaris files of ebong
binfiles arch=i386-solaris size=1
bin/i386-solaris/ebong
-name ebong.mips-irix
-category Package
-revision 29949
-shortdesc mips-irix files of ebong
-binfiles arch=mips-irix size=1
- bin/mips-irix/ebong
-
name ebong.mipsel-linux
category Package
revision 29946
@@ -54975,6 +59649,13 @@ shortdesc win32 files of ebong
binfiles arch=win32 size=1
bin/win32/ebong.exe
+name ebong.x86_64-cygwin
+category Package
+revision 33557
+shortdesc x86_64-cygwin files of ebong
+binfiles arch=x86_64-cygwin size=1
+ bin/x86_64-cygwin/ebong
+
name ebong.x86_64-darwin
category Package
revision 21000
@@ -55009,7 +59690,7 @@ docfiles size=1
runfiles size=1
texmf-dist/tex/latex/ebook/ebook.sty
catalogue-ctan /macros/latex/contrib/ebook
-catalogue-date 2013-03-23 12:52:27 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license pd
name ebsthesis
@@ -56297,7 +60978,7 @@ runfiles size=1445
texmf-dist/fonts/tfm/jknappen/ec/tcvt2986.tfm
texmf-dist/fonts/tfm/jknappen/ec/tcvt3583.tfm
catalogue-ctan /fonts/ec
-catalogue-date 2012-07-10 21:25:56 +0200
+catalogue-date 2014-04-26 19:51:19 +0200
catalogue-license other-free
catalogue-version 1.0
@@ -56379,7 +61060,7 @@ runfiles size=71
texmf-dist/fonts/tfm/public/ecc/tosl9.tfm
texmf-dist/fonts/tfm/public/ecc/toti10.tfm
catalogue-ctan /fonts/ecc
-catalogue-date 2012-05-07 23:49:19 +0200
+catalogue-date 2014-04-25 21:09:06 +0200
catalogue-license lppl
name ecclesiastic
@@ -56401,7 +61082,7 @@ srcfiles size=6
runfiles size=2
texmf-dist/tex/latex/ecclesiastic/ecclesiastic.sty
catalogue-ctan /macros/latex/contrib/ecclesiastic
-catalogue-date 2012-07-30 11:22:32 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 0.2
@@ -56949,10 +61630,90 @@ runfiles size=916
texmf-dist/tex/latex/eco/T1cmovt.fd
texmf-dist/tex/latex/eco/eco.sty
catalogue-ctan /fonts/eco
-catalogue-date 2012-07-10 21:25:56 +0200
+catalogue-date 2014-04-25 21:16:06 +0200
catalogue-license gpl
catalogue-version 1.3
+name economic
+category Package
+revision 32639
+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=268
+ texmf-dist/doc/bibtex/economic/CHANGELOG
+ texmf-dist/doc/bibtex/economic/NEWS
+ texmf-dist/doc/bibtex/economic/README details="Readme"
+ texmf-dist/doc/bibtex/economic/aer-cje-ex.bib
+ texmf-dist/doc/bibtex/economic/aer-cje-ex.tex
+ texmf-dist/doc/bibtex/economic/aer-natbib-ex.tex
+ texmf-dist/doc/bibtex/economic/ajae-ex.bib
+ texmf-dist/doc/bibtex/economic/ajae-ex.pdf
+ texmf-dist/doc/bibtex/economic/ajae-ex.tex
+ texmf-dist/doc/bibtex/economic/apecon-ex.bib
+ texmf-dist/doc/bibtex/economic/apecon-ex.pdf
+ texmf-dist/doc/bibtex/economic/apecon-ex.tex
+ texmf-dist/doc/bibtex/economic/ecca-ex.bib
+ texmf-dist/doc/bibtex/economic/ecca-ex.pdf
+ texmf-dist/doc/bibtex/economic/ecca-ex.tex
+ texmf-dist/doc/bibtex/economic/erae-ex.bib
+ texmf-dist/doc/bibtex/economic/erae-ex.pdf
+ texmf-dist/doc/bibtex/economic/erae-ex.tex
+ texmf-dist/doc/bibtex/economic/ier-bib-test.pdf
+ texmf-dist/doc/bibtex/economic/ier-bib-test.tex
+ texmf-dist/doc/bibtex/economic/ier-ex.bib
+ texmf-dist/doc/bibtex/economic/itaxpf-ex-title.pdf
+ texmf-dist/doc/bibtex/economic/itaxpf-ex-title.tex
+ texmf-dist/doc/bibtex/economic/itaxpf-ex.bib
+ texmf-dist/doc/bibtex/economic/itaxpf-ex.pdf
+ texmf-dist/doc/bibtex/economic/itaxpf-ex.tex
+ texmf-dist/doc/bibtex/economic/oegatb-ex.bib
+ texmf-dist/doc/bibtex/economic/oegatb-ex.pdf
+ texmf-dist/doc/bibtex/economic/oegatb-ex.png
+ texmf-dist/doc/bibtex/economic/oegatb-ex.tex
+runfiles size=171
+ texmf-dist/bibtex/bst/economic/aer.bst
+ texmf-dist/bibtex/bst/economic/aertt.bst
+ texmf-dist/bibtex/bst/economic/agecon.bst
+ texmf-dist/bibtex/bst/economic/ajae.bst
+ texmf-dist/bibtex/bst/economic/apecon.bst
+ texmf-dist/bibtex/bst/economic/cje.bst
+ texmf-dist/bibtex/bst/economic/ecca.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/bibtex/bst/economic/jae.bst
+ texmf-dist/bibtex/bst/economic/jpe.bst
+ texmf-dist/bibtex/bst/economic/jss2.bst
+ texmf-dist/bibtex/bst/economic/oega.bst
+ texmf-dist/bibtex/bst/economic/regstud.bst
+ texmf-dist/bibtex/bst/economic/tandfx.bst
+ texmf-dist/bibtex/bst/economic/worlddev.bst
+ texmf-dist/tex/latex/economic/aer.sty
+ texmf-dist/tex/latex/economic/aertt.sty
+ texmf-dist/tex/latex/economic/agecon.cls
+ texmf-dist/tex/latex/economic/ajae.cls
+ texmf-dist/tex/latex/economic/apecon.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
+ texmf-dist/tex/latex/economic/jrurstud.cls
+ texmf-dist/tex/latex/economic/njf.cls
+ texmf-dist/tex/latex/economic/oegatb.cls
+ texmf-dist/tex/latex/economic/pocoec.cls
+ texmf-dist/tex/latex/economic/regstud.cls
+ texmf-dist/tex/latex/economic/worlddev.cls
+catalogue-ctan /biblio/bibtex/contrib/economic
+catalogue-date 2014-01-13 11:14:58 +0100
+catalogue-license lppl
+
name ecv
category Package
revision 24928
@@ -56981,7 +61742,7 @@ runfiles size=6
texmf-dist/tex/latex/ecv/ecvGerman.ldf
texmf-dist/tex/latex/ecv/ecvNLS.sty
catalogue-ctan /macros/latex/contrib/ecv
-catalogue-date 2011-12-23 14:02:37 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license other-free
catalogue-version 0.3
@@ -57030,7 +61791,7 @@ srcfiles size=4
runfiles size=11
texmf-dist/tex/latex/edfnotes/edfnotes.sty
catalogue-ctan /macros/latex/contrib/edfnotes
-catalogue-date 2012-05-25 14:20:18 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 0.6b
@@ -57084,7 +61845,7 @@ srcfiles size=16
runfiles size=6
texmf-dist/tex/latex/edmargin/edmargin.sty
catalogue-ctan /macros/latex/contrib/edmargin
-catalogue-date 2012-09-05 10:09:42 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.2
@@ -57179,6 +61940,27 @@ catalogue-date 2012-05-25 14:20:18 +0200
catalogue-license pd
catalogue-version 1.1e
+name efbox
+category Package
+revision 33236
+shortdesc Extension of \fbox, with controllable frames and colours.
+longdesc The package defines the \efbox command, which creates a box
+longdesc just wide enough to hold the text created by its argument. The
+longdesc command optionally puts a (possibly partial) frame around the
+longdesc box, and allows setting the box background colour.
+docfiles size=37
+ texmf-dist/doc/latex/efbox/README details="Readme"
+ texmf-dist/doc/latex/efbox/efbox.pdf details="Package documentation"
+srcfiles size=4
+ texmf-dist/source/latex/efbox/efbox.dtx
+ texmf-dist/source/latex/efbox/efbox.ins
+runfiles size=2
+ texmf-dist/tex/latex/efbox/efbox.sty
+catalogue-ctan /macros/latex/contrib/efbox
+catalogue-date 2014-03-28 17:26:17 +0100
+catalogue-license lppl1.3
+catalogue-version 1.0
+
name egameps
category Package
revision 15878
@@ -57344,16 +62126,16 @@ name eijkhout
category Package
revision 15878
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 a
-longdesc CD label; and - repeat, a nestable, generic loop macro.
+longdesc Three unrelated packages: DB_process, to parse and process
+longdesc database output; CD_labeler, to typeset user text to fit on a
+longdesc CD label; and repeat, a nestable, generic loop macro.
runfiles size=9
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-ctan /macros/generic/eijkhout
-catalogue-date 2012-05-25 22:24:18 +0200
+catalogue-date 2013-12-17 17:06:14 +0100
catalogue-license collection
name einfuehrung
@@ -58488,7 +63270,7 @@ docfiles size=1167
texmf-dist/doc/latex/einfuehrung/tabelle1.tex
texmf-dist/doc/latex/einfuehrung/textdemo.sty
catalogue-ctan /info/examples/Einfuehrung
-catalogue-date 2012-04-08 22:46:50 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
name ejpecp
@@ -58511,7 +63293,7 @@ srcfiles size=6
runfiles size=4
texmf-dist/tex/latex/ejpecp/ejpecp.cls
catalogue-ctan /macros/latex/contrib/ejpecp
-catalogue-date 2012-12-17 19:07:20 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.2
catalogue-version 1.0
@@ -58535,7 +63317,7 @@ srcfiles size=5
runfiles size=2
texmf-dist/tex/latex/elbioimp/elbioimp.cls
catalogue-ctan /macros/latex/contrib/elbioimp
-catalogue-date 2012-05-25 14:41:32 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.2
@@ -58861,7 +63643,7 @@ runfiles size=846
texmf-dist/tex/latex/electrum/ts1yesjw.fd
texmf-dist/tex/latex/electrum/ts1yesw.fd
catalogue-ctan /fonts/electrumadf
-catalogue-date 2012-05-25 14:41:32 +0200
+catalogue-date 2014-04-26 19:51:19 +0200
catalogue-license other-free
catalogue-version 1.005-b
@@ -58884,13 +63666,13 @@ srcfiles size=4
runfiles size=1
texmf-dist/tex/latex/eledform/eledform.sty
catalogue-ctan /macros/latex/contrib/eledform
-catalogue-date 2012-10-10 08:22:21 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.0
name eledmac
category Package
-revision 29956
+revision 33944
shortdesc Typeset scholarly editions.
longdesc A package for typesetting scholarly critical editions,
longdesc replacing the established ledmac package. Ledmac itself was a
@@ -58898,23 +63680,23 @@ longdesc LaTeX port of the plain TeX EDMAC macros. The package supports
longdesc indexing by page and by line numbers, and simple tabular- and
longdesc array-style environments. The package is distributed with the
longdesc related eledpar package.
-docfiles size=327
+docfiles size=344
texmf-dist/doc/latex/eledmac/Makefile
texmf-dist/doc/latex/eledmac/README details="Readme"
texmf-dist/doc/latex/eledmac/eledmac.pdf details="Package documentation"
texmf-dist/doc/latex/eledmac/eledpar.pdf
-srcfiles size=149
+srcfiles size=163
texmf-dist/source/latex/eledmac/eledmac.dtx
texmf-dist/source/latex/eledmac/eledmac.ins
texmf-dist/source/latex/eledmac/eledpar.dtx
texmf-dist/source/latex/eledmac/eledpar.ins
-runfiles size=42
+runfiles size=48
texmf-dist/tex/latex/eledmac/eledmac.sty
texmf-dist/tex/latex/eledmac/eledpar.sty
catalogue-ctan /macros/latex/contrib/eledmac
-catalogue-date 2013-04-15 19:11:07 +0200
+catalogue-date 2014-05-14 16:12:10 +0200
catalogue-license lppl
-catalogue-version 1.4.6
+catalogue-version 1.11.0
name ellipsis
category Package
@@ -59007,7 +63789,7 @@ runfiles size=29
texmf-dist/bibtex/bst/elsarticle/elsarticle-num.bst
texmf-dist/tex/latex/elsarticle/elsarticle.cls
catalogue-ctan /macros/latex/contrib/elsarticle
-catalogue-date 2012-05-25 14:41:32 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.2
catalogue-version 1.20
@@ -59030,7 +63812,7 @@ srcfiles size=6
runfiles size=1
texmf-dist/tex/latex/elteikthesis/elteikthesis.cls
catalogue-ctan /macros/latex/contrib/elteikthesis
-catalogue-date 2012-02-09 20:33:55 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.2
catalogue-version 1.2
@@ -59058,7 +63840,7 @@ runfiles size=26
texmf-dist/tex/latex/eltex/eltex6.tex
texmf-dist/tex/latex/eltex/eltex7.tex
catalogue-ctan /macros/latex/contrib/eltex
-catalogue-date 2012-06-14 16:38:55 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 2.0
@@ -59083,7 +63865,7 @@ runfiles size=22
texmf-dist/fonts/tfm/public/elvish/cirth.tfm
texmf-dist/fonts/tfm/public/elvish/teng10.tfm
catalogue-ctan /fonts/elvish
-catalogue-date 2012-05-25 14:41:32 +0200
+catalogue-date 2014-04-26 19:51:19 +0200
catalogue-license other-free
name emarks
@@ -59113,20 +63895,41 @@ srcfiles size=9
runfiles size=1
texmf-dist/tex/latex/emarks/emarks.sty
catalogue-ctan /macros/latex/contrib/emarks
-catalogue-date 2011-11-05 09:45:55 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.0
+name embedall
+category Package
+revision 31903
+shortdesc Embed source files into the generated PDF.
+longdesc The package provides a means of storing a project, without
+longdesc losing anything. It uses the embedfile package to attach to the
+longdesc generated PDF all files used in creating your project. In
+longdesc particular, it can embed images, external TeX files, external
+longdesc codes and
+docfiles size=38
+ texmf-dist/doc/latex/embedall/embedall.pdf details="Package documentation"
+srcfiles size=3
+ texmf-dist/source/latex/embedall/embedall.dtx
+ texmf-dist/source/latex/embedall/embedall.ins
+runfiles size=1
+ texmf-dist/tex/latex/embedall/embedall.sty
+catalogue-ctan /macros/latex/contrib/embedall
+catalogue-date 2014-02-26 23:03:13 +0100
+catalogue-license lppl1.2
+catalogue-version 1.0
+
name embrac
category Package
-revision 30450
+revision 33920
shortdesc Upright brackets in emphasised text.
longdesc The package redefines the commands \emph and \textit so that
longdesc parentheses and square brackets are typeset in an upright font
longdesc in their arguments. The package requires expl3 from the
longdesc l3kernel bundle, and xparse and l3keys2e from the l3packages
longdesc bundle.
-docfiles size=116
+docfiles size=119
texmf-dist/doc/latex/embrac/README details="Readme"
texmf-dist/doc/latex/embrac/embrac_en.pdf details="Package documentation"
texmf-dist/doc/latex/embrac/embrac_en.tex
@@ -59134,9 +63937,9 @@ docfiles size=116
runfiles size=4
texmf-dist/tex/latex/embrac/embrac.sty
catalogue-ctan /macros/latex/contrib/embrac
-catalogue-date 2013-05-13 20:07:16 +0200
+catalogue-date 2014-05-08 14:35:28 +0200
catalogue-license lppl1.3
-catalogue-version 0.4
+catalogue-version 0.5
name emp
category Package
@@ -59184,7 +63987,7 @@ srcfiles size=2
runfiles size=1
texmf-dist/tex/latex/emptypage/emptypage.sty
catalogue-ctan /macros/latex/contrib/emptypage
-catalogue-date 2012-05-25 14:41:32 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.2
catalogue-version 1.2
@@ -59207,13 +64010,13 @@ catalogue-license lppl
name enctex
category Package
-revision 28602
+revision 34088
shortdesc A TeX extension that translates input on its way into TeX.
longdesc EncTeX is (another) tex extension, written at the change-file
longdesc level. It provides means of translating input on the way into
longdesc TeX. It allows, for example, translation of multibyte
longdesc sequences, such as utf-8 encoding.
-docfiles size=118
+docfiles size=108
texmf-dist/doc/generic/enctex/COPYING
texmf-dist/doc/generic/enctex/COPYING.UCD
texmf-dist/doc/generic/enctex/INSTALL
@@ -59270,12 +64073,12 @@ runfiles size=62
texmf-dist/tex/generic/enctex/utf8unkn.tex
texmf-dist/tex/generic/enctex/utf8warn.tex
catalogue-ctan /systems/enctex
-catalogue-date 2012-11-01 10:06:10 +0100
+catalogue-date 2014-05-09 09:19:54 +0200
catalogue-license gpl
name encxvlna
category Package
-revision 15878
+revision 34087
shortdesc Insert nonbreakable spaces, using encTeX.
longdesc The package provides tools for inserting nonbreakable spaces
longdesc after nonsyllabic prepositions and single letter conjunctions
@@ -59283,18 +64086,19 @@ longdesc as required by Czech and Slovak typographical rules. It is
longdesc implemented using encTeX and provides files both for plain TeX
longdesc and LaTeX. The LaTeX solution tries to avoid conflicts with
longdesc other packages.
-docfiles size=73
+docfiles size=70
texmf-dist/doc/generic/encxvlna/License.txt
texmf-dist/doc/generic/encxvlna/README details="Readme"
- texmf-dist/doc/generic/encxvlna/encxvlna.pdf details="Package documentation"
+ texmf-dist/doc/generic/encxvlna/encxvlna.pdf
texmf-dist/doc/generic/encxvlna/encxvlna.tex
texmf-dist/doc/generic/encxvlna/vlna-inc.tex
runfiles size=3
texmf-dist/tex/latex/encxvlna/encxvlna.sty
texmf-dist/tex/plain/encxvlna/encxvlna.tex
catalogue-ctan /macros/generic/encxvlna
-catalogue-date 2012-06-14 17:41:33 +0200
+catalogue-date 2014-05-17 20:01:25 +0200
catalogue-license lppl
+catalogue-version 1.1
name endfloat
category Package
@@ -59324,7 +64128,7 @@ catalogue-version 2.5d
name endheads
category Package
-revision 27581
+revision 31921
shortdesc Running headers of the form "Notes to pp.xx-yy"
longdesc Endheads provides running headers of the form "Notes to pp. xx-
longdesc yy" for endnotes sections. It also enables one to reset the
@@ -59333,7 +64137,6 @@ longdesc the endnotes, at the beginning of every chapter. Endheads
longdesc requires the fancyhdr, needspace, ifthen, and endnotes
longdesc packages.
docfiles size=61
- texmf-dist/doc/latex/endheads/README details="Readme"
texmf-dist/doc/latex/endheads/endheads.pdf details="Package documentation"
srcfiles size=7
texmf-dist/source/latex/endheads/endheads.dtx
@@ -59341,7 +64144,7 @@ srcfiles size=7
runfiles size=2
texmf-dist/tex/latex/endheads/endheads.sty
catalogue-ctan /macros/latex/contrib/endheads
-catalogue-date 2012-06-14 17:28:14 +0200
+catalogue-date 2013-10-18 10:55:45 +0200
catalogue-license lppl
catalogue-version v1.5
@@ -59359,7 +64162,7 @@ docfiles size=176
runfiles size=16
texmf-dist/tex/latex/endiagram/endiagram.sty
catalogue-ctan /macros/latex/contrib/endiagram
-catalogue-date 2013-04-05 11:53:55 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 0.1b
@@ -59451,7 +64254,7 @@ docfiles size=210
runfiles size=4
texmf-dist/tex/latex/engtlc/engtlc.sty
catalogue-ctan /macros/latex/contrib/engtlc
-catalogue-date 2012-12-18 12:17:57 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 3.2
@@ -59476,27 +64279,29 @@ runfiles size=19
texmf-dist/tex/latex/enigma/enigma.sty
texmf-dist/tex/plain/enigma/enigma.tex
catalogue-ctan /macros/luatex/generic/enigma
-catalogue-date 2013-04-15 11:53:39 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license bsd
catalogue-version 0.1
name enotez
category Package
-revision 30200
+revision 32873
shortdesc Support for end-notes.
longdesc The package allows nested endnotes, supports hyperref and
-longdesc provides means for easy customization of the list of notes.
-docfiles size=118
+longdesc provides means for easy customization of the list of notes. The
+longdesc package requires the expl3 bundle and packages from the LaTeX 3
+longdesc 'package set'.
+docfiles size=119
texmf-dist/doc/latex/enotez/README details="Readme"
texmf-dist/doc/latex/enotez/enotez_en.pdf details="Package documentation"
texmf-dist/doc/latex/enotez/enotez_en.tex
texmf-dist/doc/latex/enotez/enotez_split_example.tex
-runfiles size=9
+runfiles size=10
texmf-dist/tex/latex/enotez/enotez.sty
catalogue-ctan /macros/latex/contrib/enotez
-catalogue-date 2013-05-01 21:18:44 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
-catalogue-version 0.7
+catalogue-version 0.7c
name enumitem
category Package
@@ -59545,7 +64350,7 @@ srcfiles size=26
runfiles size=7
texmf-dist/tex/latex/enumitem-zref/enumitem-zref.sty
catalogue-ctan /macros/latex/contrib/enumitem-zref
-catalogue-date 2012-06-14 17:41:33 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.8
@@ -59564,7 +64369,7 @@ catalogue-license lppl
name environ
category Package
-revision 29600
+revision 33821
shortdesc A new interface for environments in LaTeX.
longdesc The package provides the \collect@body command (as in amsmath),
longdesc as well as a \long version \Collect@Body, for collecting the
@@ -59573,7 +64378,7 @@ longdesc a new author interface to creating new environments. For
longdesc example: \NewEnviron{test} wraps the entire environment body in
longdesc square brackets, doing the right thing in ignoring leading and
longdesc trailing spaces.
-docfiles size=37
+docfiles size=40
texmf-dist/doc/latex/environ/README details="Readme"
texmf-dist/doc/latex/environ/environ.pdf details="Package documentation"
srcfiles size=6
@@ -59582,7 +64387,7 @@ srcfiles size=6
runfiles size=2
texmf-dist/tex/latex/environ/environ.sty
catalogue-ctan /macros/latex/contrib/environ
-catalogue-date 2013-04-01 18:04:30 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 0.3
@@ -59686,7 +64491,7 @@ runfiles size=161
texmf-dist/tex/latex/epigrafica/lgrepigrafica.fd
texmf-dist/tex/latex/epigrafica/ot1epigrafica.fd
catalogue-ctan /fonts/greek/epigrafica
-catalogue-date 2012-07-10 21:25:56 +0200
+catalogue-date 2014-04-26 10:32:59 +0200
catalogue-license gpl
catalogue-version 1.01
@@ -59742,12 +64547,12 @@ runfiles size=34
texmf-dist/fonts/type1/public/epiolmec/Epi-Olmec.pfb
texmf-dist/tex/latex/epiolmec/epiolmec.sty
catalogue-ctan /language/epiolmec
-catalogue-date 2012-05-07 23:26:55 +0200
+catalogue-date 2014-04-26 19:51:19 +0200
catalogue-license lppl
name eplain
category Package
-revision 29951
+revision 33826
shortdesc Extended plain tex macros.
longdesc A powerfully extended version of the plain format, adding
longdesc support for bibliographies, tables of contents, enumerated
@@ -59760,7 +64565,7 @@ longdesc psfrag, and url.
depend pdftex
depend eplain.ARCH
execute AddFormat name=eplain engine=pdftex patterns=language.dat options="-translate-file=cp227.tcx *eplain.ini"
-docfiles size=517
+docfiles size=520
texmf-dist/doc/eplain/AUTHORS
texmf-dist/doc/eplain/COPYING
texmf-dist/doc/eplain/ChangeLog
@@ -59770,18 +64575,17 @@ docfiles size=517
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 details="Package documentation (HTML)"
- texmf-dist/doc/eplain/doc/eplain.man1.pdf
- texmf-dist/doc/eplain/doc/eplain.pdf details="Package documentation (PDF)"
- texmf-dist/doc/eplain/doc/lscommnt.jpg
- texmf-dist/doc/eplain/doc/xhyper.jpg
+ texmf-dist/doc/eplain/eplain.html
+ texmf-dist/doc/eplain/eplain.pdf
+ texmf-dist/doc/eplain/lscommnt.jpg
texmf-dist/doc/eplain/util/idxuniq
texmf-dist/doc/eplain/util/trimsee
+ texmf-dist/doc/eplain/xhyper.jpg
texmf-dist/doc/info/eplain.info
texmf-dist/doc/man/man1/eplain.1
texmf-dist/doc/man/man1/eplain.man1.pdf
-srcfiles size=135
- texmf-dist/source/eplain/eplain-source-3.5.zip
+srcfiles size=132
+ texmf-dist/source/eplain/eplain-source-3.6.zip
texmf-dist/source/eplain/xeplain.tex
runfiles size=52
texmf-dist/tex/eplain/arrow.tex
@@ -59790,9 +64594,9 @@ runfiles size=52
texmf-dist/tex/eplain/eplain.ini
texmf-dist/tex/eplain/eplain.tex
catalogue-ctan /macros/eplain
-catalogue-date 2013-02-15 22:51:43 +0100
+catalogue-date 2013-11-21 21:20:37 +0100
catalogue-license gpl2
-catalogue-version 3.5
+catalogue-version 3.6
name eplain.alpha-linux
category Package
@@ -59878,13 +64682,6 @@ shortdesc i386-solaris files of eplain
binfiles arch=i386-solaris size=1
bin/i386-solaris/eplain
-name eplain.mips-irix
-category Package
-revision 29975
-shortdesc mips-irix files of eplain
-binfiles arch=mips-irix size=1
- bin/mips-irix/eplain
-
name eplain.mipsel-linux
category Package
revision 29946
@@ -59915,11 +64712,18 @@ binfiles arch=universal-darwin size=1
name eplain.win32
category Package
-revision 8086
+revision 33512
shortdesc win32 files of eplain
binfiles arch=win32 size=1
bin/win32/eplain.exe
+name eplain.x86_64-cygwin
+category Package
+revision 33557
+shortdesc x86_64-cygwin files of eplain
+binfiles arch=x86_64-cygwin size=1
+ bin/x86_64-cygwin/eplain
+
name eplain.x86_64-darwin
category Package
revision 18441
@@ -59972,12 +64776,13 @@ name epsf
category Package
revision 21461
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).
+longdesc The original (and now obsolescent) graphics inclusion macros
+longdesc for use with dvips, still widely used by Plain TeX users (in
+longdesc particular). For LaTeX users, the package is nowadays (rather
+longdesc strongly) deprecated in favour of the more sophisticated
+longdesc standard LaTeX graphics bundle of packages. (The graphics
+longdesc bundle is also available to Plain TeX users, via its Plain TeX
+longdesc version.)
docfiles size=98
texmf-dist/doc/generic/epsf/LICENSE
texmf-dist/doc/generic/epsf/Makefile
@@ -60000,7 +64805,7 @@ runfiles size=14
texmf-dist/tex/generic/epsf/epsf.sty
texmf-dist/tex/generic/epsf/epsf.tex
catalogue-ctan /macros/generic/epsf
-catalogue-date 2013-01-29 15:35:44 +0100
+catalogue-date 2013-09-10 14:43:07 +0200
catalogue-license pd
catalogue-version 2.7.4
@@ -60095,7 +64900,7 @@ docfiles size=824
texmf-dist/doc/latex/epslatex-fr/widecenter.sty
texmf-dist/doc/latex/epslatex-fr/xb.sty
catalogue-ctan /info/epslatex/french
-catalogue-date 2012-05-29 13:27:24 +0200
+catalogue-date 2013-10-03 14:20:59 +0200
catalogue-license gpl
name epspdf
@@ -60130,7 +64935,7 @@ runfiles size=34
texmf-dist/scripts/epspdf/epspdf.tlu
texmf-dist/scripts/epspdf/epspdftk.tcl
catalogue-ctan /support/epspdf
-catalogue-date 2013-02-08 11:42:11 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license gpl
catalogue-version 0.6.0
@@ -60230,14 +65035,6 @@ binfiles arch=i386-solaris size=2
bin/i386-solaris/epspdf
bin/i386-solaris/epspdftk
-name epspdf.mips-irix
-category Package
-revision 29949
-shortdesc mips-irix files of epspdf
-binfiles arch=mips-irix size=2
- bin/mips-irix/epspdf
- bin/mips-irix/epspdftk
-
name epspdf.mipsel-linux
category Package
revision 29946
@@ -60278,6 +65075,14 @@ binfiles arch=win32 size=2
bin/win32/epspdf.exe
bin/win32/epspdftk.exe
+name epspdf.x86_64-cygwin
+category Package
+revision 33557
+shortdesc x86_64-cygwin files of epspdf
+binfiles arch=x86_64-cygwin size=2
+ bin/x86_64-cygwin/epspdf
+ bin/x86_64-cygwin/epspdftk
+
name epspdf.x86_64-darwin
category Package
revision 29050
@@ -60320,13 +65125,13 @@ docfiles size=119
runfiles size=3
texmf-dist/tex/latex/epspdfconversion/epspdfconversion.sty
catalogue-ctan /macros/latex/contrib/epspdfconversion
-catalogue-date 2012-07-10 22:47:12 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 0.61
name epstopdf
category Package
-revision 30511
+revision 32706
shortdesc Convert EPS to 'encapsulated' PDF using GhostScript.
longdesc Epstopdf is a Perl script that converts an EPS file to an
longdesc 'encapsulated' PDF file (a single page file whose media box is
@@ -60341,18 +65146,18 @@ longdesc epstopdf package, which will run the epstopdf script "on the
longdesc fly", thus giving the illusion that PDFLaTeX is accepting EPS
longdesc graphic files.
depend epstopdf.ARCH
-docfiles size=7
+docfiles size=10
texmf-dist/doc/man/man1/epstopdf.1
texmf-dist/doc/man/man1/epstopdf.man1.pdf details="Manual page"
texmf-dist/doc/man/man1/repstopdf.1
texmf-dist/doc/man/man1/repstopdf.man1.pdf
texmf-dist/doc/support/epstopdf/README
-runfiles size=6
+runfiles size=9
texmf-dist/scripts/epstopdf/epstopdf.pl
catalogue-ctan /support/epstopdf
-catalogue-date 2013-05-13 11:34:28 +0200
+catalogue-date 2014-01-17 20:40:07 +0100
catalogue-license other-free
-catalogue-version 2.19
+catalogue-version 2.21
name epstopdf.alpha-linux
category Package
@@ -60450,14 +65255,6 @@ binfiles arch=i386-solaris size=2
bin/i386-solaris/epstopdf
bin/i386-solaris/repstopdf
-name epstopdf.mips-irix
-category Package
-revision 29949
-shortdesc mips-irix files of epstopdf
-binfiles arch=mips-irix size=2
- bin/mips-irix/epstopdf
- bin/mips-irix/repstopdf
-
name epstopdf.mipsel-linux
category Package
revision 29946
@@ -60498,6 +65295,14 @@ binfiles arch=win32 size=2
bin/win32/epstopdf.exe
bin/win32/repstopdf.exe
+name epstopdf.x86_64-cygwin
+category Package
+revision 33557
+shortdesc x86_64-cygwin files of epstopdf
+binfiles arch=x86_64-cygwin size=2
+ bin/x86_64-cygwin/epstopdf
+ bin/x86_64-cygwin/repstopdf
+
name epstopdf.x86_64-darwin
category Package
revision 18441
@@ -60535,17 +65340,17 @@ docfiles size=48
runfiles size=1
texmf-dist/tex/latex/eqell/eqell.sty
catalogue-ctan /macros/latex/contrib/eqell
-catalogue-date 2012-07-11 14:19:50 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license gpl
name eqlist
category Package
-revision 15878
+revision 32257
shortdesc Description lists with equal indentation.
longdesc This package provides a list environment which sets a
longdesc description-like list in which the indentation corresponds to
longdesc the longest item of the list.
-docfiles size=26
+docfiles size=22
texmf-dist/doc/latex/eqlist/README details="Readme"
texmf-dist/doc/latex/eqlist/eqlist.pdf details="Package documentation"
texmf-dist/doc/latex/eqlist/eqlist.tex
@@ -60591,7 +65396,7 @@ srcfiles size=6
runfiles size=2
texmf-dist/tex/latex/eqnarray/eqnarray.sty
catalogue-ctan /macros/latex/contrib/eqnarray
-catalogue-date 2012-05-07 23:26:55 +0200
+catalogue-date 2014-05-14 16:12:10 +0200
catalogue-license gpl3
catalogue-version 1.3
@@ -60649,7 +65454,7 @@ srcfiles size=17
runfiles size=5
texmf-dist/tex/latex/erdc/erdc.cls
catalogue-ctan /macros/latex/contrib/erdc
-catalogue-date 2012-07-11 16:16:45 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.1
@@ -60696,7 +65501,7 @@ catalogue-version 1.97
name esami
category Package
-revision 30109
+revision 32608
shortdesc Typeset exams with scrambled questions and answers.
longdesc The package enables the user to typeset exams with multiple
longdesc choice, open questions and many other types of exercise. Both
@@ -60706,13 +65511,15 @@ longdesc may contain a wide number of random parameters and it is
longdesc possible to do arithmetical operations on them. The package is
longdesc localised in Italian, English, French, German, Greek and
longdesc Spanish.
-docfiles size=318
+docfiles size=379
texmf-dist/doc/latex/esami/README details="Readme"
texmf-dist/doc/latex/esami/doc/esami-doc-en.pdf details="Package documentation (English)" language="en"
texmf-dist/doc/latex/esami/doc/esami-doc-en.tex
+ texmf-dist/doc/latex/esami/doc/esami-doc-it.dtx
texmf-dist/doc/latex/esami/doc/esami-doc-it.pdf details="Package documentation (Italian)" language="it"
texmf-dist/doc/latex/esami/doc/esami-doc-it.tex
texmf-dist/doc/latex/esami/doc/esami.bib
+ texmf-dist/doc/latex/esami/doc/examples/esami-xyz.cfg
texmf-dist/doc/latex/esami/doc/examples/master-sol.tex
texmf-dist/doc/latex/esami/doc/examples/master.tex
texmf-dist/doc/latex/esami/doc/examples/problem1.tex
@@ -60728,23 +65535,24 @@ docfiles size=318
texmf-dist/doc/latex/esami/doc/examples/test3.tex
texmf-dist/doc/latex/esami/doc/examples/test4.tex
texmf-dist/doc/latex/esami/doc/examples/test5-fillin.tex
+ texmf-dist/doc/latex/esami/doc/examples/testA-sol.pdf
texmf-dist/doc/latex/esami/doc/examples/testA.pdf
texmf-dist/doc/latex/esami/doc/examples/testA.tex
texmf-dist/doc/latex/esami/doc/examples/totale-versioni.tex
- texmf-dist/doc/latex/esami/es-UKenglish.lng
- texmf-dist/doc/latex/esami/es-USenglish.lng
- texmf-dist/doc/latex/esami/es-french.lng
- texmf-dist/doc/latex/esami/es-german.lng
- texmf-dist/doc/latex/esami/es-greek.lng
- texmf-dist/doc/latex/esami/es-italian.lng
- texmf-dist/doc/latex/esami/es-spanish.lng
texmf-dist/doc/latex/esami/esami-xyz.cfg
-runfiles size=18
+runfiles size=25
+ texmf-dist/tex/latex/esami/es-UKenglish.lng
+ texmf-dist/tex/latex/esami/es-USenglish.lng
+ texmf-dist/tex/latex/esami/es-french.lng
+ texmf-dist/tex/latex/esami/es-german.lng
+ texmf-dist/tex/latex/esami/es-greek.lng
+ texmf-dist/tex/latex/esami/es-italian.lng
+ texmf-dist/tex/latex/esami/es-spanish.lng
texmf-dist/tex/latex/esami/esami.sty
catalogue-ctan /macros/latex/contrib/esami
-catalogue-date 2013-04-30 11:14:16 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
-catalogue-version 1.0
+catalogue-version 1.1
name esdiff
category Package
@@ -60793,7 +65601,7 @@ runfiles size=18
texmf-dist/tex/latex/esint/esint.sty
texmf-dist/tex/latex/esint/uesint.fd
catalogue-ctan /macros/latex/contrib/esint
-catalogue-date 2012-05-07 23:26:55 +0200
+catalogue-date 2014-04-26 10:32:59 +0200
catalogue-license pd
catalogue-version 1.1
@@ -60820,7 +65628,7 @@ runfiles size=12
texmf-dist/fonts/type1/public/esint-type1/esint10.pfb
texmf-dist/tex/plain/esint-type1/esint.tex
catalogue-ctan /fonts/ps-type1/esint
-catalogue-date 2012-07-11 16:16:45 +0200
+catalogue-date 2014-04-26 10:32:59 +0200
catalogue-license pd
name esk
@@ -60985,19 +65793,19 @@ catalogue-version 0.98
name eso-pic
category Package
-revision 21515
+revision 31875
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=63
+longdesc The package adds one or more user commands to LaTeX's shipout
+longdesc routine, which may be used to place the output at fixed
+longdesc positions. The grid option may be used to find the correct
+longdesc places.
+docfiles size=68
texmf-dist/doc/latex/eso-pic/eso-article-test.tex
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-ex6.tex
texmf-dist/doc/latex/eso-pic/eso-memoir-test.tex
texmf-dist/doc/latex/eso-pic/eso-pic.pdf details="Package documentation"
srcfiles size=7
@@ -61007,9 +65815,9 @@ runfiles size=4
texmf-dist/tex/latex/eso-pic/eso-pic.sty
texmf-dist/tex/latex/eso-pic/showframe.sty
catalogue-ctan /macros/latex/contrib/eso-pic
-catalogue-date 2012-05-07 23:26:55 +0200
+catalogue-date 2013-10-10 16:26:27 +0200
catalogue-license lppl1.2
-catalogue-version 2.0c
+catalogue-version 2.0d
name esstix
category Package
@@ -61113,7 +65921,7 @@ runfiles size=117
texmf-dist/tex/latex/esstix/uesstixcal.fd
texmf-dist/tex/latex/esstix/uesstixfrak.fd
catalogue-ctan /fonts/esstix
-catalogue-date 2011-12-20 12:56:09 +0100
+catalogue-date 2014-04-26 10:32:59 +0200
catalogue-license ofl
catalogue-version 1.0
@@ -61142,21 +65950,21 @@ srcfiles size=9
runfiles size=2
texmf-dist/tex/latex/estcpmm/estcpmm.cls
catalogue-ctan /macros/latex/contrib/estcpmm
-catalogue-date 2012-07-11 16:16:45 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 0.4
name esvect
category Package
-revision 15878
+revision 32098
shortdesc Vector arrows.
-longdesc Write vectors using an arrow which is different to the Computer
+longdesc Write vectors using an arrow which differs from 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=18
- texmf-dist/doc/latex/esvect/README
+docfiles size=13
+ texmf-dist/doc/latex/esvect/README details="Readme"
texmf-dist/doc/latex/esvect/esvect.pdf details="Package documentation"
srcfiles size=15
texmf-dist/source/latex/esvect/esvect.dtx
@@ -61187,9 +65995,9 @@ runfiles size=58
texmf-dist/tex/latex/esvect/esvect.sty
texmf-dist/tex/latex/esvect/uesvect.fd
catalogue-ctan /macros/latex/contrib/esvect
-catalogue-date 2012-07-11 17:40:28 +0200
+catalogue-date 2014-04-26 10:32:59 +0200
catalogue-license gpl
-catalogue-version 1.2
+catalogue-version 1.3
name etaremune
category Package
@@ -61213,7 +66021,7 @@ catalogue-version v1.2
name etex
category Package
-revision 29743
+revision 31600
shortdesc An extended version of TeX, from the NTS project.
longdesc An extended version of TeX (which is capable of running as if
longdesc it were TeX unmodified). E-TeX has been specified by the LaTeX
@@ -61235,7 +66043,9 @@ docfiles size=129
texmf-dist/doc/etex/base/webmerge.tex
texmf-dist/doc/man/man1/etex.1
texmf-dist/doc/man/man1/etex.man1.pdf
-runfiles size=9
+runfiles size=11
+ texmf-dist/fonts/source/public/etex/xbmc10.mf
+ texmf-dist/fonts/tfm/public/etex/xbmc10.tfm
texmf-dist/tex/plain/etex/etex.src
texmf-dist/tex/plain/etex/etexdefs.lib
catalogue-ctan /systems/e-tex
@@ -61257,7 +66067,7 @@ docfiles size=1
runfiles size=4
texmf-dist/tex/latex/etex-pkg/etex.sty
catalogue-ctan /macros/latex/contrib/etex-pkg/etex.sty
-catalogue-date 2012-08-30 17:15:02 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license other-free
catalogue-version 2.0
@@ -61266,16 +66076,16 @@ category Package
revision 20694
shortdesc e-TeX tools for LaTeX users and package writers.
longdesc The package provides many (purely expandable) tools for LaTeX:
-longdesc - Extensive list management (csv lists, lists of single
-longdesc tokens/characters, etoolbox lists); - purely expandable loops
-longdesc (csvloop, forcsvloop, etc.); * conversion (csvtolist, etc.)); *
-longdesc addition/deletion (csvadd, listdel, etc.); - Expansion and
-longdesc group control: \expandnext, \ExpandAfterCmds, \AfterGroup...; -
-longdesc Tests on tokens, characters and control sequences
-longdesc (\iffirstchar, \ifiscs, \ifdefcount, \@ifchar...); - Tests on
-longdesc strings (\ifstrnum, \ifuppercase, \DeclareStringFilter...); -
-longdesc Purely expandable macros with options (\FE@testopt, \FE@ifstar)
-longdesc or modifiers (\FE@modifiers); - Some purely expandable numerics
+longdesc Extensive list management (csv lists, lists of single
+longdesc tokens/characters, etoolbox lists); purely expandable loops
+longdesc (csvloop, forcsvloop, etc.); conversion (csvtolist, etc.));
+longdesc addition/deletion (csvadd, listdel, etc.); Expansion and group
+longdesc control: \expandnext, \ExpandAfterCmds, \AfterGroup...; Tests
+longdesc on tokens, characters and control sequences (\iffirstchar,
+longdesc \ifiscs, \ifdefcount, \@ifchar...); Tests on strings
+longdesc (\ifstrnum, \ifuppercase, \DeclareStringFilter...); Purely
+longdesc expandable macros with options (\FE@testopt, \FE@ifstar) or
+longdesc modifiers (\FE@modifiers); - Some purely expandable numerics
longdesc (\interval, \locinterplin). The package is dependent on the
longdesc etex and the etoolbox packages.
docfiles size=308
@@ -61290,7 +66100,7 @@ srcfiles size=63
runfiles size=14
texmf-dist/tex/latex/etextools/etextools.sty
catalogue-ctan /macros/latex/contrib/etextools
-catalogue-date 2012-03-12 20:11:22 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 3.1415926
@@ -61547,12 +66357,12 @@ runfiles size=1348
texmf-dist/fonts/type1/public/ethiop-t1/ethbsb9.pfb
texmf-dist/fonts/type1/public/ethiop-t1/ethbtt10.pfb
catalogue-ctan /fonts/ps-type1/ethiop
-catalogue-date 2012-01-24 17:39:32 +0100
+catalogue-date 2014-04-26 10:32:59 +0200
catalogue-license gpl
name etoc
category Package
-revision 30488
+revision 34106
shortdesc Completely customisable TOCs.
longdesc The package gives the user complete control of how the entries
longdesc of the table of contents should be constituted from the name,
@@ -61569,18 +66379,21 @@ longdesc with either a standard heading, or a ruled title (optionally
longdesc with a frame around the table). The \tableofcontents command
longdesc may be used arbitrarily many times in the same document, while
longdesc \localtableofcontents provides a 'local' table of contents.
-docfiles size=65
+docfiles size=165
texmf-dist/doc/latex/etoc/README details="Readme"
+ texmf-dist/doc/latex/etoc/etoc-DE.pdf details="Package documentation" language="de"
+ texmf-dist/doc/latex/etoc/etoc-DE.tex
texmf-dist/doc/latex/etoc/etoc.pdf details="Package documentation"
-srcfiles size=47
+ texmf-dist/doc/latex/etoc/etoc.tex
+srcfiles size=107
texmf-dist/source/latex/etoc/etoc.dtx
texmf-dist/source/latex/etoc/etoc.ins
-runfiles size=10
+runfiles size=12
texmf-dist/tex/latex/etoc/etoc.sty
catalogue-ctan /macros/latex/contrib/etoc
-catalogue-date 2013-04-06 14:04:53 +0200
-catalogue-license lppl1.2
-catalogue-version 1.07f
+catalogue-date 2014-05-18 13:08:20 +0200
+catalogue-license lppl1.3
+catalogue-version 1.07l
name etoolbox
category Package
@@ -61604,7 +66417,7 @@ runfiles size=12
texmf-dist/tex/latex/etoolbox/etoolbox.def
texmf-dist/tex/latex/etoolbox/etoolbox.sty
catalogue-ctan /macros/latex/contrib/etoolbox
-catalogue-date 2012-10-05 23:15:38 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 2.1
@@ -61617,7 +66430,7 @@ docfiles size=99
texmf-dist/doc/latex/etoolbox-de/etoolbox-DE.pdf details="The document itself"
texmf-dist/doc/latex/etoolbox-de/etoolbox-DE.tex
catalogue-ctan /info/translations/etoolbox/de
-catalogue-date 2012-07-11 17:40:28 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1
@@ -61626,10 +66439,10 @@ category Package
revision 19795
shortdesc Unicode font encoding definitions for XeTeX.
longdesc Font encoding definitions for unicode fonts loaded by LaTeX in
-longdesc XeTeX or LuaTeX. The package provides two encodings: -- EU1,
+longdesc XeTeX or LuaTeX. The package provides two encodings: EU1,
longdesc designed for use with XeTeX, which the fontspec uses for
longdesc unicode fonts which require no macro-level processing for
-longdesc accents, and -- EU2, which provides the same facilities for use
+longdesc accents, and EU2, which provides the same facilities for use
longdesc with LuaTeX. Neither encoding places any restriction on the
longdesc glyphs provided by a font; use of EU2 causes the package
longdesc euxunicode to be loaded (the package is part of this
@@ -61658,7 +66471,7 @@ runfiles size=14
texmf-dist/tex/latex/euenc/eu2lmtt.fd
texmf-dist/tex/latex/euenc/eu2lmvtt.fd
catalogue-ctan /macros/latex/contrib/euenc
-catalogue-date 2012-04-24 12:20:39 +0200
+catalogue-date 2013-12-17 17:06:14 +0100
catalogue-license lppl1.3
catalogue-version 0.1h
@@ -61680,7 +66493,7 @@ srcfiles size=4
runfiles size=1
texmf-dist/tex/latex/eukdate/eukdate.sty
catalogue-ctan /macros/latex/contrib/eukdate
-catalogue-date 2012-04-24 12:20:39 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.04
@@ -61692,9 +66505,9 @@ 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 text
-longdesc fonts for the Concrete book are supported by the beton package.
+longdesc handwriting." The euler package is based on Knuth's macros for
+longdesc the book 'Concrete Mathematics'. The text fonts for the
+longdesc Concrete book are supported by the beton package.
docfiles size=63
texmf-dist/doc/latex/euler/euler.pdf details="Package documentation"
texmf-dist/doc/latex/euler/legal.txt
@@ -61704,7 +66517,7 @@ srcfiles size=10
runfiles size=3
texmf-dist/tex/latex/euler/euler.sty
catalogue-ctan /macros/latex/contrib/euler
-catalogue-date 2012-04-24 12:20:39 +0200
+catalogue-date 2014-04-26 12:45:28 +0200
catalogue-license lppl
catalogue-version 2.5
@@ -61781,7 +66594,7 @@ runfiles size=32
texmf-dist/tex/latex/eulervm/uzeur.fd
texmf-dist/tex/latex/eulervm/uzeus.fd
catalogue-ctan /fonts/eulervm
-catalogue-date 2011-12-20 12:56:09 +0100
+catalogue-date 2014-04-26 12:45:28 +0200
catalogue-license lppl
catalogue-version 4.0
@@ -61814,7 +66627,7 @@ category Package
revision 25714
shortdesc Euro and CE sign font.
longdesc Metafont source for the symbols in several variants, designed
-longdesc to fit with Computer Modern-set text.
+longdesc to fit with the Computer Modern-set text.
docfiles size=6
texmf-dist/doc/fonts/euro-ce/euro-ce.doc
texmf-dist/doc/fonts/euro-ce/euro-ce.dvi
@@ -61845,7 +66658,7 @@ runfiles size=26
texmf-dist/fonts/tfm/public/euro-ce/eurosl.tfm
texmf-dist/fonts/tfm/public/euro-ce/eurosp.tfm
catalogue-ctan /fonts/euro-ce
-catalogue-date 2012-04-24 12:20:39 +0200
+catalogue-date 2014-04-26 12:45:28 +0200
catalogue-license bsd
catalogue-version 3.0b
@@ -61922,7 +66735,7 @@ runfiles size=63
texmf-dist/tex/latex/europecv/europasslogo.pdf
texmf-dist/tex/latex/europecv/europecv.cls
catalogue-ctan /macros/latex/contrib/europecv
-catalogue-date 2011-09-24 17:57:01 +0200
+catalogue-date 2014-05-24 14:57:16 +0200
catalogue-license lppl
name eurosym
@@ -61978,7 +66791,7 @@ runfiles size=72
texmf-dist/fonts/type1/public/eurosym/geymr10.pfb
texmf-dist/tex/latex/eurosym/eurosym.sty
catalogue-ctan /fonts/eurosym
-catalogue-date 2012-04-24 13:27:55 +0200
+catalogue-date 2014-04-26 19:51:19 +0200
catalogue-license other-free
catalogue-version 1.4-subrfix
@@ -62014,7 +66827,7 @@ srcfiles size=6
runfiles size=2
texmf-dist/tex/latex/everyhook/everyhook.sty
catalogue-ctan /macros/latex/contrib/everyhook
-catalogue-date 2012-06-15 15:04:50 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.1
@@ -62046,27 +66859,26 @@ category Package
revision 22585
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 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 and
-longdesc footers that are each specified in three parts: one part to be
-longdesc 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 bundle exams also provides a file exam.cls; the two bundles
-longdesc therefore clash, and should not be installed on the same
-longdesc system.
+longdesc subsubparts of subparts, all with optional point values; create
+longdesc a grading table, indexed either by question number (listing
+longdesc each question and the total possible points for that question)
+longdesc or by page number (listing each page with points and the total
+longdesc possible points for that page); create headers and footers that
+longdesc are each specified in three parts: one part to be left
+longdesc justified, one part to be centered, and one part to be right
+longdesc justified, in the manner of fancyhdr Headers and/or footers can
+longdesc be different on the first page of the exam, can be different on
+longdesc the last page of the exam, and can vary depending on whether
+longdesc the page number is odd or even, or on whether the current page
+longdesc continues a question from a previous page, or on whether the
+longdesc last question on the current page continues onto the following
+longdesc page. Multiple line headers and/or footers are allowed, and
+longdesc it's easy to increase the part of the page devoted to headers
+longdesc and/or footers to allow for this. Note that the bundle exams
+longdesc also provides a file exam.cls; the two bundles therefore clash,
+longdesc and should not be installed on the same system.
docfiles size=252
texmf-dist/doc/latex/exam/README details="Package Readme"
texmf-dist/doc/latex/exam/exam-2.4.md5
@@ -62075,26 +66887,82 @@ docfiles size=252
runfiles size=55
texmf-dist/tex/latex/exam/exam.cls
catalogue-ctan /macros/latex/contrib/exam
-catalogue-date 2011-09-19 12:18:10 +0200
+catalogue-date 2013-12-06 01:11:02 +0100
catalogue-license lppl1.3
catalogue-version 2.4
+name exam-n
+category Package
+revision 33862
+shortdesc Exam class, focused on collaborative authoring.
+longdesc The class design offers: Direct support for collaborative
+longdesc development of an exam, using a model in which a departmental
+longdesc 'exams convener' or 'exam chair' coordinates multiple authors
+longdesc writing individual questions (the class file and associated
+longdesc process is in regular use within a physics and astronomy
+longdesc department). All of the 'traditional' exam paper features such
+longdesc as sectioning, per-part running marks, 'Question n continued'
+longdesc catchwords, and so on. Readily configured local adaptation.
+docfiles size=387
+ texmf-dist/doc/latex/exam-n/README details="Readme"
+ texmf-dist/doc/latex/exam-n/exam-n-example.tex
+ texmf-dist/doc/latex/exam-n/exam-n.html
+ texmf-dist/doc/latex/exam-n/exam-n.pdf details="Package documentation"
+ texmf-dist/doc/latex/exam-n/lppl.txt
+ texmf-dist/doc/latex/exam-n/move-to-texmf/A1.clo
+ texmf-dist/doc/latex/exam-n/move-to-texmf/exam-n.cls
+ texmf-dist/doc/latex/exam-n/notes-for-authors.pdf
+ texmf-dist/doc/latex/exam-n/release-notes.html
+ texmf-dist/doc/latex/exam-n/sample/Makefile
+ texmf-dist/doc/latex/exam-n/sample/cosmo1.tex
+ texmf-dist/doc/latex/exam-n/sample/cosmo2.tex
+ texmf-dist/doc/latex/exam-n/sample/cosmo3.tex
+ texmf-dist/doc/latex/exam-n/sample/dynamical1.tex
+ texmf-dist/doc/latex/exam-n/sample/dynamical2.tex
+ texmf-dist/doc/latex/exam-n/sample/dynamical3.tex
+ texmf-dist/doc/latex/exam-n/sample/excos1.tex
+ texmf-dist/doc/latex/exam-n/sample/numerical1-solution.pdf
+ texmf-dist/doc/latex/exam-n/sample/numerical1-solution.tex
+ texmf-dist/doc/latex/exam-n/sample/numerical1.tex
+ texmf-dist/doc/latex/exam-n/sample/numerical2.tex
+ texmf-dist/doc/latex/exam-n/sample/numerical3.tex
+ texmf-dist/doc/latex/exam-n/sample/sample_exam.pdf details="Sample exam"
+ texmf-dist/doc/latex/exam-n/sample/sample_exam.tex
+ texmf-dist/doc/latex/exam-n/sample/sample_exam_solution.pdf
+ texmf-dist/doc/latex/exam-n/sample/sample_exam_solution.tex
+ texmf-dist/doc/latex/exam-n/sample/sample_mcq.tex
+ texmf-dist/doc/latex/exam-n/sample/spiral.eps
+ texmf-dist/doc/latex/exam-n/sample/spiral.pdf
+ texmf-dist/doc/latex/exam-n/sample_exam.pdf details="Sample exam"
+ texmf-dist/doc/latex/exam-n/sample_exam_solution.pdf
+ texmf-dist/doc/latex/exam-n/style.css
+srcfiles size=30
+ texmf-dist/source/latex/exam-n/exam-n.drv
+ texmf-dist/source/latex/exam-n/exam-n.dtx
+ texmf-dist/source/latex/exam-n/exam-n.ins
+runfiles size=10
+ texmf-dist/tex/latex/exam-n/exam-n.cls
+catalogue-ctan /macros/latex/contrib/exam-n
+catalogue-date 2014-05-10 17:28:26 +0200
+catalogue-license lppl
+catalogue-version 1.1
+
name examdesign
category Package
revision 15878
shortdesc LaTeX class for typesetting exams.
longdesc This bundle provides a class examdesign. The class provides
-longdesc several features useful for designing tests or question sets: -
-longdesc it allows for explicit markup of questions and answers; - the
+longdesc several features useful for designing tests or question sets:
+longdesc it allows for explicit markup of questions and answers; the
longdesc class will, at the user's request, automatically generate
-longdesc answer keys; - multiple versions of the same test can be
+longdesc answer keys; multiple versions of the same test can be
longdesc generated automatically, with the ordering of questions within
-longdesc each section randomly permuted so as to minimize cheating; -
-longdesc the generated answer keys can be constructed either with or
-longdesc without the questions included; - environments are provided to
-longdesc assist in constructing the most common types of test question:
-longdesc matching, true/false, multiple-choice, fill-in-the-blank, and
-longdesc short answer/essay questions.
+longdesc each section randomly permuted so as to minimize cheating; the
+longdesc generated answer keys can be constructed either with or without
+longdesc the questions included; environments are provided to assist in
+longdesc constructing the most common types of test question: matching,
+longdesc true/false, multiple-choice, fill-in-the-blank, and short
+longdesc answer/essay questions.
docfiles size=121
texmf-dist/doc/latex/examdesign/Bugs
texmf-dist/doc/latex/examdesign/Changes
@@ -62114,10 +66982,23 @@ srcfiles size=35
runfiles size=12
texmf-dist/tex/latex/examdesign/examdesign.cls
catalogue-ctan /macros/latex/contrib/examdesign
-catalogue-date 2011-09-19 12:18:10 +0200
+catalogue-date 2013-12-06 01:11:02 +0100
catalogue-license gpl
catalogue-version 1.02
+name example
+category Package
+revision 33398
+shortdesc Typeset examples for TeX courses.
+longdesc The package makes it easier to produce examples for TeX course.
+longdesc It provides an example environment, which typesets its contents
+longdesc on the left of the page, and prints it verbatim on the right.
+runfiles size=4
+ texmf-dist/tex/latex/example/example.sty
+catalogue-ctan /macros/latex209/contrib/misc/example.sty
+catalogue-date 2014-04-08 11:06:38 +0200
+catalogue-license gpl
+
name examplep
category Package
revision 16916
@@ -62272,13 +67153,6 @@ shortdesc i386-solaris files of exceltex
binfiles arch=i386-solaris size=1
bin/i386-solaris/exceltex
-name exceltex.mips-irix
-category Package
-revision 29949
-shortdesc mips-irix files of exceltex
-binfiles arch=mips-irix size=1
- bin/mips-irix/exceltex
-
name exceltex.mipsel-linux
category Package
revision 29946
@@ -62314,6 +67188,13 @@ shortdesc win32 files of exceltex
binfiles arch=win32 size=1
bin/win32/exceltex.exe
+name exceltex.x86_64-cygwin
+category Package
+revision 33557
+shortdesc x86_64-cygwin files of exceltex
+binfiles arch=x86_64-cygwin size=1
+ bin/x86_64-cygwin/exceltex
+
name exceltex.x86_64-darwin
category Package
revision 25860
@@ -62400,7 +67281,7 @@ srcfiles size=5
runfiles size=1
texmf-dist/tex/latex/exp-testopt/exp-testopt.sty
catalogue-ctan /macros/latex/contrib/exp-testopt
-catalogue-date 2012-07-12 15:21:21 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 0.3
@@ -62430,6 +67311,30 @@ catalogue-date 2012-07-12 15:21:21 +0200
catalogue-license lppl
catalogue-version 2.4
+name expex
+category Package
+revision 33163
+shortdesc Format linguistic examples and glosses, with reference capabilities.
+longdesc The package provides macros for typesetting linguistic examples
+longdesc and glosses, with a refined mechanism for referencing examples
+longdesc and parts of examples. The package can be used with LaTex using
+longdesc the .sty wrapper or with PlainTex.
+docfiles size=129
+ texmf-dist/doc/generic/expex/README details="Readme"
+ texmf-dist/doc/generic/expex/doc-source.zip
+ texmf-dist/doc/generic/expex/expex-doc.pdf details="Package documentation"
+runfiles size=22
+ texmf-dist/tex/generic/expex/epltxchapno.sty
+ texmf-dist/tex/generic/expex/epltxfn.sty
+ texmf-dist/tex/generic/expex/eptexfn.tex
+ texmf-dist/tex/generic/expex/expex-demo.tex
+ texmf-dist/tex/generic/expex/expex.sty
+ texmf-dist/tex/generic/expex/expex.tex
+catalogue-ctan /macros/plain/contrib/expex
+catalogue-date 2014-03-12 20:21:38 +0100
+catalogue-license lppl
+catalogue-version 5.0b
+
name export
category Package
revision 27206
@@ -62450,7 +67355,7 @@ runfiles size=6
texmf-dist/tex/latex/export/dvipaste.sty
texmf-dist/tex/latex/export/export.sty
catalogue-ctan /macros/latex/contrib/export
-catalogue-date 2012-07-11 14:19:50 +0200
+catalogue-date 2013-10-03 14:20:59 +0200
catalogue-license lppl
catalogue-version 1.8
@@ -62487,7 +67392,7 @@ catalogue-version 1.5
name exsheets
category Package
-revision 30703
+revision 34014
shortdesc Create exercise sheets and exams.
longdesc The package provides the means to create exercises or questions
longdesc and their corresponding solutions. The questions may be divided
@@ -62498,7 +67403,7 @@ longdesc printed at a later point in the document all together, section-
longdesc wise or selectively by ID. The package provides the means to
longdesc selectively include questions from an external file, and to
longdesc control the style of headings of both questions and solutions.
-docfiles size=529
+docfiles size=415
texmf-dist/doc/latex/exsheets/README details="Readme"
texmf-dist/doc/latex/exsheets/cntformats_en.pdf
texmf-dist/doc/latex/exsheets/cntformats_en.tex
@@ -62508,25 +67413,19 @@ docfiles size=529
texmf-dist/doc/latex/exsheets/grading-table.tex
texmf-dist/doc/latex/exsheets/tasks_en.pdf
texmf-dist/doc/latex/exsheets/tasks_en.tex
- texmf-dist/doc/latex/exsheets/translations_en.pdf
- texmf-dist/doc/latex/exsheets/translations_en.tex
-runfiles size=51
+runfiles size=49
texmf-dist/tex/latex/exsheets/cntformats.sty
- texmf-dist/tex/latex/exsheets/dicts/translations-basic-dictionary-english.trsl
- texmf-dist/tex/latex/exsheets/dicts/translations-basic-dictionary-french.trsl
- texmf-dist/tex/latex/exsheets/dicts/translations-basic-dictionary-german.trsl
- texmf-dist/tex/latex/exsheets/dicts/translations-basic-dictionary-spanish.trsl
+ texmf-dist/tex/latex/exsheets/exsheets-listings.sty
texmf-dist/tex/latex/exsheets/exsheets.sty
texmf-dist/tex/latex/exsheets/exsheets_configurations.cfg
texmf-dist/tex/latex/exsheets/exsheets_headings.cfg
texmf-dist/tex/latex/exsheets/exsheets_headings.def
texmf-dist/tex/latex/exsheets/tasks.cfg
texmf-dist/tex/latex/exsheets/tasks.sty
- texmf-dist/tex/latex/exsheets/translations.sty
catalogue-ctan /macros/latex/contrib/exsheets
-catalogue-date 2013-05-27 20:07:27 +0200
+catalogue-date 2014-05-12 01:27:58 +0200
catalogue-license lppl1.3
-catalogue-version 0.9f
+catalogue-version 0.12
name exsol
category Package
@@ -62554,7 +67453,7 @@ srcfiles size=7
runfiles size=2
texmf-dist/tex/latex/exsol/exsol.sty
catalogue-ctan /macros/latex/contrib/exsol
-catalogue-date 2013-05-27 13:55:07 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 0.6
@@ -62675,7 +67574,7 @@ runfiles size=35
texmf-dist/tex/latex/extsizes/size8.clo
texmf-dist/tex/latex/extsizes/size9.clo
catalogue-ctan /macros/latex/contrib/extsizes
-catalogue-date 2012-07-11 14:19:50 +0200
+catalogue-date 2013-10-31 12:53:24 +0100
catalogue-license lppl
catalogue-version 1.4a
@@ -62685,11 +67584,11 @@ revision 21328
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 areas: First, a title page is created with a detailed fax
+longdesc header; second, every page gets headers and footers so that the
+longdesc recipient can be sure that every page has been received and all
+longdesc pages are complete, and in the correct order. The class evolved
+longdesc from the fax package, and provides much better language
longdesc support.
docfiles size=12
texmf-dist/doc/latex/facsimile/README details="Readme"
@@ -62703,7 +67602,7 @@ runfiles size=5
texmf-dist/tex/latex/facsimile/fac-en.cfg
texmf-dist/tex/latex/facsimile/facsimile.cls
catalogue-ctan /macros/latex/contrib/facsimile
-catalogue-date 2012-04-17 16:58:00 +0200
+catalogue-date 2013-12-24 20:21:44 +0100
catalogue-license lppl
catalogue-version 1.0
@@ -62724,7 +67623,7 @@ runfiles size=11
texmf-dist/tex/latex/factura/factura.cls
texmf-dist/tex/latex/factura/factura.def
catalogue-ctan /macros/latex/contrib/factura
-catalogue-date 2013-05-07 12:36:07 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.0
@@ -62751,7 +67650,7 @@ srcfiles size=6
runfiles size=2
texmf-dist/tex/xelatex/facture/facture.cls
catalogue-ctan /macros/xetex/latex/facture
-catalogue-date 2012-05-08 12:20:07 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license other-free
catalogue-version 1.0
@@ -62816,7 +67715,7 @@ runfiles size=9
texmf-dist/tex/latex/fancyhdr/fancyhdr.sty
texmf-dist/tex/latex/fancyhdr/fancyheadings.sty
catalogue-ctan /macros/latex/contrib/fancyhdr
-catalogue-date 2012-05-01 16:59:50 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 3.1
@@ -62832,7 +67731,7 @@ docfiles size=114
texmf-dist/doc/latex/fancyhdr-it/itfancyhdr.pdf details="The document itself"
texmf-dist/doc/latex/fancyhdr-it/itfancyhdr.tex
catalogue-ctan /info/translations/fancyhdr/it
-catalogue-date 2012-04-17 16:58:00 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
name fancynum
@@ -62881,7 +67780,7 @@ srcfiles size=9
runfiles size=2
texmf-dist/tex/latex/fancypar/fancypar.sty
catalogue-ctan /macros/latex/contrib/fancypar
-catalogue-date 2012-04-17 16:58:00 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.1
@@ -62924,7 +67823,7 @@ srcfiles size=4
runfiles size=1
texmf-dist/tex/latex/fancytabs/fancytabs.sty
catalogue-ctan /macros/latex/contrib/fancytabs
-catalogue-date 2012-09-17 18:38:18 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.8
@@ -62971,7 +67870,7 @@ runfiles size=10
texmf-dist/tex/latex/fancytooltips/fancytipmark.svg
texmf-dist/tex/latex/fancytooltips/fancytooltips.sty
catalogue-ctan /macros/latex/contrib/fancytooltips
-catalogue-date 2012-11-14 17:49:35 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.2
catalogue-version 1.8
@@ -63008,6 +67907,28 @@ catalogue-date 2011-10-06 15:38:07 +0200
catalogue-license lppl
catalogue-version 2.8
+name fandol
+category Package
+revision 31345
+shortdesc Four basic fonts for Chinese typesetting.
+longdesc Fandol fonts designed for Chinese typesetting. The current
+longdesc version contains four styles: Song, Hei, Kai, Fang. All fonts
+longdesc are in OpenType format.
+docfiles size=10
+ texmf-dist/doc/fonts/fandol/COPYING
+ texmf-dist/doc/fonts/fandol/README details="Readme"
+runfiles size=7551
+ texmf-dist/fonts/opentype/public/fandol/FandolFang-Regular.otf
+ texmf-dist/fonts/opentype/public/fandol/FandolHei-Bold.otf
+ texmf-dist/fonts/opentype/public/fandol/FandolHei-Regular.otf
+ texmf-dist/fonts/opentype/public/fandol/FandolKai-Regular.otf
+ texmf-dist/fonts/opentype/public/fandol/FandolSong-Bold.otf
+ texmf-dist/fonts/opentype/public/fandol/FandolSong-Regular.otf
+catalogue-ctan /fonts/fandol
+catalogue-date 2014-04-26 19:51:19 +0200
+catalogue-license gpl
+catalogue-version 0.2
+
name fast-diagram
category Package
revision 29264
@@ -63017,7 +67938,7 @@ longdesc using TikZ/pgf tools. FAST diagrams are useful for functional
longdesc analysis techniques in design methods.
docfiles size=405
texmf-dist/doc/latex/fast-diagram/README details="Readme" language="fr"
- texmf-dist/doc/latex/fast-diagram/help.pdf details="Package documentation"
+ texmf-dist/doc/latex/fast-diagram/help.pdf details="Package documentation" language="fr"
texmf-dist/doc/latex/fast-diagram/help.tex
texmf-dist/doc/latex/fast-diagram/sources_help/commandes.tex
texmf-dist/doc/latex/fast-diagram/sources_help/exemple.tex
@@ -63039,10 +67960,468 @@ docfiles size=405
runfiles size=5
texmf-dist/tex/latex/fast-diagram/fast-diagram.sty
catalogue-ctan /graphics/pgf/contrib/fast-diagram
-catalogue-date 2013-03-04 17:24:04 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.1
+name fbb
+category Package
+revision 32807
+shortdesc A free Bembo-like font.
+longdesc The package provides a Bembo-like font package based on Cardo
+longdesc but with many modifications, adding Bold Italic, small caps in
+longdesc all styles, six figure choices in all styles, updated kerning
+longdesc tables, added figure tables and corrected f-ligatures. Both
+longdesc OpenType and Adobe Type 1 versions are provided; all necessary
+longdesc support files are provided. The font works well with
+longdesc newtxmath's libertine option.
+execute addMap fbb.map
+docfiles size=134
+ texmf-dist/doc/fonts/fbb/OFL.txt
+ texmf-dist/doc/fonts/fbb/README details="Readme"
+ texmf-dist/doc/fonts/fbb/fbb-doc.pdf
+ texmf-dist/doc/fonts/fbb/fbb-doc.tex
+runfiles size=1502
+ texmf-dist/fonts/enc/dvips/fbb/fbb_2qutta.enc
+ texmf-dist/fonts/enc/dvips/fbb/fbb_2xteu2.enc
+ texmf-dist/fonts/enc/dvips/fbb/fbb_3gezys.enc
+ texmf-dist/fonts/enc/dvips/fbb/fbb_3jy3vu.enc
+ texmf-dist/fonts/enc/dvips/fbb/fbb_3pafo2.enc
+ texmf-dist/fonts/enc/dvips/fbb/fbb_3q7523.enc
+ texmf-dist/fonts/enc/dvips/fbb/fbb_3szmnl.enc
+ texmf-dist/fonts/enc/dvips/fbb/fbb_3t72qi.enc
+ texmf-dist/fonts/enc/dvips/fbb/fbb_47nzug.enc
+ texmf-dist/fonts/enc/dvips/fbb/fbb_4eykqf.enc
+ texmf-dist/fonts/enc/dvips/fbb/fbb_4fm2lh.enc
+ texmf-dist/fonts/enc/dvips/fbb/fbb_4phrex.enc
+ texmf-dist/fonts/enc/dvips/fbb/fbb_54mbhb.enc
+ texmf-dist/fonts/enc/dvips/fbb/fbb_5g5giq.enc
+ texmf-dist/fonts/enc/dvips/fbb/fbb_5kfdlm.enc
+ texmf-dist/fonts/enc/dvips/fbb/fbb_5yuftp.enc
+ texmf-dist/fonts/enc/dvips/fbb/fbb_646rxv.enc
+ texmf-dist/fonts/enc/dvips/fbb/fbb_6jg7cq.enc
+ texmf-dist/fonts/enc/dvips/fbb/fbb_7ftbhc.enc
+ texmf-dist/fonts/enc/dvips/fbb/fbb_bbqv4h.enc
+ texmf-dist/fonts/enc/dvips/fbb/fbb_bjcd27.enc
+ texmf-dist/fonts/enc/dvips/fbb/fbb_bwe6jm.enc
+ texmf-dist/fonts/enc/dvips/fbb/fbb_cglacz.enc
+ texmf-dist/fonts/enc/dvips/fbb/fbb_ciz6qs.enc
+ texmf-dist/fonts/enc/dvips/fbb/fbb_dfjaoq.enc
+ texmf-dist/fonts/enc/dvips/fbb/fbb_dfzymh.enc
+ texmf-dist/fonts/enc/dvips/fbb/fbb_dli7xt.enc
+ texmf-dist/fonts/enc/dvips/fbb/fbb_do4apa.enc
+ texmf-dist/fonts/enc/dvips/fbb/fbb_dppuce.enc
+ texmf-dist/fonts/enc/dvips/fbb/fbb_dzuzoo.enc
+ texmf-dist/fonts/enc/dvips/fbb/fbb_eaddwb.enc
+ texmf-dist/fonts/enc/dvips/fbb/fbb_eie4y7.enc
+ texmf-dist/fonts/enc/dvips/fbb/fbb_fefik6.enc
+ texmf-dist/fonts/enc/dvips/fbb/fbb_fpos6t.enc
+ texmf-dist/fonts/enc/dvips/fbb/fbb_gia3f7.enc
+ texmf-dist/fonts/enc/dvips/fbb/fbb_gti7xr.enc
+ texmf-dist/fonts/enc/dvips/fbb/fbb_h4yzgv.enc
+ texmf-dist/fonts/enc/dvips/fbb/fbb_hjhis6.enc
+ texmf-dist/fonts/enc/dvips/fbb/fbb_hyfmfg.enc
+ texmf-dist/fonts/enc/dvips/fbb/fbb_icb62t.enc
+ texmf-dist/fonts/enc/dvips/fbb/fbb_ikoi5j.enc
+ texmf-dist/fonts/enc/dvips/fbb/fbb_inh3kf.enc
+ texmf-dist/fonts/enc/dvips/fbb/fbb_iqrulf.enc
+ texmf-dist/fonts/enc/dvips/fbb/fbb_j2glsr.enc
+ texmf-dist/fonts/enc/dvips/fbb/fbb_jeovrq.enc
+ texmf-dist/fonts/enc/dvips/fbb/fbb_k4t5oa.enc
+ texmf-dist/fonts/enc/dvips/fbb/fbb_ksln4y.enc
+ texmf-dist/fonts/enc/dvips/fbb/fbb_lahflm.enc
+ texmf-dist/fonts/enc/dvips/fbb/fbb_ms7h4m.enc
+ texmf-dist/fonts/enc/dvips/fbb/fbb_nakqlt.enc
+ texmf-dist/fonts/enc/dvips/fbb/fbb_p2khiw.enc
+ texmf-dist/fonts/enc/dvips/fbb/fbb_p6sgcp.enc
+ texmf-dist/fonts/enc/dvips/fbb/fbb_pjzzzk.enc
+ texmf-dist/fonts/enc/dvips/fbb/fbb_pqcug3.enc
+ texmf-dist/fonts/enc/dvips/fbb/fbb_qxzlqe.enc
+ texmf-dist/fonts/enc/dvips/fbb/fbb_qyua2i.enc
+ texmf-dist/fonts/enc/dvips/fbb/fbb_r5yodg.enc
+ texmf-dist/fonts/enc/dvips/fbb/fbb_symdpm.enc
+ texmf-dist/fonts/enc/dvips/fbb/fbb_syrpbc.enc
+ texmf-dist/fonts/enc/dvips/fbb/fbb_thr2ik.enc
+ texmf-dist/fonts/enc/dvips/fbb/fbb_tizue6.enc
+ texmf-dist/fonts/enc/dvips/fbb/fbb_tpadeo.enc
+ texmf-dist/fonts/enc/dvips/fbb/fbb_u3ego5.enc
+ texmf-dist/fonts/enc/dvips/fbb/fbb_uqncc5.enc
+ texmf-dist/fonts/enc/dvips/fbb/fbb_vkojsi.enc
+ texmf-dist/fonts/enc/dvips/fbb/fbb_vvs2t7.enc
+ texmf-dist/fonts/enc/dvips/fbb/fbb_w6cgkc.enc
+ texmf-dist/fonts/enc/dvips/fbb/fbb_wmfgc4.enc
+ texmf-dist/fonts/enc/dvips/fbb/fbb_wmijbz.enc
+ texmf-dist/fonts/enc/dvips/fbb/fbb_xmsf7g.enc
+ texmf-dist/fonts/enc/dvips/fbb/fbb_xoiwwh.enc
+ texmf-dist/fonts/enc/dvips/fbb/fbb_yr6epv.enc
+ texmf-dist/fonts/enc/dvips/fbb/fbb_zac64m.enc
+ texmf-dist/fonts/enc/dvips/fbb/fbb_zxsywv.enc
+ texmf-dist/fonts/map/dvips/fbb/fbb.map
+ texmf-dist/fonts/opentype/public/fbb/fbb-Bold.otf
+ texmf-dist/fonts/opentype/public/fbb/fbb-BoldItalic.otf
+ texmf-dist/fonts/opentype/public/fbb/fbb-Italic.otf
+ texmf-dist/fonts/opentype/public/fbb/fbb-Regular.otf
+ texmf-dist/fonts/tfm/public/fbb/fbb-Bold-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Bold-lf-ly1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Bold-lf-ot1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Bold-lf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Bold-lf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Bold-lf-sc-ot1--base.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Bold-lf-sc-ot1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Bold-lf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Bold-lf-sc-t1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Bold-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Bold-lf-t1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Bold-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Bold-lf-ts1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Bold-osf-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Bold-osf-ly1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Bold-osf-ot1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Bold-osf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Bold-osf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Bold-osf-sc-ot1--base.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Bold-osf-sc-ot1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Bold-osf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Bold-osf-sc-t1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Bold-osf-t1--base.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Bold-osf-t1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Bold-osf-ts1--base.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Bold-osf-ts1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Bold-sup-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Bold-sup-ly1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Bold-sup-ot1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Bold-sup-t1--base.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Bold-sup-t1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Bold-tlf-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Bold-tlf-ly1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Bold-tlf-ot1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Bold-tlf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Bold-tlf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Bold-tlf-sc-ot1--base.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Bold-tlf-sc-ot1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Bold-tlf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Bold-tlf-sc-t1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Bold-tlf-t1--base.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Bold-tlf-t1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Bold-tlf-ts1--base.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Bold-tlf-ts1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Bold-tosf-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Bold-tosf-ly1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Bold-tosf-ot1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Bold-tosf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Bold-tosf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Bold-tosf-sc-ot1--base.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Bold-tosf-sc-ot1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Bold-tosf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Bold-tosf-sc-t1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Bold-tosf-t1--base.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Bold-tosf-t1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Bold-tosf-ts1--base.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Bold-tosf-ts1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-BoldItalic-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-BoldItalic-lf-ly1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-BoldItalic-lf-ot1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-BoldItalic-lf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-BoldItalic-lf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-BoldItalic-lf-sc-ot1--base.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-BoldItalic-lf-sc-ot1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-BoldItalic-lf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-BoldItalic-lf-sc-t1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-BoldItalic-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-BoldItalic-lf-t1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-BoldItalic-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-BoldItalic-lf-ts1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-BoldItalic-osf-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-BoldItalic-osf-ly1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-BoldItalic-osf-ot1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-BoldItalic-osf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-BoldItalic-osf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-BoldItalic-osf-sc-ot1--base.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-BoldItalic-osf-sc-ot1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-BoldItalic-osf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-BoldItalic-osf-sc-t1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-BoldItalic-osf-t1--base.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-BoldItalic-osf-t1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-BoldItalic-osf-ts1--base.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-BoldItalic-osf-ts1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-BoldItalic-sup-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-BoldItalic-sup-ly1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-BoldItalic-sup-ot1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-BoldItalic-sup-t1--base.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-BoldItalic-sup-t1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-BoldItalic-tlf-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-BoldItalic-tlf-ly1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-BoldItalic-tlf-ot1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-BoldItalic-tlf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-BoldItalic-tlf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-BoldItalic-tlf-sc-ot1--base.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-BoldItalic-tlf-sc-ot1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-BoldItalic-tlf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-BoldItalic-tlf-sc-t1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-BoldItalic-tlf-t1--base.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-BoldItalic-tlf-t1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-BoldItalic-tlf-ts1--base.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-BoldItalic-tlf-ts1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-BoldItalic-tosf-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-BoldItalic-tosf-ly1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-BoldItalic-tosf-ot1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-BoldItalic-tosf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-BoldItalic-tosf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-BoldItalic-tosf-sc-ot1--base.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-BoldItalic-tosf-sc-ot1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-BoldItalic-tosf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-BoldItalic-tosf-sc-t1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-BoldItalic-tosf-t1--base.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-BoldItalic-tosf-t1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-BoldItalic-tosf-ts1--base.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-BoldItalic-tosf-ts1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Italic-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Italic-lf-ly1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Italic-lf-ot1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Italic-lf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Italic-lf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Italic-lf-sc-ot1--base.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Italic-lf-sc-ot1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Italic-lf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Italic-lf-sc-t1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Italic-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Italic-lf-t1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Italic-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Italic-lf-ts1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Italic-osf-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Italic-osf-ly1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Italic-osf-ot1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Italic-osf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Italic-osf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Italic-osf-sc-ot1--base.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Italic-osf-sc-ot1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Italic-osf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Italic-osf-sc-t1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Italic-osf-t1--base.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Italic-osf-t1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Italic-osf-ts1--base.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Italic-osf-ts1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Italic-sup-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Italic-sup-ly1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Italic-sup-ot1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Italic-sup-t1--base.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Italic-sup-t1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Italic-tlf-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Italic-tlf-ly1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Italic-tlf-ot1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Italic-tlf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Italic-tlf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Italic-tlf-sc-ot1--base.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Italic-tlf-sc-ot1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Italic-tlf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Italic-tlf-sc-t1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Italic-tlf-t1--base.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Italic-tlf-t1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Italic-tlf-ts1--base.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Italic-tlf-ts1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Italic-tosf-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Italic-tosf-ly1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Italic-tosf-ot1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Italic-tosf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Italic-tosf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Italic-tosf-sc-ot1--base.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Italic-tosf-sc-ot1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Italic-tosf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Italic-tosf-sc-t1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Italic-tosf-t1--base.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Italic-tosf-t1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Italic-tosf-ts1--base.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Italic-tosf-ts1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Regular-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Regular-lf-ly1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Regular-lf-ot1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Regular-lf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Regular-lf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Regular-lf-sc-ot1--base.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Regular-lf-sc-ot1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Regular-lf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Regular-lf-sc-t1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Regular-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Regular-lf-t1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Regular-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Regular-lf-ts1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Regular-osf-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Regular-osf-ly1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Regular-osf-ot1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Regular-osf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Regular-osf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Regular-osf-sc-ot1--base.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Regular-osf-sc-ot1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Regular-osf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Regular-osf-sc-t1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Regular-osf-t1--base.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Regular-osf-t1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Regular-osf-ts1--base.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Regular-osf-ts1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Regular-sup-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Regular-sup-ly1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Regular-sup-ot1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Regular-sup-t1--base.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Regular-sup-t1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Regular-tlf-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Regular-tlf-ly1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Regular-tlf-ot1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Regular-tlf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Regular-tlf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Regular-tlf-sc-ot1--base.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Regular-tlf-sc-ot1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Regular-tlf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Regular-tlf-sc-t1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Regular-tlf-t1--base.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Regular-tlf-t1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Regular-tlf-ts1--base.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Regular-tlf-ts1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Regular-tosf-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Regular-tosf-ly1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Regular-tosf-ot1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Regular-tosf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Regular-tosf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Regular-tosf-sc-ot1--base.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Regular-tosf-sc-ot1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Regular-tosf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Regular-tosf-sc-t1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Regular-tosf-t1--base.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Regular-tosf-t1.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Regular-tosf-ts1--base.tfm
+ texmf-dist/fonts/tfm/public/fbb/fbb-Regular-tosf-ts1.tfm
+ texmf-dist/fonts/type1/public/fbb/fbb-Bold.pfb
+ texmf-dist/fonts/type1/public/fbb/fbb-BoldItalic.pfb
+ texmf-dist/fonts/type1/public/fbb/fbb-Italic.pfb
+ texmf-dist/fonts/type1/public/fbb/fbb-Regular.pfb
+ texmf-dist/fonts/vf/public/fbb/fbb-Bold-lf-ly1.vf
+ texmf-dist/fonts/vf/public/fbb/fbb-Bold-lf-sc-ly1.vf
+ texmf-dist/fonts/vf/public/fbb/fbb-Bold-lf-sc-ot1.vf
+ texmf-dist/fonts/vf/public/fbb/fbb-Bold-lf-sc-t1.vf
+ texmf-dist/fonts/vf/public/fbb/fbb-Bold-lf-t1.vf
+ texmf-dist/fonts/vf/public/fbb/fbb-Bold-lf-ts1.vf
+ texmf-dist/fonts/vf/public/fbb/fbb-Bold-osf-ly1.vf
+ texmf-dist/fonts/vf/public/fbb/fbb-Bold-osf-sc-ly1.vf
+ texmf-dist/fonts/vf/public/fbb/fbb-Bold-osf-sc-ot1.vf
+ texmf-dist/fonts/vf/public/fbb/fbb-Bold-osf-sc-t1.vf
+ texmf-dist/fonts/vf/public/fbb/fbb-Bold-osf-t1.vf
+ texmf-dist/fonts/vf/public/fbb/fbb-Bold-osf-ts1.vf
+ texmf-dist/fonts/vf/public/fbb/fbb-Bold-sup-ly1.vf
+ texmf-dist/fonts/vf/public/fbb/fbb-Bold-sup-t1.vf
+ texmf-dist/fonts/vf/public/fbb/fbb-Bold-tlf-ly1.vf
+ texmf-dist/fonts/vf/public/fbb/fbb-Bold-tlf-sc-ly1.vf
+ texmf-dist/fonts/vf/public/fbb/fbb-Bold-tlf-sc-ot1.vf
+ texmf-dist/fonts/vf/public/fbb/fbb-Bold-tlf-sc-t1.vf
+ texmf-dist/fonts/vf/public/fbb/fbb-Bold-tlf-t1.vf
+ texmf-dist/fonts/vf/public/fbb/fbb-Bold-tlf-ts1.vf
+ texmf-dist/fonts/vf/public/fbb/fbb-Bold-tosf-ly1.vf
+ texmf-dist/fonts/vf/public/fbb/fbb-Bold-tosf-sc-ly1.vf
+ texmf-dist/fonts/vf/public/fbb/fbb-Bold-tosf-sc-ot1.vf
+ texmf-dist/fonts/vf/public/fbb/fbb-Bold-tosf-sc-t1.vf
+ texmf-dist/fonts/vf/public/fbb/fbb-Bold-tosf-t1.vf
+ texmf-dist/fonts/vf/public/fbb/fbb-Bold-tosf-ts1.vf
+ texmf-dist/fonts/vf/public/fbb/fbb-BoldItalic-lf-ly1.vf
+ texmf-dist/fonts/vf/public/fbb/fbb-BoldItalic-lf-sc-ly1.vf
+ texmf-dist/fonts/vf/public/fbb/fbb-BoldItalic-lf-sc-ot1.vf
+ texmf-dist/fonts/vf/public/fbb/fbb-BoldItalic-lf-sc-t1.vf
+ texmf-dist/fonts/vf/public/fbb/fbb-BoldItalic-lf-t1.vf
+ texmf-dist/fonts/vf/public/fbb/fbb-BoldItalic-lf-ts1.vf
+ texmf-dist/fonts/vf/public/fbb/fbb-BoldItalic-osf-ly1.vf
+ texmf-dist/fonts/vf/public/fbb/fbb-BoldItalic-osf-sc-ly1.vf
+ texmf-dist/fonts/vf/public/fbb/fbb-BoldItalic-osf-sc-ot1.vf
+ texmf-dist/fonts/vf/public/fbb/fbb-BoldItalic-osf-sc-t1.vf
+ texmf-dist/fonts/vf/public/fbb/fbb-BoldItalic-osf-t1.vf
+ texmf-dist/fonts/vf/public/fbb/fbb-BoldItalic-osf-ts1.vf
+ texmf-dist/fonts/vf/public/fbb/fbb-BoldItalic-sup-ly1.vf
+ texmf-dist/fonts/vf/public/fbb/fbb-BoldItalic-sup-t1.vf
+ texmf-dist/fonts/vf/public/fbb/fbb-BoldItalic-tlf-ly1.vf
+ texmf-dist/fonts/vf/public/fbb/fbb-BoldItalic-tlf-sc-ly1.vf
+ texmf-dist/fonts/vf/public/fbb/fbb-BoldItalic-tlf-sc-ot1.vf
+ texmf-dist/fonts/vf/public/fbb/fbb-BoldItalic-tlf-sc-t1.vf
+ texmf-dist/fonts/vf/public/fbb/fbb-BoldItalic-tlf-t1.vf
+ texmf-dist/fonts/vf/public/fbb/fbb-BoldItalic-tlf-ts1.vf
+ texmf-dist/fonts/vf/public/fbb/fbb-BoldItalic-tosf-ly1.vf
+ texmf-dist/fonts/vf/public/fbb/fbb-BoldItalic-tosf-sc-ly1.vf
+ texmf-dist/fonts/vf/public/fbb/fbb-BoldItalic-tosf-sc-ot1.vf
+ texmf-dist/fonts/vf/public/fbb/fbb-BoldItalic-tosf-sc-t1.vf
+ texmf-dist/fonts/vf/public/fbb/fbb-BoldItalic-tosf-t1.vf
+ texmf-dist/fonts/vf/public/fbb/fbb-BoldItalic-tosf-ts1.vf
+ texmf-dist/fonts/vf/public/fbb/fbb-Italic-lf-ly1.vf
+ texmf-dist/fonts/vf/public/fbb/fbb-Italic-lf-sc-ly1.vf
+ texmf-dist/fonts/vf/public/fbb/fbb-Italic-lf-sc-ot1.vf
+ texmf-dist/fonts/vf/public/fbb/fbb-Italic-lf-sc-t1.vf
+ texmf-dist/fonts/vf/public/fbb/fbb-Italic-lf-t1.vf
+ texmf-dist/fonts/vf/public/fbb/fbb-Italic-lf-ts1.vf
+ texmf-dist/fonts/vf/public/fbb/fbb-Italic-osf-ly1.vf
+ texmf-dist/fonts/vf/public/fbb/fbb-Italic-osf-sc-ly1.vf
+ texmf-dist/fonts/vf/public/fbb/fbb-Italic-osf-sc-ot1.vf
+ texmf-dist/fonts/vf/public/fbb/fbb-Italic-osf-sc-t1.vf
+ texmf-dist/fonts/vf/public/fbb/fbb-Italic-osf-t1.vf
+ texmf-dist/fonts/vf/public/fbb/fbb-Italic-osf-ts1.vf
+ texmf-dist/fonts/vf/public/fbb/fbb-Italic-sup-ly1.vf
+ texmf-dist/fonts/vf/public/fbb/fbb-Italic-sup-t1.vf
+ texmf-dist/fonts/vf/public/fbb/fbb-Italic-tlf-ly1.vf
+ texmf-dist/fonts/vf/public/fbb/fbb-Italic-tlf-sc-ly1.vf
+ texmf-dist/fonts/vf/public/fbb/fbb-Italic-tlf-sc-ot1.vf
+ texmf-dist/fonts/vf/public/fbb/fbb-Italic-tlf-sc-t1.vf
+ texmf-dist/fonts/vf/public/fbb/fbb-Italic-tlf-t1.vf
+ texmf-dist/fonts/vf/public/fbb/fbb-Italic-tlf-ts1.vf
+ texmf-dist/fonts/vf/public/fbb/fbb-Italic-tosf-ly1.vf
+ texmf-dist/fonts/vf/public/fbb/fbb-Italic-tosf-sc-ly1.vf
+ texmf-dist/fonts/vf/public/fbb/fbb-Italic-tosf-sc-ot1.vf
+ texmf-dist/fonts/vf/public/fbb/fbb-Italic-tosf-sc-t1.vf
+ texmf-dist/fonts/vf/public/fbb/fbb-Italic-tosf-t1.vf
+ texmf-dist/fonts/vf/public/fbb/fbb-Italic-tosf-ts1.vf
+ texmf-dist/fonts/vf/public/fbb/fbb-Regular-lf-ly1.vf
+ texmf-dist/fonts/vf/public/fbb/fbb-Regular-lf-sc-ly1.vf
+ texmf-dist/fonts/vf/public/fbb/fbb-Regular-lf-sc-ot1.vf
+ texmf-dist/fonts/vf/public/fbb/fbb-Regular-lf-sc-t1.vf
+ texmf-dist/fonts/vf/public/fbb/fbb-Regular-lf-t1.vf
+ texmf-dist/fonts/vf/public/fbb/fbb-Regular-lf-ts1.vf
+ texmf-dist/fonts/vf/public/fbb/fbb-Regular-osf-ly1.vf
+ texmf-dist/fonts/vf/public/fbb/fbb-Regular-osf-sc-ly1.vf
+ texmf-dist/fonts/vf/public/fbb/fbb-Regular-osf-sc-ot1.vf
+ texmf-dist/fonts/vf/public/fbb/fbb-Regular-osf-sc-t1.vf
+ texmf-dist/fonts/vf/public/fbb/fbb-Regular-osf-t1.vf
+ texmf-dist/fonts/vf/public/fbb/fbb-Regular-osf-ts1.vf
+ texmf-dist/fonts/vf/public/fbb/fbb-Regular-sup-ly1.vf
+ texmf-dist/fonts/vf/public/fbb/fbb-Regular-sup-t1.vf
+ texmf-dist/fonts/vf/public/fbb/fbb-Regular-tlf-ly1.vf
+ texmf-dist/fonts/vf/public/fbb/fbb-Regular-tlf-sc-ly1.vf
+ texmf-dist/fonts/vf/public/fbb/fbb-Regular-tlf-sc-ot1.vf
+ texmf-dist/fonts/vf/public/fbb/fbb-Regular-tlf-sc-t1.vf
+ texmf-dist/fonts/vf/public/fbb/fbb-Regular-tlf-t1.vf
+ texmf-dist/fonts/vf/public/fbb/fbb-Regular-tlf-ts1.vf
+ texmf-dist/fonts/vf/public/fbb/fbb-Regular-tosf-ly1.vf
+ texmf-dist/fonts/vf/public/fbb/fbb-Regular-tosf-sc-ly1.vf
+ texmf-dist/fonts/vf/public/fbb/fbb-Regular-tosf-sc-ot1.vf
+ texmf-dist/fonts/vf/public/fbb/fbb-Regular-tosf-sc-t1.vf
+ texmf-dist/fonts/vf/public/fbb/fbb-Regular-tosf-t1.vf
+ texmf-dist/fonts/vf/public/fbb/fbb-Regular-tosf-ts1.vf
+ texmf-dist/tex/latex/fbb/LY1fbb-LF.fd
+ texmf-dist/tex/latex/fbb/LY1fbb-OsF.fd
+ texmf-dist/tex/latex/fbb/LY1fbb-Sup.fd
+ texmf-dist/tex/latex/fbb/LY1fbb-TLF.fd
+ texmf-dist/tex/latex/fbb/LY1fbb-TOsF.fd
+ texmf-dist/tex/latex/fbb/OT1fbb-LF.fd
+ texmf-dist/tex/latex/fbb/OT1fbb-OsF.fd
+ texmf-dist/tex/latex/fbb/OT1fbb-Sup.fd
+ texmf-dist/tex/latex/fbb/OT1fbb-TLF.fd
+ texmf-dist/tex/latex/fbb/OT1fbb-TOsF.fd
+ texmf-dist/tex/latex/fbb/T1fbb-LF.fd
+ texmf-dist/tex/latex/fbb/T1fbb-OsF.fd
+ texmf-dist/tex/latex/fbb/T1fbb-Sup.fd
+ texmf-dist/tex/latex/fbb/T1fbb-TLF.fd
+ texmf-dist/tex/latex/fbb/T1fbb-TOsF.fd
+ texmf-dist/tex/latex/fbb/TS1fbb-LF.fd
+ texmf-dist/tex/latex/fbb/TS1fbb-OsF.fd
+ texmf-dist/tex/latex/fbb/TS1fbb-TLF.fd
+ texmf-dist/tex/latex/fbb/TS1fbb-TOsF.fd
+ texmf-dist/tex/latex/fbb/fbb.sty
+catalogue-ctan /fonts/fbb
+catalogue-date 2014-04-26 19:51:19 +0200
+catalogue-license ofl
+catalogue-version 1.04
+
name fbithesis
category Package
revision 21340
@@ -63078,31 +68457,32 @@ category Package
revision 15878
shortdesc BibTeX style for Frontiers in Bioscience.
longdesc A BibTeX style file made with custom-bib to fit Frontiers in
-longdesc Bioscience requirements: - all authors, no et al, full author
-longdesc names, initials abbreviated; - only abbreviated journal name
-longdesc italicised, no abbreviation dots; - only year, no month, at end
-longdesc of reference; and - DOI excluded, ISSN excluded.
+longdesc Bioscience requirements: all authors, no et al, full author
+longdesc names, initials abbreviated; only abbreviated journal name
+longdesc italicised, no abbreviation dots; only year, no month, at end
+longdesc of reference; and DOI excluded, ISSN excluded.
runfiles size=7
texmf-dist/bibtex/bst/fbs/fbs.bst
catalogue-ctan /biblio/bibtex/contrib/misc/fbs.bst
-catalogue-date 2012-07-12 00:17:34 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
name fc
category Package
-revision 15878
+revision 32796
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=24
+docfiles size=27
texmf-dist/doc/fonts/fc/fc.bug
texmf-dist/doc/fonts/fc/fc.rme
+ texmf-dist/doc/fonts/fc/fclfont.sty_old
texmf-dist/doc/fonts/fc/fctugbot.tex
texmf-dist/doc/fonts/fc/fontdef.fc_old
texmf-dist/doc/fonts/fc/licence.gnu
-runfiles size=594
+runfiles size=591
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
@@ -63582,7 +68962,6 @@ runfiles size=594
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
@@ -63591,7 +68970,7 @@ runfiles size=594
texmf-dist/tex/latex/fc/t4fcr.fd
texmf-dist/tex/latex/fc/t4phonet.sty
catalogue-ctan /fonts/jknappen/fc
-catalogue-date 2012-05-29 13:27:24 +0200
+catalogue-date 2014-04-26 19:51:19 +0200
catalogue-license gpl2
catalogue-version 1.4
@@ -63611,7 +68990,7 @@ srcfiles size=22
runfiles size=9
texmf-dist/tex/latex/fcltxdoc/fcltxdoc.sty
catalogue-ctan /macros/latex/contrib/fcltxdoc
-catalogue-date 2012-02-24 11:32:36 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.0
@@ -63730,28 +69109,37 @@ runfiles size=471
texmf-dist/fonts/type1/public/fdsymbol/FdSymbolF-Regular.pfb
texmf-dist/tex/latex/fdsymbol/fdsymbol.sty
catalogue-ctan /fonts/fdsymbol
-catalogue-date 2012-05-29 12:56:38 +0200
+catalogue-date 2014-04-26 20:03:33 +0200
catalogue-license ofl
catalogue-version 0.8
name featpost
category Package
-revision 29349
+revision 31346
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=4405
- texmf-dist/doc/metapost/featpost/COMPILE.sh
+docfiles size=5445
+ texmf-dist/doc/metapost/featpost/MPexamples.html
texmf-dist/doc/metapost/featpost/README
- texmf-dist/doc/metapost/featpost/doc/Exemplifier.ps.bz2
- texmf-dist/doc/metapost/featpost/doc/featpostbeamer.pdf
+ texmf-dist/doc/metapost/featpost/bash/COMPILE.sh
+ texmf-dist/doc/metapost/featpost/bash/dvipngproof.sh
+ texmf-dist/doc/metapost/featpost/bash/laproof.sh
+ texmf-dist/doc/metapost/featpost/bash/makehtmlindex.sh
+ texmf-dist/doc/metapost/featpost/bash/pdflatexproof.sh
+ texmf-dist/doc/metapost/featpost/bash/pngmaker.sh
+ texmf-dist/doc/metapost/featpost/doc/Exemplifier.pdf
+ texmf-dist/doc/metapost/featpost/doc/Zpravodaj2009-4.pdf
texmf-dist/doc/metapost/featpost/doc/featpostbeamer.tex
texmf-dist/doc/metapost/featpost/doc/featpostdocsource.tex
texmf-dist/doc/metapost/featpost/doc/featpostmanual.pdf details="Manual"
texmf-dist/doc/metapost/featpost/doc/featpostmanual.tex
+ texmf-dist/doc/metapost/featpost/doc/jdbug.png
texmf-dist/doc/metapost/featpost/doc/lastfiguretest.pdf
texmf-dist/doc/metapost/featpost/doc/lastfiguretest.tex
+ texmf-dist/doc/metapost/featpost/doc/letterfor3Dand4D.pdf
+ texmf-dist/doc/metapost/featpost/doc/letterfor3Dand4D.tex
texmf-dist/doc/metapost/featpost/doc/metapostpropaganda.pdf details="Promotional stuff"
texmf-dist/doc/metapost/featpost/doc/metapostpropaganda.tex
texmf-dist/doc/metapost/featpost/doc/metapostpropagandafiles/3.eps
@@ -63762,7 +69150,9 @@ docfiles size=4405
texmf-dist/doc/metapost/featpost/doc/metapostpropagandafiles/Diagram1.mp
texmf-dist/doc/metapost/featpost/doc/metapostpropagandafiles/KnuthCollection.jpg
texmf-dist/doc/metapost/featpost/doc/metapostpropagandafiles/dia.png
+ texmf-dist/doc/metapost/featpost/doc/metapostpropagandafiles/fekslatexmp.1
texmf-dist/doc/metapost/featpost/doc/metapostpropagandafiles/fekslatexmp.mp
+ texmf-dist/doc/metapost/featpost/doc/metapostpropagandafiles/intersection2D.1
texmf-dist/doc/metapost/featpost/doc/metapostpropagandafiles/intersection2D.mp
texmf-dist/doc/metapost/featpost/doc/metapostpropagandafiles/metapostpropaganda.png
texmf-dist/doc/metapost/featpost/doc/metapostpropagandafiles/minimal-1.mps
@@ -63773,23 +69163,45 @@ docfiles size=4405
texmf-dist/doc/metapost/featpost/doc/metapostpropagandafiles/minimal.png
texmf-dist/doc/metapost/featpost/doc/metapostpropagandafiles/pifpaf.jpeg
texmf-dist/doc/metapost/featpost/doc/metapostpropagandafiles/pifpafphoto.jpg
+ texmf-dist/doc/metapost/featpost/doc/metapostpropagandafiles/pifpafpropaganda.0
+ texmf-dist/doc/metapost/featpost/doc/metapostpropagandafiles/pifpafpropaganda.1
+ texmf-dist/doc/metapost/featpost/doc/metapostpropagandafiles/pifpafpropaganda.10
+ texmf-dist/doc/metapost/featpost/doc/metapostpropagandafiles/pifpafpropaganda.11
+ texmf-dist/doc/metapost/featpost/doc/metapostpropagandafiles/pifpafpropaganda.12
+ texmf-dist/doc/metapost/featpost/doc/metapostpropagandafiles/pifpafpropaganda.13
+ texmf-dist/doc/metapost/featpost/doc/metapostpropagandafiles/pifpafpropaganda.14
+ texmf-dist/doc/metapost/featpost/doc/metapostpropagandafiles/pifpafpropaganda.15
+ texmf-dist/doc/metapost/featpost/doc/metapostpropagandafiles/pifpafpropaganda.2
+ texmf-dist/doc/metapost/featpost/doc/metapostpropagandafiles/pifpafpropaganda.3
+ texmf-dist/doc/metapost/featpost/doc/metapostpropagandafiles/pifpafpropaganda.4
+ texmf-dist/doc/metapost/featpost/doc/metapostpropagandafiles/pifpafpropaganda.5
+ texmf-dist/doc/metapost/featpost/doc/metapostpropagandafiles/pifpafpropaganda.6
+ texmf-dist/doc/metapost/featpost/doc/metapostpropagandafiles/pifpafpropaganda.7
+ texmf-dist/doc/metapost/featpost/doc/metapostpropagandafiles/pifpafpropaganda.8
+ texmf-dist/doc/metapost/featpost/doc/metapostpropagandafiles/pifpafpropaganda.9
texmf-dist/doc/metapost/featpost/doc/metapostpropagandafiles/pifpafpropaganda.mp
+ texmf-dist/doc/metapost/featpost/doc/metapostpropagandafiles/recursives.1
+ texmf-dist/doc/metapost/featpost/doc/metapostpropagandafiles/recursives.2
+ texmf-dist/doc/metapost/featpost/doc/metapostpropagandafiles/recursives.3
texmf-dist/doc/metapost/featpost/doc/metapostpropagandafiles/recursives.mp
texmf-dist/doc/metapost/featpost/doc/metapostpropagandafiles/sriyantrafinal-1.svg
texmf-dist/doc/metapost/featpost/doc/metapostpropagandafiles/sriyantrafinal.mp
texmf-dist/doc/metapost/featpost/doc/metapostpropagandafiles/todo.jpg
+ texmf-dist/doc/metapost/featpost/doc/metapostpropagandafiles/workflow-from-mpman-charts.1
+ texmf-dist/doc/metapost/featpost/doc/metapostpropagandafiles/workflow-from-mpman-charts.2
texmf-dist/doc/metapost/featpost/doc/metapostpropagandafiles/workflow-from-mpman-charts.mp
texmf-dist/doc/metapost/featpost/doc/metapostpropagandafiles/xfig.png
texmf-dist/doc/metapost/featpost/example/38.mp
+ texmf-dist/doc/metapost/featpost/example/A131.mp
texmf-dist/doc/metapost/featpost/example/CAT.mp
texmf-dist/doc/metapost/featpost/example/DebianSwirlsmallEdited.mp
texmf-dist/doc/metapost/featpost/example/EBcrossed.mp
texmf-dist/doc/metapost/featpost/example/LED.mp
+ texmf-dist/doc/metapost/featpost/example/SlowDownNowBitmapScanned.mp
texmf-dist/doc/metapost/featpost/example/acmaglev.mp
texmf-dist/doc/metapost/featpost/example/acoplanv.mp
texmf-dist/doc/metapost/featpost/example/ahoraesglobal.mp
texmf-dist/doc/metapost/featpost/example/aledlogo.mp
- texmf-dist/doc/metapost/featpost/example/allfigs.mp
texmf-dist/doc/metapost/featpost/example/allgreatideas.mp
texmf-dist/doc/metapost/featpost/example/anglinerigorouscircle.mp
texmf-dist/doc/metapost/featpost/example/antimattermeteor.mp
@@ -63798,6 +69210,7 @@ docfiles size=4405
texmf-dist/doc/metapost/featpost/example/balllauncher.mp
texmf-dist/doc/metapost/featpost/example/bananadimmer.log
texmf-dist/doc/metapost/featpost/example/bananadimmer.mp
+ texmf-dist/doc/metapost/featpost/example/bichaepolicia.mp
texmf-dist/doc/metapost/featpost/example/brownellips.mp
texmf-dist/doc/metapost/featpost/example/bstr.mp
texmf-dist/doc/metapost/featpost/example/bughunt.mp
@@ -63809,11 +69222,13 @@ docfiles size=4405
texmf-dist/doc/metapost/featpost/example/casadopessoal.mp
texmf-dist/doc/metapost/featpost/example/cellevolve.mp
texmf-dist/doc/metapost/featpost/example/cinemwork.mp
+ texmf-dist/doc/metapost/featpost/example/circlespeedprofile.mp
texmf-dist/doc/metapost/featpost/example/closingbox.mp
texmf-dist/doc/metapost/featpost/example/cmykropes.mp
texmf-dist/doc/metapost/featpost/example/cone.mp
texmf-dist/doc/metapost/featpost/example/conegetready.mp
texmf-dist/doc/metapost/featpost/example/conicurv.mp
+ texmf-dist/doc/metapost/featpost/example/conoscopy.mp
texmf-dist/doc/metapost/featpost/example/convergingspirals.mp
texmf-dist/doc/metapost/featpost/example/crossingline.mp
texmf-dist/doc/metapost/featpost/example/cruztuga.mp
@@ -63843,6 +69258,7 @@ docfiles size=4405
texmf-dist/doc/metapost/featpost/example/embroncordada.mp
texmf-dist/doc/metapost/featpost/example/emptylines.mp
texmf-dist/doc/metapost/featpost/example/equilatrianglelines.mp
+ texmf-dist/doc/metapost/featpost/example/equilibriodetorques.mp
texmf-dist/doc/metapost/featpost/example/esteveslogo.mp
texmf-dist/doc/metapost/featpost/example/experimental.mp
texmf-dist/doc/metapost/featpost/example/experimental2Dsetup.mp
@@ -63869,7 +69285,7 @@ docfiles size=4405
texmf-dist/doc/metapost/featpost/example/geomfiguei.mp
texmf-dist/doc/metapost/featpost/example/geomfreder.mp
texmf-dist/doc/metapost/featpost/example/geommine.mp
- texmf-dist/doc/metapost/featpost/example/globe.mp
+ texmf-dist/doc/metapost/featpost/example/geomsrinath.mp
texmf-dist/doc/metapost/featpost/example/gnupost.mp
texmf-dist/doc/metapost/featpost/example/gnupost3Dlogo.mp
texmf-dist/doc/metapost/featpost/example/goldenellipse.mp
@@ -63879,6 +69295,7 @@ docfiles size=4405
texmf-dist/doc/metapost/featpost/example/halfcirclesfear.mp
texmf-dist/doc/metapost/featpost/example/hap.mp
texmf-dist/doc/metapost/featpost/example/heatfromroom.mp
+ texmf-dist/doc/metapost/featpost/example/helix.mp
texmf-dist/doc/metapost/featpost/example/hermitespliknot.mp
texmf-dist/doc/metapost/featpost/example/hexacylon.mp
texmf-dist/doc/metapost/featpost/example/hexagonaltrimesh.mp
@@ -63889,8 +69306,13 @@ docfiles size=4405
texmf-dist/doc/metapost/featpost/example/inductionbob.mp
texmf-dist/doc/metapost/featpost/example/integerbars.mp
texmf-dist/doc/metapost/featpost/example/integratorfigures.mp
+ texmf-dist/doc/metapost/featpost/example/interdigitrodes.mp
+ texmf-dist/doc/metapost/featpost/example/intersectprolatespheroid.mp
+ texmf-dist/doc/metapost/featpost/example/iplaca.mp
texmf-dist/doc/metapost/featpost/example/jd44.mp
+ texmf-dist/doc/metapost/featpost/example/jdbug.mp
texmf-dist/doc/metapost/featpost/example/joinedemptylines.mp
+ texmf-dist/doc/metapost/featpost/example/keplernewtonfeynman.mp
texmf-dist/doc/metapost/featpost/example/kindofcube.mp
texmf-dist/doc/metapost/featpost/example/kindofcuber.mp
texmf-dist/doc/metapost/featpost/example/kopptrammel.mp
@@ -63902,6 +69324,7 @@ docfiles size=4405
texmf-dist/doc/metapost/featpost/example/lawofcosines.mp
texmf-dist/doc/metapost/featpost/example/lcurvature.mp
texmf-dist/doc/metapost/featpost/example/ledlogo.mp
+ texmf-dist/doc/metapost/featpost/example/lgc2refractionEdited.mp
texmf-dist/doc/metapost/featpost/example/loglogpaper.mp
texmf-dist/doc/metapost/featpost/example/logofontest.mp
texmf-dist/doc/metapost/featpost/example/magneticflux.mp
@@ -63910,6 +69333,7 @@ docfiles size=4405
texmf-dist/doc/metapost/featpost/example/matricskoc.mp
texmf-dist/doc/metapost/featpost/example/mce-lng.mp
texmf-dist/doc/metapost/featpost/example/metalcharge.mp
+ texmf-dist/doc/metapost/featpost/example/micostufas.mp
texmf-dist/doc/metapost/featpost/example/micromu.mp
texmf-dist/doc/metapost/featpost/example/milimetricpaper.mp
texmf-dist/doc/metapost/featpost/example/mpfields.mp
@@ -63919,6 +69343,7 @@ docfiles size=4405
texmf-dist/doc/metapost/featpost/example/mypatentpieces.mp
texmf-dist/doc/metapost/featpost/example/mysquaresectionbar.mp
texmf-dist/doc/metapost/featpost/example/naoestacionar.mp
+ texmf-dist/doc/metapost/featpost/example/naotocanacalote.mp
texmf-dist/doc/metapost/featpost/example/nembends.mp
texmf-dist/doc/metapost/featpost/example/nembiaxi.mp
texmf-dist/doc/metapost/featpost/example/nemdirector.mp
@@ -63957,9 +69382,12 @@ docfiles size=4405
texmf-dist/doc/metapost/featpost/example/project.mp
texmf-dist/doc/metapost/featpost/example/qap.mp
texmf-dist/doc/metapost/featpost/example/quartertorus.mp
+ texmf-dist/doc/metapost/featpost/example/radiativeforcing.mp
+ texmf-dist/doc/metapost/featpost/example/raiodoscirculos.mp
texmf-dist/doc/metapost/featpost/example/redplanet.mp
texmf-dist/doc/metapost/featpost/example/reeditedgoodquestionmark.mp
texmf-dist/doc/metapost/featpost/example/resistcircuit.mp
+ texmf-dist/doc/metapost/featpost/example/reuleaux.mp
texmf-dist/doc/metapost/featpost/example/revolipsoid.mp
texmf-dist/doc/metapost/featpost/example/revolvers.mp
texmf-dist/doc/metapost/featpost/example/rigorcubo.mp
@@ -63983,16 +69411,23 @@ docfiles size=4405
texmf-dist/doc/metapost/featpost/example/signalvertexSD.mp
texmf-dist/doc/metapost/featpost/example/simplecar.mp
texmf-dist/doc/metapost/featpost/example/simplecarparam.mp
+ texmf-dist/doc/metapost/featpost/example/simplecenterofmass.mp
+ texmf-dist/doc/metapost/featpost/example/simplelens.mp
+ texmf-dist/doc/metapost/featpost/example/simplependulum.mp
texmf-dist/doc/metapost/featpost/example/simplexperiment.mp
texmf-dist/doc/metapost/featpost/example/sincityredesigned.mp
texmf-dist/doc/metapost/featpost/example/slingshot.mp
texmf-dist/doc/metapost/featpost/example/smC.mp
+ texmf-dist/doc/metapost/featpost/example/sniperlogo.mp
texmf-dist/doc/metapost/featpost/example/some2Dvecs.mp
+ texmf-dist/doc/metapost/featpost/example/spaceinvader.mp
texmf-dist/doc/metapost/featpost/example/spatialhalfsfear.mp
texmf-dist/doc/metapost/featpost/example/spherample.mp
texmf-dist/doc/metapost/featpost/example/splineperspective.mp
+ texmf-dist/doc/metapost/featpost/example/splineperspectives.mp
texmf-dist/doc/metapost/featpost/example/spltwiben.mp
texmf-dist/doc/metapost/featpost/example/squareanglines.mp
+ texmf-dist/doc/metapost/featpost/example/srinathpolineni.mp
texmf-dist/doc/metapost/featpost/example/stageforthree.mp
texmf-dist/doc/metapost/featpost/example/statement.mp
texmf-dist/doc/metapost/featpost/example/statethreelines.mp
@@ -64002,7 +69437,9 @@ docfiles size=4405
texmf-dist/doc/metapost/featpost/example/tangency2D.mp
texmf-dist/doc/metapost/featpost/example/tangencypoint.mp
texmf-dist/doc/metapost/featpost/example/tdarrow.mp
+ texmf-dist/doc/metapost/featpost/example/tdcircarrow.mp
texmf-dist/doc/metapost/featpost/example/telemira.mp
+ texmf-dist/doc/metapost/featpost/example/telheiro.mp
texmf-dist/doc/metapost/featpost/example/tete.mp
texmf-dist/doc/metapost/featpost/example/tetrapodes.mp
texmf-dist/doc/metapost/featpost/example/theHURD.mp
@@ -64012,8 +69449,11 @@ docfiles size=4405
texmf-dist/doc/metapost/featpost/example/tiposdetrans.mp
texmf-dist/doc/metapost/featpost/example/tiposdetransb.mp
texmf-dist/doc/metapost/featpost/example/tiposdetranst.mp
+ texmf-dist/doc/metapost/featpost/example/toro4transit.mp
texmf-dist/doc/metapost/featpost/example/torus.mp
texmf-dist/doc/metapost/featpost/example/trajectoryline.mp
+ texmf-dist/doc/metapost/featpost/example/trebuchet.mp
+ texmf-dist/doc/metapost/featpost/example/treecarbonedited.mp
texmf-dist/doc/metapost/featpost/example/trianglecenterofmass.mp
texmf-dist/doc/metapost/featpost/example/triangulartrimesh.mp
texmf-dist/doc/metapost/featpost/example/trig.mp
@@ -64040,13 +69480,476 @@ docfiles size=4405
texmf-dist/doc/metapost/featpost/example/wwfpmp.mp
texmf-dist/doc/metapost/featpost/example/xcmplaca2buraquads.mp
texmf-dist/doc/metapost/featpost/example/xraycamera.mp
-runfiles size=33
+ texmf-dist/doc/metapost/featpost/png/38.1.png
+ texmf-dist/doc/metapost/featpost/png/A131.1.png
+ texmf-dist/doc/metapost/featpost/png/CAT.1.png
+ texmf-dist/doc/metapost/featpost/png/DebianSwirlsmallEdited.1.png
+ texmf-dist/doc/metapost/featpost/png/EBcrossed.1.png
+ texmf-dist/doc/metapost/featpost/png/LED.1.png
+ texmf-dist/doc/metapost/featpost/png/SlowDownNowBitmapScanned.1.png
+ texmf-dist/doc/metapost/featpost/png/acmaglev.1.png
+ texmf-dist/doc/metapost/featpost/png/acoplanv.1.png
+ texmf-dist/doc/metapost/featpost/png/ahoraesglobal.1.png
+ texmf-dist/doc/metapost/featpost/png/aledlogo.1.png
+ texmf-dist/doc/metapost/featpost/png/aledlogo.2.png
+ texmf-dist/doc/metapost/featpost/png/allgreatideas.1.png
+ texmf-dist/doc/metapost/featpost/png/anglinerigorouscircle.1.png
+ texmf-dist/doc/metapost/featpost/png/antimattermeteor.1.png
+ texmf-dist/doc/metapost/featpost/png/avalzero.1.png
+ texmf-dist/doc/metapost/featpost/png/avalzero.2.png
+ texmf-dist/doc/metapost/featpost/png/avalzero.3.png
+ texmf-dist/doc/metapost/featpost/png/avalzero.4.png
+ texmf-dist/doc/metapost/featpost/png/badshreeyantra.1.png
+ texmf-dist/doc/metapost/featpost/png/balllauncher.1.png
+ texmf-dist/doc/metapost/featpost/png/bananadimmer.1.png
+ texmf-dist/doc/metapost/featpost/png/bichaepolicia.0.png
+ texmf-dist/doc/metapost/featpost/png/brownellips.0.png
+ texmf-dist/doc/metapost/featpost/png/bstr.1.png
+ texmf-dist/doc/metapost/featpost/png/bughunt.1.png
+ texmf-dist/doc/metapost/featpost/png/bughunt.2.png
+ texmf-dist/doc/metapost/featpost/png/buildcyclebug.1.png
+ texmf-dist/doc/metapost/featpost/png/buildcyclebug.2.png
+ texmf-dist/doc/metapost/featpost/png/canschemes.1.png
+ texmf-dist/doc/metapost/featpost/png/canschemes.2.png
+ texmf-dist/doc/metapost/featpost/png/canschemes.3.png
+ texmf-dist/doc/metapost/featpost/png/cap29res.1.png
+ texmf-dist/doc/metapost/featpost/png/cap29res.2.png
+ texmf-dist/doc/metapost/featpost/png/cap29res.3.png
+ texmf-dist/doc/metapost/featpost/png/cap29res.4.png
+ texmf-dist/doc/metapost/featpost/png/cap29res.5.png
+ texmf-dist/doc/metapost/featpost/png/cap29res.6.png
+ texmf-dist/doc/metapost/featpost/png/cap29res.7.png
+ texmf-dist/doc/metapost/featpost/png/cap29res.8.png
+ texmf-dist/doc/metapost/featpost/png/cap29res.9.png
+ texmf-dist/doc/metapost/featpost/png/caratk3edit.1.png
+ texmf-dist/doc/metapost/featpost/png/cartaxes.1.png
+ texmf-dist/doc/metapost/featpost/png/cartaxes.2.png
+ texmf-dist/doc/metapost/featpost/png/casadopessoal.1.png
+ texmf-dist/doc/metapost/featpost/png/casadopessoal.2.png
+ texmf-dist/doc/metapost/featpost/png/casadopessoal.3.png
+ texmf-dist/doc/metapost/featpost/png/casadopessoal.4.png
+ texmf-dist/doc/metapost/featpost/png/cellevolve.0.png
+ texmf-dist/doc/metapost/featpost/png/cinemwork.1.png
+ texmf-dist/doc/metapost/featpost/png/cinemwork.2.png
+ texmf-dist/doc/metapost/featpost/png/circlespeedprofile.1.png
+ texmf-dist/doc/metapost/featpost/png/closingbox.1.png
+ texmf-dist/doc/metapost/featpost/png/cmykropes.1.png
+ texmf-dist/doc/metapost/featpost/png/cone.1.png
+ texmf-dist/doc/metapost/featpost/png/conegetready.1.png
+ texmf-dist/doc/metapost/featpost/png/conicurv.1.png
+ texmf-dist/doc/metapost/featpost/png/conoscopy.1.png
+ texmf-dist/doc/metapost/featpost/png/conoscopy.2.png
+ texmf-dist/doc/metapost/featpost/png/conoscopy.3.png
+ texmf-dist/doc/metapost/featpost/png/conoscopy.4.png
+ texmf-dist/doc/metapost/featpost/png/conoscopy.5.png
+ texmf-dist/doc/metapost/featpost/png/convergingspirals.1.png
+ texmf-dist/doc/metapost/featpost/png/convergingspirals.2.png
+ texmf-dist/doc/metapost/featpost/png/convergingspirals.3.png
+ texmf-dist/doc/metapost/featpost/png/convergingspirals.4.png
+ texmf-dist/doc/metapost/featpost/png/convergingspirals.5.png
+ texmf-dist/doc/metapost/featpost/png/crossingline.1.png
+ texmf-dist/doc/metapost/featpost/png/crossingline.2.png
+ texmf-dist/doc/metapost/featpost/png/crossingline.3.png
+ texmf-dist/doc/metapost/featpost/png/cruztuga.1.png
+ texmf-dist/doc/metapost/featpost/png/cubicfacecentered.1.png
+ texmf-dist/doc/metapost/featpost/png/cubicfigures.1.png
+ texmf-dist/doc/metapost/featpost/png/cubicfigures.2.png
+ texmf-dist/doc/metapost/featpost/png/cubicfigures.3.png
+ texmf-dist/doc/metapost/featpost/png/cubicstructurefcc.1.png
+ texmf-dist/doc/metapost/featpost/png/cubicstructures.1.png
+ texmf-dist/doc/metapost/featpost/png/cubicstructures.2.png
+ texmf-dist/doc/metapost/featpost/png/cubicstructures.3.png
+ texmf-dist/doc/metapost/featpost/png/cubicstructures.4.png
+ texmf-dist/doc/metapost/featpost/png/cubicstructures.5.png
+ texmf-dist/doc/metapost/featpost/png/cubicstructures.6.png
+ texmf-dist/doc/metapost/featpost/png/cylimple.1.png
+ texmf-dist/doc/metapost/featpost/png/daliasensor.1.png
+ texmf-dist/doc/metapost/featpost/png/decorstatement.0.png
+ texmf-dist/doc/metapost/featpost/png/defaultcmr.0.png
+ texmf-dist/doc/metapost/featpost/png/deperspective.1.png
+ texmf-dist/doc/metapost/featpost/png/deperspective.2.png
+ texmf-dist/doc/metapost/featpost/png/deperspective.3.png
+ texmf-dist/doc/metapost/featpost/png/deperspective.4.png
+ texmf-dist/doc/metapost/featpost/png/derivondatriang.1.png
+ texmf-dist/doc/metapost/featpost/png/diameters.1.png
+ texmf-dist/doc/metapost/featpost/png/directfonts.0.png
+ texmf-dist/doc/metapost/featpost/png/doitnow.1.png
+ texmf-dist/doc/metapost/featpost/png/downloadicon.1.png
+ texmf-dist/doc/metapost/featpost/png/durgayantra.1.png
+ texmf-dist/doc/metapost/featpost/png/durgayantra.2.png
+ texmf-dist/doc/metapost/featpost/png/eemcsblabla.1.png
+ texmf-dist/doc/metapost/featpost/png/electricpotential.0.png
+ texmf-dist/doc/metapost/featpost/png/electricpotential.1.png
+ texmf-dist/doc/metapost/featpost/png/electricpotential.2.png
+ texmf-dist/doc/metapost/featpost/png/electricpotential.3.png
+ texmf-dist/doc/metapost/featpost/png/electrospiral.1.png
+ texmf-dist/doc/metapost/featpost/png/ellipticextrusionpress.1.png
+ texmf-dist/doc/metapost/featpost/png/ellipticprism.1.png
+ texmf-dist/doc/metapost/featpost/png/ellipticproperties.1.png
+ texmf-dist/doc/metapost/featpost/png/elliptictable.1.png
+ texmf-dist/doc/metapost/featpost/png/ellipticthing.1.png
+ texmf-dist/doc/metapost/featpost/png/embroncordada.1.png
+ texmf-dist/doc/metapost/featpost/png/emptylines.1.png
+ texmf-dist/doc/metapost/featpost/png/equilatrianglelines.1.png
+ texmf-dist/doc/metapost/featpost/png/equilibriodetorques.1.png
+ texmf-dist/doc/metapost/featpost/png/esteveslogo.1.png
+ texmf-dist/doc/metapost/featpost/png/experimental.1.png
+ texmf-dist/doc/metapost/featpost/png/experimental2Dsetup.1.png
+ texmf-dist/doc/metapost/featpost/png/f1aula03.1.png
+ texmf-dist/doc/metapost/featpost/png/f1aula03.2.png
+ texmf-dist/doc/metapost/featpost/png/f1aula03.3.png
+ texmf-dist/doc/metapost/featpost/png/f1aula03.4.png
+ texmf-dist/doc/metapost/featpost/png/f1aula05.1.png
+ texmf-dist/doc/metapost/featpost/png/f1aula05.2.png
+ texmf-dist/doc/metapost/featpost/png/fakehole.1.png
+ texmf-dist/doc/metapost/featpost/png/fakehole.2.png
+ texmf-dist/doc/metapost/featpost/png/fallinthewind.1.png
+ texmf-dist/doc/metapost/featpost/png/featpostlogo.1.png
+ texmf-dist/doc/metapost/featpost/png/ffcbob.1.png
+ texmf-dist/doc/metapost/featpost/png/fieldlines.1.png
+ texmf-dist/doc/metapost/featpost/png/fieldlinesnorma.1.png
+ texmf-dist/doc/metapost/featpost/png/fieldlinesnorma.2.png
+ texmf-dist/doc/metapost/featpost/png/fieldlinesnormapaper.1.png
+ texmf-dist/doc/metapost/featpost/png/fieldlinesnormapaper.2.png
+ texmf-dist/doc/metapost/featpost/png/fieldlinesnormapaperwork.1.png
+ texmf-dist/doc/metapost/featpost/png/fis1prex.1.png
+ texmf-dist/doc/metapost/featpost/png/fis1prex.2.png
+ texmf-dist/doc/metapost/featpost/png/fis1prex.3.png
+ texmf-dist/doc/metapost/featpost/png/fis3prex.1.png
+ texmf-dist/doc/metapost/featpost/png/fis3prex.2.png
+ texmf-dist/doc/metapost/featpost/png/fis3prex.3.png
+ texmf-dist/doc/metapost/featpost/png/fis3prex.4.png
+ texmf-dist/doc/metapost/featpost/png/fis3prex.5.png
+ texmf-dist/doc/metapost/featpost/png/fis3prex.6.png
+ texmf-dist/doc/metapost/featpost/png/fis3prex.7.png
+ texmf-dist/doc/metapost/featpost/png/fis3prex.8.png
+ texmf-dist/doc/metapost/featpost/png/fis3prex.9.png
+ texmf-dist/doc/metapost/featpost/png/fis3prex7.1.png
+ texmf-dist/doc/metapost/featpost/png/fis3prex7.2.png
+ texmf-dist/doc/metapost/featpost/png/fis3prex7.3.png
+ texmf-dist/doc/metapost/featpost/png/fis3prex7.4.png
+ texmf-dist/doc/metapost/featpost/png/fis3prex7.5.png
+ texmf-dist/doc/metapost/featpost/png/fis3prex7.6.png
+ texmf-dist/doc/metapost/featpost/png/fis3prex7.7.png
+ texmf-dist/doc/metapost/featpost/png/fis3prex7.8.png
+ texmf-dist/doc/metapost/featpost/png/fis3prey.1.png
+ texmf-dist/doc/metapost/featpost/png/fis3prey.2.png
+ texmf-dist/doc/metapost/featpost/png/fis3prey.3.png
+ texmf-dist/doc/metapost/featpost/png/frustum.1.png
+ texmf-dist/doc/metapost/featpost/png/galvanometro-inducao.1.png
+ texmf-dist/doc/metapost/featpost/png/gausslawframe.1.png
+ texmf-dist/doc/metapost/featpost/png/geombasic.1.png
+ texmf-dist/doc/metapost/featpost/png/geomcasq.1.png
+ texmf-dist/doc/metapost/featpost/png/geometricaverage.1.png
+ texmf-dist/doc/metapost/featpost/png/geomfiguei.1.png
+ texmf-dist/doc/metapost/featpost/png/geomfreder.1.png
+ texmf-dist/doc/metapost/featpost/png/geommine.1.png
+ texmf-dist/doc/metapost/featpost/png/geomsrinath.1.png
+ texmf-dist/doc/metapost/featpost/png/gnupost.1.png
+ texmf-dist/doc/metapost/featpost/png/gnupost3Dlogo.1.png
+ texmf-dist/doc/metapost/featpost/png/goldenellipse.1.png
+ texmf-dist/doc/metapost/featpost/png/graphene.1.png
+ texmf-dist/doc/metapost/featpost/png/graphexample.1.png
+ texmf-dist/doc/metapost/featpost/png/graphs.1.png
+ texmf-dist/doc/metapost/featpost/png/graphs.2.png
+ texmf-dist/doc/metapost/featpost/png/halfcirclesfear.1.png
+ texmf-dist/doc/metapost/featpost/png/hap.1.png
+ texmf-dist/doc/metapost/featpost/png/heatfromroom.1.png
+ texmf-dist/doc/metapost/featpost/png/helix.1.png
+ texmf-dist/doc/metapost/featpost/png/hermitespliknot.1.png
+ texmf-dist/doc/metapost/featpost/png/hexacylon.1.png
+ texmf-dist/doc/metapost/featpost/png/hexagonaltrimesh.1.png
+ texmf-dist/doc/metapost/featpost/png/hiddenlinegraph.1.png
+ texmf-dist/doc/metapost/featpost/png/hiddensurface.1.png
+ texmf-dist/doc/metapost/featpost/png/hiddensurfaces.1.png
+ texmf-dist/doc/metapost/featpost/png/iamsorrykarl.1.png
+ texmf-dist/doc/metapost/featpost/png/inductionbob.1.png
+ texmf-dist/doc/metapost/featpost/png/integerbars.1.png
+ texmf-dist/doc/metapost/featpost/png/integratorfigures.1.png
+ texmf-dist/doc/metapost/featpost/png/integratorfigures.2.png
+ texmf-dist/doc/metapost/featpost/png/interdigitrodes.1.png
+ texmf-dist/doc/metapost/featpost/png/intersectprolatespheroid.1.png
+ texmf-dist/doc/metapost/featpost/png/iplaca.1.png
+ texmf-dist/doc/metapost/featpost/png/jd44.1.png
+ texmf-dist/doc/metapost/featpost/png/jd44.2.png
+ texmf-dist/doc/metapost/featpost/png/jd44.3.png
+ texmf-dist/doc/metapost/featpost/png/jd44.4.png
+ texmf-dist/doc/metapost/featpost/png/jdbug.1.png
+ texmf-dist/doc/metapost/featpost/png/jdbug.2.png
+ texmf-dist/doc/metapost/featpost/png/joinedemptylines.1.png
+ texmf-dist/doc/metapost/featpost/png/keplernewtonfeynman.1.png
+ texmf-dist/doc/metapost/featpost/png/kindofcube.1.png
+ texmf-dist/doc/metapost/featpost/png/kindofcube.2.png
+ texmf-dist/doc/metapost/featpost/png/kindofcuber.1.png
+ texmf-dist/doc/metapost/featpost/png/kopptrammel.1.png
+ texmf-dist/doc/metapost/featpost/png/labelconstruct.1.png
+ texmf-dist/doc/metapost/featpost/png/labelinspace.1.png
+ texmf-dist/doc/metapost/featpost/png/lamarquejaune.1.png
+ texmf-dist/doc/metapost/featpost/png/lasermachine.1.png
+ texmf-dist/doc/metapost/featpost/png/latexboxes.0.png
+ texmf-dist/doc/metapost/featpost/png/latexboxes.1.png
+ texmf-dist/doc/metapost/featpost/png/lawofcosines.1.png
+ texmf-dist/doc/metapost/featpost/png/lawofcosines.2.png
+ texmf-dist/doc/metapost/featpost/png/lcurvature.1.png
+ texmf-dist/doc/metapost/featpost/png/lcurvature.2.png
+ texmf-dist/doc/metapost/featpost/png/ledlogo.1.png
+ texmf-dist/doc/metapost/featpost/png/ledlogo.2.png
+ texmf-dist/doc/metapost/featpost/png/ledlogo.3.png
+ texmf-dist/doc/metapost/featpost/png/ledlogo.4.png
+ texmf-dist/doc/metapost/featpost/png/lgc2refractionEdited.1.png
+ texmf-dist/doc/metapost/featpost/png/lgc2refractionEdited.2.png
+ texmf-dist/doc/metapost/featpost/png/lgc2refractionEdited.3.png
+ texmf-dist/doc/metapost/featpost/png/loglogpaper.1.png
+ texmf-dist/doc/metapost/featpost/png/logofontest.0.png
+ texmf-dist/doc/metapost/featpost/png/magneticflux.1.png
+ texmf-dist/doc/metapost/featpost/png/magneticflux.2.png
+ texmf-dist/doc/metapost/featpost/png/mainmemtest.1.png
+ texmf-dist/doc/metapost/featpost/png/manjusha.1.png
+ texmf-dist/doc/metapost/featpost/png/manjusha.4.png
+ texmf-dist/doc/metapost/featpost/png/manjusha.6.png
+ texmf-dist/doc/metapost/featpost/png/matricskoc.1.png
+ texmf-dist/doc/metapost/featpost/png/mce-lng.1.png
+ texmf-dist/doc/metapost/featpost/png/metalcharge.1.png
+ texmf-dist/doc/metapost/featpost/png/micostufas.1.png
+ texmf-dist/doc/metapost/featpost/png/micromu.1.png
+ texmf-dist/doc/metapost/featpost/png/milimetricpaper.1.png
+ texmf-dist/doc/metapost/featpost/png/mpfields.0.png
+ texmf-dist/doc/metapost/featpost/png/mpfields.1.png
+ texmf-dist/doc/metapost/featpost/png/mpfields.2.png
+ texmf-dist/doc/metapost/featpost/png/mpfields.3.png
+ texmf-dist/doc/metapost/featpost/png/mpfields.4.png
+ texmf-dist/doc/metapost/featpost/png/mpfields.5.png
+ texmf-dist/doc/metapost/featpost/png/mpfields.6.png
+ texmf-dist/doc/metapost/featpost/png/mpfields.7.png
+ texmf-dist/doc/metapost/featpost/png/mptoolcone.0.png
+ texmf-dist/doc/metapost/featpost/png/muslimpattern.1.png
+ texmf-dist/doc/metapost/featpost/png/muslimpattern.2.png
+ texmf-dist/doc/metapost/featpost/png/mypatent.1.png
+ texmf-dist/doc/metapost/featpost/png/mypatent.2.png
+ texmf-dist/doc/metapost/featpost/png/mypatent.3.png
+ texmf-dist/doc/metapost/featpost/png/mypatent.4.png
+ texmf-dist/doc/metapost/featpost/png/mypatentpieces.1.png
+ texmf-dist/doc/metapost/featpost/png/mysquaresectionbar.1.png
+ texmf-dist/doc/metapost/featpost/png/naoestacionar.1.png
+ texmf-dist/doc/metapost/featpost/png/naotocanacalote.1.png
+ texmf-dist/doc/metapost/featpost/png/nembends.1.png
+ texmf-dist/doc/metapost/featpost/png/nembiaxi.1.png
+ texmf-dist/doc/metapost/featpost/png/nemdirector.1.png
+ texmf-dist/doc/metapost/featpost/png/nemquira.1.png
+ texmf-dist/doc/metapost/featpost/png/nemquirapitch.1.png
+ texmf-dist/doc/metapost/featpost/png/nemsaddl.1.png
+ texmf-dist/doc/metapost/featpost/png/nemuniax.1.png
+ texmf-dist/doc/metapost/featpost/png/newcommunism.1.png
+ texmf-dist/doc/metapost/featpost/png/newcommunism.2.png
+ texmf-dist/doc/metapost/featpost/png/newexperimental.1.png
+ texmf-dist/doc/metapost/featpost/png/nosimples.1.png
+ texmf-dist/doc/metapost/featpost/png/nosuspension.0.png
+ texmf-dist/doc/metapost/featpost/png/nsmetica.1.png
+ texmf-dist/doc/metapost/featpost/png/nulldefectanglexample.1.png
+ texmf-dist/doc/metapost/featpost/png/nulldefectanglexample.2.png
+ texmf-dist/doc/metapost/featpost/png/nulldefectanglexample.3.png
+ texmf-dist/doc/metapost/featpost/png/nulldefectanglexample.4.png
+ texmf-dist/doc/metapost/featpost/png/nurbstobeziern.0.png
+ texmf-dist/doc/metapost/featpost/png/onebigword.1.png
+ texmf-dist/doc/metapost/featpost/png/optest.1.png
+ texmf-dist/doc/metapost/featpost/png/optest.2.png
+ texmf-dist/doc/metapost/featpost/png/optica.1.png
+ texmf-dist/doc/metapost/featpost/png/par3Dplotexamples.1.png
+ texmf-dist/doc/metapost/featpost/png/par3Dplotexamples.2.png
+ texmf-dist/doc/metapost/featpost/png/parafuso.1.png
+ texmf-dist/doc/metapost/featpost/png/parafuso.2.png
+ texmf-dist/doc/metapost/featpost/png/parafuso.3.png
+ texmf-dist/doc/metapost/featpost/png/parafuso.4.png
+ texmf-dist/doc/metapost/featpost/png/parafusoprojxy.1.png
+ texmf-dist/doc/metapost/featpost/png/pathernon.0.png
+ texmf-dist/doc/metapost/featpost/png/pathofstraightline.1.png
+ texmf-dist/doc/metapost/featpost/png/perspec.1.png
+ texmf-dist/doc/metapost/featpost/png/photorefer.1.png
+ texmf-dist/doc/metapost/featpost/png/photorefer.2.png
+ texmf-dist/doc/metapost/featpost/png/photoreverse.1.png
+ texmf-dist/doc/metapost/featpost/png/pifpaf.1.png
+ texmf-dist/doc/metapost/featpost/png/pixelgrid.1.png
+ texmf-dist/doc/metapost/featpost/png/plaintangency.0.png
+ texmf-dist/doc/metapost/featpost/png/plaintangency.1.png
+ texmf-dist/doc/metapost/featpost/png/planintersection.1.png
+ texmf-dist/doc/metapost/featpost/png/planpht.1.png
+ texmf-dist/doc/metapost/featpost/png/planpht.2.png
+ texmf-dist/doc/metapost/featpost/png/planpht.3.png
+ texmf-dist/doc/metapost/featpost/png/planpht.4.png
+ texmf-dist/doc/metapost/featpost/png/planpht.5.png
+ texmf-dist/doc/metapost/featpost/png/planpht.6.png
+ texmf-dist/doc/metapost/featpost/png/planpht.7.png
+ texmf-dist/doc/metapost/featpost/png/polyhedr.1.png
+ texmf-dist/doc/metapost/featpost/png/polyhedr.2.png
+ texmf-dist/doc/metapost/featpost/png/polyhedr.3.png
+ texmf-dist/doc/metapost/featpost/png/positivecharge.1.png
+ texmf-dist/doc/metapost/featpost/png/potenciadecicloeliptico.1.png
+ texmf-dist/doc/metapost/featpost/png/probtodooterr.1.png
+ texmf-dist/doc/metapost/featpost/png/profaux.1.png
+ texmf-dist/doc/metapost/featpost/png/project.1.png
+ texmf-dist/doc/metapost/featpost/png/qap.1.png
+ texmf-dist/doc/metapost/featpost/png/quartertorus.1.png
+ texmf-dist/doc/metapost/featpost/png/quartertorus.2.png
+ texmf-dist/doc/metapost/featpost/png/radiativeforcing.0.png
+ texmf-dist/doc/metapost/featpost/png/raiodoscirculos.1.png
+ texmf-dist/doc/metapost/featpost/png/raiodoscirculos.2.png
+ texmf-dist/doc/metapost/featpost/png/raiodoscirculos.3.png
+ texmf-dist/doc/metapost/featpost/png/raiodoscirculos.4.png
+ texmf-dist/doc/metapost/featpost/png/raiodoscirculos.5.png
+ texmf-dist/doc/metapost/featpost/png/raiodoscirculos.6.png
+ texmf-dist/doc/metapost/featpost/png/redplanet.1.png
+ texmf-dist/doc/metapost/featpost/png/reeditedgoodquestionmark.1.png
+ texmf-dist/doc/metapost/featpost/png/resistcircuit.1.png
+ texmf-dist/doc/metapost/featpost/png/reuleaux.1.png
+ texmf-dist/doc/metapost/featpost/png/reuleaux.2.png
+ texmf-dist/doc/metapost/featpost/png/revolipsoid.1.png
+ texmf-dist/doc/metapost/featpost/png/revolipsoid.2.png
+ texmf-dist/doc/metapost/featpost/png/revolvers.1.png
+ texmf-dist/doc/metapost/featpost/png/revolvers.2.png
+ texmf-dist/doc/metapost/featpost/png/revolvers.3.png
+ texmf-dist/doc/metapost/featpost/png/revolvers.4.png
+ texmf-dist/doc/metapost/featpost/png/revolvers.5.png
+ texmf-dist/doc/metapost/featpost/png/revolvers.6.png
+ texmf-dist/doc/metapost/featpost/png/revolvers.7.png
+ texmf-dist/doc/metapost/featpost/png/rigorcubo.0.png
+ texmf-dist/doc/metapost/featpost/png/rigorouscircle.1.png
+ texmf-dist/doc/metapost/featpost/png/rigorouscone.1.png
+ texmf-dist/doc/metapost/featpost/png/rigorousdiscSD.1.png
+ texmf-dist/doc/metapost/featpost/png/rigorousdiscoptions.1.png
+ texmf-dist/doc/metapost/featpost/png/rigorousfearpath.1.png
+ texmf-dist/doc/metapost/featpost/png/rmnbob.1.png
+ texmf-dist/doc/metapost/featpost/png/roadincline.1.png
+ texmf-dist/doc/metapost/featpost/png/rodarolaremplaninc.1.png
+ texmf-dist/doc/metapost/featpost/png/ropepatterns.1.png
+ texmf-dist/doc/metapost/featpost/png/rotatnlc.1.png
+ texmf-dist/doc/metapost/featpost/png/rothexagrid.1.png
+ texmf-dist/doc/metapost/featpost/png/rungekuttasecond.1.png
+ texmf-dist/doc/metapost/featpost/png/rungekuttasecond.2.png
+ texmf-dist/doc/metapost/featpost/png/sal.1.png
+ texmf-dist/doc/metapost/featpost/png/sal.2.png
+ texmf-dist/doc/metapost/featpost/png/sap.1.png
+ texmf-dist/doc/metapost/featpost/png/saturn.1.png
+ texmf-dist/doc/metapost/featpost/png/sfearschem.1.png
+ texmf-dist/doc/metapost/featpost/png/sharpraytrace.1.png
+ texmf-dist/doc/metapost/featpost/png/sharpraytrace.2.png
+ texmf-dist/doc/metapost/featpost/png/sharpraytrace.3.png
+ texmf-dist/doc/metapost/featpost/png/sharpraytrace.4.png
+ texmf-dist/doc/metapost/featpost/png/signalvertexSD.1.png
+ texmf-dist/doc/metapost/featpost/png/simplecar.1.png
+ texmf-dist/doc/metapost/featpost/png/simplecarparam.1.png
+ texmf-dist/doc/metapost/featpost/png/simplecenterofmass.0.png
+ texmf-dist/doc/metapost/featpost/png/simplecenterofmass.1.png
+ texmf-dist/doc/metapost/featpost/png/simplelens.1.png
+ texmf-dist/doc/metapost/featpost/png/simplependulum.1.png
+ texmf-dist/doc/metapost/featpost/png/simplexperiment.1.png
+ texmf-dist/doc/metapost/featpost/png/sincityredesigned.1.png
+ texmf-dist/doc/metapost/featpost/png/sincityredesigned.2.png
+ texmf-dist/doc/metapost/featpost/png/slingshot.1.png
+ texmf-dist/doc/metapost/featpost/png/smC.1.png
+ texmf-dist/doc/metapost/featpost/png/sniperlogo.1.png
+ texmf-dist/doc/metapost/featpost/png/some2Dvecs.1.png
+ texmf-dist/doc/metapost/featpost/png/spaceinvader.1.png
+ texmf-dist/doc/metapost/featpost/png/spaceinvader.2.png
+ texmf-dist/doc/metapost/featpost/png/spatialhalfsfear.1.png
+ texmf-dist/doc/metapost/featpost/png/spherample.1.png
+ texmf-dist/doc/metapost/featpost/png/splineperspective.0.png
+ texmf-dist/doc/metapost/featpost/png/splineperspective.1.png
+ texmf-dist/doc/metapost/featpost/png/splineperspective.2.png
+ texmf-dist/doc/metapost/featpost/png/splineperspective.3.png
+ texmf-dist/doc/metapost/featpost/png/splineperspective.4.png
+ texmf-dist/doc/metapost/featpost/png/splineperspective.5.png
+ texmf-dist/doc/metapost/featpost/png/splineperspectives.1.png
+ texmf-dist/doc/metapost/featpost/png/splineperspectives.2.png
+ texmf-dist/doc/metapost/featpost/png/splineperspectives.3.png
+ texmf-dist/doc/metapost/featpost/png/spltwiben.1.png
+ texmf-dist/doc/metapost/featpost/png/squareanglines.1.png
+ texmf-dist/doc/metapost/featpost/png/srinathpolineni.1.png
+ texmf-dist/doc/metapost/featpost/png/srinathpolineni.2.png
+ texmf-dist/doc/metapost/featpost/png/srinathpolineni.3.png
+ texmf-dist/doc/metapost/featpost/png/srinathpolineni.5.png
+ texmf-dist/doc/metapost/featpost/png/srinathpolineni.6.png
+ texmf-dist/doc/metapost/featpost/png/srinathpolineni.7.png
+ texmf-dist/doc/metapost/featpost/png/srinathpolineni.8.png
+ texmf-dist/doc/metapost/featpost/png/srinathpolineni.9.png
+ texmf-dist/doc/metapost/featpost/png/stageforthree.1.png
+ texmf-dist/doc/metapost/featpost/png/stageforthree.2.png
+ texmf-dist/doc/metapost/featpost/png/stageforthree.3.png
+ texmf-dist/doc/metapost/featpost/png/statement.1.png
+ texmf-dist/doc/metapost/featpost/png/statement.2.png
+ texmf-dist/doc/metapost/featpost/png/statethreelines.0.png
+ texmf-dist/doc/metapost/featpost/png/steamcamera.0.png
+ texmf-dist/doc/metapost/featpost/png/strength1defect.1.png
+ texmf-dist/doc/metapost/featpost/png/symbol.1.png
+ texmf-dist/doc/metapost/featpost/png/tangency2D.1.png
+ texmf-dist/doc/metapost/featpost/png/tangencypoint.1.png
+ texmf-dist/doc/metapost/featpost/png/tdarrow.1.png
+ texmf-dist/doc/metapost/featpost/png/tdcircarrow.1.png
+ texmf-dist/doc/metapost/featpost/png/telemira.1.png
+ texmf-dist/doc/metapost/featpost/png/telheiro.1.png
+ texmf-dist/doc/metapost/featpost/png/telheiro.2.png
+ texmf-dist/doc/metapost/featpost/png/tete.1.png
+ texmf-dist/doc/metapost/featpost/png/tetrapodes.1.png
+ texmf-dist/doc/metapost/featpost/png/tetrapodes.2.png
+ texmf-dist/doc/metapost/featpost/png/tetrapodes.3.png
+ texmf-dist/doc/metapost/featpost/png/theHURD.1.png
+ texmf-dist/doc/metapost/featpost/png/thearchicon.1.png
+ texmf-dist/doc/metapost/featpost/png/thethreekindsofperspec.1.png
+ texmf-dist/doc/metapost/featpost/png/thethreekindsofperspec.2.png
+ texmf-dist/doc/metapost/featpost/png/thethreekindsofperspec.3.png
+ texmf-dist/doc/metapost/featpost/png/thunderproblem.1.png
+ texmf-dist/doc/metapost/featpost/png/tiposdetrans.1.png
+ texmf-dist/doc/metapost/featpost/png/tiposdetransb.1.png
+ texmf-dist/doc/metapost/featpost/png/tiposdetranst.1.png
+ texmf-dist/doc/metapost/featpost/png/toro4transit.1.png
+ texmf-dist/doc/metapost/featpost/png/torus.1.png
+ texmf-dist/doc/metapost/featpost/png/torus.2.png
+ texmf-dist/doc/metapost/featpost/png/torus.3.png
+ texmf-dist/doc/metapost/featpost/png/torus.4.png
+ texmf-dist/doc/metapost/featpost/png/torus.5.png
+ texmf-dist/doc/metapost/featpost/png/torus.6.png
+ texmf-dist/doc/metapost/featpost/png/torus.7.png
+ texmf-dist/doc/metapost/featpost/png/trajectoryline.1.png
+ texmf-dist/doc/metapost/featpost/png/trajectoryline.2.png
+ texmf-dist/doc/metapost/featpost/png/trebuchet.1.png
+ texmf-dist/doc/metapost/featpost/png/treecarbonedited.0.png
+ texmf-dist/doc/metapost/featpost/png/trianglecenterofmass.1.png
+ texmf-dist/doc/metapost/featpost/png/triangulartrimesh.1.png
+ texmf-dist/doc/metapost/featpost/png/trig.1.png
+ texmf-dist/doc/metapost/featpost/png/trigonometry.1.png
+ texmf-dist/doc/metapost/featpost/png/troncoconedef.0.png
+ texmf-dist/doc/metapost/featpost/png/tropicalglobe.1.png
+ texmf-dist/doc/metapost/featpost/png/tropicalglobe.2.png
+ texmf-dist/doc/metapost/featpost/png/tropicalglobe.3.png
+ texmf-dist/doc/metapost/featpost/png/troysfear.1.png
+ texmf-dist/doc/metapost/featpost/png/tshirtfig.1.png
+ texmf-dist/doc/metapost/featpost/png/tuftescatter.1.png
+ texmf-dist/doc/metapost/featpost/png/twistflat.1.png
+ texmf-dist/doc/metapost/featpost/png/twistnlc.1.png
+ texmf-dist/doc/metapost/featpost/png/twistroundbiax.1.png
+ texmf-dist/doc/metapost/featpost/png/twocyclestogether.1.png
+ texmf-dist/doc/metapost/featpost/png/twoholes.1.png
+ texmf-dist/doc/metapost/featpost/png/twoplustwo.1.png
+ texmf-dist/doc/metapost/featpost/png/twoupcones.1.png
+ texmf-dist/doc/metapost/featpost/png/ubhtransients.0.png
+ texmf-dist/doc/metapost/featpost/png/ultraeye.1.png
+ texmf-dist/doc/metapost/featpost/png/ultraimprovertex.1.png
+ texmf-dist/doc/metapost/featpost/png/ultraimprovertex.2.png
+ texmf-dist/doc/metapost/featpost/png/ultraimprovertex.3.png
+ texmf-dist/doc/metapost/featpost/png/unperfection.1.png
+ texmf-dist/doc/metapost/featpost/png/unperfectionremoved.1.png
+ texmf-dist/doc/metapost/featpost/png/vanallenbelt.1.png
+ texmf-dist/doc/metapost/featpost/png/vanallenbelt.2.png
+ texmf-dist/doc/metapost/featpost/png/verygoodcone.1.png
+ texmf-dist/doc/metapost/featpost/png/wwfpmp.1.png
+ texmf-dist/doc/metapost/featpost/png/xcmplaca2buraquads.1.png
+ texmf-dist/doc/metapost/featpost/png/xraycamera.1.png
+runfiles size=35
texmf-dist/metapost/featpost/featpost.mp
texmf-dist/metapost/featpost/featpost3Dplus2D.mp
catalogue-ctan /graphics/metapost/contrib/macros/featpost
-catalogue-date 2012-05-08 21:36:46 +0200
+catalogue-date 2013-07-31 08:21:57 +0200
catalogue-license gpl
-catalogue-version 0.8.6
+catalogue-version 0.8.7
name fenixpar
category Package
@@ -64069,10 +69972,421 @@ runfiles size=4
texmf-dist/tex/generic/fenixpar/fenixpar.sty
texmf-dist/tex/generic/fenixpar/fenixtok.sty
catalogue-ctan /macros/generic/fenixpar
-catalogue-date 2012-05-29 13:27:24 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 0.92
+name fetamont
+category Package
+revision 33221
+shortdesc Extended version of Knuth's logo typeface.
+longdesc The fetamont typeface was designed in METAFONT and extends the
+longdesc Logo fonts to complete the T1 encoding. The designs of the
+longdesc glyphs A, E, F, M, N, O, P, S and T are based on the METAFONT
+longdesc constructions by D. E. Knuth. The glyphs Y and 1 imitate the
+longdesc shapes of the corresponding glyphs in the METATYPE1 logo.
+execute addMap fetamont.map
+docfiles size=333
+ texmf-dist/doc/fonts/fetamont/README details="Readme"
+ texmf-dist/doc/fonts/fetamont/fetamont-typeface.pdf details="Package design and construction"
+srcfiles size=6
+ texmf-dist/source/fonts/fetamont/fetamont.dtx
+ texmf-dist/source/fonts/fetamont/fetamont.ins
+runfiles size=2050
+ texmf-dist/fonts/afm/public/fetamont/ffmb10.afm
+ texmf-dist/fonts/afm/public/fetamont/ffmb8.afm
+ texmf-dist/fonts/afm/public/fetamont/ffmb9.afm
+ texmf-dist/fonts/afm/public/fetamont/ffmbc40.afm
+ texmf-dist/fonts/afm/public/fetamont/ffmbco40.afm
+ texmf-dist/fonts/afm/public/fetamont/ffmbo10.afm
+ texmf-dist/fonts/afm/public/fetamont/ffmbo8.afm
+ texmf-dist/fonts/afm/public/fetamont/ffmbo9.afm
+ texmf-dist/fonts/afm/public/fetamont/ffmbw10.afm
+ texmf-dist/fonts/afm/public/fetamont/ffmbwo10.afm
+ texmf-dist/fonts/afm/public/fetamont/ffmc10.afm
+ texmf-dist/fonts/afm/public/fetamont/ffmco10.afm
+ texmf-dist/fonts/afm/public/fetamont/ffmh10.afm
+ texmf-dist/fonts/afm/public/fetamont/ffmh8.afm
+ texmf-dist/fonts/afm/public/fetamont/ffmh9.afm
+ texmf-dist/fonts/afm/public/fetamont/ffmho10.afm
+ texmf-dist/fonts/afm/public/fetamont/ffmho8.afm
+ texmf-dist/fonts/afm/public/fetamont/ffmho9.afm
+ texmf-dist/fonts/afm/public/fetamont/ffmhw10.afm
+ texmf-dist/fonts/afm/public/fetamont/ffmhwo10.afm
+ texmf-dist/fonts/afm/public/fetamont/ffml10.afm
+ texmf-dist/fonts/afm/public/fetamont/ffmlc10.afm
+ texmf-dist/fonts/afm/public/fetamont/ffmlco10.afm
+ texmf-dist/fonts/afm/public/fetamont/ffmlo10.afm
+ texmf-dist/fonts/afm/public/fetamont/ffmlq10.afm
+ texmf-dist/fonts/afm/public/fetamont/ffmlqo10.afm
+ texmf-dist/fonts/afm/public/fetamont/ffmlw10.afm
+ texmf-dist/fonts/afm/public/fetamont/ffmlwo10.afm
+ texmf-dist/fonts/afm/public/fetamont/ffmo10.afm
+ texmf-dist/fonts/afm/public/fetamont/ffmo8.afm
+ texmf-dist/fonts/afm/public/fetamont/ffmo9.afm
+ texmf-dist/fonts/afm/public/fetamont/ffmr10.afm
+ texmf-dist/fonts/afm/public/fetamont/ffmr8.afm
+ texmf-dist/fonts/afm/public/fetamont/ffmr9.afm
+ texmf-dist/fonts/afm/public/fetamont/ffmw10.afm
+ texmf-dist/fonts/afm/public/fetamont/ffmwo10.afm
+ texmf-dist/fonts/map/dvips/fetamont/fetamont.map
+ texmf-dist/fonts/opentype/public/fetamont/ffmb10.otf
+ texmf-dist/fonts/opentype/public/fetamont/ffmb8.otf
+ texmf-dist/fonts/opentype/public/fetamont/ffmb9.otf
+ texmf-dist/fonts/opentype/public/fetamont/ffmbc40.otf
+ texmf-dist/fonts/opentype/public/fetamont/ffmbco40.otf
+ texmf-dist/fonts/opentype/public/fetamont/ffmbo10.otf
+ texmf-dist/fonts/opentype/public/fetamont/ffmbo8.otf
+ texmf-dist/fonts/opentype/public/fetamont/ffmbo9.otf
+ texmf-dist/fonts/opentype/public/fetamont/ffmbw10.otf
+ texmf-dist/fonts/opentype/public/fetamont/ffmbwo10.otf
+ texmf-dist/fonts/opentype/public/fetamont/ffmc10.otf
+ texmf-dist/fonts/opentype/public/fetamont/ffmco10.otf
+ texmf-dist/fonts/opentype/public/fetamont/ffmh10.otf
+ texmf-dist/fonts/opentype/public/fetamont/ffmh8.otf
+ texmf-dist/fonts/opentype/public/fetamont/ffmh9.otf
+ texmf-dist/fonts/opentype/public/fetamont/ffmho10.otf
+ texmf-dist/fonts/opentype/public/fetamont/ffmho8.otf
+ texmf-dist/fonts/opentype/public/fetamont/ffmho9.otf
+ texmf-dist/fonts/opentype/public/fetamont/ffmhw10.otf
+ texmf-dist/fonts/opentype/public/fetamont/ffmhwo10.otf
+ texmf-dist/fonts/opentype/public/fetamont/ffml10.otf
+ texmf-dist/fonts/opentype/public/fetamont/ffmlc10.otf
+ texmf-dist/fonts/opentype/public/fetamont/ffmlco10.otf
+ texmf-dist/fonts/opentype/public/fetamont/ffmlo10.otf
+ texmf-dist/fonts/opentype/public/fetamont/ffmlq10.otf
+ texmf-dist/fonts/opentype/public/fetamont/ffmlqo10.otf
+ texmf-dist/fonts/opentype/public/fetamont/ffmlw10.otf
+ texmf-dist/fonts/opentype/public/fetamont/ffmlwo10.otf
+ texmf-dist/fonts/opentype/public/fetamont/ffmo10.otf
+ texmf-dist/fonts/opentype/public/fetamont/ffmo8.otf
+ texmf-dist/fonts/opentype/public/fetamont/ffmo9.otf
+ texmf-dist/fonts/opentype/public/fetamont/ffmr10.otf
+ texmf-dist/fonts/opentype/public/fetamont/ffmr8.otf
+ texmf-dist/fonts/opentype/public/fetamont/ffmr9.otf
+ texmf-dist/fonts/opentype/public/fetamont/ffmw10.otf
+ texmf-dist/fonts/opentype/public/fetamont/ffmwo10.otf
+ texmf-dist/fonts/source/public/fetamont/ffmb10.mf
+ texmf-dist/fonts/source/public/fetamont/ffmb8.mf
+ texmf-dist/fonts/source/public/fetamont/ffmb9.mf
+ texmf-dist/fonts/source/public/fetamont/ffmbase.mf
+ texmf-dist/fonts/source/public/fetamont/ffmbc40.mf
+ texmf-dist/fonts/source/public/fetamont/ffmbco40.mf
+ texmf-dist/fonts/source/public/fetamont/ffmbo10.mf
+ texmf-dist/fonts/source/public/fetamont/ffmbo8.mf
+ texmf-dist/fonts/source/public/fetamont/ffmbo9.mf
+ texmf-dist/fonts/source/public/fetamont/ffmbw10.mf
+ texmf-dist/fonts/source/public/fetamont/ffmbwo10.mf
+ texmf-dist/fonts/source/public/fetamont/ffmc10.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_A.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_AE.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_Aacute.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_Abreve.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_Acircumflex.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_Adieresis.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_Agrave.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_Aogonek.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_Aring.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_Atilde.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_B.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_C.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_Cacute.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_Ccaron.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_Ccedilla.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_D.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_Dcaron.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_E.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_Eacute.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_Ecaron.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_Ecircumflex.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_Edieresis.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_Egrave.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_Eng.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_Eogonek.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_Eth.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_F.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_G.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_Gbreve.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_Germandbls.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_H.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_I.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_IJ.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_Iacute.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_Icircumflex.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_Idieresis.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_Idotaccent.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_Igrave.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_J.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_K.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_L.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_Lacute.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_Lcaron.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_Lslash.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_M.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_N.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_Nacute.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_Ncaron.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_Ntilde.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_O.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_OE.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_Oacute.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_Ocircumflex.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_Odieresis.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_Ograve.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_Ohungarumlaut.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_Oslash.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_Otilde.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_P.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_Q.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_R.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_Racute.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_Rcaron.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_S.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_Sacute.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_Scaron.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_Scedilla.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_T.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_Tcaron.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_Tcedilla.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_Thorn.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_U.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_Uacute.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_Ucircumflex.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_Udieresis.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_Ugrave.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_Uhungarumlaut.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_Uring.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_V.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_W.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_X.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_Y.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_Yacute.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_Ydieresis.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_Z.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_Zacute.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_Zcaron.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_Zdotaccent.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_acute.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_ampersand.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_asciicircum.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_asciitilde.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_asterisk.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_at.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_backslash.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_bar.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_braceleft.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_braceright.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_bracketleft.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_bracketright.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_breve.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_caron.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_cedilla.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_circumflex.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_colon.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_comma.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_cwm.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_dash.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_dieresis.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_dollar.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_dotaccent.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_eight.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_emdash.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_endash.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_equal.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_exclam.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_exclamdown.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_ff.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_ffi.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_ffl.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_fi.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_five.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_fl.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_four.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_grave.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_greater.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_guillemotleft.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_guillemotright.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_guilsinglleft.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_guilsinglright.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_hungarumlaut.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_hyphen.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_ijlower.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_less.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_macron.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_nine.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_numbersign.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_ogonek.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_one.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_parenleft.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_parenright.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_percent.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_period.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_perthousandzero.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_plus.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_question.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_questiondown.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_quotedbl.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_quotedblbase.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_quotedblleft.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_quotedblright.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_quoteleft.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_quoteright.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_quotesinglbase.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_ring.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_section.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_semicolon.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_seven.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_six.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_slash.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_sterling.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_three.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_tilde.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_two.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_underscore.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_visiblespace.mf
+ texmf-dist/fonts/source/public/fetamont/ffmchar_zero.mf
+ texmf-dist/fonts/source/public/fetamont/ffmco10.mf
+ texmf-dist/fonts/source/public/fetamont/ffmh10.mf
+ texmf-dist/fonts/source/public/fetamont/ffmh8.mf
+ texmf-dist/fonts/source/public/fetamont/ffmh9.mf
+ texmf-dist/fonts/source/public/fetamont/ffmho10.mf
+ texmf-dist/fonts/source/public/fetamont/ffmho8.mf
+ texmf-dist/fonts/source/public/fetamont/ffmho9.mf
+ texmf-dist/fonts/source/public/fetamont/ffmhw10.mf
+ texmf-dist/fonts/source/public/fetamont/ffmhwo10.mf
+ texmf-dist/fonts/source/public/fetamont/ffml10.mf
+ texmf-dist/fonts/source/public/fetamont/ffmlc10.mf
+ texmf-dist/fonts/source/public/fetamont/ffmlco10.mf
+ texmf-dist/fonts/source/public/fetamont/ffmlo10.mf
+ texmf-dist/fonts/source/public/fetamont/ffmlq10.mf
+ texmf-dist/fonts/source/public/fetamont/ffmlqo10.mf
+ texmf-dist/fonts/source/public/fetamont/ffmlw10.mf
+ texmf-dist/fonts/source/public/fetamont/ffmlwo10.mf
+ texmf-dist/fonts/source/public/fetamont/ffmo10.mf
+ texmf-dist/fonts/source/public/fetamont/ffmo8.mf
+ texmf-dist/fonts/source/public/fetamont/ffmo9.mf
+ texmf-dist/fonts/source/public/fetamont/ffmr10.mf
+ texmf-dist/fonts/source/public/fetamont/ffmr8.mf
+ texmf-dist/fonts/source/public/fetamont/ffmr9.mf
+ texmf-dist/fonts/source/public/fetamont/ffmw10.mf
+ texmf-dist/fonts/source/public/fetamont/ffmwo10.mf
+ texmf-dist/fonts/tfm/public/fetamont/ffmb10.tfm
+ texmf-dist/fonts/tfm/public/fetamont/ffmb8.tfm
+ texmf-dist/fonts/tfm/public/fetamont/ffmb9.tfm
+ texmf-dist/fonts/tfm/public/fetamont/ffmbc40.tfm
+ texmf-dist/fonts/tfm/public/fetamont/ffmbco40.tfm
+ texmf-dist/fonts/tfm/public/fetamont/ffmbo10.tfm
+ texmf-dist/fonts/tfm/public/fetamont/ffmbo8.tfm
+ texmf-dist/fonts/tfm/public/fetamont/ffmbo9.tfm
+ texmf-dist/fonts/tfm/public/fetamont/ffmbw10.tfm
+ texmf-dist/fonts/tfm/public/fetamont/ffmbwo10.tfm
+ texmf-dist/fonts/tfm/public/fetamont/ffmc10.tfm
+ texmf-dist/fonts/tfm/public/fetamont/ffmco10.tfm
+ texmf-dist/fonts/tfm/public/fetamont/ffmh10.tfm
+ texmf-dist/fonts/tfm/public/fetamont/ffmh8.tfm
+ texmf-dist/fonts/tfm/public/fetamont/ffmh9.tfm
+ texmf-dist/fonts/tfm/public/fetamont/ffmho10.tfm
+ texmf-dist/fonts/tfm/public/fetamont/ffmho8.tfm
+ texmf-dist/fonts/tfm/public/fetamont/ffmho9.tfm
+ texmf-dist/fonts/tfm/public/fetamont/ffmhw10.tfm
+ texmf-dist/fonts/tfm/public/fetamont/ffmhwo10.tfm
+ texmf-dist/fonts/tfm/public/fetamont/ffml10.tfm
+ texmf-dist/fonts/tfm/public/fetamont/ffmlc10.tfm
+ texmf-dist/fonts/tfm/public/fetamont/ffmlco10.tfm
+ texmf-dist/fonts/tfm/public/fetamont/ffmlo10.tfm
+ texmf-dist/fonts/tfm/public/fetamont/ffmlq10.tfm
+ texmf-dist/fonts/tfm/public/fetamont/ffmlqo10.tfm
+ texmf-dist/fonts/tfm/public/fetamont/ffmlw10.tfm
+ texmf-dist/fonts/tfm/public/fetamont/ffmlwo10.tfm
+ texmf-dist/fonts/tfm/public/fetamont/ffmo10.tfm
+ texmf-dist/fonts/tfm/public/fetamont/ffmo8.tfm
+ texmf-dist/fonts/tfm/public/fetamont/ffmo9.tfm
+ texmf-dist/fonts/tfm/public/fetamont/ffmr10.tfm
+ texmf-dist/fonts/tfm/public/fetamont/ffmr8.tfm
+ texmf-dist/fonts/tfm/public/fetamont/ffmr9.tfm
+ texmf-dist/fonts/tfm/public/fetamont/ffmw10.tfm
+ texmf-dist/fonts/tfm/public/fetamont/ffmwo10.tfm
+ texmf-dist/fonts/type1/public/fetamont/ffmb10.pfb
+ texmf-dist/fonts/type1/public/fetamont/ffmb8.pfb
+ texmf-dist/fonts/type1/public/fetamont/ffmb9.pfb
+ texmf-dist/fonts/type1/public/fetamont/ffmbc40.pfb
+ texmf-dist/fonts/type1/public/fetamont/ffmbco40.pfb
+ texmf-dist/fonts/type1/public/fetamont/ffmbo10.pfb
+ texmf-dist/fonts/type1/public/fetamont/ffmbo8.pfb
+ texmf-dist/fonts/type1/public/fetamont/ffmbo9.pfb
+ texmf-dist/fonts/type1/public/fetamont/ffmbw10.pfb
+ texmf-dist/fonts/type1/public/fetamont/ffmbwo10.pfb
+ texmf-dist/fonts/type1/public/fetamont/ffmc10.pfb
+ texmf-dist/fonts/type1/public/fetamont/ffmco10.pfb
+ texmf-dist/fonts/type1/public/fetamont/ffmh10.pfb
+ texmf-dist/fonts/type1/public/fetamont/ffmh8.pfb
+ texmf-dist/fonts/type1/public/fetamont/ffmh9.pfb
+ texmf-dist/fonts/type1/public/fetamont/ffmho10.pfb
+ texmf-dist/fonts/type1/public/fetamont/ffmho8.pfb
+ texmf-dist/fonts/type1/public/fetamont/ffmho9.pfb
+ texmf-dist/fonts/type1/public/fetamont/ffmhw10.pfb
+ texmf-dist/fonts/type1/public/fetamont/ffmhwo10.pfb
+ texmf-dist/fonts/type1/public/fetamont/ffml10.pfb
+ texmf-dist/fonts/type1/public/fetamont/ffmlc10.pfb
+ texmf-dist/fonts/type1/public/fetamont/ffmlco10.pfb
+ texmf-dist/fonts/type1/public/fetamont/ffmlo10.pfb
+ texmf-dist/fonts/type1/public/fetamont/ffmlq10.pfb
+ texmf-dist/fonts/type1/public/fetamont/ffmlqo10.pfb
+ texmf-dist/fonts/type1/public/fetamont/ffmlw10.pfb
+ texmf-dist/fonts/type1/public/fetamont/ffmlwo10.pfb
+ texmf-dist/fonts/type1/public/fetamont/ffmo10.pfb
+ texmf-dist/fonts/type1/public/fetamont/ffmo8.pfb
+ texmf-dist/fonts/type1/public/fetamont/ffmo9.pfb
+ texmf-dist/fonts/type1/public/fetamont/ffmr10.pfb
+ texmf-dist/fonts/type1/public/fetamont/ffmr8.pfb
+ texmf-dist/fonts/type1/public/fetamont/ffmr9.pfb
+ texmf-dist/fonts/type1/public/fetamont/ffmw10.pfb
+ texmf-dist/fonts/type1/public/fetamont/ffmwo10.pfb
+ texmf-dist/tex/latex/fetamont/T1ffm.fd
+ texmf-dist/tex/latex/fetamont/T1ffmw.fd
+ texmf-dist/tex/latex/fetamont/fetamont.sty
+catalogue-ctan /fonts/fetamont
+catalogue-date 2014-04-26 20:03:33 +0200
+catalogue-license lppl1.3
+catalogue-version 1.3
+
+name feupphdteses
+category Package
+revision 30962
+shortdesc Typeset Engineering PhD theses at the University of Porto.
+longdesc A complete template for thesis/works of Faculdade de Engenharia
+longdesc da Universidade do Porto (FEUP) Faculty of Engineering
+longdesc University of Porto.
+docfiles size=116
+ texmf-dist/doc/latex/feupphdteses/Abbs.tex
+ texmf-dist/doc/latex/feupphdteses/Abstract.tex
+ texmf-dist/doc/latex/feupphdteses/Acknow.tex
+ texmf-dist/doc/latex/feupphdteses/Appendix.tex
+ texmf-dist/doc/latex/feupphdteses/Chapter2.tex
+ texmf-dist/doc/latex/feupphdteses/Chapter3.tex
+ texmf-dist/doc/latex/feupphdteses/Conclusions.tex
+ texmf-dist/doc/latex/feupphdteses/Dedicatory.tex
+ texmf-dist/doc/latex/feupphdteses/Figures/uporto-feup.pdf
+ texmf-dist/doc/latex/feupphdteses/IEEEtranN.bst
+ texmf-dist/doc/latex/feupphdteses/IEEEtranSN.bst
+ texmf-dist/doc/latex/feupphdteses/Intro.tex
+ texmf-dist/doc/latex/feupphdteses/Publications.tex
+ texmf-dist/doc/latex/feupphdteses/Quote.tex
+ texmf-dist/doc/latex/feupphdteses/README details="Readme"
+ texmf-dist/doc/latex/feupphdteses/References.bib
+ texmf-dist/doc/latex/feupphdteses/Resumo.tex
+ texmf-dist/doc/latex/feupphdteses/Template_EN.pdf details="Template showing construction and appearance"
+ texmf-dist/doc/latex/feupphdteses/Template_EN.tcp
+ texmf-dist/doc/latex/feupphdteses/Template_EN.tex
+ texmf-dist/doc/latex/feupphdteses/Template_EN.tps
+ texmf-dist/doc/latex/feupphdteses/mymacros.tex
+runfiles size=5
+ texmf-dist/tex/latex/feupphdteses/feupphdteses.sty
+catalogue-ctan /macros/latex/contrib/feupphdteses
+catalogue-date 2014-02-26 23:03:13 +0100
+catalogue-license lppl
+catalogue-version 4.0
+
name feyn
category Package
revision 15878
@@ -64186,7 +70500,7 @@ srcfiles size=4
runfiles size=1
texmf-dist/tex/latex/feynmp-auto/feynmp-auto.sty
catalogue-ctan /macros/latex/contrib/feynmp-auto
-catalogue-date 2013-05-03 17:23:09 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.1
@@ -64219,7 +70533,7 @@ runfiles size=29
texmf-dist/tex/latex/fge/fge.cfg
texmf-dist/tex/latex/fge/fge.sty
catalogue-ctan /fonts/fge
-catalogue-date 2012-05-29 13:27:24 +0200
+catalogue-date 2014-04-26 20:03:33 +0200
catalogue-license lppl
catalogue-version 1.24
@@ -64227,11 +70541,9 @@ name fifinddo-info
category Package
revision 29349
shortdesc German HTML beamer presentation on nicetext and morehype.
-longdesc The bundle: - exhibits the process of making an "HTML beamer
+longdesc The bundle: exhibits the process of making an "HTML beamer
longdesc presentation" with the blogdot package from the morehype
-longdesc bundle, and - offers a sketch (in German) of package
-longdesc documentation and HTML generation based on the fifinddo
-longdesc package.
+longdesc bundle, and HTML generation based on the fifinddo package.
docfiles size=417
texmf-dist/doc/latex/fifinddo-info/LIESMICH.txt details="Readme" language="de"
texmf-dist/doc/latex/fifinddo-info/README details="Readme" language="en"
@@ -64263,10 +70575,35 @@ srcfiles size=29
texmf-dist/source/latex/fifinddo-info/makevars/makedots.tex
texmf-dist/source/latex/fifinddo-info/makevars/texvars.sh
catalogue-ctan /info/fifinddo-info
-catalogue-date 2012-05-29 13:27:24 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.1b
+name fifo-stack
+category Package
+revision 33288
+shortdesc FIFO and stack implementation for package writers
+longdesc A LaTeX implementation of a combined FIFO Stack modified from
+longdesc the existing stack package by Benjamin Bayart. The package
+longdesc renames the original's \Push and \Pop commands \FSPush and
+longdesc \FSPop, and which work on the top/end of the FIFO/Stack), and
+longdesc adds the ability to \FSUnshift and \FSShift from the the
+longdesc bottom(front) of the FIFO/Stack.
+docfiles size=66
+ texmf-dist/doc/latex/fifo-stack/README details="Readme"
+ texmf-dist/doc/latex/fifo-stack/fifo-stack-test.tex
+ texmf-dist/doc/latex/fifo-stack/fifo-stack.cwl
+ texmf-dist/doc/latex/fifo-stack/fifo-stack.pdf details="Package documentation"
+srcfiles size=9
+ texmf-dist/source/latex/fifo-stack/fifo-stack.dtx
+ texmf-dist/source/latex/fifo-stack/fifo-stack.ins
+runfiles size=2
+ texmf-dist/tex/latex/fifo-stack/fifo-stack.sty
+catalogue-ctan /macros/latex/contrib/fifo-stack
+catalogue-date 2014-04-08 11:20:21 +0200
+catalogue-license lppl
+catalogue-version 1.0
+
name fig4latex
category Package
revision 26313
@@ -64288,7 +70625,7 @@ docfiles size=28
runfiles size=2
texmf-dist/scripts/fig4latex/fig4latex
catalogue-ctan /graphics/fig4latex
-catalogue-date 2013-01-29 15:35:44 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license gpl3
catalogue-version 0.2
@@ -64376,13 +70713,6 @@ shortdesc i386-solaris files of fig4latex
binfiles arch=i386-solaris size=1
bin/i386-solaris/fig4latex
-name fig4latex.mips-irix
-category Package
-revision 29949
-shortdesc mips-irix files of fig4latex
-binfiles arch=mips-irix size=1
- bin/mips-irix/fig4latex
-
name fig4latex.mipsel-linux
category Package
revision 29946
@@ -64418,6 +70748,13 @@ shortdesc win32 files of fig4latex
binfiles arch=win32 size=1
bin/win32/fig4latex.exe
+name fig4latex.x86_64-cygwin
+category Package
+revision 33557
+shortdesc x86_64-cygwin files of fig4latex
+binfiles arch=x86_64-cygwin size=1
+ bin/x86_64-cygwin/fig4latex
+
name fig4latex.x86_64-darwin
category Package
revision 18441
@@ -64466,7 +70803,7 @@ runfiles size=14
texmf-dist/fonts/type1/public/figbas/cmssj.pfb
texmf-dist/fonts/type1/public/figbas/plrj.pfb
catalogue-ctan /fonts/figbas
-catalogue-date 2012-08-15 13:45:23 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.0.3
@@ -64475,12 +70812,12 @@ category Package
revision 19388
shortdesc Organize figure databases with BibTeX.
longdesc FigBib lets you organize your figures in BibTeX databases. Some
-longdesc FigBib features are: - Store and manage figures in a BibTeX
-longdesc database; - Include figures in your LaTeX document with one
-longdesc short command; - Generate a List of Figures containing
-longdesc more/other information than the figure captions; - Control with
-longdesc one switch where to output the figures, either as usual float
-longdesc objects or in a separate part at the end of your document.
+longdesc FigBib features are: Store and manage figures in a BibTeX
+longdesc database; Include figures in your LaTeX document with one short
+longdesc command; Generate a List of Figures containing more/other
+longdesc information than the figure captions; Control with one switch
+longdesc where to output the figures, either as usual float objects or
+longdesc in a separate part at the end of your document.
docfiles size=49
texmf-dist/doc/latex/figbib/README details="Readme"
texmf-dist/doc/latex/figbib/figbib_doc.pdf
@@ -64494,7 +70831,7 @@ runfiles size=5
texmf-dist/bibtex/bst/figbib/figbib1.bst
texmf-dist/tex/latex/figbib/figbib.sty
catalogue-ctan /macros/latex/contrib/figbib
-catalogue-date 2012-07-12 00:17:34 +0200
+catalogue-date 2013-12-28 17:03:29 +0100
catalogue-license lppl
name figflow
@@ -64615,7 +70952,7 @@ runfiles size=9
texmf-dist/tex/latex/filehook/filehook.sty
texmf-dist/tex/latex/filehook/pgf-filehook.sty
catalogue-ctan /macros/latex/contrib/filehook
-catalogue-date 2012-03-12 20:11:22 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 0.5d
@@ -64645,7 +70982,7 @@ runfiles size=7
texmf-dist/tex/latex/fileinfo/myfilist.sty
texmf-dist/tex/latex/fileinfo/readprov.sty
catalogue-ctan /macros/latex/contrib/fileinfo
-catalogue-date 2012-12-02 13:05:20 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 0.81a
@@ -64671,7 +71008,7 @@ runfiles size=8
texmf-dist/tex/latex/filemod/filemod-expmin.sty
texmf-dist/tex/latex/filemod/filemod.sty
catalogue-ctan /macros/latex/contrib/filemod
-catalogue-date 2012-04-20 13:34:11 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.2
@@ -64688,7 +71025,7 @@ catalogue-license other-free
name findhyph
category Package
-revision 29725
+revision 30915
shortdesc Find hyphenated words in a document.
longdesc Findhyph is a Perl script that will analyse the log file from
longdesc running your document with \tracingparagraphs=1 set. The output
@@ -64705,9 +71042,9 @@ docfiles size=11
runfiles size=3
texmf-dist/scripts/findhyph/findhyph
catalogue-ctan /support/findhyph
-catalogue-date 2012-11-23 11:17:42 +0100
+catalogue-date 2013-06-21 02:36:55 +0200
catalogue-license gpl
-catalogue-version 3.2
+catalogue-version 3.3
name findhyph.alpha-linux
category Package
@@ -64793,13 +71130,6 @@ shortdesc i386-solaris files of findhyph
binfiles arch=i386-solaris size=1
bin/i386-solaris/findhyph
-name findhyph.mips-irix
-category Package
-revision 29949
-shortdesc mips-irix files of findhyph
-binfiles arch=mips-irix size=1
- bin/mips-irix/findhyph
-
name findhyph.mipsel-linux
category Package
revision 29946
@@ -64835,6 +71165,13 @@ shortdesc win32 files of findhyph
binfiles arch=win32 size=1
bin/win32/findhyph.exe
+name findhyph.x86_64-cygwin
+category Package
+revision 33557
+shortdesc x86_64-cygwin files of findhyph
+binfiles arch=x86_64-cygwin size=1
+ bin/x86_64-cygwin/findhyph
+
name findhyph.x86_64-darwin
category Package
revision 18441
@@ -64906,10 +71243,761 @@ srcfiles size=3
runfiles size=2
texmf-dist/tex/latex/finstrut/finstrut.sty
catalogue-ctan /macros/latex/contrib/finstrut
-catalogue-date 2012-05-21 00:09:46 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 0.5
+name fira
+category Package
+revision 33208
+shortdesc Fira fonts with LaTeX support.
+longdesc This package provides LaTeX, pdfLaTeX, XeLaTeX and LuaLaTeX
+longdesc support for the Fira Sans family of fonts (version 2.001),
+longdesc designed by Erik Spiekermann and Ralph du Carrois of Carrois
+longdesc Type Design. Fira Sans is available in four weights with
+longdesc corresponding italics: light, regular, medium, and bold.
+execute addMap fira.map
+docfiles size=53
+ texmf-dist/doc/fonts/fira/Fira_Sans_font_specimen.png
+ texmf-dist/doc/fonts/fira/LICENSE
+ texmf-dist/doc/fonts/fira/README details="Readme"
+ texmf-dist/doc/fonts/fira/fira-samples.pdf
+ texmf-dist/doc/fonts/fira/fira-samples.tex
+runfiles size=1947
+ texmf-dist/fonts/enc/dvips/fira/fir_3p7daj.enc
+ texmf-dist/fonts/enc/dvips/fira/fir_43cgqx.enc
+ texmf-dist/fonts/enc/dvips/fira/fir_4ai6s3.enc
+ texmf-dist/fonts/enc/dvips/fira/fir_5vo6v3.enc
+ texmf-dist/fonts/enc/dvips/fira/fir_6stq6l.enc
+ texmf-dist/fonts/enc/dvips/fira/fir_7dora6.enc
+ texmf-dist/fonts/enc/dvips/fira/fir_7pa6nr.enc
+ texmf-dist/fonts/enc/dvips/fira/fir_bbisrg.enc
+ texmf-dist/fonts/enc/dvips/fira/fir_bcaxam.enc
+ texmf-dist/fonts/enc/dvips/fira/fir_cexy2a.enc
+ texmf-dist/fonts/enc/dvips/fira/fir_diwkq2.enc
+ texmf-dist/fonts/enc/dvips/fira/fir_dzjeln.enc
+ texmf-dist/fonts/enc/dvips/fira/fir_epfzfv.enc
+ texmf-dist/fonts/enc/dvips/fira/fir_g5h2wm.enc
+ texmf-dist/fonts/enc/dvips/fira/fir_gfyuxe.enc
+ texmf-dist/fonts/enc/dvips/fira/fir_hv4ypj.enc
+ texmf-dist/fonts/enc/dvips/fira/fir_iqn6bq.enc
+ texmf-dist/fonts/enc/dvips/fira/fir_mrv5cv.enc
+ texmf-dist/fonts/enc/dvips/fira/fir_o5eujx.enc
+ texmf-dist/fonts/enc/dvips/fira/fir_psi4jm.enc
+ texmf-dist/fonts/enc/dvips/fira/fir_rxzygj.enc
+ texmf-dist/fonts/enc/dvips/fira/fir_sztozt.enc
+ texmf-dist/fonts/enc/dvips/fira/fir_tbwpt7.enc
+ texmf-dist/fonts/enc/dvips/fira/fir_tjdeuc.enc
+ texmf-dist/fonts/enc/dvips/fira/fir_ur52lz.enc
+ texmf-dist/fonts/enc/dvips/fira/fir_vrlpiq.enc
+ texmf-dist/fonts/enc/dvips/fira/fir_x5cx63.enc
+ texmf-dist/fonts/enc/dvips/fira/fir_y35fae.enc
+ texmf-dist/fonts/enc/dvips/fira/fir_yjq6vf.enc
+ texmf-dist/fonts/map/dvips/fira/fira.map
+ texmf-dist/fonts/opentype/carrois/fira/FiraSansOT-Bold.otf
+ texmf-dist/fonts/opentype/carrois/fira/FiraSansOT-BoldItalic.otf
+ texmf-dist/fonts/opentype/carrois/fira/FiraSansOT-Light.otf
+ texmf-dist/fonts/opentype/carrois/fira/FiraSansOT-LightItalic.otf
+ texmf-dist/fonts/opentype/carrois/fira/FiraSansOT-Medium.otf
+ texmf-dist/fonts/opentype/carrois/fira/FiraSansOT-MediumItalic.otf
+ texmf-dist/fonts/opentype/carrois/fira/FiraSansOT-Regular.otf
+ texmf-dist/fonts/opentype/carrois/fira/FiraSansOT-RegularItalic.otf
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Bold-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Bold-lf-ly1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Bold-lf-ot1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Bold-lf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Bold-lf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Bold-lf-sc-ot1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Bold-lf-sc-ot1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Bold-lf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Bold-lf-sc-t1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Bold-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Bold-lf-t1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Bold-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Bold-lf-ts1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Bold-osf-ly1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Bold-osf-ly1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Bold-osf-ot1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Bold-osf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Bold-osf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Bold-osf-sc-ot1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Bold-osf-sc-ot1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Bold-osf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Bold-osf-sc-t1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Bold-osf-t1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Bold-osf-t1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Bold-osf-ts1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Bold-osf-ts1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Bold-sup-ly1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Bold-sup-ly1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Bold-sup-ot1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Bold-sup-t1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Bold-sup-t1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Bold-tlf-ly1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Bold-tlf-ly1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Bold-tlf-ot1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Bold-tlf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Bold-tlf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Bold-tlf-sc-ot1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Bold-tlf-sc-ot1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Bold-tlf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Bold-tlf-sc-t1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Bold-tlf-t1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Bold-tlf-t1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Bold-tlf-ts1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Bold-tlf-ts1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Bold-tosf-ly1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Bold-tosf-ly1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Bold-tosf-ot1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Bold-tosf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Bold-tosf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Bold-tosf-sc-ot1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Bold-tosf-sc-ot1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Bold-tosf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Bold-tosf-sc-t1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Bold-tosf-t1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Bold-tosf-t1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Bold-tosf-ts1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Bold-tosf-ts1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-BoldItalic-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-BoldItalic-lf-ly1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-BoldItalic-lf-ot1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-BoldItalic-lf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-BoldItalic-lf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-BoldItalic-lf-sc-ot1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-BoldItalic-lf-sc-ot1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-BoldItalic-lf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-BoldItalic-lf-sc-t1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-BoldItalic-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-BoldItalic-lf-t1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-BoldItalic-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-BoldItalic-lf-ts1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-BoldItalic-osf-ly1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-BoldItalic-osf-ly1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-BoldItalic-osf-ot1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-BoldItalic-osf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-BoldItalic-osf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-BoldItalic-osf-sc-ot1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-BoldItalic-osf-sc-ot1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-BoldItalic-osf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-BoldItalic-osf-sc-t1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-BoldItalic-osf-t1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-BoldItalic-osf-t1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-BoldItalic-osf-ts1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-BoldItalic-osf-ts1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-BoldItalic-sup-ly1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-BoldItalic-sup-ly1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-BoldItalic-sup-ot1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-BoldItalic-sup-t1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-BoldItalic-sup-t1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-BoldItalic-tlf-ly1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-BoldItalic-tlf-ly1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-BoldItalic-tlf-ot1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-BoldItalic-tlf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-BoldItalic-tlf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-BoldItalic-tlf-sc-ot1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-BoldItalic-tlf-sc-ot1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-BoldItalic-tlf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-BoldItalic-tlf-sc-t1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-BoldItalic-tlf-t1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-BoldItalic-tlf-t1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-BoldItalic-tlf-ts1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-BoldItalic-tlf-ts1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-BoldItalic-tosf-ly1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-BoldItalic-tosf-ly1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-BoldItalic-tosf-ot1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-BoldItalic-tosf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-BoldItalic-tosf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-BoldItalic-tosf-sc-ot1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-BoldItalic-tosf-sc-ot1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-BoldItalic-tosf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-BoldItalic-tosf-sc-t1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-BoldItalic-tosf-t1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-BoldItalic-tosf-t1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-BoldItalic-tosf-ts1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-BoldItalic-tosf-ts1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Italic-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Italic-lf-ly1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Italic-lf-ot1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Italic-lf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Italic-lf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Italic-lf-sc-ot1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Italic-lf-sc-ot1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Italic-lf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Italic-lf-sc-t1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Italic-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Italic-lf-t1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Italic-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Italic-lf-ts1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Italic-osf-ly1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Italic-osf-ly1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Italic-osf-ot1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Italic-osf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Italic-osf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Italic-osf-sc-ot1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Italic-osf-sc-ot1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Italic-osf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Italic-osf-sc-t1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Italic-osf-t1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Italic-osf-t1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Italic-osf-ts1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Italic-osf-ts1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Italic-sup-ly1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Italic-sup-ly1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Italic-sup-ot1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Italic-sup-t1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Italic-sup-t1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Italic-tlf-ly1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Italic-tlf-ly1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Italic-tlf-ot1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Italic-tlf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Italic-tlf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Italic-tlf-sc-ot1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Italic-tlf-sc-ot1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Italic-tlf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Italic-tlf-sc-t1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Italic-tlf-t1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Italic-tlf-t1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Italic-tlf-ts1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Italic-tlf-ts1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Italic-tosf-ly1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Italic-tosf-ly1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Italic-tosf-ot1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Italic-tosf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Italic-tosf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Italic-tosf-sc-ot1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Italic-tosf-sc-ot1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Italic-tosf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Italic-tosf-sc-t1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Italic-tosf-t1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Italic-tosf-t1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Italic-tosf-ts1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-Italic-tosf-ts1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-lf-ly1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-lf-ot1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-lf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-lf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-lf-sc-ot1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-lf-sc-ot1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-lf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-lf-sc-t1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-lf-t1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-lf-ts1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-osf-ly1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-osf-ly1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-osf-ot1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-osf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-osf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-osf-sc-ot1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-osf-sc-ot1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-osf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-osf-sc-t1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-osf-t1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-osf-t1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-osf-ts1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-osf-ts1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-sup-ly1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-sup-ly1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-sup-ot1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-sup-t1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-sup-t1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-tlf-ly1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-tlf-ly1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-tlf-ot1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-tlf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-tlf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-tlf-sc-ot1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-tlf-sc-ot1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-tlf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-tlf-sc-t1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-tlf-t1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-tlf-t1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-tlf-ts1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-tlf-ts1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-tosf-ly1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-tosf-ly1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-tosf-ot1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-tosf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-tosf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-tosf-sc-ot1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-tosf-sc-ot1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-tosf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-tosf-sc-t1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-tosf-t1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-tosf-t1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-tosf-ts1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOT-tosf-ts1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-Italic-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-Italic-lf-ly1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-Italic-lf-ot1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-Italic-lf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-Italic-lf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-Italic-lf-sc-ot1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-Italic-lf-sc-ot1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-Italic-lf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-Italic-lf-sc-t1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-Italic-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-Italic-lf-t1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-Italic-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-Italic-lf-ts1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-Italic-osf-ly1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-Italic-osf-ly1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-Italic-osf-ot1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-Italic-osf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-Italic-osf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-Italic-osf-sc-ot1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-Italic-osf-sc-ot1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-Italic-osf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-Italic-osf-sc-t1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-Italic-osf-t1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-Italic-osf-t1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-Italic-osf-ts1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-Italic-osf-ts1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-Italic-sup-ly1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-Italic-sup-ly1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-Italic-sup-ot1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-Italic-sup-t1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-Italic-sup-t1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-Italic-tlf-ly1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-Italic-tlf-ly1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-Italic-tlf-ot1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-Italic-tlf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-Italic-tlf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-Italic-tlf-sc-ot1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-Italic-tlf-sc-ot1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-Italic-tlf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-Italic-tlf-sc-t1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-Italic-tlf-t1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-Italic-tlf-t1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-Italic-tlf-ts1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-Italic-tlf-ts1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-Italic-tosf-ly1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-Italic-tosf-ly1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-Italic-tosf-ot1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-Italic-tosf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-Italic-tosf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-Italic-tosf-sc-ot1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-Italic-tosf-sc-ot1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-Italic-tosf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-Italic-tosf-sc-t1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-Italic-tosf-t1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-Italic-tosf-t1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-Italic-tosf-ts1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-Italic-tosf-ts1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-lf-ly1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-lf-ot1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-lf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-lf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-lf-sc-ot1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-lf-sc-ot1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-lf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-lf-sc-t1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-lf-t1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-lf-ts1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-osf-ly1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-osf-ly1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-osf-ot1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-osf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-osf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-osf-sc-ot1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-osf-sc-ot1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-osf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-osf-sc-t1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-osf-t1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-osf-t1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-osf-ts1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-osf-ts1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-sup-ly1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-sup-ly1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-sup-ot1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-sup-t1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-sup-t1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-tlf-ly1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-tlf-ly1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-tlf-ot1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-tlf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-tlf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-tlf-sc-ot1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-tlf-sc-ot1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-tlf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-tlf-sc-t1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-tlf-t1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-tlf-t1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-tlf-ts1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-tlf-ts1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-tosf-ly1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-tosf-ly1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-tosf-ot1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-tosf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-tosf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-tosf-sc-ot1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-tosf-sc-ot1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-tosf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-tosf-sc-t1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-tosf-t1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-tosf-t1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-tosf-ts1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTLight-tosf-ts1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-Italic-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-Italic-lf-ly1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-Italic-lf-ot1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-Italic-lf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-Italic-lf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-Italic-lf-sc-ot1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-Italic-lf-sc-ot1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-Italic-lf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-Italic-lf-sc-t1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-Italic-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-Italic-lf-t1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-Italic-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-Italic-lf-ts1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-Italic-osf-ly1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-Italic-osf-ly1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-Italic-osf-ot1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-Italic-osf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-Italic-osf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-Italic-osf-sc-ot1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-Italic-osf-sc-ot1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-Italic-osf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-Italic-osf-sc-t1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-Italic-osf-t1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-Italic-osf-t1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-Italic-osf-ts1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-Italic-osf-ts1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-Italic-sup-ly1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-Italic-sup-ly1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-Italic-sup-ot1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-Italic-sup-t1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-Italic-sup-t1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-Italic-tlf-ly1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-Italic-tlf-ly1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-Italic-tlf-ot1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-Italic-tlf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-Italic-tlf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-Italic-tlf-sc-ot1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-Italic-tlf-sc-ot1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-Italic-tlf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-Italic-tlf-sc-t1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-Italic-tlf-t1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-Italic-tlf-t1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-Italic-tlf-ts1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-Italic-tlf-ts1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-Italic-tosf-ly1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-Italic-tosf-ly1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-Italic-tosf-ot1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-Italic-tosf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-Italic-tosf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-Italic-tosf-sc-ot1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-Italic-tosf-sc-ot1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-Italic-tosf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-Italic-tosf-sc-t1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-Italic-tosf-t1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-Italic-tosf-t1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-Italic-tosf-ts1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-Italic-tosf-ts1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-lf-ly1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-lf-ot1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-lf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-lf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-lf-sc-ot1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-lf-sc-ot1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-lf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-lf-sc-t1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-lf-t1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-lf-ts1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-osf-ly1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-osf-ly1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-osf-ot1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-osf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-osf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-osf-sc-ot1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-osf-sc-ot1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-osf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-osf-sc-t1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-osf-t1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-osf-t1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-osf-ts1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-osf-ts1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-sup-ly1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-sup-ly1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-sup-ot1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-sup-t1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-sup-t1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-tlf-ly1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-tlf-ly1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-tlf-ot1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-tlf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-tlf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-tlf-sc-ot1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-tlf-sc-ot1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-tlf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-tlf-sc-t1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-tlf-t1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-tlf-t1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-tlf-ts1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-tlf-ts1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-tosf-ly1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-tosf-ly1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-tosf-ot1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-tosf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-tosf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-tosf-sc-ot1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-tosf-sc-ot1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-tosf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-tosf-sc-t1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-tosf-t1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-tosf-t1.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-tosf-ts1--base.tfm
+ texmf-dist/fonts/tfm/carrois/fira/FiraSansOTMedium-tosf-ts1.tfm
+ texmf-dist/fonts/type1/carrois/fira/FiraSansOT-Bold.pfb
+ texmf-dist/fonts/type1/carrois/fira/FiraSansOT-BoldItalic.pfb
+ texmf-dist/fonts/type1/carrois/fira/FiraSansOT-Italic.pfb
+ texmf-dist/fonts/type1/carrois/fira/FiraSansOT.pfb
+ texmf-dist/fonts/type1/carrois/fira/FiraSansOTLight-Italic.pfb
+ texmf-dist/fonts/type1/carrois/fira/FiraSansOTLight.pfb
+ texmf-dist/fonts/type1/carrois/fira/FiraSansOTMedium-Italic.pfb
+ texmf-dist/fonts/type1/carrois/fira/FiraSansOTMedium.pfb
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOT-Bold-lf-ly1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOT-Bold-lf-sc-ly1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOT-Bold-lf-sc-ot1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOT-Bold-lf-sc-t1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOT-Bold-lf-t1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOT-Bold-lf-ts1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOT-Bold-osf-ly1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOT-Bold-osf-sc-ly1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOT-Bold-osf-sc-ot1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOT-Bold-osf-sc-t1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOT-Bold-osf-t1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOT-Bold-osf-ts1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOT-Bold-sup-ly1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOT-Bold-sup-t1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOT-Bold-tlf-ly1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOT-Bold-tlf-sc-ly1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOT-Bold-tlf-sc-ot1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOT-Bold-tlf-sc-t1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOT-Bold-tlf-t1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOT-Bold-tlf-ts1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOT-Bold-tosf-ly1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOT-Bold-tosf-sc-ly1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOT-Bold-tosf-sc-ot1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOT-Bold-tosf-sc-t1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOT-Bold-tosf-t1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOT-Bold-tosf-ts1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOT-BoldItalic-lf-ly1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOT-BoldItalic-lf-sc-ly1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOT-BoldItalic-lf-sc-ot1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOT-BoldItalic-lf-sc-t1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOT-BoldItalic-lf-t1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOT-BoldItalic-lf-ts1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOT-BoldItalic-osf-ly1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOT-BoldItalic-osf-sc-ly1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOT-BoldItalic-osf-sc-ot1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOT-BoldItalic-osf-sc-t1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOT-BoldItalic-osf-t1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOT-BoldItalic-osf-ts1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOT-BoldItalic-sup-ly1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOT-BoldItalic-sup-t1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOT-BoldItalic-tlf-ly1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOT-BoldItalic-tlf-sc-ly1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOT-BoldItalic-tlf-sc-ot1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOT-BoldItalic-tlf-sc-t1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOT-BoldItalic-tlf-t1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOT-BoldItalic-tlf-ts1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOT-BoldItalic-tosf-ly1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOT-BoldItalic-tosf-sc-ly1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOT-BoldItalic-tosf-sc-ot1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOT-BoldItalic-tosf-sc-t1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOT-BoldItalic-tosf-t1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOT-BoldItalic-tosf-ts1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOT-Italic-lf-ly1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOT-Italic-lf-sc-ly1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOT-Italic-lf-sc-ot1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOT-Italic-lf-sc-t1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOT-Italic-lf-t1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOT-Italic-lf-ts1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOT-Italic-osf-ly1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOT-Italic-osf-sc-ly1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOT-Italic-osf-sc-ot1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOT-Italic-osf-sc-t1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOT-Italic-osf-t1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOT-Italic-osf-ts1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOT-Italic-sup-ly1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOT-Italic-sup-t1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOT-Italic-tlf-ly1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOT-Italic-tlf-sc-ly1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOT-Italic-tlf-sc-ot1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOT-Italic-tlf-sc-t1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOT-Italic-tlf-t1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOT-Italic-tlf-ts1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOT-Italic-tosf-ly1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOT-Italic-tosf-sc-ly1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOT-Italic-tosf-sc-ot1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOT-Italic-tosf-sc-t1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOT-Italic-tosf-t1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOT-Italic-tosf-ts1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOT-lf-ly1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOT-lf-sc-ly1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOT-lf-sc-ot1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOT-lf-sc-t1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOT-lf-t1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOT-lf-ts1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOT-osf-ly1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOT-osf-sc-ly1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOT-osf-sc-ot1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOT-osf-sc-t1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOT-osf-t1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOT-osf-ts1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOT-sup-ly1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOT-sup-t1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOT-tlf-ly1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOT-tlf-sc-ly1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOT-tlf-sc-ot1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOT-tlf-sc-t1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOT-tlf-t1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOT-tlf-ts1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOT-tosf-ly1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOT-tosf-sc-ly1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOT-tosf-sc-ot1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOT-tosf-sc-t1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOT-tosf-t1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOT-tosf-ts1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOTLight-Italic-lf-ly1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOTLight-Italic-lf-sc-ly1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOTLight-Italic-lf-sc-ot1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOTLight-Italic-lf-sc-t1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOTLight-Italic-lf-t1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOTLight-Italic-lf-ts1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOTLight-Italic-osf-ly1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOTLight-Italic-osf-sc-ly1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOTLight-Italic-osf-sc-ot1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOTLight-Italic-osf-sc-t1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOTLight-Italic-osf-t1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOTLight-Italic-osf-ts1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOTLight-Italic-sup-ly1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOTLight-Italic-sup-t1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOTLight-Italic-tlf-ly1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOTLight-Italic-tlf-sc-ly1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOTLight-Italic-tlf-sc-ot1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOTLight-Italic-tlf-sc-t1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOTLight-Italic-tlf-t1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOTLight-Italic-tlf-ts1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOTLight-Italic-tosf-ly1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOTLight-Italic-tosf-sc-ly1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOTLight-Italic-tosf-sc-ot1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOTLight-Italic-tosf-sc-t1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOTLight-Italic-tosf-t1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOTLight-Italic-tosf-ts1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOTLight-lf-ly1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOTLight-lf-sc-ly1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOTLight-lf-sc-ot1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOTLight-lf-sc-t1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOTLight-lf-t1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOTLight-lf-ts1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOTLight-osf-ly1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOTLight-osf-sc-ly1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOTLight-osf-sc-ot1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOTLight-osf-sc-t1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOTLight-osf-t1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOTLight-osf-ts1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOTLight-sup-ly1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOTLight-sup-t1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOTLight-tlf-ly1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOTLight-tlf-sc-ly1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOTLight-tlf-sc-ot1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOTLight-tlf-sc-t1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOTLight-tlf-t1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOTLight-tlf-ts1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOTLight-tosf-ly1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOTLight-tosf-sc-ly1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOTLight-tosf-sc-ot1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOTLight-tosf-sc-t1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOTLight-tosf-t1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOTLight-tosf-ts1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOTMedium-Italic-lf-ly1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOTMedium-Italic-lf-sc-ly1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOTMedium-Italic-lf-sc-ot1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOTMedium-Italic-lf-sc-t1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOTMedium-Italic-lf-t1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOTMedium-Italic-lf-ts1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOTMedium-Italic-osf-ly1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOTMedium-Italic-osf-sc-ly1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOTMedium-Italic-osf-sc-ot1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOTMedium-Italic-osf-sc-t1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOTMedium-Italic-osf-t1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOTMedium-Italic-osf-ts1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOTMedium-Italic-sup-ly1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOTMedium-Italic-sup-t1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOTMedium-Italic-tlf-ly1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOTMedium-Italic-tlf-sc-ly1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOTMedium-Italic-tlf-sc-ot1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOTMedium-Italic-tlf-sc-t1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOTMedium-Italic-tlf-t1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOTMedium-Italic-tlf-ts1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOTMedium-Italic-tosf-ly1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOTMedium-Italic-tosf-sc-ly1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOTMedium-Italic-tosf-sc-ot1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOTMedium-Italic-tosf-sc-t1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOTMedium-Italic-tosf-t1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOTMedium-Italic-tosf-ts1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOTMedium-lf-ly1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOTMedium-lf-sc-ly1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOTMedium-lf-sc-ot1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOTMedium-lf-sc-t1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOTMedium-lf-t1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOTMedium-lf-ts1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOTMedium-osf-ly1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOTMedium-osf-sc-ly1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOTMedium-osf-sc-ot1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOTMedium-osf-sc-t1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOTMedium-osf-t1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOTMedium-osf-ts1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOTMedium-sup-ly1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOTMedium-sup-t1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOTMedium-tlf-ly1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOTMedium-tlf-sc-ly1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOTMedium-tlf-sc-ot1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOTMedium-tlf-sc-t1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOTMedium-tlf-t1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOTMedium-tlf-ts1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOTMedium-tosf-ly1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOTMedium-tosf-sc-ly1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOTMedium-tosf-sc-ot1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOTMedium-tosf-sc-t1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOTMedium-tosf-t1.vf
+ texmf-dist/fonts/vf/carrois/fira/FiraSansOTMedium-tosf-ts1.vf
+ texmf-dist/tex/latex/fira/FiraSans.sty
+ texmf-dist/tex/latex/fira/LY1FiraSansOT-LF.fd
+ texmf-dist/tex/latex/fira/LY1FiraSansOT-OsF.fd
+ texmf-dist/tex/latex/fira/LY1FiraSansOT-Sup.fd
+ texmf-dist/tex/latex/fira/LY1FiraSansOT-TLF.fd
+ texmf-dist/tex/latex/fira/LY1FiraSansOT-TOsF.fd
+ texmf-dist/tex/latex/fira/OT1FiraSansOT-LF.fd
+ texmf-dist/tex/latex/fira/OT1FiraSansOT-OsF.fd
+ texmf-dist/tex/latex/fira/OT1FiraSansOT-Sup.fd
+ texmf-dist/tex/latex/fira/OT1FiraSansOT-TLF.fd
+ texmf-dist/tex/latex/fira/OT1FiraSansOT-TOsF.fd
+ texmf-dist/tex/latex/fira/T1FiraSansOT-LF.fd
+ texmf-dist/tex/latex/fira/T1FiraSansOT-OsF.fd
+ texmf-dist/tex/latex/fira/T1FiraSansOT-Sup.fd
+ texmf-dist/tex/latex/fira/T1FiraSansOT-TLF.fd
+ texmf-dist/tex/latex/fira/T1FiraSansOT-TOsF.fd
+ texmf-dist/tex/latex/fira/TS1FiraSansOT-LF.fd
+ texmf-dist/tex/latex/fira/TS1FiraSansOT-OsF.fd
+ texmf-dist/tex/latex/fira/TS1FiraSansOT-TLF.fd
+ texmf-dist/tex/latex/fira/TS1FiraSansOT-TOsF.fd
+catalogue-ctan /fonts/fira
+catalogue-date 2014-04-26 20:03:33 +0200
+catalogue-license ofl
+
name first-latex-doc
category Package
revision 15878
@@ -64933,7 +72021,7 @@ docfiles size=157
texmf-dist/doc/latex/first-latex-doc/latex-second-d.tex
texmf-dist/doc/latex/first-latex-doc/latex-second-e.tex
catalogue-ctan /info/first-latex-doc
-catalogue-date 2012-07-03 23:31:39 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license pd
name fix2col
@@ -64995,7 +72083,7 @@ runfiles size=3
texmf-dist/makeindex/fixlatvian/lv.ist
texmf-dist/tex/xelatex/fixlatvian/fixlatvian.sty
catalogue-ctan /macros/xetex/latex/fixlatvian
-catalogue-date 2012-07-03 23:31:39 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1a
@@ -65017,7 +72105,7 @@ srcfiles size=5
runfiles size=1
texmf-dist/tex/latex/fixltxhyph/fixltxhyph.sty
catalogue-ctan /macros/latex/contrib/fixltxhyph
-catalogue-date 2012-07-03 23:31:39 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 0.4
@@ -65083,7 +72171,7 @@ srcfiles size=2
runfiles size=1
texmf-dist/tex/latex/fixmetodonotes/fixmetodonotes.sty
catalogue-ctan /macros/latex/contrib/fixmetodonotes
-catalogue-date 2013-04-28 19:46:12 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license pd
catalogue-version 0.2.2
@@ -65098,7 +72186,7 @@ longdesc the effects of \mag.
runfiles size=1
texmf-dist/tex/plain/fixpdfmag/fixpdfmag.tex
catalogue-ctan /macros/plain/contrib/misc/fixpdfmag.tex
-catalogue-date 2012-07-03 23:31:39 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license pd
name fjodor
@@ -65117,7 +72205,7 @@ docfiles size=125
runfiles size=2
texmf-dist/tex/latex/fjodor/fjodor.sty
catalogue-ctan /macros/latex/contrib/fjodor
-catalogue-date 2012-07-03 23:31:39 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license gpl
name flabels
@@ -65184,7 +72272,7 @@ srcfiles size=14
runfiles size=2
texmf-dist/tex/latex/flagderiv/flagderiv.sty
catalogue-ctan /macros/latex/contrib/flagderiv
-catalogue-date 2012-07-04 00:51:36 +0200
+catalogue-date 2013-11-21 21:20:37 +0100
catalogue-license gpl
catalogue-version 0.10
@@ -65240,7 +72328,7 @@ runfiles size=12
texmf-dist/tex/latex/flashmovie/flashmovie.sty
texmf-dist/tex/latex/flashmovie/player_flv_maxi.swf
catalogue-ctan /macros/latex/contrib/flashmovie
-catalogue-date 2012-07-12 00:13:39 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 0.4
@@ -65400,7 +72488,7 @@ docfiles size=365
runfiles size=2
texmf-dist/tex/latex/flipbook/flipbook.sty
catalogue-ctan /macros/latex/contrib/flipbook
-catalogue-date 2012-03-07 15:39:23 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 0.2
@@ -65446,7 +72534,7 @@ srcfiles size=11
runfiles size=2
texmf-dist/tex/latex/float/float.sty
catalogue-ctan /macros/latex/contrib/float
-catalogue-date 2012-07-12 13:41:30 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.3d
@@ -65536,13 +72624,13 @@ srcfiles size=13
runfiles size=3
texmf-dist/tex/latex/flowchart/flowchart.sty
catalogue-ctan /graphics/pgf/contrib/flowchart
-catalogue-date 2013-02-20 11:06:23 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 3.2
name flowfram
category Package
-revision 28238
+revision 34048
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
@@ -65550,7 +72638,7 @@ longdesc one frame to the next in the order in which they were defined.
longdesc This is useful for creating posters or magazines, indeed any
longdesc form of document that does not conform to the standard one or
longdesc two column layout.
-docfiles size=549
+docfiles size=550
texmf-dist/doc/latex/flowfram/CHANGES
texmf-dist/doc/latex/flowfram/README
texmf-dist/doc/latex/flowfram/ffuserguide.pdf details="User guide"
@@ -65586,16 +72674,16 @@ docfiles size=549
texmf-dist/doc/latex/flowfram/samples/sampleRL.tex
texmf-dist/doc/latex/flowfram/samples/sheep.eps
texmf-dist/doc/latex/flowfram/samples/sheep.png
-srcfiles size=117
+srcfiles size=118
texmf-dist/source/latex/flowfram/flowfram.dtx
texmf-dist/source/latex/flowfram/flowfram.ins
runfiles size=58
texmf-dist/scripts/flowfram/flowfram.perl
texmf-dist/tex/latex/flowfram/flowfram.sty
catalogue-ctan /macros/latex/contrib/flowfram
-catalogue-date 2013-05-04 22:56:58 +0200
+catalogue-date 2014-05-15 17:30:42 +0200
catalogue-license lppl
-catalogue-version 1.14
+catalogue-version 1.15
name fltpoint
category Package
@@ -65615,7 +72703,7 @@ runfiles size=7
texmf-dist/tex/generic/fltpoint/fltpoint.sty
texmf-dist/tex/generic/fltpoint/fltpoint.tex
catalogue-ctan /macros/latex/contrib/fltpoint
-catalogue-date 2012-04-06 15:13:57 +0200
+catalogue-date 2013-09-30 11:48:44 +0200
catalogue-license other-free
catalogue-version 1.1b
@@ -65638,7 +72726,7 @@ catalogue-license lppl
name fmtcount
category Package
-revision 28068
+revision 31456
shortdesc Display the value of a LaTeX counter in a variety of formats.
longdesc The package provides commands that display the value of a LaTeX
longdesc counter in a variety of formats (ordinal, text, hexadecimal,
@@ -65656,10 +72744,10 @@ docfiles size=139
texmf-dist/doc/latex/fmtcount/fc-lang.tex
texmf-dist/doc/latex/fmtcount/fc-samp.tex
texmf-dist/doc/latex/fmtcount/fmtcount.pdf details="Package documentation"
-srcfiles size=64
+srcfiles size=66
texmf-dist/source/latex/fmtcount/fmtcount.dtx
texmf-dist/source/latex/fmtcount/fmtcount.ins
-runfiles size=62
+runfiles size=63
texmf-dist/scripts/fmtcount/fmtcount.perl
texmf-dist/tex/latex/fmtcount/fc-UKenglish.def
texmf-dist/tex/latex/fmtcount/fc-USenglish.def
@@ -65680,9 +72768,9 @@ runfiles size=62
texmf-dist/tex/latex/fmtcount/fcprefix.sty
texmf-dist/tex/latex/fmtcount/fmtcount.sty
catalogue-ctan /macros/latex/contrib/fmtcount
-catalogue-date 2012-11-17 10:29:25 +0100
+catalogue-date 2014-04-27 13:31:37 +0200
catalogue-license lppl1.3
-catalogue-version 2.02
+catalogue-version 2.03
name fn2end
category Package
@@ -65801,32 +72889,22 @@ catalogue-license lppl1.3
name fnpct
category Package
-revision 29795
+revision 33144
shortdesc Manage footnote marks' interaction with punctuation.
longdesc The package moves footnote marks after following punctuation
longdesc (comma or full stop), and adjusts kerning as appropriate. As a
longdesc side effect, a change to the handling of multiple footnotes is
longdesc provided.
-docfiles size=165
+docfiles size=157
texmf-dist/doc/latex/fnpct/README details="Readme"
- texmf-dist/doc/latex/fnpct/bigfoot_ex.tex
- texmf-dist/doc/latex/fnpct/fixfoot_ex.tex
texmf-dist/doc/latex/fnpct/fnpct_en.pdf details="Package documentation"
texmf-dist/doc/latex/fnpct/fnpct_en.tex
- texmf-dist/doc/latex/fnpct/nested_ex.tex
- texmf-dist/doc/latex/fnpct/nested_ex_a.tex
- texmf-dist/doc/latex/fnpct/nested_ex_b.tex
- texmf-dist/doc/latex/fnpct/nested_ex_c.tex
- texmf-dist/doc/latex/fnpct/normal_ex.tex
- texmf-dist/doc/latex/fnpct/pagenote_ex.tex
- texmf-dist/doc/latex/fnpct/sepfootnotes_ex.tex
- texmf-dist/doc/latex/fnpct/tufte_ex.tex
-runfiles size=10
+runfiles size=11
texmf-dist/tex/latex/fnpct/fnpct.sty
catalogue-ctan /macros/latex/contrib/fnpct
-catalogue-date 2013-04-08 10:17:07 +0200
+catalogue-date 2014-03-10 13:15:59 +0100
catalogue-license lppl1.3
-catalogue-version 0.2k
+catalogue-version 0.4b
name fntproof
category Package
@@ -65846,7 +72924,7 @@ docfiles size=57
runfiles size=4
texmf-dist/tex/generic/fntproof/fntproof.tex
catalogue-ctan /macros/generic/fntproof
-catalogue-date 2012-07-06 22:53:14 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license pd
name fnumprint
@@ -65870,7 +72948,7 @@ srcfiles size=4
runfiles size=1
texmf-dist/tex/latex/fnumprint/fnumprint.sty
catalogue-ctan /macros/latex/contrib/fnumprint
-catalogue-date 2013-02-19 09:29:17 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.1a
@@ -65895,7 +72973,7 @@ runfiles size=8
texmf-dist/tex/latex/foekfont/ot1foekfont.fd
texmf-dist/tex/latex/foekfont/t1foekfont.fd
catalogue-ctan /fonts/foekfont
-catalogue-date 2012-07-06 22:53:14 +0200
+catalogue-date 2014-04-26 20:03:33 +0200
catalogue-license gpl
name foilhtml
@@ -65958,7 +73036,7 @@ runfiles size=37
texmf-dist/tex/latex/fonetika/fonetika.sty
texmf-dist/tex/latex/fonetika/t1fonetika.fd
catalogue-ctan /fonts/fonetika
-catalogue-date 2012-07-06 22:53:14 +0200
+catalogue-date 2014-04-26 20:03:33 +0200
catalogue-license other-free
name font-change
@@ -66032,33 +73110,33 @@ catalogue-version 2010.1
name fontawesome
category Package
-revision 29498
+revision 31020
shortdesc Font containing web-related icons.
longdesc The package offers access to the large number of web-related
longdesc icons provided by the included font. The package requires the
longdesc package, fontspec, running under XeTeX or LuaTeX.
-docfiles size=39
+docfiles size=43
texmf-dist/doc/latex/fontawesome/README details="Readme"
texmf-dist/doc/latex/fontawesome/fontawesome.pdf
texmf-dist/doc/latex/fontawesome/fontawesome.tex
-runfiles size=21
+runfiles size=25
texmf-dist/fonts/opentype/public/fontawesome/FontAwesome.otf
texmf-dist/tex/latex/fontawesome/fontawesome.sty
catalogue-ctan /fonts/fontawesome
-catalogue-date 2013-03-26 10:13:33 +0100
+catalogue-date 2014-04-26 20:05:48 +0200
catalogue-license other-free
-catalogue-version 3.0.2-1
+catalogue-version 3.1.1
name fontaxes
category Package
-revision 24880
+revision 33276
shortdesc Additional font axes for LaTeX.
longdesc The package adds several new font axes on top of LaTeX's New
longdesc Font Selection Scheme. In particular, it splits the shape axis
longdesc into a primary and a secondary shape axis, and it adds three
longdesc new axes to deal with the different figure versions offered by
longdesc many professional fonts.
-docfiles size=32
+docfiles size=33
texmf-dist/doc/latex/fontaxes/README details="Readme"
texmf-dist/doc/latex/fontaxes/fontaxes.pdf details="Package documentation"
texmf-dist/doc/latex/fontaxes/test-fontaxes.tex
@@ -66068,9 +73146,9 @@ srcfiles size=12
runfiles size=4
texmf-dist/tex/latex/fontaxes/fontaxes.sty
catalogue-ctan /macros/latex/contrib/fontaxes
-catalogue-date 2012-04-27 17:08:26 +0200
+catalogue-date 2014-03-23 16:44:03 +0100
catalogue-license lppl1.3
-catalogue-version 1.0c
+catalogue-version 1.0d
name fontbook
category Package
@@ -66089,7 +73167,7 @@ srcfiles size=3
runfiles size=1
texmf-dist/tex/xelatex/fontbook/fontbook.sty
catalogue-ctan /macros/xetex/latex/fontbook
-catalogue-date 2012-07-06 22:53:14 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 0.2
@@ -66127,7 +73205,7 @@ catalogue-version 2.2
name fontinst
category Package
-revision 29764
+revision 33736
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
@@ -66391,13 +73469,6 @@ shortdesc i386-solaris files of fontinst
binfiles arch=i386-solaris size=1
bin/i386-solaris/fontinst
-name fontinst.mips-irix
-category Package
-revision 29949
-shortdesc mips-irix files of fontinst
-binfiles arch=mips-irix size=1
- bin/mips-irix/fontinst
-
name fontinst.mipsel-linux
category Package
revision 29946
@@ -66426,6 +73497,13 @@ shortdesc universal-darwin files of fontinst
binfiles arch=universal-darwin size=1
bin/universal-darwin/fontinst
+name fontinst.x86_64-cygwin
+category Package
+revision 33557
+shortdesc x86_64-cygwin files of fontinst
+binfiles arch=x86_64-cygwin size=1
+ bin/x86_64-cygwin/fontinst
+
name fontinst.x86_64-darwin
category Package
revision 29809
@@ -66531,17 +73609,17 @@ catalogue-license gpl
name fontools
category Package
-revision 29725
+revision 33380
shortdesc Tools to simplify using fonts (especially TT/OTF ones).
longdesc This package provides a few tools to ease using fonts
longdesc (especially Truetype/Opentype ones) with Latex and fontinst:
-longdesc AFM2AFM - reencode .afm files; designed to replace fontinst's
-longdesc \reencodefont for big .afm files; AUTOINST - simplify the use
+longdesc afm2afm - reencode .afm files; designed to replace fontinst's
+longdesc \reencodefont for big .afm files; autoinst - simplify the use
longdesc of the LCDF TypeTools by creating a command file for otftotfm,
-longdesc plus .fd and .sty files; and OT2KPX - extract all kerning pairs
+longdesc plus .fd and .sty files; and ot2kpx - extract all kerning pairs
longdesc from an OpenType font.
depend fontools.ARCH
-docfiles size=29
+docfiles size=30
texmf-dist/doc/man/man1/afm2afm.1
texmf-dist/doc/man/man1/afm2afm.man1.pdf
texmf-dist/doc/man/man1/autoinst.1
@@ -66550,7 +73628,7 @@ docfiles size=29
texmf-dist/doc/man/man1/ot2kpx.man1.pdf
texmf-dist/doc/support/fontools/GPLv2.txt
texmf-dist/doc/support/fontools/README details="Bundle readme"
-runfiles size=33
+runfiles size=36
texmf-dist/fonts/enc/dvips/fontools/fontools_ly1.enc
texmf-dist/fonts/enc/dvips/fontools/fontools_ot1.enc
texmf-dist/fonts/enc/dvips/fontools/fontools_t1.enc
@@ -66559,7 +73637,7 @@ runfiles size=33
texmf-dist/scripts/fontools/autoinst
texmf-dist/scripts/fontools/ot2kpx
catalogue-ctan /fonts/utilities/fontools
-catalogue-date 2013-02-07 18:45:15 +0100
+catalogue-date 2014-04-05 19:44:32 +0200
catalogue-license gpl2
name fontools.alpha-linux
@@ -66670,15 +73748,6 @@ binfiles arch=i386-solaris size=3
bin/i386-solaris/autoinst
bin/i386-solaris/ot2kpx
-name fontools.mips-irix
-category Package
-revision 29949
-shortdesc mips-irix files of fontools
-binfiles arch=mips-irix size=3
- bin/mips-irix/afm2afm
- bin/mips-irix/autoinst
- bin/mips-irix/ot2kpx
-
name fontools.mipsel-linux
category Package
revision 29946
@@ -66724,6 +73793,15 @@ binfiles arch=win32 size=3
bin/win32/autoinst.exe
bin/win32/ot2kpx.exe
+name fontools.x86_64-cygwin
+category Package
+revision 33557
+shortdesc x86_64-cygwin files of fontools
+binfiles arch=x86_64-cygwin size=3
+ bin/x86_64-cygwin/afm2afm
+ bin/x86_64-cygwin/autoinst
+ bin/x86_64-cygwin/ot2kpx
+
name fontools.x86_64-darwin
category Package
revision 25997
@@ -66753,7 +73831,7 @@ binfiles arch=x86_64-solaris size=3
name fonts-tlwg
category Package
-revision 30477
+revision 33209
shortdesc Thai fonts for LaTeX from TLWG.
longdesc A collection of free Thai fonts, supplied as FontForge sources,
longdesc and with LaTeX .fd files. This package depends on the thailatex
@@ -66763,7 +73841,7 @@ execute addMap nf.map
execute addMap tlwg.map
docfiles size=4
texmf-dist/doc/fonts/fonts-tlwg/examples/teststd.tex
-srcfiles size=4710
+srcfiles size=4777
texmf-dist/source/fonts/fonts-tlwg/AUTHORS
texmf-dist/source/fonts/fonts-tlwg/COPYING
texmf-dist/source/fonts/fonts-tlwg/ChangeLog
@@ -66842,6 +73920,7 @@ srcfiles size=4710
texmf-dist/source/fonts/fonts-tlwg/scripts/gen-ttf.pe
texmf-dist/source/fonts/fonts-tlwg/scripts/gen.mk.am
texmf-dist/source/fonts/fonts-tlwg/scripts/thaikernpairs.txt
+ texmf-dist/source/fonts/fonts-tlwg/test-driver
texmf-dist/source/fonts/fonts-tlwg/tests/Makefile.am
texmf-dist/source/fonts/fonts-tlwg/tests/Makefile.in
texmf-dist/source/fonts/fonts-tlwg/tests/gen-pdfsample.sh
@@ -66888,7 +73967,7 @@ srcfiles size=4710
texmf-dist/source/fonts/fonts-tlwg/tlwg/Waree-BoldOblique.sfd
texmf-dist/source/fonts/fonts-tlwg/tlwg/Waree-Oblique.sfd
texmf-dist/source/fonts/fonts-tlwg/tlwg/Waree.sfd
-runfiles size=1216
+runfiles size=1269
texmf-dist/fonts/afm/public/fonts-tlwg/garuda.afm
texmf-dist/fonts/afm/public/fonts-tlwg/garuda_b.afm
texmf-dist/fonts/afm/public/fonts-tlwg/garuda_bo.afm
@@ -66928,6 +74007,8 @@ runfiles size=1216
texmf-dist/fonts/afm/public/fonts-tlwg/umpush.afm
texmf-dist/fonts/afm/public/fonts-tlwg/umpush_b.afm
texmf-dist/fonts/afm/public/fonts-tlwg/umpush_bo.afm
+ texmf-dist/fonts/afm/public/fonts-tlwg/umpush_l.afm
+ texmf-dist/fonts/afm/public/fonts-tlwg/umpush_lo.afm
texmf-dist/fonts/afm/public/fonts-tlwg/umpush_o.afm
texmf-dist/fonts/afm/public/fonts-tlwg/waree.afm
texmf-dist/fonts/afm/public/fonts-tlwg/waree_b.afm
@@ -67000,6 +74081,8 @@ runfiles size=1216
texmf-dist/fonts/tfm/public/fonts-tlwg/rumpush.tfm
texmf-dist/fonts/tfm/public/fonts-tlwg/rumpush_b.tfm
texmf-dist/fonts/tfm/public/fonts-tlwg/rumpush_bo.tfm
+ texmf-dist/fonts/tfm/public/fonts-tlwg/rumpush_l.tfm
+ texmf-dist/fonts/tfm/public/fonts-tlwg/rumpush_lo.tfm
texmf-dist/fonts/tfm/public/fonts-tlwg/rumpush_o.tfm
texmf-dist/fonts/tfm/public/fonts-tlwg/rwaree.tfm
texmf-dist/fonts/tfm/public/fonts-tlwg/rwaree_b.tfm
@@ -67020,6 +74103,8 @@ runfiles size=1216
texmf-dist/fonts/tfm/public/fonts-tlwg/umpush.tfm
texmf-dist/fonts/tfm/public/fonts-tlwg/umpush_b.tfm
texmf-dist/fonts/tfm/public/fonts-tlwg/umpush_bo.tfm
+ texmf-dist/fonts/tfm/public/fonts-tlwg/umpush_l.tfm
+ texmf-dist/fonts/tfm/public/fonts-tlwg/umpush_lo.tfm
texmf-dist/fonts/tfm/public/fonts-tlwg/umpush_o.tfm
texmf-dist/fonts/tfm/public/fonts-tlwg/waree.tfm
texmf-dist/fonts/tfm/public/fonts-tlwg/waree_b.tfm
@@ -67064,6 +74149,8 @@ runfiles size=1216
texmf-dist/fonts/type1/public/fonts-tlwg/umpush.pfb
texmf-dist/fonts/type1/public/fonts-tlwg/umpush_b.pfb
texmf-dist/fonts/type1/public/fonts-tlwg/umpush_bo.pfb
+ texmf-dist/fonts/type1/public/fonts-tlwg/umpush_l.pfb
+ texmf-dist/fonts/type1/public/fonts-tlwg/umpush_lo.pfb
texmf-dist/fonts/type1/public/fonts-tlwg/umpush_o.pfb
texmf-dist/fonts/type1/public/fonts-tlwg/waree.pfb
texmf-dist/fonts/type1/public/fonts-tlwg/waree_b.pfb
@@ -67108,6 +74195,8 @@ runfiles size=1216
texmf-dist/fonts/vf/public/fonts-tlwg/umpush.vf
texmf-dist/fonts/vf/public/fonts-tlwg/umpush_b.vf
texmf-dist/fonts/vf/public/fonts-tlwg/umpush_bo.vf
+ texmf-dist/fonts/vf/public/fonts-tlwg/umpush_l.vf
+ texmf-dist/fonts/vf/public/fonts-tlwg/umpush_lo.vf
texmf-dist/fonts/vf/public/fonts-tlwg/umpush_o.vf
texmf-dist/fonts/vf/public/fonts-tlwg/waree.vf
texmf-dist/fonts/vf/public/fonts-tlwg/waree_b.vf
@@ -67125,19 +74214,20 @@ runfiles size=1216
texmf-dist/tex/latex/fonts-tlwg/lthumpush.fd
texmf-dist/tex/latex/fonts-tlwg/lthwaree.fd
catalogue-ctan /fonts/thai/fonts-tlwg
-catalogue-date 2013-02-15 09:53:31 +0100
+catalogue-date 2014-05-01 23:14:09 +0200
catalogue-license gpl
-catalogue-version 0.5.1
+catalogue-version 0.6.0
name fontspec
category Package
-revision 30618
+revision 32416
shortdesc Advanced font selection in XeLaTeX and LuaLaTeX.
longdesc Fontspec is a package for XeLaTeX and LuaLaTeX. It provides an
longdesc automatic and unified interface to feature-rich AAT and
longdesc OpenType fonts through the NFSS in LaTeX running on XeTeX or
longdesc LuaTeX engines. The package requires the l3kernel and xparse
longdesc bundles from the LaTeX 3 development team.
+depend iftex
depend kastrup
depend l3kernel
depend l3packages
@@ -67189,7 +74279,7 @@ runfiles size=48
texmf-dist/tex/latex/fontspec/fontspec.lua
texmf-dist/tex/latex/fontspec/fontspec.sty
catalogue-ctan /macros/latex/contrib/fontspec
-catalogue-date 2013-05-26 19:01:07 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version v2.3c
@@ -67221,7 +74311,7 @@ catalogue-version 1.6b
name fontware
category TLCore
-revision 29764
+revision 33736
depend fontware.ARCH
docfiles size=12
texmf-dist/doc/man/man1/pltotf.1
@@ -67235,9 +74325,9 @@ docfiles size=12
name fontware.alpha-linux
category TLCore
-revision 29891
+revision 33553
shortdesc alpha-linux files of fontware
-binfiles arch=alpha-linux size=121
+binfiles arch=alpha-linux size=123
bin/alpha-linux/pltotf
bin/alpha-linux/tftopl
bin/alpha-linux/vftovp
@@ -67245,7 +74335,7 @@ binfiles arch=alpha-linux size=121
name fontware.amd64-freebsd
category TLCore
-revision 29874
+revision 33488
shortdesc amd64-freebsd files of fontware
binfiles arch=amd64-freebsd size=102
bin/amd64-freebsd/pltotf
@@ -67255,7 +74345,7 @@ binfiles arch=amd64-freebsd size=102
name fontware.amd64-kfreebsd
category TLCore
-revision 30655
+revision 33864
shortdesc amd64-kfreebsd files of fontware
binfiles arch=amd64-kfreebsd size=82
bin/amd64-kfreebsd/pltotf
@@ -67265,7 +74355,7 @@ binfiles arch=amd64-kfreebsd size=82
name fontware.amd64-netbsd
category TLCore
-revision 30660
+revision 33726
shortdesc amd64-netbsd files of fontware
binfiles arch=amd64-netbsd size=95
bin/amd64-netbsd/pltotf
@@ -67275,7 +74365,7 @@ binfiles arch=amd64-netbsd size=95
name fontware.armel-linux
category TLCore
-revision 29888
+revision 33916
shortdesc armel-linux files of fontware
binfiles arch=armel-linux size=77
bin/armel-linux/pltotf
@@ -67285,9 +74375,9 @@ binfiles arch=armel-linux size=77
name fontware.armhf-linux
category TLCore
-revision 30443
+revision 34125
shortdesc armhf-linux files of fontware
-binfiles arch=armhf-linux size=73
+binfiles arch=armhf-linux size=74
bin/armhf-linux/pltotf
bin/armhf-linux/tftopl
bin/armhf-linux/vftovp
@@ -67295,9 +74385,9 @@ binfiles arch=armhf-linux size=73
name fontware.i386-cygwin
category TLCore
-revision 30526
+revision 34161
shortdesc i386-cygwin files of fontware
-binfiles arch=i386-cygwin size=82
+binfiles arch=i386-cygwin size=93
bin/i386-cygwin/pltotf.exe
bin/i386-cygwin/tftopl.exe
bin/i386-cygwin/vftovp.exe
@@ -67305,7 +74395,7 @@ binfiles arch=i386-cygwin size=82
name fontware.i386-freebsd
category TLCore
-revision 29874
+revision 33488
shortdesc i386-freebsd files of fontware
binfiles arch=i386-freebsd size=97
bin/i386-freebsd/pltotf
@@ -67315,7 +74405,7 @@ binfiles arch=i386-freebsd size=97
name fontware.i386-kfreebsd
category TLCore
-revision 30440
+revision 33864
shortdesc i386-kfreebsd files of fontware
binfiles arch=i386-kfreebsd size=84
bin/i386-kfreebsd/pltotf
@@ -67325,9 +74415,9 @@ binfiles arch=i386-kfreebsd size=84
name fontware.i386-linux
category TLCore
-revision 30088
+revision 33479
shortdesc i386-linux files of fontware
-binfiles arch=i386-linux size=84
+binfiles arch=i386-linux size=88
bin/i386-linux/pltotf
bin/i386-linux/tftopl
bin/i386-linux/vftovp
@@ -67335,7 +74425,7 @@ binfiles arch=i386-linux size=84
name fontware.i386-netbsd
category TLCore
-revision 30191
+revision 33562
shortdesc i386-netbsd files of fontware
binfiles arch=i386-netbsd size=87
bin/i386-netbsd/pltotf
@@ -67345,29 +74435,19 @@ binfiles arch=i386-netbsd size=87
name fontware.i386-solaris
category TLCore
-revision 30112
+revision 34203
shortdesc i386-solaris files of fontware
-binfiles arch=i386-solaris size=114
+binfiles arch=i386-solaris size=113
bin/i386-solaris/pltotf
bin/i386-solaris/tftopl
bin/i386-solaris/vftovp
bin/i386-solaris/vptovf
-name fontware.mips-irix
-category TLCore
-revision 30131
-shortdesc mips-irix files of fontware
-binfiles arch=mips-irix size=215
- bin/mips-irix/pltotf
- bin/mips-irix/tftopl
- bin/mips-irix/vftovp
- bin/mips-irix/vptovf
-
name fontware.mipsel-linux
category TLCore
-revision 29995
+revision 33811
shortdesc mipsel-linux files of fontware
-binfiles arch=mipsel-linux size=107
+binfiles arch=mipsel-linux size=87
bin/mipsel-linux/pltotf
bin/mipsel-linux/tftopl
bin/mipsel-linux/vftovp
@@ -67375,9 +74455,9 @@ binfiles arch=mipsel-linux size=107
name fontware.powerpc-linux
category TLCore
-revision 30114
+revision 33889
shortdesc powerpc-linux files of fontware
-binfiles arch=powerpc-linux size=87
+binfiles arch=powerpc-linux size=83
bin/powerpc-linux/pltotf
bin/powerpc-linux/tftopl
bin/powerpc-linux/vftovp
@@ -67385,9 +74465,9 @@ binfiles arch=powerpc-linux size=87
name fontware.sparc-solaris
category TLCore
-revision 29877
+revision 33871
shortdesc sparc-solaris files of fontware
-binfiles arch=sparc-solaris size=103
+binfiles arch=sparc-solaris size=102
bin/sparc-solaris/pltotf
bin/sparc-solaris/tftopl
bin/sparc-solaris/vftovp
@@ -67395,7 +74475,7 @@ binfiles arch=sparc-solaris size=103
name fontware.universal-darwin
category TLCore
-revision 30764
+revision 34201
shortdesc universal-darwin files of fontware
binfiles arch=universal-darwin size=188
bin/universal-darwin/pltotf
@@ -67405,19 +74485,29 @@ binfiles arch=universal-darwin size=188
name fontware.win32
category TLCore
-revision 29816
+revision 33897
shortdesc win32 files of fontware
-binfiles arch=win32 size=42
+binfiles arch=win32 size=49
bin/win32/pltotf.exe
bin/win32/tftopl.exe
bin/win32/vftovp.exe
bin/win32/vptovf.exe
+name fontware.x86_64-cygwin
+category TLCore
+revision 34161
+shortdesc x86_64-cygwin files of fontware
+binfiles arch=x86_64-cygwin size=90
+ bin/x86_64-cygwin/pltotf.exe
+ bin/x86_64-cygwin/tftopl.exe
+ bin/x86_64-cygwin/vftovp.exe
+ bin/x86_64-cygwin/vptovf.exe
+
name fontware.x86_64-darwin
category TLCore
-revision 29879
+revision 34201
shortdesc x86_64-darwin files of fontware
-binfiles arch=x86_64-darwin size=98
+binfiles arch=x86_64-darwin size=99
bin/x86_64-darwin/pltotf
bin/x86_64-darwin/tftopl
bin/x86_64-darwin/vftovp
@@ -67425,9 +74515,9 @@ binfiles arch=x86_64-darwin size=98
name fontware.x86_64-linux
category TLCore
-revision 30204
+revision 33723
shortdesc x86_64-linux files of fontware
-binfiles arch=x86_64-linux size=82
+binfiles arch=x86_64-linux size=83
bin/x86_64-linux/pltotf
bin/x86_64-linux/tftopl
bin/x86_64-linux/vftovp
@@ -67435,7 +74525,7 @@ binfiles arch=x86_64-linux size=82
name fontware.x86_64-solaris
category TLCore
-revision 30112
+revision 34203
shortdesc x86_64-solaris files of fontware
binfiles arch=x86_64-solaris size=119
bin/x86_64-solaris/pltotf
@@ -67460,7 +74550,7 @@ docfiles size=77
runfiles size=18
texmf-dist/tex/xelatex/fontwrap/fontwrap.sty
catalogue-ctan /macros/xetex/latex/fontwrap
-catalogue-date 2012-07-06 23:09:35 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license gpl
name footbib
@@ -67498,9 +74588,9 @@ 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 'paragraphs' --
longdesc the para option), a way to number footnotes per page (the
-longdesc perpage option), to make footnotes disappear when an argument
-longdesc moves (stable option) and to deal with multiple references to
-longdesc footnotes from the same place (multiple option). The package
+longdesc perpage option), to make footnotes disappear in a 'moving'
+longdesc argument (stable option) and to deal with multiple references
+longdesc to footnotes from the same place (multiple option). The package
longdesc also has a range of techniques for labelling footnotes with
longdesc symbols rather than numbers. Some of the functions of the
longdesc package are overlap with the functionality of other packages.
@@ -67518,7 +74608,7 @@ srcfiles size=20
runfiles size=7
texmf-dist/tex/latex/footmisc/footmisc.sty
catalogue-ctan /macros/latex/contrib/footmisc
-catalogue-date 2011-10-03 08:51:46 +0200
+catalogue-date 2014-02-27 13:35:44 +0100
catalogue-license lppl1.3
catalogue-version 5.5b
@@ -67536,7 +74626,7 @@ docfiles size=32
runfiles size=1
texmf-dist/tex/latex/footnotebackref/footnotebackref.sty
catalogue-ctan /macros/latex/contrib/footnotebackref
-catalogue-date 2012-07-16 11:23:54 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.0
@@ -67563,7 +74653,7 @@ srcfiles size=12
runfiles size=2
texmf-dist/tex/latex/footnoterange/footnoterange.sty
catalogue-ctan /macros/latex/contrib/footnoterange
-catalogue-date 2012-02-21 09:04:44 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.0a
@@ -67646,25 +74736,25 @@ srcfiles size=6
runfiles size=2
texmf-dist/tex/latex/foreign/foreign.sty
catalogue-ctan /macros/latex/contrib/foreign
-catalogue-date 2012-09-26 16:23:18 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 2.7
name forest
category Package
-revision 28979
+revision 33116
shortdesc Drawing (linguistic) trees.
longdesc The package is provides a PGF/TikZ-based mechanism for drawing
-longdesc linguistic (and other kinds of) trees. Its main features are: -
-longdesc a packing algorithm which can produce very compact trees; - a
-longdesc user-friendly interface consisting of the familiar bracket
-longdesc encoding of trees plus the key-value interface to option-
-longdesc setting; - many tree-formatting options, with control over
-longdesc option values of individual nodes and mechanisms for their
-longdesc manipulation; - the possibility to decorate the tree using the
-longdesc full power of PGF/TikZ; and - an externalization mechanism
-longdesc sensitive to code-changes.
-docfiles size=218
+longdesc linguistic (and other kinds of) trees. Its main features are: a
+longdesc packing algorithm which can produce very compact trees; a user-
+longdesc friendly interface consisting of the familiar bracket encoding
+longdesc of trees plus the key-value interface to option-setting; many
+longdesc tree-formatting options, with control over option values of
+longdesc individual nodes and mechanisms for their manipulation; the
+longdesc possibility to decorate the tree using the full power of
+longdesc PGF/TikZ; and an externalization mechanism sensitive to code-
+longdesc changes.
+docfiles size=219
texmf-dist/doc/latex/forest/README details="Readme"
texmf-dist/doc/latex/forest/forest.pdf details="Package documentation"
srcfiles size=100
@@ -67673,9 +74763,9 @@ srcfiles size=100
runfiles size=41
texmf-dist/tex/latex/forest/forest.sty
catalogue-ctan /graphics/pgf/contrib/forest
-catalogue-date 2013-01-29 10:13:54 +0100
+catalogue-date 2014-03-07 15:12:26 +0100
catalogue-license lppl1.3
-catalogue-version 1.03
+catalogue-version 1.05
name forloop
category Package
@@ -67737,7 +74827,7 @@ catalogue-version 1.0a
name fouridx
category Package
-revision 15878
+revision 32214
shortdesc Left sub- and superscripts in maths mode.
longdesc The package enables left subscripts and superscripts in maths
longdesc mode. The sub- and superscripts are raised for optimum fitting
@@ -67745,18 +74835,18 @@ longdesc to the symbol indexed, in such a way that left and right sub-
longdesc and superscripts are set on the same level, as appropriate. The
longdesc package provides an alternative to the use of the \sideset
longdesc command in the amsmath package.
-docfiles size=29
+docfiles size=53
texmf-dist/doc/latex/fouridx/README details="Readme"
texmf-dist/doc/latex/fouridx/fouridx.pdf details="Package documentation"
-srcfiles size=3
+srcfiles size=4
texmf-dist/source/latex/fouridx/fouridx.dtx
texmf-dist/source/latex/fouridx/fouridx.ins
runfiles size=1
texmf-dist/tex/latex/fouridx/fouridx.sty
catalogue-ctan /macros/latex/contrib/fouridx
-catalogue-date 2012-06-01 21:24:39 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
-catalogue-version 1.00
+catalogue-version 2.00
name fourier
category Package
@@ -67994,7 +75084,7 @@ runfiles size=379
texmf-dist/tex/latex/fourier/ts1futx.fd
texmf-dist/tex/latex/fourier/ufuts.fd
catalogue-ctan /fonts/fourier-GUT
-catalogue-date 2012-05-19 14:48:02 +0200
+catalogue-date 2014-05-01 23:14:09 +0200
catalogue-license lppl
catalogue-version 1.3
@@ -68050,7 +75140,7 @@ runfiles size=23
texmf-dist/tex/latex/fouriernc/t1fnc.fd
texmf-dist/tex/latex/fouriernc/ts1fnc.fd
catalogue-ctan /fonts/fouriernc
-catalogue-date 2013-04-03 16:06:16 +0200
+catalogue-date 2014-05-01 23:14:09 +0200
catalogue-license lppl
name fp
@@ -68078,7 +75168,7 @@ runfiles size=37
texmf-dist/tex/latex/fp/lfp.sty
texmf-dist/tex/plain/fp/fp.tex
catalogue-ctan /macros/latex/contrib/fp
-catalogue-date 2012-05-08 21:20:20 +0200
+catalogue-date 2013-09-30 11:48:44 +0200
catalogue-license lppl
name fpl
@@ -68133,7 +75223,7 @@ runfiles size=180
texmf-dist/fonts/type1/public/fpl/fplrij8a.pfb
texmf-dist/fonts/type1/public/fpl/fplrij8a.pfm
catalogue-ctan /fonts/fpl
-catalogue-date 2012-05-20 00:57:56 +0200
+catalogue-date 2014-05-01 23:14:09 +0200
catalogue-license gpl
catalogue-version 1.002
@@ -68165,7 +75255,7 @@ docfiles size=75
runfiles size=5
texmf-dist/scripts/fragmaster/fragmaster.pl
catalogue-ctan /support/fragmaster
-catalogue-date 2012-05-19 19:46:22 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license gpl
catalogue-version 1.6
@@ -68253,13 +75343,6 @@ shortdesc i386-solaris files of fragmaster
binfiles arch=i386-solaris size=1
bin/i386-solaris/fragmaster
-name fragmaster.mips-irix
-category Package
-revision 29949
-shortdesc mips-irix files of fragmaster
-binfiles arch=mips-irix size=1
- bin/mips-irix/fragmaster
-
name fragmaster.mipsel-linux
category Package
revision 29946
@@ -68295,6 +75378,13 @@ shortdesc win32 files of fragmaster
binfiles arch=win32 size=1
bin/win32/fragmaster.exe
+name fragmaster.x86_64-cygwin
+category Package
+revision 33557
+shortdesc x86_64-cygwin files of fragmaster
+binfiles arch=x86_64-cygwin size=1
+ bin/x86_64-cygwin/fragmaster
+
name fragmaster.x86_64-darwin
category Package
revision 18441
@@ -68321,11 +75411,11 @@ category Package
revision 15878
shortdesc Fragments of LaTeX code.
longdesc A collection of fragments of LaTeX code, suitable for inclusion
-longdesc in packages, or (possibly) in users' documents. Included are: -
+longdesc in packages, or (possibly) in users' documents. Included are:
longdesc checklab, for modifying the label checking code at
-longdesc \end{document}; - overrightarrow, defining a doubled over-arrow
-longdesc macro; - removefr, for removing 'reset' relations between
-longdesc counters; and - subscript, defining a \textsubscript command.
+longdesc \end{document}; overrightarrow, defining a doubled over-arrow
+longdesc macro; removefr, for removing 'reset' relations between
+longdesc counters; and subscript, defining a \textsubscript command.
docfiles size=1
texmf-dist/doc/latex/fragments/README details="Readme"
runfiles size=4
@@ -68334,7 +75424,7 @@ runfiles size=4
texmf-dist/tex/latex/fragments/removefr.tex
texmf-dist/tex/latex/fragments/subscript.sty
catalogue-ctan /macros/latex/contrib/fragments
-catalogue-date 2012-05-19 19:46:22 +0200
+catalogue-date 2013-12-28 17:03:29 +0100
catalogue-license collection
name frame
@@ -68354,7 +75444,7 @@ runfiles size=2
texmf-dist/tex/generic/frame/frame.sty
texmf-dist/tex/generic/frame/frame.tex
catalogue-ctan /macros/generic/frame
-catalogue-date 2012-05-19 19:46:22 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.0
@@ -68362,12 +75452,12 @@ name framed
category Package
revision 26789
shortdesc Framed or shaded regions that can break across pages.
-longdesc The package creates three environments: - framed, which puts an
-longdesc ordinary frame box around the region, - shaded, which shades
-longdesc the region, and - leftbar, which places a line at the left
-longdesc side. The environments allow a break at their start (the
-longdesc \FrameCommand enables creation of a title that is "attached" to
-longdesc the environment); breaks are also allowed in the course of the
+longdesc The package creates three environments: framed, which puts an
+longdesc ordinary frame box around the region, shaded, which shades the
+longdesc region, and leftbar, which places a line at the left side. The
+longdesc environments allow a break at their start (the \FrameCommand
+longdesc enables creation of a title that is "attached" to the
+longdesc environment); breaks are also allowed in the course of the
longdesc framed/shaded matter. There is also a command \MakeFramed to
longdesc make your own framed-style environments.
docfiles size=60
@@ -68376,7 +75466,7 @@ docfiles size=60
runfiles size=6
texmf-dist/tex/latex/framed/framed.sty
catalogue-ctan /macros/latex/contrib/framed
-catalogue-date 2012-06-01 12:48:04 +0200
+catalogue-date 2013-12-28 17:03:29 +0100
catalogue-license other-free
catalogue-version 0.96
@@ -68396,7 +75486,7 @@ runfiles size=18
texmf-dist/bibtex/bst/francais-bst/francais.bst
texmf-dist/bibtex/bst/francais-bst/francaissc.bst
catalogue-ctan /biblio/bibtex/contrib/francais-bst
-catalogue-date 2013-05-12 22:32:31 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.1
@@ -68592,7 +75682,7 @@ runfiles size=548
texmf-dist/tex/latex/frcursive/ot1frc.fd
texmf-dist/tex/latex/frcursive/t1frc.fd
catalogue-ctan /fonts/frcursive
-catalogue-date 2011-11-09 16:18:27 +0100
+catalogue-date 2014-05-01 23:14:09 +0200
catalogue-license lppl1.2
name frege
@@ -68617,7 +75707,7 @@ docfiles size=48
runfiles size=17
texmf-dist/tex/latex/frege/frege.sty
catalogue-ctan /macros/latex/contrib/frege
-catalogue-date 2012-08-21 17:52:30 +0200
+catalogue-date 2014-03-25 19:16:16 +0100
catalogue-license gpl
catalogue-version 1.3
@@ -68668,7 +75758,7 @@ docfiles size=1
runfiles size=1
texmf-dist/tex/latex/frletter/frletter.cls
catalogue-ctan /macros/latex/contrib/frletter
-catalogue-date 2012-05-19 23:15:24 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license pd
name frontespizio
@@ -68706,7 +75796,7 @@ srcfiles size=21
runfiles size=5
texmf-dist/tex/latex/frontespizio/frontespizio.sty
catalogue-ctan /macros/latex/contrib/frontespizio
-catalogue-date 2011-09-21 15:45:55 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.4a
@@ -68745,7 +75835,7 @@ srcfiles size=3
runfiles size=2
texmf-dist/tex/latex/ftnxtra/ftnxtra.sty
catalogue-ctan /macros/latex/contrib/ftnxtra
-catalogue-date 2013-04-04 15:10:30 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 0.1
@@ -68787,7 +75877,7 @@ docfiles size=74
runfiles size=4
texmf-dist/tex/latex/fullwidth/fullwidth.sty
catalogue-ctan /macros/latex/contrib/fullwidth
-catalogue-date 2011-12-02 09:08:13 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 0.1
@@ -68828,7 +75918,7 @@ srcfiles size=3
runfiles size=1
texmf-dist/tex/latex/fundus-calligra/calligra.sty
catalogue-ctan /macros/latex/contrib/fundus/calligra
-catalogue-date 2012-04-18 12:42:25 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license other-free
catalogue-version 1.2
@@ -68843,7 +75933,7 @@ longdesc bundle.
runfiles size=1
texmf-dist/tex/latex/fundus-cyr/cyr.sty
catalogue-ctan /macros/latex/contrib/fundus/cyr/cyr.sty
-catalogue-date 2012-04-18 12:42:25 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
name fundus-sueterlin
@@ -68861,7 +75951,7 @@ srcfiles size=3
runfiles size=1
texmf-dist/tex/latex/fundus-sueterlin/suetterl.sty
catalogue-ctan /macros/latex/contrib/fundus/suetterl
-catalogue-date 2012-04-19 12:58:26 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.2
@@ -68927,7 +76017,7 @@ docfiles size=60
runfiles size=16
texmf-dist/tex/latex/gaceta/gaceta.cls
catalogue-ctan /macros/latex/contrib/gaceta
-catalogue-date 2012-06-04 11:02:08 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.06
@@ -68970,7 +76060,7 @@ srcfiles size=4
runfiles size=1
texmf-dist/tex/latex/gamebook/gamebook.sty
catalogue-ctan /macros/latex/contrib/gamebook
-catalogue-date 2011-12-02 09:08:13 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.0
@@ -69027,7 +76117,7 @@ runfiles size=22
texmf-dist/dvips/gastex/gastex.pro
texmf-dist/tex/latex/gastex/gastex.sty
catalogue-ctan /graphics/gastex
-catalogue-date 2012-06-04 13:21:54 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 2.8
@@ -69097,13 +76187,13 @@ runfiles size=15
texmf-dist/tex/generic/gates/gates.tex
texmf-dist/tex/generic/gates/t-gates.tex
catalogue-ctan /macros/generic/gates
-catalogue-date 2012-05-27 01:03:23 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 0.2
name gauss
category Package
-revision 24411
+revision 32934
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).
@@ -69155,7 +76245,7 @@ docfiles size=38
runfiles size=1
texmf-dist/tex/latex/gcard/gcard.sty
catalogue-ctan /macros/latex/contrib/gcard
-catalogue-date 2012-06-04 13:21:54 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
name gchords
@@ -69203,7 +76293,7 @@ srcfiles size=6
runfiles size=1
texmf-dist/tex/latex/gcite/gcite.sty
catalogue-ctan /macros/latex/exptl/gcite
-catalogue-date 2012-06-04 13:21:54 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.0.1
@@ -69242,7 +76332,7 @@ runfiles size=4
texmf-dist/fonts/source/public/genealogy/drgen10.mf
texmf-dist/fonts/tfm/public/genealogy/drgen10.tfm
catalogue-ctan /fonts/genealogy
-catalogue-date 2012-06-04 23:28:06 +0200
+catalogue-date 2014-05-01 23:29:17 +0200
catalogue-license lppl
name genmisc
@@ -69312,91 +76402,217 @@ catalogue-date 2012-06-19 20:29:15 +0200
catalogue-license lppl
catalogue-version 0.3.1
-name gentium
-category Package
-revision 30378
-shortdesc Gentium font and support files.
-longdesc The package includes TrueType fonts from SIL, files needed to
-longdesc use them in pdfTeX in multiple encodings (agr, t2a, ec/T1,
-longdesc texnansi, l7x, qx, t5) and support files for ConTeXt. Other
-longdesc encodings, and LaTeX support remain to be added.
-docfiles size=29
- texmf-dist/doc/fonts/gentium/Gentium_1.02/FONTLOG.txt
- texmf-dist/doc/fonts/gentium/Gentium_1.02/GENTIUM-FAQ.txt details="FAQ"
- texmf-dist/doc/fonts/gentium/Gentium_1.02/OFL-FAQ.txt
- texmf-dist/doc/fonts/gentium/Gentium_1.02/OFL.txt
- texmf-dist/doc/fonts/gentium/Gentium_1.02/QUOTES.txt
- texmf-dist/doc/fonts/gentium/Gentium_1.02/README.txt
- texmf-dist/doc/fonts/gentium/Gentium_Basic_1.1/FONTLOG.txt
- texmf-dist/doc/fonts/gentium/Gentium_Basic_1.1/GENTIUM-FAQ.txt
- texmf-dist/doc/fonts/gentium/Gentium_Basic_1.1/OFL-FAQ.txt
- texmf-dist/doc/fonts/gentium/Gentium_Basic_1.1/OFL.txt
- texmf-dist/doc/fonts/gentium/README details="Readme"
-srcfiles size=3
- texmf-dist/source/fonts/gentium/generate-tfm-files.sh
- texmf-dist/source/fonts/gentium/gentium-ec-source.enc
- texmf-dist/source/fonts/gentium/gentium-t5-source.enc
-runfiles size=996
- texmf-dist/fonts/afm/public/gentium/GenBasB.afm
- texmf-dist/fonts/afm/public/gentium/GenBasBI.afm
- texmf-dist/fonts/afm/public/gentium/GenI102.afm
- texmf-dist/fonts/afm/public/gentium/GenR102.afm
- texmf-dist/fonts/enc/dvips/gentium/gentium-agr.enc
- texmf-dist/fonts/enc/dvips/gentium/gentium-ec.enc
- texmf-dist/fonts/enc/dvips/gentium/gentium-l7x.enc
- texmf-dist/fonts/enc/dvips/gentium/gentium-qx.enc
- texmf-dist/fonts/enc/dvips/gentium/gentium-t2a.enc
- texmf-dist/fonts/enc/dvips/gentium/gentium-t5.enc
- texmf-dist/fonts/enc/dvips/gentium/gentium-texnansi.enc
- texmf-dist/fonts/map/pdftex/gentium/gentium-agr.map
- texmf-dist/fonts/map/pdftex/gentium/gentium-ec.map
- texmf-dist/fonts/map/pdftex/gentium/gentium-l7x.map
- texmf-dist/fonts/map/pdftex/gentium/gentium-qx.map
- texmf-dist/fonts/map/pdftex/gentium/gentium-t2a.map
- texmf-dist/fonts/map/pdftex/gentium/gentium-t5.map
- texmf-dist/fonts/map/pdftex/gentium/gentium-texnansi.map
- texmf-dist/fonts/map/pdftex/gentium/gentium.map
- texmf-dist/fonts/tfm/public/gentium/agr-gentium-italic.tfm
- texmf-dist/fonts/tfm/public/gentium/agr-gentium-roman.tfm
- texmf-dist/fonts/tfm/public/gentium/ec-gentium-italic.tfm
- texmf-dist/fonts/tfm/public/gentium/ec-gentium-roman.tfm
- texmf-dist/fonts/tfm/public/gentium/ec-gentiumbasic-bold.tfm
- texmf-dist/fonts/tfm/public/gentium/ec-gentiumbasic-bolditalic.tfm
- texmf-dist/fonts/tfm/public/gentium/l7x-gentium-italic.tfm
- texmf-dist/fonts/tfm/public/gentium/l7x-gentium-roman.tfm
- texmf-dist/fonts/tfm/public/gentium/l7x-gentiumbasic-bold.tfm
- texmf-dist/fonts/tfm/public/gentium/l7x-gentiumbasic-bolditalic.tfm
- texmf-dist/fonts/tfm/public/gentium/qx-gentium-italic.tfm
- texmf-dist/fonts/tfm/public/gentium/qx-gentium-roman.tfm
- texmf-dist/fonts/tfm/public/gentium/qx-gentiumbasic-bold.tfm
- texmf-dist/fonts/tfm/public/gentium/qx-gentiumbasic-bolditalic.tfm
- texmf-dist/fonts/tfm/public/gentium/t2a-gentium-italic.tfm
- texmf-dist/fonts/tfm/public/gentium/t2a-gentium-roman.tfm
- texmf-dist/fonts/tfm/public/gentium/t5-gentium-italic.tfm
- texmf-dist/fonts/tfm/public/gentium/t5-gentium-roman.tfm
- texmf-dist/fonts/tfm/public/gentium/t5-gentiumbasic-bold.tfm
- texmf-dist/fonts/tfm/public/gentium/t5-gentiumbasic-bolditalic.tfm
- texmf-dist/fonts/tfm/public/gentium/texnansi-gentium-italic.tfm
- texmf-dist/fonts/tfm/public/gentium/texnansi-gentium-roman.tfm
- texmf-dist/fonts/tfm/public/gentium/texnansi-gentiumbasic-bold.tfm
- texmf-dist/fonts/tfm/public/gentium/texnansi-gentiumbasic-bolditalic.tfm
- texmf-dist/fonts/truetype/public/gentium/GenAI102.ttf
- texmf-dist/fonts/truetype/public/gentium/GenAR102.ttf
- texmf-dist/fonts/truetype/public/gentium/GenBasB.ttf
- texmf-dist/fonts/truetype/public/gentium/GenBasBI.ttf
- texmf-dist/fonts/truetype/public/gentium/GenBasI.ttf
- texmf-dist/fonts/truetype/public/gentium/GenBasR.ttf
- texmf-dist/fonts/truetype/public/gentium/GenBkBasB.ttf
- texmf-dist/fonts/truetype/public/gentium/GenBkBasBI.ttf
- texmf-dist/fonts/truetype/public/gentium/GenBkBasI.ttf
- texmf-dist/fonts/truetype/public/gentium/GenBkBasR.ttf
- texmf-dist/fonts/truetype/public/gentium/GenI102.ttf
- texmf-dist/fonts/truetype/public/gentium/GenR102.ttf
- texmf-dist/tex/context/third/gentium/type-gentium.mkii
- texmf-dist/tex/context/third/gentium/type-gentium.mkiv
-catalogue-ctan /fonts/gentium
-catalogue-date 2013-05-08 20:54:26 +0200
-catalogue-license ofl
+name gentium-tug
+category Package
+revision 31194
+shortdesc Gentium fonts (in two formats) and support files.
+longdesc Gentium is a typeface family designed to enable the diverse
+longdesc ethnic groups around the world who use the Latin, Cyrillic and
+longdesc Greek scripts to produce readable, high-quality publications.
+longdesc It supports a wide range of Latin- and Cyrillic-based
+longdesc alphabets. The package consists of: The original (unaltered)
+longdesc GentiumPlus, GentiumBook, and other Gentium-family fonts in
+longdesc TrueType format, as developed by SIL and released under the OFL
+longdesc (see OFL.txt and OFL-FAQ.txt); Converted fonts in PostScript
+longdesc Type 1 format, released under the same terms. These incorporate
+longdesc the name "Gentium" by permission of SIL given to the TeX Users
+longdesc Group; ConTeXt, LaTeX and other supporting files; TeX-related
+longdesc documentation, and the SIL documentation and other files.
+execute addMap gentium-type1.map
+docfiles size=420
+ texmf-dist/doc/fonts/gentium-tug/ChangeLog
+ texmf-dist/doc/fonts/gentium-tug/FONTLOG.txt
+ texmf-dist/doc/fonts/gentium-tug/Gentium/FONTLOG.txt
+ texmf-dist/doc/fonts/gentium-tug/Gentium/GENTIUM-FAQ.txt
+ texmf-dist/doc/fonts/gentium-tug/Gentium/OFL-FAQ.txt
+ texmf-dist/doc/fonts/gentium-tug/Gentium/OFL.txt
+ texmf-dist/doc/fonts/gentium-tug/Gentium/QUOTES.txt
+ texmf-dist/doc/fonts/gentium-tug/Gentium/README.txt
+ texmf-dist/doc/fonts/gentium-tug/GentiumBasic/FONTLOG.txt
+ texmf-dist/doc/fonts/gentium-tug/GentiumBasic/GENTIUM-FAQ.txt
+ texmf-dist/doc/fonts/gentium-tug/GentiumBasic/OFL-FAQ.txt
+ texmf-dist/doc/fonts/gentium-tug/GentiumBasic/OFL.txt
+ texmf-dist/doc/fonts/gentium-tug/GentiumPlus/FONTLOG.txt
+ texmf-dist/doc/fonts/gentium-tug/GentiumPlus/GENTIUM-FAQ.txt
+ texmf-dist/doc/fonts/gentium-tug/GentiumPlus/OFL-FAQ.txt
+ texmf-dist/doc/fonts/gentium-tug/GentiumPlus/OFL.txt
+ texmf-dist/doc/fonts/gentium-tug/GentiumPlus/README.txt
+ texmf-dist/doc/fonts/gentium-tug/GentiumPlus/documentation/DOCUMENTATION.txt
+ texmf-dist/doc/fonts/gentium-tug/GentiumPlus/documentation/GentiumPlus-features.odt
+ texmf-dist/doc/fonts/gentium-tug/GentiumPlus/documentation/GentiumPlus-features.pdf
+ texmf-dist/doc/fonts/gentium-tug/GentiumPlusCompact/FONTLOG.txt
+ texmf-dist/doc/fonts/gentium-tug/GentiumPlusCompact/README.txt
+ texmf-dist/doc/fonts/gentium-tug/GentiumPlusCompact/feat_set_tuned.xml
+ texmf-dist/doc/fonts/gentium-tug/Makefile
+ texmf-dist/doc/fonts/gentium-tug/OFL-FAQ.txt
+ texmf-dist/doc/fonts/gentium-tug/OFL.txt
+ texmf-dist/doc/fonts/gentium-tug/README details="Readme"
+ texmf-dist/doc/fonts/gentium-tug/gentium.pdf
+ texmf-dist/doc/fonts/gentium-tug/gentium.tex
+srcfiles size=28
+ texmf-dist/source/fonts/gentium-tug/generate-support-files.rb
+ texmf-dist/source/fonts/gentium-tug/gentium.rb
+ texmf-dist/source/fonts/gentium-tug/lig/README
+ texmf-dist/source/fonts/gentium-tug/lig/gentium-agr.lig
+ texmf-dist/source/fonts/gentium-tug/lig/gentium-lgr.lig
+ texmf-dist/source/fonts/gentium-tug/lig/gentium-t2a.lig
+ texmf-dist/source/fonts/gentium-tug/lig/gentium-t2b.lig
+ texmf-dist/source/fonts/gentium-tug/lig/gentium-t2c.lig
+ texmf-dist/source/fonts/gentium-tug/lig/gentium-x2.lig
+ texmf-dist/source/fonts/gentium-tug/make-zip-4CTAN.sh
+ texmf-dist/source/fonts/gentium-tug/type1/GentiumPlus-I-Czech.kern
+ texmf-dist/source/fonts/gentium-tug/type1/GentiumPlus-R-Czech.kern
+ texmf-dist/source/fonts/gentium-tug/type1/Makefile
+ texmf-dist/source/fonts/gentium-tug/type1/afmcreator.py
+ texmf-dist/source/fonts/gentium-tug/type1/ff-gentium.pe
+ texmf-dist/source/fonts/gentium-tug/type1/generate-extra-kerns.sh
+ texmf-dist/source/fonts/gentium-tug/type1/greekcorrection.py
+ texmf-dist/source/fonts/gentium-tug/type1/kerncorrection.py
+runfiles size=3539
+ texmf-dist/fonts/afm/public/gentium-tug/GenBasB.afm
+ texmf-dist/fonts/afm/public/gentium-tug/GenBasBI.afm
+ texmf-dist/fonts/afm/public/gentium-tug/GentiumPlus-I.afm
+ texmf-dist/fonts/afm/public/gentium-tug/GentiumPlus-R.afm
+ texmf-dist/fonts/enc/dvips/gentium-tug/gentium-agr.enc
+ texmf-dist/fonts/enc/dvips/gentium-tug/gentium-ec-sc.enc
+ texmf-dist/fonts/enc/dvips/gentium-tug/gentium-ec-ttf-sc.enc
+ texmf-dist/fonts/enc/dvips/gentium-tug/gentium-ec-ttf.enc
+ texmf-dist/fonts/enc/dvips/gentium-tug/gentium-ec.enc
+ texmf-dist/fonts/enc/dvips/gentium-tug/gentium-l7x-sc.enc
+ texmf-dist/fonts/enc/dvips/gentium-tug/gentium-l7x.enc
+ texmf-dist/fonts/enc/dvips/gentium-tug/gentium-lgr.enc
+ texmf-dist/fonts/enc/dvips/gentium-tug/gentium-ot1-sc.enc
+ texmf-dist/fonts/enc/dvips/gentium-tug/gentium-ot1.enc
+ texmf-dist/fonts/enc/dvips/gentium-tug/gentium-qx-sc.enc
+ texmf-dist/fonts/enc/dvips/gentium-tug/gentium-qx.enc
+ texmf-dist/fonts/enc/dvips/gentium-tug/gentium-t2a-sc.enc
+ texmf-dist/fonts/enc/dvips/gentium-tug/gentium-t2a.enc
+ texmf-dist/fonts/enc/dvips/gentium-tug/gentium-t2b-sc.enc
+ texmf-dist/fonts/enc/dvips/gentium-tug/gentium-t2b.enc
+ texmf-dist/fonts/enc/dvips/gentium-tug/gentium-t2c-sc.enc
+ texmf-dist/fonts/enc/dvips/gentium-tug/gentium-t2c.enc
+ texmf-dist/fonts/enc/dvips/gentium-tug/gentium-t5-sc.enc
+ texmf-dist/fonts/enc/dvips/gentium-tug/gentium-t5-ttf.enc
+ texmf-dist/fonts/enc/dvips/gentium-tug/gentium-t5.enc
+ texmf-dist/fonts/enc/dvips/gentium-tug/gentium-texnansi-sc.enc
+ texmf-dist/fonts/enc/dvips/gentium-tug/gentium-texnansi.enc
+ texmf-dist/fonts/enc/dvips/gentium-tug/gentium-ts1.enc
+ texmf-dist/fonts/enc/dvips/gentium-tug/gentium-x2-sc.enc
+ texmf-dist/fonts/enc/dvips/gentium-tug/gentium-x2.enc
+ texmf-dist/fonts/map/dvips/gentium-tug/gentium-type1.map
+ texmf-dist/fonts/map/pdftex/gentium-tug/gentium-agr.map
+ texmf-dist/fonts/map/pdftex/gentium-tug/gentium-ec.map
+ texmf-dist/fonts/map/pdftex/gentium-tug/gentium-l7x.map
+ texmf-dist/fonts/map/pdftex/gentium-tug/gentium-lgr.map
+ texmf-dist/fonts/map/pdftex/gentium-tug/gentium-ot1.map
+ texmf-dist/fonts/map/pdftex/gentium-tug/gentium-qx.map
+ texmf-dist/fonts/map/pdftex/gentium-tug/gentium-t2a.map
+ texmf-dist/fonts/map/pdftex/gentium-tug/gentium-t2b.map
+ texmf-dist/fonts/map/pdftex/gentium-tug/gentium-t2c.map
+ texmf-dist/fonts/map/pdftex/gentium-tug/gentium-t5.map
+ texmf-dist/fonts/map/pdftex/gentium-tug/gentium-texnansi.map
+ texmf-dist/fonts/map/pdftex/gentium-tug/gentium-truetype.map
+ texmf-dist/fonts/map/pdftex/gentium-tug/gentium-ts1.map
+ texmf-dist/fonts/map/pdftex/gentium-tug/gentium-x2.map
+ texmf-dist/fonts/tfm/public/gentium-tug/agr-gentiumplus-italic.tfm
+ texmf-dist/fonts/tfm/public/gentium-tug/agr-gentiumplus-regular.tfm
+ texmf-dist/fonts/tfm/public/gentium-tug/ec-gentiumbasic-bold.tfm
+ texmf-dist/fonts/tfm/public/gentium-tug/ec-gentiumbasic-bolditalic.tfm
+ texmf-dist/fonts/tfm/public/gentium-tug/ec-gentiumplus-italic-sc.tfm
+ texmf-dist/fonts/tfm/public/gentium-tug/ec-gentiumplus-italic.tfm
+ texmf-dist/fonts/tfm/public/gentium-tug/ec-gentiumplus-regular-sc.tfm
+ texmf-dist/fonts/tfm/public/gentium-tug/ec-gentiumplus-regular.tfm
+ texmf-dist/fonts/tfm/public/gentium-tug/l7x-gentiumbasic-bold.tfm
+ texmf-dist/fonts/tfm/public/gentium-tug/l7x-gentiumbasic-bolditalic.tfm
+ texmf-dist/fonts/tfm/public/gentium-tug/l7x-gentiumplus-italic-sc.tfm
+ texmf-dist/fonts/tfm/public/gentium-tug/l7x-gentiumplus-italic.tfm
+ texmf-dist/fonts/tfm/public/gentium-tug/l7x-gentiumplus-regular-sc.tfm
+ texmf-dist/fonts/tfm/public/gentium-tug/l7x-gentiumplus-regular.tfm
+ texmf-dist/fonts/tfm/public/gentium-tug/lgr-gentiumplus-italic.tfm
+ texmf-dist/fonts/tfm/public/gentium-tug/lgr-gentiumplus-regular.tfm
+ texmf-dist/fonts/tfm/public/gentium-tug/ot1-gentiumbasic-bold.tfm
+ texmf-dist/fonts/tfm/public/gentium-tug/ot1-gentiumbasic-bolditalic.tfm
+ texmf-dist/fonts/tfm/public/gentium-tug/ot1-gentiumplus-italic-sc.tfm
+ texmf-dist/fonts/tfm/public/gentium-tug/ot1-gentiumplus-italic.tfm
+ texmf-dist/fonts/tfm/public/gentium-tug/ot1-gentiumplus-regular-sc.tfm
+ texmf-dist/fonts/tfm/public/gentium-tug/ot1-gentiumplus-regular.tfm
+ texmf-dist/fonts/tfm/public/gentium-tug/qx-gentiumbasic-bold.tfm
+ texmf-dist/fonts/tfm/public/gentium-tug/qx-gentiumbasic-bolditalic.tfm
+ texmf-dist/fonts/tfm/public/gentium-tug/qx-gentiumplus-italic-sc.tfm
+ texmf-dist/fonts/tfm/public/gentium-tug/qx-gentiumplus-italic.tfm
+ texmf-dist/fonts/tfm/public/gentium-tug/qx-gentiumplus-regular-sc.tfm
+ texmf-dist/fonts/tfm/public/gentium-tug/qx-gentiumplus-regular.tfm
+ texmf-dist/fonts/tfm/public/gentium-tug/t2a-gentiumplus-italic-sc.tfm
+ texmf-dist/fonts/tfm/public/gentium-tug/t2a-gentiumplus-italic.tfm
+ texmf-dist/fonts/tfm/public/gentium-tug/t2a-gentiumplus-regular-sc.tfm
+ texmf-dist/fonts/tfm/public/gentium-tug/t2a-gentiumplus-regular.tfm
+ texmf-dist/fonts/tfm/public/gentium-tug/t2b-gentiumplus-italic-sc.tfm
+ texmf-dist/fonts/tfm/public/gentium-tug/t2b-gentiumplus-italic.tfm
+ texmf-dist/fonts/tfm/public/gentium-tug/t2b-gentiumplus-regular-sc.tfm
+ texmf-dist/fonts/tfm/public/gentium-tug/t2b-gentiumplus-regular.tfm
+ texmf-dist/fonts/tfm/public/gentium-tug/t2c-gentiumplus-italic-sc.tfm
+ texmf-dist/fonts/tfm/public/gentium-tug/t2c-gentiumplus-italic.tfm
+ texmf-dist/fonts/tfm/public/gentium-tug/t2c-gentiumplus-regular-sc.tfm
+ texmf-dist/fonts/tfm/public/gentium-tug/t2c-gentiumplus-regular.tfm
+ texmf-dist/fonts/tfm/public/gentium-tug/t5-gentiumbasic-bold.tfm
+ texmf-dist/fonts/tfm/public/gentium-tug/t5-gentiumbasic-bolditalic.tfm
+ texmf-dist/fonts/tfm/public/gentium-tug/t5-gentiumplus-italic-sc.tfm
+ texmf-dist/fonts/tfm/public/gentium-tug/t5-gentiumplus-italic.tfm
+ texmf-dist/fonts/tfm/public/gentium-tug/t5-gentiumplus-regular-sc.tfm
+ texmf-dist/fonts/tfm/public/gentium-tug/t5-gentiumplus-regular.tfm
+ texmf-dist/fonts/tfm/public/gentium-tug/texnansi-gentiumbasic-bold.tfm
+ texmf-dist/fonts/tfm/public/gentium-tug/texnansi-gentiumbasic-bolditalic.tfm
+ texmf-dist/fonts/tfm/public/gentium-tug/texnansi-gentiumplus-italic-sc.tfm
+ texmf-dist/fonts/tfm/public/gentium-tug/texnansi-gentiumplus-italic.tfm
+ texmf-dist/fonts/tfm/public/gentium-tug/texnansi-gentiumplus-regular-sc.tfm
+ texmf-dist/fonts/tfm/public/gentium-tug/texnansi-gentiumplus-regular.tfm
+ texmf-dist/fonts/tfm/public/gentium-tug/ts1-gentiumbasic-bold.tfm
+ texmf-dist/fonts/tfm/public/gentium-tug/ts1-gentiumbasic-bolditalic.tfm
+ texmf-dist/fonts/tfm/public/gentium-tug/ts1-gentiumplus-italic.tfm
+ texmf-dist/fonts/tfm/public/gentium-tug/ts1-gentiumplus-regular.tfm
+ texmf-dist/fonts/tfm/public/gentium-tug/x2-gentiumplus-italic-sc.tfm
+ texmf-dist/fonts/tfm/public/gentium-tug/x2-gentiumplus-italic.tfm
+ texmf-dist/fonts/tfm/public/gentium-tug/x2-gentiumplus-regular-sc.tfm
+ texmf-dist/fonts/tfm/public/gentium-tug/x2-gentiumplus-regular.tfm
+ texmf-dist/fonts/truetype/public/gentium-tug/GenBasB.ttf
+ texmf-dist/fonts/truetype/public/gentium-tug/GenBasBI.ttf
+ texmf-dist/fonts/truetype/public/gentium-tug/GenBasI.ttf
+ texmf-dist/fonts/truetype/public/gentium-tug/GenBasR.ttf
+ texmf-dist/fonts/truetype/public/gentium-tug/GenBkBasB.ttf
+ texmf-dist/fonts/truetype/public/gentium-tug/GenBkBasBI.ttf
+ texmf-dist/fonts/truetype/public/gentium-tug/GenBkBasI.ttf
+ texmf-dist/fonts/truetype/public/gentium-tug/GenBkBasR.ttf
+ texmf-dist/fonts/truetype/public/gentium-tug/Gentium-I.ttf
+ texmf-dist/fonts/truetype/public/gentium-tug/Gentium-R.ttf
+ texmf-dist/fonts/truetype/public/gentium-tug/GentiumAlt-I.ttf
+ texmf-dist/fonts/truetype/public/gentium-tug/GentiumAlt-R.ttf
+ texmf-dist/fonts/truetype/public/gentium-tug/GentiumPlus-I.ttf
+ texmf-dist/fonts/truetype/public/gentium-tug/GentiumPlus-R.ttf
+ texmf-dist/fonts/truetype/public/gentium-tug/GentiumPlusCompact-I.ttf
+ texmf-dist/fonts/truetype/public/gentium-tug/GentiumPlusCompact-R.ttf
+ texmf-dist/fonts/type1/public/gentium-tug/GenBasB.pfb
+ texmf-dist/fonts/type1/public/gentium-tug/GenBasBI.pfb
+ texmf-dist/fonts/type1/public/gentium-tug/GentiumPlus-I.pfb
+ texmf-dist/fonts/type1/public/gentium-tug/GentiumPlus-R.pfb
+ texmf-dist/tex/context/third/gentium-tug/type-gentium.mkii
+ texmf-dist/tex/context/third/gentium-tug/type-gentium.mkiv
+ texmf-dist/tex/latex/gentium-tug/gentium.sty
+ texmf-dist/tex/latex/gentium-tug/l7xgentium.fd
+ texmf-dist/tex/latex/gentium-tug/lgrgentium.fd
+ texmf-dist/tex/latex/gentium-tug/ly1gentium.fd
+ texmf-dist/tex/latex/gentium-tug/ot1gentium.fd
+ texmf-dist/tex/latex/gentium-tug/qxgentium.fd
+ texmf-dist/tex/latex/gentium-tug/t1gentium.fd
+ texmf-dist/tex/latex/gentium-tug/t2agentium.fd
+ texmf-dist/tex/latex/gentium-tug/t2bgentium.fd
+ texmf-dist/tex/latex/gentium-tug/t2cgentium.fd
+ texmf-dist/tex/latex/gentium-tug/t5gentium.fd
+ texmf-dist/tex/latex/gentium-tug/ts1gentium.fd
+ texmf-dist/tex/latex/gentium-tug/x2gentium.fd
+catalogue-ctan /fonts/gentium-tug
+catalogue-date 2014-05-01 23:29:17 +0200
+catalogue-license other-free
+catalogue-version 1.0
name gentle
category Package
@@ -69557,7 +76773,7 @@ runfiles size=6
texmf-dist/tex/latex/geschichtsfrkl/geschichtsfrkl.bbx
texmf-dist/tex/latex/geschichtsfrkl/geschichtsfrkl.cbx
catalogue-ctan /macros/latex/contrib/biblatex-contrib/geschichtsfrkl
-catalogue-date 2012-04-08 13:49:02 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.1
@@ -69576,7 +76792,7 @@ docfiles size=34
runfiles size=2
texmf-dist/tex/latex/getfiledate/getfiledate.sty
catalogue-ctan /macros/latex/contrib/getfiledate
-catalogue-date 2012-05-09 18:20:59 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.2
@@ -69598,7 +76814,7 @@ runfiles size=4
texmf-dist/tex/plain/getoptk/getoptk.tex
texmf-dist/tex/plain/getoptk/guide.tex
catalogue-ctan /macros/plain/contrib/getoptk
-catalogue-date 2012-06-19 20:29:15 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license other-free
catalogue-version 1.0
@@ -69738,7 +76954,7 @@ runfiles size=459
texmf-dist/tex/latex/gfsartemisia/uartemisiaeulernums.fd
texmf-dist/tex/latex/gfsartemisia/uartemisianums.fd
catalogue-ctan /fonts/greek/gfs/gfsartemisia
-catalogue-date 2012-05-17 11:22:16 +0200
+catalogue-date 2014-05-01 23:46:06 +0200
catalogue-license other-free
catalogue-version 1.0
@@ -69770,7 +76986,7 @@ runfiles size=53
texmf-dist/tex/latex/gfsbaskerville/gfsbaskerville.sty
texmf-dist/tex/latex/gfsbaskerville/lgrgfsbaskerville.fd
catalogue-ctan /fonts/greek/gfs/gfsbaskerville
-catalogue-date 2012-05-17 11:22:16 +0200
+catalogue-date 2014-05-01 23:46:06 +0200
catalogue-license other-free
catalogue-version 1.0
@@ -69904,7 +77120,7 @@ runfiles size=443
texmf-dist/tex/latex/gfsbodoni/t1bodoni.fd
texmf-dist/tex/latex/gfsbodoni/ubodoninums.fd
catalogue-ctan /fonts/greek/gfs/gfsbodoni
-catalogue-date 2012-05-17 11:22:16 +0200
+catalogue-date 2014-05-02 15:05:35 +0200
catalogue-license ofl
catalogue-version 1.01
@@ -69941,13 +77157,13 @@ runfiles size=58
texmf-dist/tex/latex/gfscomplutum/gfscomplutum.sty
texmf-dist/tex/latex/gfscomplutum/lgrcomplutum.fd
catalogue-ctan /fonts/greek/gfs/gfscomplutum
-catalogue-date 2012-05-17 11:22:16 +0200
+catalogue-date 2014-05-02 15:05:35 +0200
catalogue-license ofl
catalogue-version 1.0
name gfsdidot
category Package
-revision 19469
+revision 31978
shortdesc A Greek font based on Didot's work.
longdesc The design of Didot's 1805 Greek typeface was influenced by the
longdesc neoclassical ideals of the late 18th century. The font was
@@ -69958,13 +77174,11 @@ longdesc alphabet, and is accompanied by a matching Latin alphabet based
longdesc on Zapf's Palatino. LaTeX support is provided, using the OT1,
longdesc T1 and LGR encodings.
execute addMap gfsdidot.map
-docfiles size=38
+docfiles size=9
texmf-dist/doc/fonts/gfsdidot/OFL-FAQ.txt
texmf-dist/doc/fonts/gfsdidot/OFL.txt
texmf-dist/doc/fonts/gfsdidot/README details="Readme"
texmf-dist/doc/fonts/gfsdidot/README.TEXLIVE
- texmf-dist/doc/fonts/gfsdidot/gfsdidot.pdf
- texmf-dist/doc/fonts/gfsdidot/gfsdidot.tex
runfiles size=585
texmf-dist/fonts/afm/public/gfsdidot/GFSDidot-Bold.afm
texmf-dist/fonts/afm/public/gfsdidot/GFSDidot-BoldItalic.afm
@@ -70091,13 +77305,12 @@ runfiles size=585
texmf-dist/tex/latex/gfsdidot/t1udidot.fd
texmf-dist/tex/latex/gfsdidot/uudidotnums.fd
catalogue-ctan /fonts/greek/gfs/gfsdidot
-catalogue-date 2012-05-17 11:22:16 +0200
+catalogue-date 2014-05-02 15:05:35 +0200
catalogue-license other-free
-catalogue-version 1.0
name gfsneohellenic
category Package
-revision 19440
+revision 31979
shortdesc A Greek font in the Neo-Hellenic style.
longdesc The NeoHellenic style evolved in academic circles in the 19th
longdesc and 20th century; the present font follows a cut commissioned
@@ -70107,14 +77320,13 @@ longdesc characters, and has been adjusted to work well with the
longdesc cmbright fonts for mathematics support. LaTeX support of the
longdesc fonts is provided, offering OT1, T1 and LGR encodings.
execute addMap gfsneohellenic.map
-docfiles size=35
+docfiles size=11
texmf-dist/doc/fonts/gfsneohellenic/OFL-FAQ.txt
texmf-dist/doc/fonts/gfsneohellenic/OFL.txt
texmf-dist/doc/fonts/gfsneohellenic/README details="Readme"
texmf-dist/doc/fonts/gfsneohellenic/README.TEXLIVE
- texmf-dist/doc/fonts/gfsneohellenic/gfsneohellenic.pdf
- texmf-dist/doc/fonts/gfsneohellenic/gfsneohellenic.tex
-runfiles size=446
+ texmf-dist/doc/fonts/gfsneohellenic/VERSION
+runfiles size=445
texmf-dist/fonts/afm/public/gfsneohellenic/GFSNeohellenic-Bold.afm
texmf-dist/fonts/afm/public/gfsneohellenic/GFSNeohellenic-BoldItalic.afm
texmf-dist/fonts/afm/public/gfsneohellenic/GFSNeohellenic-Italic.afm
@@ -70229,9 +77441,8 @@ runfiles size=446
texmf-dist/tex/latex/gfsneohellenic/t1neohellenic.fd
texmf-dist/tex/latex/gfsneohellenic/uneohellenicnums.fd
catalogue-ctan /fonts/greek/gfs/gfsneohellenic
-catalogue-date 2012-05-17 11:22:16 +0200
+catalogue-date 2014-05-02 15:05:35 +0200
catalogue-license other-free
-catalogue-version 1.0 rev
name gfsporson
category Package
@@ -70261,7 +77472,7 @@ runfiles size=47
texmf-dist/tex/latex/gfsporson/gfsporson.sty
texmf-dist/tex/latex/gfsporson/lgrporson.fd
catalogue-ctan /fonts/greek/gfs/gfsporson
-catalogue-date 2012-05-17 11:22:16 +0200
+catalogue-date 2014-05-02 15:05:35 +0200
catalogue-license other-free
catalogue-version 1.01
@@ -70291,7 +77502,7 @@ runfiles size=44
texmf-dist/tex/latex/gfssolomos/gfssolomos.sty
texmf-dist/tex/latex/gfssolomos/lgrsolomos.fd
catalogue-ctan /fonts/greek/gfs/gfssolomos
-catalogue-date 2012-05-17 11:22:16 +0200
+catalogue-date 2014-05-02 15:05:35 +0200
catalogue-license ofl
catalogue-version 1.0
@@ -70310,7 +77521,7 @@ runfiles size=2
texmf-dist/fonts/source/public/ghab/ghab.mf
texmf-dist/tex/latex/ghab/ghab.sty
catalogue-ctan /macros/latex/contrib/ghab
-catalogue-date 2013-04-05 13:20:40 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 0.5
@@ -70365,10 +77576,348 @@ runfiles size=39
texmf-dist/tex/latex/gillcm/ot1cmg.fd
texmf-dist/tex/latex/gillcm/t1cmg.fd
texmf-dist/tex/latex/gillcm/ts1cmg.fd
-catalogue-date 2012-05-03 00:24:20 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license bsd
catalogue-version 1.1
+name gillius
+category Package
+revision 32068
+shortdesc Gillius fonts with LaTeX support.
+longdesc This package provides LaTeX, pdfLaTeX, XeLaTeX and LuaLaTeX
+longdesc support for the Gillius and Gillius No. 2 families of sans
+longdesc serif fonts and condensed versions of them, designed by Hirwen
+longdesc Harendal. According to the designer, the fonts were inspired by
+longdesc Gill Sans.
+execute addMap gillius.map
+docfiles size=66
+ texmf-dist/doc/fonts/gillius/COPYING
+ texmf-dist/doc/fonts/gillius/Gillius-cat.pdf
+ texmf-dist/doc/fonts/gillius/README details="Readme"
+ texmf-dist/doc/fonts/gillius/gillius-samples.pdf
+ texmf-dist/doc/fonts/gillius/gillius-samples.tex
+ texmf-dist/doc/fonts/gillius/gillius2-samples.pdf
+ texmf-dist/doc/fonts/gillius/gillius2-samples.tex
+runfiles size=628
+ texmf-dist/fonts/enc/dvips/gillius/gls_4bsedw.enc
+ texmf-dist/fonts/enc/dvips/gillius/gls_a6mi7n.enc
+ texmf-dist/fonts/enc/dvips/gillius/gls_az7pev.enc
+ texmf-dist/fonts/enc/dvips/gillius/gls_bg5e7z.enc
+ texmf-dist/fonts/enc/dvips/gillius/gls_efuo7w.enc
+ texmf-dist/fonts/enc/dvips/gillius/gls_lf6eoq.enc
+ texmf-dist/fonts/enc/dvips/gillius/gls_pqq4vh.enc
+ texmf-dist/fonts/enc/dvips/gillius/gls_shb4ap.enc
+ texmf-dist/fonts/map/dvips/gillius/gillius.map
+ texmf-dist/fonts/opentype/arkandis/gillius/GilliusADF-Bold.otf
+ texmf-dist/fonts/opentype/arkandis/gillius/GilliusADF-BoldItalic.otf
+ texmf-dist/fonts/opentype/arkandis/gillius/GilliusADF-Italic.otf
+ texmf-dist/fonts/opentype/arkandis/gillius/GilliusADF-Regular.otf
+ texmf-dist/fonts/opentype/arkandis/gillius/GilliusADFCond-Bold.otf
+ texmf-dist/fonts/opentype/arkandis/gillius/GilliusADFCond-BoldItalic.otf
+ texmf-dist/fonts/opentype/arkandis/gillius/GilliusADFCond-Italic.otf
+ texmf-dist/fonts/opentype/arkandis/gillius/GilliusADFCond-Regular.otf
+ texmf-dist/fonts/opentype/arkandis/gillius/GilliusADFNo2-Bold.otf
+ texmf-dist/fonts/opentype/arkandis/gillius/GilliusADFNo2-BoldItalic.otf
+ texmf-dist/fonts/opentype/arkandis/gillius/GilliusADFNo2-Italic.otf
+ texmf-dist/fonts/opentype/arkandis/gillius/GilliusADFNo2-Regular.otf
+ texmf-dist/fonts/opentype/arkandis/gillius/GilliusADFNo2Cond-Bold.otf
+ texmf-dist/fonts/opentype/arkandis/gillius/GilliusADFNo2Cond-BoldItalic.otf
+ texmf-dist/fonts/opentype/arkandis/gillius/GilliusADFNo2Cond-Italic.otf
+ texmf-dist/fonts/opentype/arkandis/gillius/GilliusADFNo2Cond-Regular.otf
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADF-Bold-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADF-Bold-lf-ly1--lcdfj.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADF-Bold-lf-ly1.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADF-Bold-lf-ot1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADF-Bold-lf-ot1--lcdfj.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADF-Bold-lf-ot1.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADF-Bold-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADF-Bold-lf-t1--lcdfj.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADF-Bold-lf-t1.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADF-Bold-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADF-Bold-lf-ts1.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADF-BoldItalic-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADF-BoldItalic-lf-ly1--lcdfj.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADF-BoldItalic-lf-ly1.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADF-BoldItalic-lf-ot1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADF-BoldItalic-lf-ot1--lcdfj.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADF-BoldItalic-lf-ot1.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADF-BoldItalic-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADF-BoldItalic-lf-t1--lcdfj.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADF-BoldItalic-lf-t1.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADF-BoldItalic-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADF-BoldItalic-lf-ts1.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADF-Italic-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADF-Italic-lf-ly1--lcdfj.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADF-Italic-lf-ly1.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADF-Italic-lf-ot1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADF-Italic-lf-ot1--lcdfj.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADF-Italic-lf-ot1.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADF-Italic-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADF-Italic-lf-t1--lcdfj.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADF-Italic-lf-t1.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADF-Italic-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADF-Italic-lf-ts1.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADF-Regular-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADF-Regular-lf-ly1--lcdfj.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADF-Regular-lf-ly1.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADF-Regular-lf-ot1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADF-Regular-lf-ot1--lcdfj.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADF-Regular-lf-ot1.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADF-Regular-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADF-Regular-lf-t1--lcdfj.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADF-Regular-lf-t1.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADF-Regular-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADF-Regular-lf-ts1.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFCond-Bold-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFCond-Bold-lf-ly1--lcdfj.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFCond-Bold-lf-ly1.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFCond-Bold-lf-ot1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFCond-Bold-lf-ot1--lcdfj.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFCond-Bold-lf-ot1.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFCond-Bold-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFCond-Bold-lf-t1--lcdfj.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFCond-Bold-lf-t1.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFCond-Bold-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFCond-Bold-lf-ts1.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFCond-BoldItalic-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFCond-BoldItalic-lf-ly1--lcdfj.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFCond-BoldItalic-lf-ly1.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFCond-BoldItalic-lf-ot1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFCond-BoldItalic-lf-ot1--lcdfj.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFCond-BoldItalic-lf-ot1.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFCond-BoldItalic-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFCond-BoldItalic-lf-t1--lcdfj.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFCond-BoldItalic-lf-t1.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFCond-BoldItalic-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFCond-BoldItalic-lf-ts1.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFCond-Italic-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFCond-Italic-lf-ly1--lcdfj.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFCond-Italic-lf-ly1.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFCond-Italic-lf-ot1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFCond-Italic-lf-ot1--lcdfj.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFCond-Italic-lf-ot1.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFCond-Italic-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFCond-Italic-lf-t1--lcdfj.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFCond-Italic-lf-t1.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFCond-Italic-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFCond-Italic-lf-ts1.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFCond-Regular-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFCond-Regular-lf-ly1--lcdfj.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFCond-Regular-lf-ly1.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFCond-Regular-lf-ot1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFCond-Regular-lf-ot1--lcdfj.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFCond-Regular-lf-ot1.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFCond-Regular-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFCond-Regular-lf-t1--lcdfj.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFCond-Regular-lf-t1.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFCond-Regular-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFCond-Regular-lf-ts1.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFNo2-Bold-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFNo2-Bold-lf-ly1--lcdfj.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFNo2-Bold-lf-ly1.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFNo2-Bold-lf-ot1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFNo2-Bold-lf-ot1--lcdfj.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFNo2-Bold-lf-ot1.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFNo2-Bold-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFNo2-Bold-lf-t1--lcdfj.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFNo2-Bold-lf-t1.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFNo2-Bold-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFNo2-Bold-lf-ts1.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFNo2-BoldItalic-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFNo2-BoldItalic-lf-ly1--lcdfj.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFNo2-BoldItalic-lf-ly1.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFNo2-BoldItalic-lf-ot1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFNo2-BoldItalic-lf-ot1--lcdfj.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFNo2-BoldItalic-lf-ot1.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFNo2-BoldItalic-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFNo2-BoldItalic-lf-t1--lcdfj.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFNo2-BoldItalic-lf-t1.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFNo2-BoldItalic-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFNo2-BoldItalic-lf-ts1.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFNo2-Italic-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFNo2-Italic-lf-ly1--lcdfj.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFNo2-Italic-lf-ly1.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFNo2-Italic-lf-ot1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFNo2-Italic-lf-ot1--lcdfj.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFNo2-Italic-lf-ot1.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFNo2-Italic-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFNo2-Italic-lf-t1--lcdfj.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFNo2-Italic-lf-t1.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFNo2-Italic-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFNo2-Italic-lf-ts1.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFNo2-Regular-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFNo2-Regular-lf-ly1--lcdfj.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFNo2-Regular-lf-ly1.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFNo2-Regular-lf-ot1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFNo2-Regular-lf-ot1--lcdfj.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFNo2-Regular-lf-ot1.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFNo2-Regular-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFNo2-Regular-lf-t1--lcdfj.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFNo2-Regular-lf-t1.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFNo2-Regular-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFNo2-Regular-lf-ts1.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-Bold-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-Bold-lf-ly1--lcdfj.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-Bold-lf-ly1.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-Bold-lf-ot1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-Bold-lf-ot1--lcdfj.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-Bold-lf-ot1.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-Bold-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-Bold-lf-t1--lcdfj.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-Bold-lf-t1.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-Bold-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-Bold-lf-ts1.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-BoldItalic-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-BoldItalic-lf-ly1--lcdfj.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-BoldItalic-lf-ly1.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-BoldItalic-lf-ot1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-BoldItalic-lf-ot1--lcdfj.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-BoldItalic-lf-ot1.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-BoldItalic-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-BoldItalic-lf-t1--lcdfj.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-BoldItalic-lf-t1.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-BoldItalic-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-BoldItalic-lf-ts1.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-Italic-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-Italic-lf-ly1--lcdfj.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-Italic-lf-ly1.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-Italic-lf-ot1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-Italic-lf-ot1--lcdfj.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-Italic-lf-ot1.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-Italic-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-Italic-lf-t1--lcdfj.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-Italic-lf-t1.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-Italic-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-Italic-lf-ts1.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-Regular-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-Regular-lf-ly1--lcdfj.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-Regular-lf-ly1.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-Regular-lf-ot1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-Regular-lf-ot1--lcdfj.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-Regular-lf-ot1.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-Regular-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-Regular-lf-t1--lcdfj.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-Regular-lf-t1.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-Regular-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-Regular-lf-ts1.tfm
+ texmf-dist/fonts/type1/arkandis/gillius/GilliusADF-Bold.pfb
+ texmf-dist/fonts/type1/arkandis/gillius/GilliusADF-BoldItalic.pfb
+ texmf-dist/fonts/type1/arkandis/gillius/GilliusADF-BoldItalicLCDFJ.pfb
+ texmf-dist/fonts/type1/arkandis/gillius/GilliusADF-BoldLCDFJ.pfb
+ texmf-dist/fonts/type1/arkandis/gillius/GilliusADF-Italic.pfb
+ texmf-dist/fonts/type1/arkandis/gillius/GilliusADF-ItalicLCDFJ.pfb
+ texmf-dist/fonts/type1/arkandis/gillius/GilliusADF-Regular.pfb
+ texmf-dist/fonts/type1/arkandis/gillius/GilliusADF-RegularLCDFJ.pfb
+ texmf-dist/fonts/type1/arkandis/gillius/GilliusADFCond-Bold.pfb
+ texmf-dist/fonts/type1/arkandis/gillius/GilliusADFCond-BoldItalic.pfb
+ texmf-dist/fonts/type1/arkandis/gillius/GilliusADFCond-BoldItalicLCDFJ.pfb
+ texmf-dist/fonts/type1/arkandis/gillius/GilliusADFCond-BoldLCDFJ.pfb
+ texmf-dist/fonts/type1/arkandis/gillius/GilliusADFCond-Italic.pfb
+ texmf-dist/fonts/type1/arkandis/gillius/GilliusADFCond-ItalicLCDFJ.pfb
+ texmf-dist/fonts/type1/arkandis/gillius/GilliusADFCond-Regular.pfb
+ texmf-dist/fonts/type1/arkandis/gillius/GilliusADFCond-RegularLCDFJ.pfb
+ texmf-dist/fonts/type1/arkandis/gillius/GilliusADFNo2-Bold.pfb
+ texmf-dist/fonts/type1/arkandis/gillius/GilliusADFNo2-BoldItalic.pfb
+ texmf-dist/fonts/type1/arkandis/gillius/GilliusADFNo2-BoldItalicLCDFJ.pfb
+ texmf-dist/fonts/type1/arkandis/gillius/GilliusADFNo2-BoldLCDFJ.pfb
+ texmf-dist/fonts/type1/arkandis/gillius/GilliusADFNo2-Italic.pfb
+ texmf-dist/fonts/type1/arkandis/gillius/GilliusADFNo2-ItalicLCDFJ.pfb
+ texmf-dist/fonts/type1/arkandis/gillius/GilliusADFNo2-Regular.pfb
+ texmf-dist/fonts/type1/arkandis/gillius/GilliusADFNo2-RegularLCDFJ.pfb
+ texmf-dist/fonts/type1/arkandis/gillius/GilliusADFNo2Cond-Bold.pfb
+ texmf-dist/fonts/type1/arkandis/gillius/GilliusADFNo2Cond-BoldItalic.pfb
+ texmf-dist/fonts/type1/arkandis/gillius/GilliusADFNo2Cond-BoldItalicLCDFJ.pfb
+ texmf-dist/fonts/type1/arkandis/gillius/GilliusADFNo2Cond-BoldLCDFJ.pfb
+ texmf-dist/fonts/type1/arkandis/gillius/GilliusADFNo2Cond-Italic.pfb
+ texmf-dist/fonts/type1/arkandis/gillius/GilliusADFNo2Cond-ItalicLCDFJ.pfb
+ texmf-dist/fonts/type1/arkandis/gillius/GilliusADFNo2Cond-Regular.pfb
+ texmf-dist/fonts/type1/arkandis/gillius/GilliusADFNo2Cond-RegularLCDFJ.pfb
+ texmf-dist/fonts/vf/arkandis/gillius/GilliusADF-Bold-lf-ly1.vf
+ texmf-dist/fonts/vf/arkandis/gillius/GilliusADF-Bold-lf-ot1.vf
+ texmf-dist/fonts/vf/arkandis/gillius/GilliusADF-Bold-lf-t1.vf
+ texmf-dist/fonts/vf/arkandis/gillius/GilliusADF-Bold-lf-ts1.vf
+ texmf-dist/fonts/vf/arkandis/gillius/GilliusADF-BoldItalic-lf-ly1.vf
+ texmf-dist/fonts/vf/arkandis/gillius/GilliusADF-BoldItalic-lf-ot1.vf
+ texmf-dist/fonts/vf/arkandis/gillius/GilliusADF-BoldItalic-lf-t1.vf
+ texmf-dist/fonts/vf/arkandis/gillius/GilliusADF-BoldItalic-lf-ts1.vf
+ texmf-dist/fonts/vf/arkandis/gillius/GilliusADF-Italic-lf-ly1.vf
+ texmf-dist/fonts/vf/arkandis/gillius/GilliusADF-Italic-lf-ot1.vf
+ texmf-dist/fonts/vf/arkandis/gillius/GilliusADF-Italic-lf-t1.vf
+ texmf-dist/fonts/vf/arkandis/gillius/GilliusADF-Italic-lf-ts1.vf
+ texmf-dist/fonts/vf/arkandis/gillius/GilliusADF-Regular-lf-ly1.vf
+ texmf-dist/fonts/vf/arkandis/gillius/GilliusADF-Regular-lf-ot1.vf
+ texmf-dist/fonts/vf/arkandis/gillius/GilliusADF-Regular-lf-t1.vf
+ texmf-dist/fonts/vf/arkandis/gillius/GilliusADF-Regular-lf-ts1.vf
+ texmf-dist/fonts/vf/arkandis/gillius/GilliusADFCond-Bold-lf-ly1.vf
+ texmf-dist/fonts/vf/arkandis/gillius/GilliusADFCond-Bold-lf-ot1.vf
+ texmf-dist/fonts/vf/arkandis/gillius/GilliusADFCond-Bold-lf-t1.vf
+ texmf-dist/fonts/vf/arkandis/gillius/GilliusADFCond-Bold-lf-ts1.vf
+ texmf-dist/fonts/vf/arkandis/gillius/GilliusADFCond-BoldItalic-lf-ly1.vf
+ texmf-dist/fonts/vf/arkandis/gillius/GilliusADFCond-BoldItalic-lf-ot1.vf
+ texmf-dist/fonts/vf/arkandis/gillius/GilliusADFCond-BoldItalic-lf-t1.vf
+ texmf-dist/fonts/vf/arkandis/gillius/GilliusADFCond-BoldItalic-lf-ts1.vf
+ texmf-dist/fonts/vf/arkandis/gillius/GilliusADFCond-Italic-lf-ly1.vf
+ texmf-dist/fonts/vf/arkandis/gillius/GilliusADFCond-Italic-lf-ot1.vf
+ texmf-dist/fonts/vf/arkandis/gillius/GilliusADFCond-Italic-lf-t1.vf
+ texmf-dist/fonts/vf/arkandis/gillius/GilliusADFCond-Italic-lf-ts1.vf
+ texmf-dist/fonts/vf/arkandis/gillius/GilliusADFCond-Regular-lf-ly1.vf
+ texmf-dist/fonts/vf/arkandis/gillius/GilliusADFCond-Regular-lf-ot1.vf
+ texmf-dist/fonts/vf/arkandis/gillius/GilliusADFCond-Regular-lf-t1.vf
+ texmf-dist/fonts/vf/arkandis/gillius/GilliusADFCond-Regular-lf-ts1.vf
+ texmf-dist/fonts/vf/arkandis/gillius/GilliusADFNo2-Bold-lf-ly1.vf
+ texmf-dist/fonts/vf/arkandis/gillius/GilliusADFNo2-Bold-lf-ot1.vf
+ texmf-dist/fonts/vf/arkandis/gillius/GilliusADFNo2-Bold-lf-t1.vf
+ texmf-dist/fonts/vf/arkandis/gillius/GilliusADFNo2-Bold-lf-ts1.vf
+ texmf-dist/fonts/vf/arkandis/gillius/GilliusADFNo2-BoldItalic-lf-ly1.vf
+ texmf-dist/fonts/vf/arkandis/gillius/GilliusADFNo2-BoldItalic-lf-ot1.vf
+ texmf-dist/fonts/vf/arkandis/gillius/GilliusADFNo2-BoldItalic-lf-t1.vf
+ texmf-dist/fonts/vf/arkandis/gillius/GilliusADFNo2-BoldItalic-lf-ts1.vf
+ texmf-dist/fonts/vf/arkandis/gillius/GilliusADFNo2-Italic-lf-ly1.vf
+ texmf-dist/fonts/vf/arkandis/gillius/GilliusADFNo2-Italic-lf-ot1.vf
+ texmf-dist/fonts/vf/arkandis/gillius/GilliusADFNo2-Italic-lf-t1.vf
+ texmf-dist/fonts/vf/arkandis/gillius/GilliusADFNo2-Italic-lf-ts1.vf
+ texmf-dist/fonts/vf/arkandis/gillius/GilliusADFNo2-Regular-lf-ly1.vf
+ texmf-dist/fonts/vf/arkandis/gillius/GilliusADFNo2-Regular-lf-ot1.vf
+ texmf-dist/fonts/vf/arkandis/gillius/GilliusADFNo2-Regular-lf-t1.vf
+ texmf-dist/fonts/vf/arkandis/gillius/GilliusADFNo2-Regular-lf-ts1.vf
+ texmf-dist/fonts/vf/arkandis/gillius/GilliusADFNo2Cond-Bold-lf-ly1.vf
+ texmf-dist/fonts/vf/arkandis/gillius/GilliusADFNo2Cond-Bold-lf-ot1.vf
+ texmf-dist/fonts/vf/arkandis/gillius/GilliusADFNo2Cond-Bold-lf-t1.vf
+ texmf-dist/fonts/vf/arkandis/gillius/GilliusADFNo2Cond-Bold-lf-ts1.vf
+ texmf-dist/fonts/vf/arkandis/gillius/GilliusADFNo2Cond-BoldItalic-lf-ly1.vf
+ texmf-dist/fonts/vf/arkandis/gillius/GilliusADFNo2Cond-BoldItalic-lf-ot1.vf
+ texmf-dist/fonts/vf/arkandis/gillius/GilliusADFNo2Cond-BoldItalic-lf-t1.vf
+ texmf-dist/fonts/vf/arkandis/gillius/GilliusADFNo2Cond-BoldItalic-lf-ts1.vf
+ texmf-dist/fonts/vf/arkandis/gillius/GilliusADFNo2Cond-Italic-lf-ly1.vf
+ texmf-dist/fonts/vf/arkandis/gillius/GilliusADFNo2Cond-Italic-lf-ot1.vf
+ texmf-dist/fonts/vf/arkandis/gillius/GilliusADFNo2Cond-Italic-lf-t1.vf
+ texmf-dist/fonts/vf/arkandis/gillius/GilliusADFNo2Cond-Italic-lf-ts1.vf
+ texmf-dist/fonts/vf/arkandis/gillius/GilliusADFNo2Cond-Regular-lf-ly1.vf
+ texmf-dist/fonts/vf/arkandis/gillius/GilliusADFNo2Cond-Regular-lf-ot1.vf
+ texmf-dist/fonts/vf/arkandis/gillius/GilliusADFNo2Cond-Regular-lf-t1.vf
+ texmf-dist/fonts/vf/arkandis/gillius/GilliusADFNo2Cond-Regular-lf-ts1.vf
+ texmf-dist/tex/latex/gillius/LY1GilliusADF-LF.fd
+ texmf-dist/tex/latex/gillius/LY1GilliusADFCond-LF.fd
+ texmf-dist/tex/latex/gillius/LY1GilliusADFNoTwo-LF.fd
+ texmf-dist/tex/latex/gillius/LY1GilliusADFNoTwoCond-LF.fd
+ texmf-dist/tex/latex/gillius/OT1GilliusADF-LF.fd
+ texmf-dist/tex/latex/gillius/OT1GilliusADFCond-LF.fd
+ texmf-dist/tex/latex/gillius/OT1GilliusADFNoTwo-LF.fd
+ texmf-dist/tex/latex/gillius/OT1GilliusADFNoTwoCond-LF.fd
+ texmf-dist/tex/latex/gillius/T1GilliusADF-LF.fd
+ texmf-dist/tex/latex/gillius/T1GilliusADFCond-LF.fd
+ texmf-dist/tex/latex/gillius/T1GilliusADFNoTwo-LF.fd
+ texmf-dist/tex/latex/gillius/T1GilliusADFNoTwoCond-LF.fd
+ texmf-dist/tex/latex/gillius/TS1GilliusADF-LF.fd
+ texmf-dist/tex/latex/gillius/TS1GilliusADFCond-LF.fd
+ texmf-dist/tex/latex/gillius/TS1GilliusADFNoTwo-LF.fd
+ texmf-dist/tex/latex/gillius/TS1GilliusADFNoTwoCond-LF.fd
+ texmf-dist/tex/latex/gillius/gillius.sty
+ texmf-dist/tex/latex/gillius/gillius2.sty
+catalogue-ctan /fonts/gillius
+catalogue-date 2014-02-26 23:03:13 +0100
+catalogue-license gpl2
+
name gincltex
category Package
revision 23835
@@ -70390,7 +77939,7 @@ srcfiles size=5
runfiles size=1
texmf-dist/tex/latex/gincltex/gincltex.sty
catalogue-ctan /macros/latex/contrib/gincltex
-catalogue-date 2012-04-29 23:41:11 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 0.3
@@ -70439,12 +77988,13 @@ catalogue-version 1.0
name gitinfo
category Package
-revision 23779
+revision 34049
shortdesc Access metadata from the git distributed version control system.
longdesc The package makes it possible to incorporate git version
-longdesc control metadata into documents. For memoir users, the package
-longdesc provides the means to tailor page headers and footers to use
-longdesc the metadata.
+longdesc control metadata into documents. Note this version is now
+longdesc deprecated, but is kept on the archive, pro tem, for continuity
+longdesc for existing users. For memoir users, the package provides the
+longdesc means to tailor page headers and footers to use the metadata.
docfiles size=27
texmf-dist/doc/latex/gitinfo/README details="Readme"
texmf-dist/doc/latex/gitinfo/gitHeadInfo.gin
@@ -70455,7 +78005,7 @@ runfiles size=2
texmf-dist/tex/latex/gitinfo/gitinfo.sty
texmf-dist/tex/latex/gitinfo/gitsetinfo.sty
catalogue-ctan /macros/latex/contrib/gitinfo
-catalogue-date 2011-11-11 12:03:47 +0100
+catalogue-date 2014-05-15 00:10:33 +0200
catalogue-license lppl1.3
catalogue-version 1.0
@@ -70482,7 +78032,7 @@ catalogue-version 1.5.2
name glossaries
category Package
-revision 30076
+revision 33374
shortdesc Create glossaries and lists of acronyms.
longdesc The glossaries package supports acronyms and multiple
longdesc glossaries, and has provision for operation in several
@@ -70504,15 +78054,14 @@ longdesc the first letter of a word to upper case. The package
longdesc supersedes the author's glossary package (which is now
longdesc obsolete), and a conversion tool is provided.
depend glossaries.ARCH
-docfiles size=1463
+docfiles size=1672
texmf-dist/doc/latex/glossaries/CHANGES
texmf-dist/doc/latex/glossaries/INSTALL
texmf-dist/doc/latex/glossaries/README details="Readme"
- texmf-dist/doc/latex/glossaries/glossaries-code.pdf
+ texmf-dist/doc/latex/glossaries/glossaries-code.pdf details="Package code and documentation (PDF)"
texmf-dist/doc/latex/glossaries/glossaries-user.html details="User manual (HTML)"
texmf-dist/doc/latex/glossaries/glossaries-user.pdf details="User manual (PDF)"
texmf-dist/doc/latex/glossaries/glossaries-user.tex
- texmf-dist/doc/latex/glossaries/glossaries.pdf details="Package code and documentation (PDF)"
texmf-dist/doc/latex/glossaries/glossariesbegin.html
texmf-dist/doc/latex/glossaries/glossariesbegin.pdf details="Beginners' guide (PDF)"
texmf-dist/doc/latex/glossaries/glossariesbegin.tex
@@ -70522,20 +78071,43 @@ docfiles size=1463
texmf-dist/doc/latex/glossaries/mfirstuc-manual.html
texmf-dist/doc/latex/glossaries/mfirstuc-manual.pdf
texmf-dist/doc/latex/glossaries/mfirstuc-manual.tex
+ texmf-dist/doc/latex/glossaries/samples/README-samples
texmf-dist/doc/latex/glossaries/samples/database1.tex
texmf-dist/doc/latex/glossaries/samples/database2.tex
texmf-dist/doc/latex/glossaries/samples/minimalgls.pdf
texmf-dist/doc/latex/glossaries/samples/minimalgls.tex
+ texmf-dist/doc/latex/glossaries/samples/sample-FnDesc.pdf
+ texmf-dist/doc/latex/glossaries/samples/sample-FnDesc.tex
texmf-dist/doc/latex/glossaries/samples/sample-crossref.pdf
texmf-dist/doc/latex/glossaries/samples/sample-crossref.tex
texmf-dist/doc/latex/glossaries/samples/sample-custom-acronym.pdf
texmf-dist/doc/latex/glossaries/samples/sample-custom-acronym.tex
texmf-dist/doc/latex/glossaries/samples/sample-dual.pdf
texmf-dist/doc/latex/glossaries/samples/sample-dual.tex
+ texmf-dist/doc/latex/glossaries/samples/sample-entryfmt.pdf
+ texmf-dist/doc/latex/glossaries/samples/sample-entryfmt.tex
+ texmf-dist/doc/latex/glossaries/samples/sample-index.pdf
+ texmf-dist/doc/latex/glossaries/samples/sample-index.tex
+ texmf-dist/doc/latex/glossaries/samples/sample-inline.pdf
texmf-dist/doc/latex/glossaries/samples/sample-inline.tex
+ texmf-dist/doc/latex/glossaries/samples/sample-langdict.pdf
texmf-dist/doc/latex/glossaries/samples/sample-langdict.tex
+ texmf-dist/doc/latex/glossaries/samples/sample-mfirstuc.pdf
texmf-dist/doc/latex/glossaries/samples/sample-mfirstuc.tex
+ texmf-dist/doc/latex/glossaries/samples/sample-newkeys.pdf
+ texmf-dist/doc/latex/glossaries/samples/sample-newkeys.tex
+ texmf-dist/doc/latex/glossaries/samples/sample-noidxapp-utf8.pdf
+ texmf-dist/doc/latex/glossaries/samples/sample-noidxapp-utf8.tex
+ texmf-dist/doc/latex/glossaries/samples/sample-noidxapp.pdf
+ texmf-dist/doc/latex/glossaries/samples/sample-noidxapp.tex
+ texmf-dist/doc/latex/glossaries/samples/sample-nomathhyper.pdf
+ texmf-dist/doc/latex/glossaries/samples/sample-nomathhyper.tex
+ texmf-dist/doc/latex/glossaries/samples/sample-numberlist.pdf
texmf-dist/doc/latex/glossaries/samples/sample-numberlist.tex
+ texmf-dist/doc/latex/glossaries/samples/sample-prefix.pdf
+ texmf-dist/doc/latex/glossaries/samples/sample-prefix.tex
+ texmf-dist/doc/latex/glossaries/samples/sample-si.pdf
+ texmf-dist/doc/latex/glossaries/samples/sample-si.tex
texmf-dist/doc/latex/glossaries/samples/sample.pdf
texmf-dist/doc/latex/glossaries/samples/sample.tex
texmf-dist/doc/latex/glossaries/samples/sample4col.pdf
@@ -70544,6 +78116,8 @@ docfiles size=1463
texmf-dist/doc/latex/glossaries/samples/sampleAcr.tex
texmf-dist/doc/latex/glossaries/samples/sampleAcrDesc.pdf
texmf-dist/doc/latex/glossaries/samples/sampleAcrDesc.tex
+ texmf-dist/doc/latex/glossaries/samples/sampleCustomAcr.pdf
+ texmf-dist/doc/latex/glossaries/samples/sampleCustomAcr.tex
texmf-dist/doc/latex/glossaries/samples/sampleDB.pdf
texmf-dist/doc/latex/glossaries/samples/sampleDB.tex
texmf-dist/doc/latex/glossaries/samples/sampleDesc.pdf
@@ -70552,10 +78126,16 @@ docfiles size=1463
texmf-dist/doc/latex/glossaries/samples/sampleEq.tex
texmf-dist/doc/latex/glossaries/samples/sampleEqPg.pdf
texmf-dist/doc/latex/glossaries/samples/sampleEqPg.tex
+ texmf-dist/doc/latex/glossaries/samples/sampleFnAcrDesc.pdf
+ texmf-dist/doc/latex/glossaries/samples/sampleFnAcrDesc.tex
texmf-dist/doc/latex/glossaries/samples/sampleNtn.pdf
texmf-dist/doc/latex/glossaries/samples/sampleNtn.tex
+ texmf-dist/doc/latex/glossaries/samples/samplePeople.pdf
+ texmf-dist/doc/latex/glossaries/samples/samplePeople.tex
texmf-dist/doc/latex/glossaries/samples/sampleSec.pdf
texmf-dist/doc/latex/glossaries/samples/sampleSec.tex
+ texmf-dist/doc/latex/glossaries/samples/sampleSort.pdf
+ texmf-dist/doc/latex/glossaries/samples/sampleSort.tex
texmf-dist/doc/latex/glossaries/samples/sampleaccsupp.pdf
texmf-dist/doc/latex/glossaries/samples/sampleaccsupp.tex
texmf-dist/doc/latex/glossaries/samples/sampleacronyms.pdf
@@ -70564,25 +78144,25 @@ docfiles size=1463
texmf-dist/doc/latex/glossaries/samples/sampletree.tex
texmf-dist/doc/latex/glossaries/samples/sampleutf8.pdf
texmf-dist/doc/latex/glossaries/samples/sampleutf8.tex
- texmf-dist/doc/latex/glossaries/samples/samplexdy-compatible207.pdf
- texmf-dist/doc/latex/glossaries/samples/samplexdy-compatible207.tex
texmf-dist/doc/latex/glossaries/samples/samplexdy-mc.xdy
texmf-dist/doc/latex/glossaries/samples/samplexdy-mc207.xdy
texmf-dist/doc/latex/glossaries/samples/samplexdy.pdf
texmf-dist/doc/latex/glossaries/samples/samplexdy.tex
texmf-dist/doc/latex/glossaries/samples/samplexdy2.pdf
texmf-dist/doc/latex/glossaries/samples/samplexdy2.tex
-srcfiles size=196
+srcfiles size=253
texmf-dist/source/latex/glossaries/glossaries.dtx
texmf-dist/source/latex/glossaries/glossaries.ins
-runfiles size=124
+runfiles size=157
texmf-dist/scripts/glossaries/glossaries.perl
texmf-dist/scripts/glossaries/makeglossaries
texmf-dist/scripts/glossaries/makeglossaries.bat
texmf-dist/scripts/glossaries/mfirstuc.perl
texmf-dist/tex/latex/glossaries/base/glossaries-babel.sty
texmf-dist/tex/latex/glossaries/base/glossaries-compatible-207.sty
+ texmf-dist/tex/latex/glossaries/base/glossaries-compatible-307.sty
texmf-dist/tex/latex/glossaries/base/glossaries-polyglossia.sty
+ texmf-dist/tex/latex/glossaries/base/glossaries-prefix.sty
texmf-dist/tex/latex/glossaries/base/glossaries.sty
texmf-dist/tex/latex/glossaries/base/mfirstuc.sty
texmf-dist/tex/latex/glossaries/dict/glossaries-dictionary-Brazilian.dict
@@ -70608,9 +78188,9 @@ runfiles size=124
texmf-dist/tex/latex/glossaries/styles/glossary-superragged.sty
texmf-dist/tex/latex/glossaries/styles/glossary-tree.sty
catalogue-ctan /macros/latex/contrib/glossaries
-catalogue-date 2013-04-21 21:50:25 +0200
+catalogue-date 2014-04-04 14:05:09 +0200
catalogue-license lppl
-catalogue-version 3.05
+catalogue-version 4.07
name glossaries.alpha-linux
category Package
@@ -70696,13 +78276,6 @@ shortdesc i386-solaris files of glossaries
binfiles arch=i386-solaris size=1
bin/i386-solaris/makeglossaries
-name glossaries.mips-irix
-category Package
-revision 29949
-shortdesc mips-irix files of glossaries
-binfiles arch=mips-irix size=1
- bin/mips-irix/makeglossaries
-
name glossaries.mipsel-linux
category Package
revision 29946
@@ -70738,6 +78311,13 @@ shortdesc win32 files of glossaries
binfiles arch=win32 size=1
bin/win32/makeglossaries.exe
+name glossaries.x86_64-cygwin
+category Package
+revision 33557
+shortdesc x86_64-cygwin files of glossaries
+binfiles arch=x86_64-cygwin size=1
+ bin/x86_64-cygwin/makeglossaries
+
name glossaries.x86_64-darwin
category Package
revision 18441
@@ -70818,26 +78398,6 @@ catalogue-date 2012-02-24 11:32:36 +0100
catalogue-license lppl
catalogue-version v0.2
-name gmeometric
-category Package
-revision 15878
-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=23
- texmf-dist/doc/latex/gmeometric/README details="Readme"
- texmf-dist/doc/latex/gmeometric/gmeometric.pdf details="Package documentation"
-runfiles size=4
- texmf-dist/tex/latex/gmeometric/gmeometric.sty
-catalogue-ctan /macros/latex/contrib/gmeometric
-catalogue-date 2012-05-17 22:49:03 +0200
-catalogue-license lppl
-catalogue-version 0.73
-
name gmiflink
category Package
revision 15878
@@ -70874,7 +78434,7 @@ srcfiles size=23
runfiles size=3
texmf-dist/tex/latex/gmp/gmp.sty
catalogue-ctan /macros/latex/contrib/gmp
-catalogue-date 2012-05-17 22:49:03 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.0
@@ -71053,33 +78613,35 @@ runfiles size=4350
texmf-dist/fonts/truetype/public/gnu-freefont/FreeSerifBoldItalic.ttf
texmf-dist/fonts/truetype/public/gnu-freefont/FreeSerifItalic.ttf
catalogue-ctan /fonts/gnu-freefont
-catalogue-date 2012-07-05 15:28:28 +0200
+catalogue-date 2014-05-03 10:31:59 +0200
catalogue-license gpl3
name gnuplottex
category Package
-revision 29939
+revision 32277
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 The package extracts Gnuplot code from the document and writes
+longdesc it to .gnuplot files. 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=47
+longdesc disabled, the user has to run the files through gnuplot, and
+longdesc re-run the LaTeX job.
+docfiles size=107
texmf-dist/doc/latex/gnuplottex/README details="Readme"
+ texmf-dist/doc/latex/gnuplottex/SomeValuesForGnuplot.txt
texmf-dist/doc/latex/gnuplottex/example-pdf.tex
+ texmf-dist/doc/latex/gnuplottex/example.gnuplot
texmf-dist/doc/latex/gnuplottex/gnuplottex.pdf details="Package documentation"
texmf-dist/doc/latex/gnuplottex/gpl.txt
-srcfiles size=4
+srcfiles size=9
texmf-dist/source/latex/gnuplottex/gnuplottex.dtx
texmf-dist/source/latex/gnuplottex/gnuplottex.ins
-runfiles size=2
+runfiles size=3
texmf-dist/tex/latex/gnuplottex/gnuplottex.sty
catalogue-ctan /macros/latex/contrib/gnuplottex
-catalogue-date 2013-04-14 15:13:16 +0200
+catalogue-date 2013-11-29 10:11:23 +0100
catalogue-license gpl2
-catalogue-version 0.4.6
+catalogue-version 0.8
name go
category Package
@@ -71132,7 +78694,7 @@ runfiles size=77
texmf-dist/fonts/tfm/public/go/gosign50.tfm
texmf-dist/tex/latex/go/go.sty
catalogue-ctan /fonts/go
-catalogue-date 2012-05-17 22:49:03 +0200
+catalogue-date 2014-05-03 10:31:59 +0200
catalogue-license pd
name gost
@@ -71192,11 +78754,12 @@ category Package
revision 15878
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, Suetterlin and Schwell, and
-longdesc a font containing decorative initials. In addition, there are
-longdesc two re-encoding packages for Haralambous's fonts, providing T1,
-longdesc using virtual fonts, and OT1 and T1, using Metafont.
+longdesc printing and handwriting. The set comprises Gothic, Schwabacher
+longdesc and Fraktur fonts, a pair of handwriting fonts, Sutterlin and
+longdesc Schwell, and a font containing decorative initials. In
+longdesc addition, there are two re-encoding packages for Haralambous's
+longdesc fonts, providing T1, using virtual fonts, and OT1 and T1, using
+longdesc Metafont.
execute addMap yfrak.map
docfiles size=1
texmf-dist/doc/fonts/gothic/README
@@ -71292,7 +78855,7 @@ runfiles size=313
texmf-dist/fonts/vf/public/gothic/tgoth.vf
texmf-dist/fonts/vf/public/gothic/tswab.vf
catalogue-ctan /fonts/gothic
-catalogue-date 2012-07-22 22:43:07 +0200
+catalogue-date 2014-05-03 14:16:52 +0200
catalogue-license collection
name gradientframe
@@ -71310,7 +78873,7 @@ srcfiles size=4
runfiles size=1
texmf-dist/tex/latex/gradientframe/gradientframe.sty
catalogue-ctan /macros/latex/contrib/gradientframe
-catalogue-date 2012-07-12 13:41:30 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 0.2
@@ -71330,13 +78893,13 @@ docfiles size=119
runfiles size=5
texmf-dist/tex/latex/grafcet/grafcet.sty
catalogue-ctan /graphics/pgf/contrib/grafcet
-catalogue-date 2012-07-12 13:41:30 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1
catalogue-version 1.3.5
name graphics
category Package
-revision 25405
+revision 33946
shortdesc Standard LaTeX graphics.
longdesc The package was designed to accommodate all needs for inclusion
longdesc of graphics in LaTeX documents, replacing many earlier packages
@@ -71351,7 +78914,7 @@ longdesc document (for example, rotation and scaling). For extended
longdesc documentation see epslatex. The package is part of the graphics
longdesc bundle, which is one of the collections in the LaTeX 'required'
longdesc set of packages.
-docfiles size=208
+docfiles size=191
texmf-dist/doc/latex/graphics/00readme.txt
texmf-dist/doc/latex/graphics/changes.txt
texmf-dist/doc/latex/graphics/color.pdf
@@ -71454,51 +79017,138 @@ catalogue-date 2013-01-29 15:35:44 +0100
catalogue-license lppl
catalogue-version 1.1
+name graphicxbox
+category Package
+revision 32630
+shortdesc Insert a graphical image as a background.
+longdesc The package defines two new commands \graphicxbox and
+longdesc \fgraphicxbox, which are companions to \colorbox and \fcolorbox
+longdesc of the Standard LaTeX color package. The \graphicxbox command
+longdesc inserts a graphical image as a background rather than a
+longdesc background color, while \fgraphicxbox does the same thing, but
+longdesc also draws a colored frame around the box.
+docfiles size=313
+ texmf-dist/doc/latex/graphicxbox/README details="Readme"
+ texmf-dist/doc/latex/graphicxbox/doc/graphicxbox.pdf details="Package documentation"
+ texmf-dist/doc/latex/graphicxbox/examples/graphics/IndianBlanket.eps
+ texmf-dist/doc/latex/graphicxbox/examples/graphics/IndianBlanket.pdf
+ texmf-dist/doc/latex/graphicxbox/examples/graphics/Wood-Brown.eps
+ texmf-dist/doc/latex/graphicxbox/examples/graphics/Wood-Brown.pdf
+ texmf-dist/doc/latex/graphicxbox/examples/graphics/bg_cle_tile.eps
+ texmf-dist/doc/latex/graphicxbox/examples/graphics/grandcanyon.eps
+ texmf-dist/doc/latex/graphicxbox/examples/graphics/grandcanyon.pdf
+ texmf-dist/doc/latex/graphicxbox/examples/graphics/news_bgr.eps
+ texmf-dist/doc/latex/graphicxbox/examples/graphics/news_bgr.pdf
+ texmf-dist/doc/latex/graphicxbox/examples/grfxbox_tst.pdf details="Package example"
+ texmf-dist/doc/latex/graphicxbox/examples/grfxbox_tst.tex
+ texmf-dist/doc/latex/graphicxbox/examples/grfxbox_tst_indians.pdf
+ texmf-dist/doc/latex/graphicxbox/examples/grfxbox_tst_indians.tex
+ texmf-dist/doc/latex/graphicxbox/examples/grfxbox_tst_sp.pdf
+ texmf-dist/doc/latex/graphicxbox/examples/grfxbox_tst_sp.tex
+srcfiles size=3
+ texmf-dist/source/latex/graphicxbox/graphicxbox.dtx
+ texmf-dist/source/latex/graphicxbox/graphicxbox.ins
+runfiles size=1
+ texmf-dist/tex/latex/graphicxbox/graphicxbox.sty
+catalogue-ctan /macros/latex/contrib/graphicxbox
+catalogue-date 2014-01-15 12:43:52 +0100
+catalogue-license lppl
+catalogue-version 1.0
+
+name graphviz
+category Package
+revision 31517
+shortdesc Write graphviz (dot+neato) inline in LaTeX documents.
+longdesc The package allows inline use of graphviz code, in a LaTeX
+longdesc document.
+docfiles size=40
+ texmf-dist/doc/latex/graphviz/LICENSE
+ texmf-dist/doc/latex/graphviz/Makefile
+ texmf-dist/doc/latex/graphviz/README details="Readme"
+ texmf-dist/doc/latex/graphviz/README.md
+ texmf-dist/doc/latex/graphviz/graphviz.pdf details="Package documentation"
+ texmf-dist/doc/latex/graphviz/test/Makefile
+ texmf-dist/doc/latex/graphviz/test/body.tex
+ texmf-dist/doc/latex/graphviz/test/pdf-singlefile-tmpdir.tex
+ texmf-dist/doc/latex/graphviz/test/pdf-singlefile.tex
+ texmf-dist/doc/latex/graphviz/test/pdf-tmpdir.tex
+ texmf-dist/doc/latex/graphviz/test/pdf.tex
+ texmf-dist/doc/latex/graphviz/test/ps.tex
+srcfiles size=6
+ texmf-dist/source/latex/graphviz/graphviz.dtx
+ texmf-dist/source/latex/graphviz/graphviz.ins
+runfiles size=1
+ texmf-dist/tex/latex/graphviz/graphviz.sty
+catalogue-ctan /macros/latex/contrib/graphviz
+catalogue-date 2014-02-26 23:03:13 +0100
+catalogue-license lppl1.3
+catalogue-version 0.94
+
name greek-fontenc
category Package
-revision 30721
-shortdesc Encoding definition files for Greek fonts.
-longdesc The package provides a successor to the LGR encoding definition
-longdesc files supplied with babel, and for the file lgrxenc.def from
-longdesc the lgrx bundle. The package defines LICR macros for Greek
-longdesc characters, selecting pre-composed glyphs whenever possible,
-longdesc and otherwise places diacritics according to established rules.
-docfiles size=105
+revision 32301
+shortdesc LICR macros and encoding definition files for Greek.
+longdesc The package provides Greek LICR macro definitions and encoding
+longdesc definition files for Greek text font encodings for use with
+longdesc fontenc.
+docfiles size=242
texmf-dist/doc/latex/greek-fontenc/README details="Readme"
texmf-dist/doc/latex/greek-fontenc/README.html
+ texmf-dist/doc/latex/greek-fontenc/alphabeta-euenc.def.html
+ texmf-dist/doc/latex/greek-fontenc/alphabeta-euenc.def.txt
+ texmf-dist/doc/latex/greek-fontenc/alphabeta-test.pdf
+ texmf-dist/doc/latex/greek-fontenc/alphabeta-test.tex
+ texmf-dist/doc/latex/greek-fontenc/alphabeta.sty.html
+ texmf-dist/doc/latex/greek-fontenc/diacritics.pdf
+ texmf-dist/doc/latex/greek-fontenc/diacritics.tex
+ texmf-dist/doc/latex/greek-fontenc/euenc-test.pdf
+ texmf-dist/doc/latex/greek-fontenc/euenc-test.tex
+ texmf-dist/doc/latex/greek-fontenc/greek-euenc.def.html
+ texmf-dist/doc/latex/greek-fontenc/greek-fontenc.def.html
+ texmf-dist/doc/latex/greek-fontenc/greekhyperref.pdf
+ texmf-dist/doc/latex/greek-fontenc/greekhyperref.tex
+ texmf-dist/doc/latex/greek-fontenc/lgr2licr.lua
+ texmf-dist/doc/latex/greek-fontenc/lgr2licr.lua.html
texmf-dist/doc/latex/greek-fontenc/lgrenc-test.pdf
texmf-dist/doc/latex/greek-fontenc/lgrenc-test.tex
texmf-dist/doc/latex/greek-fontenc/lgrenc.def.html
- texmf-dist/doc/latex/greek-fontenc/lgrenc.def.txt
-runfiles size=8
+ texmf-dist/doc/latex/greek-fontenc/textalpha-test.pdf
+ texmf-dist/doc/latex/greek-fontenc/textalpha-test.tex
+ texmf-dist/doc/latex/greek-fontenc/textalpha.sty.html
+runfiles size=38
+ texmf-dist/tex/latex/greek-fontenc/alphabeta-euenc.def
+ texmf-dist/tex/latex/greek-fontenc/alphabeta.sty
+ texmf-dist/tex/latex/greek-fontenc/greek-euenc.def
+ texmf-dist/tex/latex/greek-fontenc/greek-fontenc.def
texmf-dist/tex/latex/greek-fontenc/lgrenc.def
+ texmf-dist/tex/latex/greek-fontenc/textalpha.sty
catalogue-ctan /language/greek/greek-fontenc
-catalogue-date 2013-05-24 19:21:12 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
-catalogue-version 0.8.2
+catalogue-version 0.11.1
name greek-inputenc
category Package
-revision 30722
+revision 31232
shortdesc Greek encoding support for inputenc.
-longdesc The bundle provides Macintosh Greek encoding and ISO 8859-7
-longdesc definition files for use with inputenc.
-docfiles size=77
+longdesc The bundle provides UTF-8, Macintosh Greek encoding and ISO
+longdesc 8859-7 definition files for use with inputenc.
+docfiles size=111
texmf-dist/doc/latex/greek-inputenc/README
texmf-dist/doc/latex/greek-inputenc/README.html
texmf-dist/doc/latex/greek-inputenc/lgrenc.dfu.html
texmf-dist/doc/latex/greek-inputenc/test-iso-8859-7.pdf
texmf-dist/doc/latex/greek-inputenc/test-iso-8859-7.tex
- texmf-dist/doc/latex/greek-inputenc/test-utf8.pdf
+ texmf-dist/doc/latex/greek-inputenc/test-utf8.pdf details="Test, demonstrating the range covered"
texmf-dist/doc/latex/greek-inputenc/test-utf8.tex
runfiles size=11
texmf-dist/tex/latex/greek-inputenc/iso-8859-7.def
texmf-dist/tex/latex/greek-inputenc/lgrenc.dfu
texmf-dist/tex/latex/greek-inputenc/macgreek.def
catalogue-ctan /language/greek/greek-inputenc
-catalogue-date 2013-05-27 20:07:27 +0200
+catalogue-date 2013-09-13 17:09:45 +0200
catalogue-license lppl
-catalogue-version 1.3
+catalogue-version 1.4.1
name greekdates
category Package
@@ -71519,7 +79169,7 @@ srcfiles size=10
runfiles size=6
texmf-dist/tex/latex/greekdates/greekdates.sty
catalogue-ctan /macros/latex/contrib/greekdates
-catalogue-date 2012-07-13 12:20:40 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.0
@@ -71539,7 +79189,7 @@ docfiles size=182
runfiles size=7
texmf-dist/tex/latex/greektex/greektex.sty
catalogue-ctan /fonts/greek/greektex
-catalogue-date 2012-07-13 12:20:40 +0200
+catalogue-date 2014-05-03 14:44:16 +0200
catalogue-license pd
name greenpoint
@@ -71557,7 +79207,7 @@ runfiles size=2
texmf-dist/fonts/source/public/greenpoint/greenpoint.mf
texmf-dist/fonts/tfm/public/greenpoint/greenpoint.tfm
catalogue-ctan /fonts/greenpoint
-catalogue-date 2012-05-08 16:30:16 +0200
+catalogue-date 2014-05-03 14:44:16 +0200
catalogue-license gpl
name grfpaste
@@ -71604,10 +79254,29 @@ srcfiles size=1
runfiles size=3
texmf-dist/tex/latex/grid/grid.sty
catalogue-ctan /macros/latex/contrib/grid
-catalogue-date 2012-07-13 12:20:40 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.0
+name grid-system
+category Package
+revision 32981
+shortdesc Page organisation, modelled on CSS facilities.
+longdesc The package provides the means for LaTeX to implement a grid
+longdesc system as known from CSS grid systems. The facility is useful
+longdesc for creating box layouts as used in brochures.
+docfiles size=19
+ texmf-dist/doc/latex/grid-system/LICENSE
+ texmf-dist/doc/latex/grid-system/README details="Readme"
+ texmf-dist/doc/latex/grid-system/grid-system.pdf details="Package documentation"
+ texmf-dist/doc/latex/grid-system/grid-system.tex
+runfiles size=1
+ texmf-dist/tex/latex/grid-system/grid-system.sty
+catalogue-ctan /macros/latex/contrib/grid-system
+catalogue-date 2014-02-26 23:03:13 +0100
+catalogue-license apache2
+catalogue-version 0.3.0
+
name gridset
category Package
revision 15878
@@ -71679,9 +79348,29 @@ catalogue-ctan /fonts/urw/grotesq
catalogue-date 2012-12-07 18:46:56 +0100
catalogue-license gpl
+name grundgesetze
+category Package
+revision 33289
+shortdesc Typeset Frege's Grundgesetze der Arithmetik
+longdesc The package defines maths mode commands for typesetting Gottlob
+longdesc Frege's concept-script in the style of his "Grundgesetze der
+longdesc Arithmetik" (Basic Laws of Arithmetic).
+docfiles size=60
+ texmf-dist/doc/latex/grundgesetze/README details="Readme"
+ texmf-dist/doc/latex/grundgesetze/grundgesetze.pdf details="Package documentation"
+srcfiles size=10
+ texmf-dist/source/latex/grundgesetze/grundgesetze.dtx
+ texmf-dist/source/latex/grundgesetze/grundgesetze.ins
+runfiles size=3
+ texmf-dist/tex/latex/grundgesetze/grundgesetze.sty
+catalogue-ctan /macros/latex/contrib/grundgesetze
+catalogue-date 2014-04-08 11:20:21 +0200
+catalogue-license gpl2
+catalogue-version 1.01
+
name gsftopk
category TLCore
-revision 29764
+revision 33736
shortdesc Convert "ghostscript fonts" to PK files.
longdesc Designed for use with xdvi and dvips this utility converts
longdesc Adobe Type 1 fonts to PK bitmap format. It should not
@@ -71701,154 +79390,176 @@ catalogue-version 1.19.2
name gsftopk.alpha-linux
category TLCore
-revision 29891
+revision 33553
shortdesc alpha-linux files of gsftopk
binfiles arch=alpha-linux size=29
bin/alpha-linux/gsftopk
name gsftopk.amd64-freebsd
category TLCore
-revision 29874
+revision 33488
shortdesc amd64-freebsd files of gsftopk
binfiles arch=amd64-freebsd size=23
bin/amd64-freebsd/gsftopk
name gsftopk.amd64-kfreebsd
category TLCore
-revision 30655
+revision 33864
shortdesc amd64-kfreebsd files of gsftopk
binfiles arch=amd64-kfreebsd size=22
bin/amd64-kfreebsd/gsftopk
name gsftopk.amd64-netbsd
category TLCore
-revision 30660
+revision 33726
shortdesc amd64-netbsd files of gsftopk
binfiles arch=amd64-netbsd size=22
bin/amd64-netbsd/gsftopk
name gsftopk.armel-linux
category TLCore
-revision 29888
+revision 33916
shortdesc armel-linux files of gsftopk
binfiles arch=armel-linux size=20
bin/armel-linux/gsftopk
name gsftopk.armhf-linux
category TLCore
-revision 30443
+revision 34125
shortdesc armhf-linux files of gsftopk
binfiles arch=armhf-linux size=19
bin/armhf-linux/gsftopk
name gsftopk.i386-cygwin
category TLCore
-revision 30526
+revision 34161
shortdesc i386-cygwin files of gsftopk
-binfiles arch=i386-cygwin size=20
+binfiles arch=i386-cygwin size=23
bin/i386-cygwin/gsftopk.exe
name gsftopk.i386-freebsd
category TLCore
-revision 29874
+revision 33488
shortdesc i386-freebsd files of gsftopk
binfiles arch=i386-freebsd size=21
bin/i386-freebsd/gsftopk
name gsftopk.i386-kfreebsd
category TLCore
-revision 30440
+revision 33864
shortdesc i386-kfreebsd files of gsftopk
binfiles arch=i386-kfreebsd size=22
bin/i386-kfreebsd/gsftopk
name gsftopk.i386-linux
category TLCore
-revision 30088
+revision 33479
shortdesc i386-linux files of gsftopk
-binfiles arch=i386-linux size=22
+binfiles arch=i386-linux size=23
bin/i386-linux/gsftopk
name gsftopk.i386-netbsd
category TLCore
-revision 30191
+revision 33562
shortdesc i386-netbsd files of gsftopk
binfiles arch=i386-netbsd size=19
bin/i386-netbsd/gsftopk
name gsftopk.i386-solaris
category TLCore
-revision 30112
+revision 34203
shortdesc i386-solaris files of gsftopk
binfiles arch=i386-solaris size=25
bin/i386-solaris/gsftopk
-name gsftopk.mips-irix
-category TLCore
-revision 30131
-shortdesc mips-irix files of gsftopk
-binfiles arch=mips-irix size=46
- bin/mips-irix/gsftopk
-
name gsftopk.mipsel-linux
category TLCore
-revision 29995
+revision 33811
shortdesc mipsel-linux files of gsftopk
-binfiles arch=mipsel-linux size=28
+binfiles arch=mipsel-linux size=22
bin/mipsel-linux/gsftopk
name gsftopk.powerpc-linux
category TLCore
-revision 30114
+revision 33889
shortdesc powerpc-linux files of gsftopk
-binfiles arch=powerpc-linux size=23
+binfiles arch=powerpc-linux size=21
bin/powerpc-linux/gsftopk
name gsftopk.sparc-solaris
category TLCore
-revision 29877
+revision 33871
shortdesc sparc-solaris files of gsftopk
binfiles arch=sparc-solaris size=23
bin/sparc-solaris/gsftopk
name gsftopk.universal-darwin
category TLCore
-revision 30764
+revision 34201
shortdesc universal-darwin files of gsftopk
binfiles arch=universal-darwin size=45
bin/universal-darwin/gsftopk
name gsftopk.win32
category TLCore
-revision 29816
+revision 33897
shortdesc win32 files of gsftopk
-binfiles arch=win32 size=5
+binfiles arch=win32 size=6
bin/win32/gsftopk.exe
+name gsftopk.x86_64-cygwin
+category TLCore
+revision 34161
+shortdesc x86_64-cygwin files of gsftopk
+binfiles arch=x86_64-cygwin size=22
+ bin/x86_64-cygwin/gsftopk.exe
+
name gsftopk.x86_64-darwin
category TLCore
-revision 29879
+revision 34201
shortdesc x86_64-darwin files of gsftopk
binfiles arch=x86_64-darwin size=24
bin/x86_64-darwin/gsftopk
name gsftopk.x86_64-linux
category TLCore
-revision 30204
+revision 33723
shortdesc x86_64-linux files of gsftopk
binfiles arch=x86_64-linux size=22
bin/x86_64-linux/gsftopk
name gsftopk.x86_64-solaris
category TLCore
-revision 30112
+revision 34203
shortdesc x86_64-solaris files of gsftopk
binfiles arch=x86_64-solaris size=29
bin/x86_64-solaris/gsftopk
+name gtl
+category Package
+revision 31306
+shortdesc Manipulating generalized token lists.
+longdesc The package provides tools for simple operations on lists of
+longdesc tokens which are not necessarily balanced. It is in particular
+longdesc used a lot in the unravel package, to go through tokens one at
+longdesc a time rather than having to work with entire braced groups at
+longdesc a time. The package requires an up-to-date l3kernel bundle.
+docfiles size=135
+ texmf-dist/doc/latex/gtl/README details="Readme"
+ texmf-dist/doc/latex/gtl/gtl.pdf details="Package documentation"
+srcfiles size=13
+ texmf-dist/source/latex/gtl/gtl.dtx
+ texmf-dist/source/latex/gtl/gtl.ins
+runfiles size=5
+ texmf-dist/tex/latex/gtl/gtl.sty
+catalogue-ctan /macros/latex/contrib/gtl
+catalogue-date 2013-08-23 17:44:33 +0200
+catalogue-license lppl
+catalogue-version 0.0a
+
name gtrcrd
category Package
-revision 25121
+revision 32484
shortdesc Add chords to lyrics.
longdesc The package provides the means to specify guitar chords to be
longdesc played with each part of the lyrics of a song. The syntax of
@@ -71856,16 +79567,16 @@ longdesc the macros reduces the chance of failing to provide a chord
longdesc where one is needed, and the structure of the macros ensures
longdesc that the chord specification appears immediately above the
longdesc start of the lyric.
-docfiles size=39
+docfiles size=42
texmf-dist/doc/latex/gtrcrd/README details="Readme"
texmf-dist/doc/latex/gtrcrd/gtrcrd-doc.pdf details="Package documentation"
texmf-dist/doc/latex/gtrcrd/gtrcrd-doc.tex
-runfiles size=4
+runfiles size=5
texmf-dist/tex/latex/gtrcrd/gtrcrd.sty
catalogue-ctan /macros/latex/contrib/gtrcrd
-catalogue-date 2012-04-22 19:37:33 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
-catalogue-version 1.0
+catalogue-version 1.1
name gu
category Package
@@ -71999,7 +79710,7 @@ docfiles size=200
name guitar
category Package
-revision 17355
+revision 32258
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
@@ -72007,7 +79718,8 @@ 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=65
+docfiles size=31
+ texmf-dist/doc/latex/guitar/README
texmf-dist/doc/latex/guitar/guitar.pdf details="Package documentation"
texmf-dist/doc/latex/guitar/guitar.tex
texmf-dist/doc/latex/guitar/guitar.txt
@@ -72017,10 +79729,30 @@ srcfiles size=14
runfiles size=2
texmf-dist/tex/latex/guitar/guitar.sty
catalogue-ctan /macros/latex/contrib/guitar
-catalogue-date 2012-04-22 21:39:16 +0200
-catalogue-license lppl
+catalogue-date 2013-11-27 01:09:36 +0100
+catalogue-license lppl1.3
catalogue-version 1.6
+name guitarchordschemes
+category Package
+revision 31524
+shortdesc Guitar Chord and Scale Tablatures.
+longdesc This package provides two commands (\chordscheme and \scales).
+longdesc With those commands it is possible to draw schematic diagrams
+longdesc of guitar chord tablatures and scale tablatures. Both commands
+longdesc know a range of options that allow wide customization of the
+longdesc output. The package's drawing is done with the help of TikZ.
+docfiles size=34
+ texmf-dist/doc/latex/guitarchordschemes/README details="Readme"
+ texmf-dist/doc/latex/guitarchordschemes/guitarchordschemes_en.pdf details="Package documentation" language="en"
+ texmf-dist/doc/latex/guitarchordschemes/guitarchordschemes_en.tex
+runfiles size=5
+ texmf-dist/tex/latex/guitarchordschemes/guitarchordschemes.sty
+catalogue-ctan /macros/latex/contrib/guitarchordschemes
+catalogue-date 2014-02-26 23:03:13 +0100
+catalogue-license lppl1.3
+catalogue-version 0.4
+
name guitlogo
category Package
revision 27458
@@ -72160,10 +79892,54 @@ runfiles size=106
texmf-dist/tex/latex/hacm/ot1hkar.fd
texmf-dist/tex/latex/hacm/ot1hlan.fd
catalogue-ctan /fonts/hacm
-catalogue-date 2012-09-15 09:59:19 +0200
+catalogue-date 2014-05-03 14:44:16 +0200
catalogue-license lppl1.3
catalogue-version 0.1
+name handout
+category Package
+revision 34239
+shortdesc Create handout for auditors of a talk
+longdesc In some fields of scholarship, a beamer does not offer good
+longdesc support when giving a talk in a proceeding. For example, in
+longdesc classical philology, the main sources are text, and it will be
+longdesc better to distribute a handout to the audience with extracts of
+longdesc the texts about which we will talk. The package supports
+longdesc preparation of such handouts when writing the talk.
+docfiles size=73
+ texmf-dist/doc/latex/handout/README details="Readme"
+ texmf-dist/doc/latex/handout/examples/example.bib
+ texmf-dist/doc/latex/handout/examples/example1-minimal.pdf
+ texmf-dist/doc/latex/handout/examples/example1-minimal.tex
+ texmf-dist/doc/latex/handout/examples/example2-cancel-quotation.pdf
+ texmf-dist/doc/latex/handout/examples/example2-cancel-quotation.tex
+ texmf-dist/doc/latex/handout/examples/example3-defined-path.pdf
+ texmf-dist/doc/latex/handout/examples/example3-defined-path.tex
+ texmf-dist/doc/latex/handout/examples/example4-sectioning.pdf
+ texmf-dist/doc/latex/handout/examples/example4-sectioning.tex
+ texmf-dist/doc/latex/handout/examples/example5-numbering.pdf
+ texmf-dist/doc/latex/handout/examples/example5-numbering.tex
+ texmf-dist/doc/latex/handout/examples/example6-not-and-only.pdf
+ texmf-dist/doc/latex/handout/examples/example6-not-and-only.tex
+ texmf-dist/doc/latex/handout/examples/example7-biblatex.pdf
+ texmf-dist/doc/latex/handout/examples/example7-biblatex.tex
+ texmf-dist/doc/latex/handout/examples/latexmkrc
+ texmf-dist/doc/latex/handout/examples/makefile
+ texmf-dist/doc/latex/handout/examples/txt/Preau1583-not-and-only.tex
+ texmf-dist/doc/latex/handout/examples/txt/Preau1583.tex
+ texmf-dist/doc/latex/handout/examples/txt/Preau1583b.tex
+ texmf-dist/doc/latex/handout/examples/txt/Richard_Simon_NT.tex
+ texmf-dist/doc/latex/handout/handout.pdf details="Package documentation"
+ texmf-dist/doc/latex/handout/handout.tex
+ texmf-dist/doc/latex/handout/latexmkrc
+ texmf-dist/doc/latex/handout/makefile
+runfiles size=1
+ texmf-dist/tex/latex/handout/handout.sty
+catalogue-ctan /macros/latex/contrib/handout
+catalogue-date 2014-03-28 18:05:25 +0100
+catalogue-license lppl1.3
+catalogue-version 1.0.0
+
name hands
category Package
revision 13293
@@ -72179,7 +79955,7 @@ runfiles size=6
texmf-dist/fonts/source/public/hands/rvmirror.mf
texmf-dist/fonts/tfm/public/hands/hands.tfm
catalogue-ctan /fonts/hands
-catalogue-date 2012-02-03 14:10:15 +0100
+catalogue-date 2014-05-06 20:53:54 +0200
catalogue-license pd
name hanging
@@ -72203,7 +79979,7 @@ srcfiles size=7
runfiles size=2
texmf-dist/tex/latex/hanging/hanging.sty
catalogue-ctan /macros/latex/contrib/hanging
-catalogue-date 2012-04-16 00:42:03 +0200
+catalogue-date 2013-09-30 14:43:32 +0200
catalogue-license lppl1.3
catalogue-version 1.2b
@@ -72218,7 +79994,7 @@ longdesc 15 discs, 32767 moves are needed).
runfiles size=1
texmf-dist/tex/plain/hanoi/hanoi.tex
catalogue-ctan /macros/plain/contrib/hanoi/hanoi.tex
-catalogue-date 2012-01-04 11:58:42 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license pd
catalogue-version 20120101
@@ -72232,7 +80008,7 @@ docfiles size=23
texmf-dist/doc/plain/happy4th/happy4th.pdf details="Package output"
texmf-dist/doc/plain/happy4th/happy4th.tex
catalogue-ctan /macros/plain/contrib/happy4th
-catalogue-date 2012-06-18 18:51:38 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license pd
catalogue-version 20120102
@@ -72277,7 +80053,7 @@ srcfiles size=11
runfiles size=3
texmf-dist/tex/latex/hardwrap/hardwrap.sty
catalogue-ctan /macros/latex/contrib/hardwrap
-catalogue-date 2012-04-15 22:35:03 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 0.2
@@ -72311,7 +80087,7 @@ docfiles size=16
runfiles size=2
texmf-dist/tex/latex/harnon-cv/harnon-cv.cls
catalogue-ctan /macros/latex/contrib/harnon-cv
-catalogue-date 2012-07-08 14:35:29 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license pd
catalogue-version 1.0
@@ -72342,15 +80118,15 @@ longdesc Harvard package. The bundle contains the LaTeX package, several
longdesc BibTeX styles, and a 'Perl package' for use with LaTeX2HTML.
longdesc Harvard is an author-year citation style (all but the first
longdesc author are suppressed in second and subsequent citations of the
-longdesc same entry); the package defines several variant styles: -
-longdesc apsr.bst for the American Political Science Review; - agsm.bst
-longdesc for Australian Government publications; - dcu.bst from the
-longdesc Design Computing Unit of the University of Sydney; -
-longdesc kluwer.bstwhich aims at the format preferred in Kluwer
-longdesc publications; - nederlands.bst which deals with sorting Dutch
-longdesc names with prefixes (such as van) according to Dutch rules;
-longdesc together with several styles whose authors offer no description
-longdesc of their behaviour.
+longdesc same entry); the package defines several variant styles:
+longdesc apsr.bst for the American Political Science Review; agsm.bst
+longdesc for Australian Government publications; dcu.bst from the Design
+longdesc Computing Unit of the University of Sydney; kluwer.bstwhich
+longdesc aims at the format preferred in Kluwer publications;
+longdesc nederlands.bst which deals with sorting Dutch names with
+longdesc prefixes (such as van) according to Dutch rules, together with
+longdesc several styles whose authors offer no description of their
+longdesc behaviour.
docfiles size=35
texmf-dist/doc/latex/harvard/INSTALL
texmf-dist/doc/latex/harvard/README details="Package Readme"
@@ -72372,10 +80148,27 @@ runfiles size=55
texmf-dist/bibtex/bst/harvard/nederlands.bst
texmf-dist/tex/latex/harvard/harvard.sty
catalogue-ctan /macros/latex/contrib/harvard
-catalogue-date 2011-11-15 11:50:22 +0100
+catalogue-date 2013-12-27 11:50:48 +0100
catalogue-license lppl
catalogue-version 2.0.5
+name harveyballs
+category Package
+revision 32003
+shortdesc Create Harvey Balls using TikZ.
+longdesc The package provides 5 commands (giving symbols that indicate
+longdesc values from "none" to "full").
+docfiles size=39
+ texmf-dist/doc/latex/harveyballs/README details="Readme"
+ texmf-dist/doc/latex/harveyballs/harveyballs-Manual.pdf details="Package documentation"
+ texmf-dist/doc/latex/harveyballs/harveyballs-Manual.tex
+runfiles size=1
+ texmf-dist/tex/latex/harveyballs/harveyballs.sty
+catalogue-ctan /graphics/pgf/contrib/harveyballs
+catalogue-date 2014-02-26 23:03:13 +0100
+catalogue-license gpl3
+catalogue-version 1.1
+
name harvmac
category Package
revision 15878
@@ -72410,26 +80203,27 @@ catalogue-version 0.11
name hausarbeit-jura
category Package
-revision 25356
+revision 34009
shortdesc Class for writing "juristiche Hausarbeiten" at German Universities.
-longdesc The class was developed to write legal essays ("juristische
-longdesc Hausarbeit") at German Universities. It is based on jurabook
-longdesc and jurabib and makes it easy for LaTeX beginners to get a
-longdesc correct and nicely formatted paper.
-docfiles size=4
+longdesc The class was developed for use by students writing legal
+longdesc essays ("juristische Hausarbeit") at German Universities. It is
+longdesc based on jurabook and jurabib and makes it easy for LaTeX
+longdesc beginners to get a correct and nicely formatted paper.
+docfiles size=84
texmf-dist/doc/latex/hausarbeit-jura/README details="Readme"
- texmf-dist/doc/latex/hausarbeit-jura/README.
+ texmf-dist/doc/latex/hausarbeit-jura/README.txt
texmf-dist/doc/latex/hausarbeit-jura/hausarbeit-demo.bib
texmf-dist/doc/latex/hausarbeit-jura/hausarbeit-demo.tex
-srcfiles size=7
+ texmf-dist/doc/latex/hausarbeit-jura/hausarbeit-jura.pdf details="Package documentation (German)" language="de"
+srcfiles size=9
texmf-dist/source/latex/hausarbeit-jura/hausarbeit-jura.dtx
texmf-dist/source/latex/hausarbeit-jura/hausarbeit-jura.ins
runfiles size=4
texmf-dist/tex/latex/hausarbeit-jura/hausarbeit-jura.cls
catalogue-ctan /macros/latex/contrib/hausarbeit-jura
-catalogue-date 2012-02-13 10:56:37 +0100
+catalogue-date 2014-05-13 23:14:59 +0200
catalogue-license lppl1.3
-catalogue-version 1.0
+catalogue-version 1.1
name hc
category Package
@@ -72474,13 +80268,13 @@ docfiles size=54
runfiles size=2
texmf-dist/tex/latex/he-she/he-she.sty
catalogue-ctan /macros/latex/contrib/he-she
-catalogue-date 2013-03-24 22:07:21 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.1
name helvetic
category Package
-revision 28614
+revision 31835
catalogue urw-base35
shortdesc URW "Base 35" font pack for LaTeX.
longdesc A set of fonts for use as "drop-in" replacements for Adobe's
@@ -72494,6 +80288,7 @@ longdesc Symbol); - URW Bookman; - URW Chancery L Medium Italic
longdesc (substituting for Adobe's Zapf Chancery); - URW Gothic L Book
longdesc (substituting for Adobe's Avant Garde); and - URW Palladio L
longdesc (substituting for Adobe's Palatino).
+execute addMap uhv.map
runfiles size=594
texmf-dist/dvips/helvetic/config.uhv
texmf-dist/fonts/afm/adobe/helvetic/phvb8a.afm
@@ -72781,7 +80576,7 @@ catalogue-version 1.0
name hepnames
category Package
-revision 15878
+revision 31856
shortdesc Pre-defined high energy particle names.
longdesc Hepnames provides a pair of LaTeX packages, heppennames and
longdesc hepnicenames, providing a large set of pre-defined high energy
@@ -72793,25 +80588,31 @@ longdesc flexibility and robustness due to the hepparticles structures,
longdesc which were written for this purpose. Hepnicenames provides the
longdesc main non-resonant particle names from heppennames with more
longdesc "friendly" names.
-docfiles size=154
+docfiles size=357
texmf-dist/doc/latex/hepnames/ChangeLog
+ texmf-dist/doc/latex/hepnames/Makefile
texmf-dist/doc/latex/hepnames/README details="Readme"
texmf-dist/doc/latex/hepnames/hepnames.pdf details="Details of the package bundle"
texmf-dist/doc/latex/hepnames/hepnames.tex
+ texmf-dist/doc/latex/hepnames/hepnicenames-it.pdf
+ texmf-dist/doc/latex/hepnames/hepnicenames-it.tex
texmf-dist/doc/latex/hepnames/hepnicenames-macros.tex
- texmf-dist/doc/latex/hepnames/hepnicenames.pdf details="Enumeration of available nicenames"
- texmf-dist/doc/latex/hepnames/hepnicenames.tex
+ texmf-dist/doc/latex/hepnames/hepnicenames-rm.pdf details="Enumeration of available nicenames"
+ texmf-dist/doc/latex/hepnames/hepnicenames-rm.tex
+ texmf-dist/doc/latex/hepnames/heppennames-it.pdf
+ texmf-dist/doc/latex/hepnames/heppennames-it.tex
texmf-dist/doc/latex/hepnames/heppennames-macros.tex
- texmf-dist/doc/latex/hepnames/heppennames.pdf details="Enumeration of available pennames"
- texmf-dist/doc/latex/hepnames/heppennames.tex
+ texmf-dist/doc/latex/hepnames/heppennames-rm.pdf details="Enumeration of available pennames"
+ texmf-dist/doc/latex/hepnames/heppennames-rm.tex
+ texmf-dist/doc/latex/hepnames/mkmacrotables
runfiles size=13
texmf-dist/tex/latex/hepnames/hepnames.sty
texmf-dist/tex/latex/hepnames/hepnicenames.sty
texmf-dist/tex/latex/hepnames/heppennames.sty
catalogue-ctan /macros/latex/contrib/hepnames
-catalogue-date 2011-11-16 20:25:41 +0100
+catalogue-date 2013-10-07 18:28:42 +0200
catalogue-license lppl
-catalogue-version 1.4
+catalogue-version 1.7
name hepparticles
category Package
@@ -72853,13 +80654,13 @@ 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 and
longdesc includes some features specifically tailored to such an
-longdesc application. In particular, hepthesis offers: - Attractive
-longdesc semantic environments for various rubric sections; - Extensive
+longdesc application. In particular, hepthesis offers: Attractive
+longdesc semantic environments for various rubric sections; Extensive
longdesc options for draft production, screen viewing and binding-ready
-longdesc output; - Helpful extensions of existing environments,
-longdesc including equation and tabular; and - Support for quotations at
-longdesc the start of the thesis and each chapter. The class is based on
-longdesc scrbook, from the KOMA-Script bundle.
+longdesc output; Helpful extensions of existing environments, including
+longdesc equation and tabular; and Support for quotations at the start
+longdesc of the thesis and each chapter. The class is based on scrbook,
+longdesc from the KOMA-Script bundle.
docfiles size=301
texmf-dist/doc/latex/hepthesis/ChangeLog
texmf-dist/doc/latex/hepthesis/Makefile
@@ -72888,7 +80689,7 @@ docfiles size=301
runfiles size=7
texmf-dist/tex/latex/hepthesis/hepthesis.cls
catalogue-ctan /macros/latex/contrib/hepthesis
-catalogue-date 2011-11-16 20:25:41 +0100
+catalogue-date 2013-12-27 11:50:48 +0100
catalogue-license lppl
catalogue-version 1.4.3
@@ -72932,6 +80733,212 @@ catalogue-ctan /macros/latex/contrib/here
catalogue-date 2012-07-13 13:47:30 +0200
catalogue-license pd
+name heuristica
+category Package
+revision 34103
+shortdesc Fonts extending Utopia, with LaTeX support files.
+longdesc The fonts extend the utopia set with Cyrillic glyphs,
+longdesc additional figure styles, ligatures and Small Caps in Regular
+longdesc style only. Macro support, and maths fonts that match the
+longdesc Utopia family, are provided by the Fourier and the Mathdesign
+longdesc font packages.
+execute addMap Heuristica.map
+docfiles size=29
+ texmf-dist/doc/fonts/heuristica/FontLog.txt
+ texmf-dist/doc/fonts/heuristica/OFL-FAQ.txt
+ texmf-dist/doc/fonts/heuristica/OFL.txt
+ texmf-dist/doc/fonts/heuristica/README details="Readme"
+ texmf-dist/doc/fonts/heuristica/heuristica-doc.pdf
+ texmf-dist/doc/fonts/heuristica/heuristica-doc.tex
+runfiles size=589
+ texmf-dist/fonts/enc/dvips/heuristica/zut_3sseao.enc
+ texmf-dist/fonts/enc/dvips/heuristica/zut_5b7xz5.enc
+ texmf-dist/fonts/enc/dvips/heuristica/zut_75nckf.enc
+ texmf-dist/fonts/enc/dvips/heuristica/zut_bv5hp7.enc
+ texmf-dist/fonts/enc/dvips/heuristica/zut_ckaykl.enc
+ texmf-dist/fonts/enc/dvips/heuristica/zut_cnmq22.enc
+ texmf-dist/fonts/enc/dvips/heuristica/zut_dcwkkw.enc
+ texmf-dist/fonts/enc/dvips/heuristica/zut_dhvb6d.enc
+ texmf-dist/fonts/enc/dvips/heuristica/zut_dvh2xl.enc
+ texmf-dist/fonts/enc/dvips/heuristica/zut_e7tlds.enc
+ texmf-dist/fonts/enc/dvips/heuristica/zut_f5u5uq.enc
+ texmf-dist/fonts/enc/dvips/heuristica/zut_faifug.enc
+ texmf-dist/fonts/enc/dvips/heuristica/zut_flhghs.enc
+ texmf-dist/fonts/enc/dvips/heuristica/zut_g4w54e.enc
+ texmf-dist/fonts/enc/dvips/heuristica/zut_geqeyh.enc
+ texmf-dist/fonts/enc/dvips/heuristica/zut_hbxdik.enc
+ texmf-dist/fonts/enc/dvips/heuristica/zut_hdx6sb.enc
+ texmf-dist/fonts/enc/dvips/heuristica/zut_hln2hy.enc
+ texmf-dist/fonts/enc/dvips/heuristica/zut_ioi5s5.enc
+ texmf-dist/fonts/enc/dvips/heuristica/zut_it5nv3.enc
+ texmf-dist/fonts/enc/dvips/heuristica/zut_o6uy2f.enc
+ texmf-dist/fonts/enc/dvips/heuristica/zut_oyyjpx.enc
+ texmf-dist/fonts/enc/dvips/heuristica/zut_pwyhgk.enc
+ texmf-dist/fonts/enc/dvips/heuristica/zut_qy67bk.enc
+ texmf-dist/fonts/enc/dvips/heuristica/zut_rhmrtx.enc
+ texmf-dist/fonts/enc/dvips/heuristica/zut_thxlbm.enc
+ texmf-dist/fonts/enc/dvips/heuristica/zut_u7pc6m.enc
+ texmf-dist/fonts/enc/dvips/heuristica/zut_vaioc2.enc
+ texmf-dist/fonts/enc/dvips/heuristica/zut_vtjod4.enc
+ texmf-dist/fonts/enc/dvips/heuristica/zut_zk7stm.enc
+ texmf-dist/fonts/map/dvips/heuristica/Heuristica.map
+ texmf-dist/fonts/opentype/public/heuristica/Heuristica-Bold.otf
+ texmf-dist/fonts/opentype/public/heuristica/Heuristica-BoldItalic.otf
+ texmf-dist/fonts/opentype/public/heuristica/Heuristica-Italic.otf
+ texmf-dist/fonts/opentype/public/heuristica/Heuristica-Regular.otf
+ texmf-dist/fonts/tfm/public/heuristica/Heuristica-Bold-sup-ly1.tfm
+ texmf-dist/fonts/tfm/public/heuristica/Heuristica-Bold-sup-t1--base.tfm
+ texmf-dist/fonts/tfm/public/heuristica/Heuristica-Bold-sup-t1.tfm
+ texmf-dist/fonts/tfm/public/heuristica/Heuristica-Bold-sup-t2a.tfm
+ texmf-dist/fonts/tfm/public/heuristica/Heuristica-Bold-sup-t2b.tfm
+ texmf-dist/fonts/tfm/public/heuristica/Heuristica-Bold-sup-t2c.tfm
+ texmf-dist/fonts/tfm/public/heuristica/Heuristica-Bold-tlf-ly1.tfm
+ texmf-dist/fonts/tfm/public/heuristica/Heuristica-Bold-tlf-t1--base.tfm
+ texmf-dist/fonts/tfm/public/heuristica/Heuristica-Bold-tlf-t1.tfm
+ texmf-dist/fonts/tfm/public/heuristica/Heuristica-Bold-tlf-t2a.tfm
+ texmf-dist/fonts/tfm/public/heuristica/Heuristica-Bold-tlf-t2b.tfm
+ texmf-dist/fonts/tfm/public/heuristica/Heuristica-Bold-tlf-t2c.tfm
+ texmf-dist/fonts/tfm/public/heuristica/Heuristica-Bold-tlf-ts1--base.tfm
+ texmf-dist/fonts/tfm/public/heuristica/Heuristica-Bold-tlf-ts1.tfm
+ texmf-dist/fonts/tfm/public/heuristica/Heuristica-Bold-tosf-ly1.tfm
+ texmf-dist/fonts/tfm/public/heuristica/Heuristica-Bold-tosf-t1--base.tfm
+ texmf-dist/fonts/tfm/public/heuristica/Heuristica-Bold-tosf-t1.tfm
+ texmf-dist/fonts/tfm/public/heuristica/Heuristica-Bold-tosf-t2a.tfm
+ texmf-dist/fonts/tfm/public/heuristica/Heuristica-Bold-tosf-t2b.tfm
+ texmf-dist/fonts/tfm/public/heuristica/Heuristica-Bold-tosf-t2c.tfm
+ texmf-dist/fonts/tfm/public/heuristica/Heuristica-Bold-tosf-ts1--base.tfm
+ texmf-dist/fonts/tfm/public/heuristica/Heuristica-Bold-tosf-ts1.tfm
+ texmf-dist/fonts/tfm/public/heuristica/Heuristica-BoldItalic-sup-ly1.tfm
+ texmf-dist/fonts/tfm/public/heuristica/Heuristica-BoldItalic-sup-t1--base.tfm
+ texmf-dist/fonts/tfm/public/heuristica/Heuristica-BoldItalic-sup-t1.tfm
+ texmf-dist/fonts/tfm/public/heuristica/Heuristica-BoldItalic-sup-t2a.tfm
+ texmf-dist/fonts/tfm/public/heuristica/Heuristica-BoldItalic-sup-t2b.tfm
+ texmf-dist/fonts/tfm/public/heuristica/Heuristica-BoldItalic-sup-t2c.tfm
+ texmf-dist/fonts/tfm/public/heuristica/Heuristica-BoldItalic-tlf-ly1.tfm
+ texmf-dist/fonts/tfm/public/heuristica/Heuristica-BoldItalic-tlf-t1--base.tfm
+ texmf-dist/fonts/tfm/public/heuristica/Heuristica-BoldItalic-tlf-t1.tfm
+ texmf-dist/fonts/tfm/public/heuristica/Heuristica-BoldItalic-tlf-t2a.tfm
+ texmf-dist/fonts/tfm/public/heuristica/Heuristica-BoldItalic-tlf-t2b.tfm
+ texmf-dist/fonts/tfm/public/heuristica/Heuristica-BoldItalic-tlf-t2c.tfm
+ texmf-dist/fonts/tfm/public/heuristica/Heuristica-BoldItalic-tlf-ts1--base.tfm
+ texmf-dist/fonts/tfm/public/heuristica/Heuristica-BoldItalic-tlf-ts1.tfm
+ texmf-dist/fonts/tfm/public/heuristica/Heuristica-BoldItalic-tosf-ly1.tfm
+ texmf-dist/fonts/tfm/public/heuristica/Heuristica-BoldItalic-tosf-t1--base.tfm
+ texmf-dist/fonts/tfm/public/heuristica/Heuristica-BoldItalic-tosf-t1.tfm
+ texmf-dist/fonts/tfm/public/heuristica/Heuristica-BoldItalic-tosf-t2a.tfm
+ texmf-dist/fonts/tfm/public/heuristica/Heuristica-BoldItalic-tosf-t2b.tfm
+ texmf-dist/fonts/tfm/public/heuristica/Heuristica-BoldItalic-tosf-t2c.tfm
+ texmf-dist/fonts/tfm/public/heuristica/Heuristica-BoldItalic-tosf-ts1--base.tfm
+ texmf-dist/fonts/tfm/public/heuristica/Heuristica-BoldItalic-tosf-ts1.tfm
+ texmf-dist/fonts/tfm/public/heuristica/Heuristica-Italic-sup-ly1.tfm
+ texmf-dist/fonts/tfm/public/heuristica/Heuristica-Italic-sup-t1--base.tfm
+ texmf-dist/fonts/tfm/public/heuristica/Heuristica-Italic-sup-t1.tfm
+ texmf-dist/fonts/tfm/public/heuristica/Heuristica-Italic-sup-t2a.tfm
+ texmf-dist/fonts/tfm/public/heuristica/Heuristica-Italic-sup-t2b.tfm
+ texmf-dist/fonts/tfm/public/heuristica/Heuristica-Italic-sup-t2c.tfm
+ texmf-dist/fonts/tfm/public/heuristica/Heuristica-Italic-tlf-ly1.tfm
+ texmf-dist/fonts/tfm/public/heuristica/Heuristica-Italic-tlf-t1--base.tfm
+ texmf-dist/fonts/tfm/public/heuristica/Heuristica-Italic-tlf-t1.tfm
+ texmf-dist/fonts/tfm/public/heuristica/Heuristica-Italic-tlf-t2a.tfm
+ texmf-dist/fonts/tfm/public/heuristica/Heuristica-Italic-tlf-t2b.tfm
+ texmf-dist/fonts/tfm/public/heuristica/Heuristica-Italic-tlf-t2c.tfm
+ texmf-dist/fonts/tfm/public/heuristica/Heuristica-Italic-tlf-ts1--base.tfm
+ texmf-dist/fonts/tfm/public/heuristica/Heuristica-Italic-tlf-ts1.tfm
+ texmf-dist/fonts/tfm/public/heuristica/Heuristica-Italic-tosf-ly1.tfm
+ texmf-dist/fonts/tfm/public/heuristica/Heuristica-Italic-tosf-t1--base.tfm
+ texmf-dist/fonts/tfm/public/heuristica/Heuristica-Italic-tosf-t1.tfm
+ texmf-dist/fonts/tfm/public/heuristica/Heuristica-Italic-tosf-t2a.tfm
+ texmf-dist/fonts/tfm/public/heuristica/Heuristica-Italic-tosf-t2b.tfm
+ texmf-dist/fonts/tfm/public/heuristica/Heuristica-Italic-tosf-t2c.tfm
+ texmf-dist/fonts/tfm/public/heuristica/Heuristica-Italic-tosf-ts1--base.tfm
+ texmf-dist/fonts/tfm/public/heuristica/Heuristica-Italic-tosf-ts1.tfm
+ texmf-dist/fonts/tfm/public/heuristica/Heuristica-Regular-sup-ly1.tfm
+ texmf-dist/fonts/tfm/public/heuristica/Heuristica-Regular-sup-t1--base.tfm
+ texmf-dist/fonts/tfm/public/heuristica/Heuristica-Regular-sup-t1.tfm
+ texmf-dist/fonts/tfm/public/heuristica/Heuristica-Regular-sup-t2a.tfm
+ texmf-dist/fonts/tfm/public/heuristica/Heuristica-Regular-sup-t2b.tfm
+ texmf-dist/fonts/tfm/public/heuristica/Heuristica-Regular-sup-t2c.tfm
+ texmf-dist/fonts/tfm/public/heuristica/Heuristica-Regular-tlf-ly1.tfm
+ texmf-dist/fonts/tfm/public/heuristica/Heuristica-Regular-tlf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/heuristica/Heuristica-Regular-tlf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/public/heuristica/Heuristica-Regular-tlf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/public/heuristica/Heuristica-Regular-tlf-sc-t1.tfm
+ texmf-dist/fonts/tfm/public/heuristica/Heuristica-Regular-tlf-sc-t2a.tfm
+ texmf-dist/fonts/tfm/public/heuristica/Heuristica-Regular-tlf-sc-t2b.tfm
+ texmf-dist/fonts/tfm/public/heuristica/Heuristica-Regular-tlf-sc-t2c.tfm
+ texmf-dist/fonts/tfm/public/heuristica/Heuristica-Regular-tlf-t1--base.tfm
+ texmf-dist/fonts/tfm/public/heuristica/Heuristica-Regular-tlf-t1.tfm
+ texmf-dist/fonts/tfm/public/heuristica/Heuristica-Regular-tlf-t2a.tfm
+ texmf-dist/fonts/tfm/public/heuristica/Heuristica-Regular-tlf-t2b.tfm
+ texmf-dist/fonts/tfm/public/heuristica/Heuristica-Regular-tlf-t2c.tfm
+ texmf-dist/fonts/tfm/public/heuristica/Heuristica-Regular-tlf-ts1--base.tfm
+ texmf-dist/fonts/tfm/public/heuristica/Heuristica-Regular-tlf-ts1.tfm
+ texmf-dist/fonts/tfm/public/heuristica/Heuristica-Regular-tosf-ly1.tfm
+ texmf-dist/fonts/tfm/public/heuristica/Heuristica-Regular-tosf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/heuristica/Heuristica-Regular-tosf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/public/heuristica/Heuristica-Regular-tosf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/public/heuristica/Heuristica-Regular-tosf-sc-t1.tfm
+ texmf-dist/fonts/tfm/public/heuristica/Heuristica-Regular-tosf-sc-t2a.tfm
+ texmf-dist/fonts/tfm/public/heuristica/Heuristica-Regular-tosf-sc-t2b.tfm
+ texmf-dist/fonts/tfm/public/heuristica/Heuristica-Regular-tosf-sc-t2c.tfm
+ texmf-dist/fonts/tfm/public/heuristica/Heuristica-Regular-tosf-t1--base.tfm
+ texmf-dist/fonts/tfm/public/heuristica/Heuristica-Regular-tosf-t1.tfm
+ texmf-dist/fonts/tfm/public/heuristica/Heuristica-Regular-tosf-t2a.tfm
+ texmf-dist/fonts/tfm/public/heuristica/Heuristica-Regular-tosf-t2b.tfm
+ texmf-dist/fonts/tfm/public/heuristica/Heuristica-Regular-tosf-t2c.tfm
+ texmf-dist/fonts/tfm/public/heuristica/Heuristica-Regular-tosf-ts1--base.tfm
+ texmf-dist/fonts/tfm/public/heuristica/Heuristica-Regular-tosf-ts1.tfm
+ texmf-dist/fonts/type1/public/heuristica/Heuristica-Bold.pfb
+ texmf-dist/fonts/type1/public/heuristica/Heuristica-BoldItalic.pfb
+ texmf-dist/fonts/type1/public/heuristica/Heuristica-Italic.pfb
+ texmf-dist/fonts/type1/public/heuristica/Heuristica-Regular.pfb
+ texmf-dist/fonts/vf/public/heuristica/Heuristica-Bold-sup-t1.vf
+ texmf-dist/fonts/vf/public/heuristica/Heuristica-Bold-tlf-t1.vf
+ texmf-dist/fonts/vf/public/heuristica/Heuristica-Bold-tlf-ts1.vf
+ texmf-dist/fonts/vf/public/heuristica/Heuristica-Bold-tosf-t1.vf
+ texmf-dist/fonts/vf/public/heuristica/Heuristica-Bold-tosf-ts1.vf
+ texmf-dist/fonts/vf/public/heuristica/Heuristica-BoldItalic-sup-t1.vf
+ texmf-dist/fonts/vf/public/heuristica/Heuristica-BoldItalic-tlf-t1.vf
+ texmf-dist/fonts/vf/public/heuristica/Heuristica-BoldItalic-tlf-ts1.vf
+ texmf-dist/fonts/vf/public/heuristica/Heuristica-BoldItalic-tosf-t1.vf
+ texmf-dist/fonts/vf/public/heuristica/Heuristica-BoldItalic-tosf-ts1.vf
+ texmf-dist/fonts/vf/public/heuristica/Heuristica-Italic-sup-t1.vf
+ texmf-dist/fonts/vf/public/heuristica/Heuristica-Italic-tlf-t1.vf
+ texmf-dist/fonts/vf/public/heuristica/Heuristica-Italic-tlf-ts1.vf
+ texmf-dist/fonts/vf/public/heuristica/Heuristica-Italic-tosf-t1.vf
+ texmf-dist/fonts/vf/public/heuristica/Heuristica-Italic-tosf-ts1.vf
+ texmf-dist/fonts/vf/public/heuristica/Heuristica-Regular-sup-t1.vf
+ texmf-dist/fonts/vf/public/heuristica/Heuristica-Regular-tlf-sc-ly1.vf
+ texmf-dist/fonts/vf/public/heuristica/Heuristica-Regular-tlf-sc-t1.vf
+ texmf-dist/fonts/vf/public/heuristica/Heuristica-Regular-tlf-t1.vf
+ texmf-dist/fonts/vf/public/heuristica/Heuristica-Regular-tlf-ts1.vf
+ texmf-dist/fonts/vf/public/heuristica/Heuristica-Regular-tosf-sc-ly1.vf
+ texmf-dist/fonts/vf/public/heuristica/Heuristica-Regular-tosf-sc-t1.vf
+ texmf-dist/fonts/vf/public/heuristica/Heuristica-Regular-tosf-t1.vf
+ texmf-dist/fonts/vf/public/heuristica/Heuristica-Regular-tosf-ts1.vf
+ texmf-dist/tex/latex/heuristica/LY1Heuristica-Sup.fd
+ texmf-dist/tex/latex/heuristica/LY1Heuristica-TLF.fd
+ texmf-dist/tex/latex/heuristica/LY1Heuristica-TOsF.fd
+ texmf-dist/tex/latex/heuristica/T1Heuristica-Sup.fd
+ texmf-dist/tex/latex/heuristica/T1Heuristica-TLF.fd
+ texmf-dist/tex/latex/heuristica/T1Heuristica-TOsF.fd
+ texmf-dist/tex/latex/heuristica/T2AHeuristica-Sup.fd
+ texmf-dist/tex/latex/heuristica/T2AHeuristica-TLF.fd
+ texmf-dist/tex/latex/heuristica/T2AHeuristica-TOsF.fd
+ texmf-dist/tex/latex/heuristica/T2BHeuristica-Sup.fd
+ texmf-dist/tex/latex/heuristica/T2BHeuristica-TLF.fd
+ texmf-dist/tex/latex/heuristica/T2BHeuristica-TOsF.fd
+ texmf-dist/tex/latex/heuristica/T2CHeuristica-Sup.fd
+ texmf-dist/tex/latex/heuristica/T2CHeuristica-TLF.fd
+ texmf-dist/tex/latex/heuristica/T2CHeuristica-TOsF.fd
+ texmf-dist/tex/latex/heuristica/TS1Heuristica-TLF.fd
+ texmf-dist/tex/latex/heuristica/TS1Heuristica-TOsF.fd
+ texmf-dist/tex/latex/heuristica/heuristica.sty
+catalogue-ctan /fonts/heuristica
+catalogue-date 2014-05-18 18:31:37 +0200
+catalogue-license ofl
+catalogue-version 1.01
+
name hexgame
category Package
revision 15878
@@ -72947,7 +80954,7 @@ docfiles size=11
runfiles size=2
texmf-dist/tex/latex/hexgame/hexgame.sty
catalogue-ctan /macros/latex/contrib/hexgame
-catalogue-date 2012-07-13 13:47:30 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.0
@@ -72967,7 +80974,7 @@ srcfiles size=11
runfiles size=4
texmf-dist/tex/latex/hf-tikz/hf-tikz.sty
catalogue-ctan /graphics/pgf/contrib/hf-tikz
-catalogue-date 2013-03-03 12:29:02 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 0.3
@@ -73040,7 +81047,7 @@ runfiles size=313
texmf-dist/fonts/type1/public/hfbright/hfsltl10.pfb
texmf-dist/fonts/type1/public/hfbright/hftl10.pfb
catalogue-ctan /fonts/ps-type1/hfbright
-catalogue-date 2012-07-13 13:47:30 +0200
+catalogue-date 2014-05-06 20:53:54 +0200
catalogue-license lppl
name hfoldsty
@@ -73743,7 +81750,7 @@ runfiles size=1217
texmf-dist/tex/latex/hfoldsty/ts1hfott.fd
texmf-dist/tex/latex/hfoldsty/ts1hfovtt.fd
catalogue-ctan /fonts/hfoldsty
-catalogue-date 2012-07-15 22:58:12 +0200
+catalogue-date 2014-05-06 20:53:54 +0200
catalogue-license gpl
catalogue-version 1.15
@@ -73809,7 +81816,7 @@ runfiles size=10
texmf-dist/tex/latex/historische-zeitschrift/cbx/historische-zeitschrift.cbx
texmf-dist/tex/latex/historische-zeitschrift/lbx/historische-zeitschrift.lbx
catalogue-ctan /macros/latex/contrib/biblatex-contrib/historische-zeitschrift
-catalogue-date 2012-07-15 23:35:06 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.0
@@ -73864,24 +81871,25 @@ runfiles size=12
texmf-dist/tex/latex/hletter/hsetup.sty
texmf-dist/tex/latex/hletter/mergeh.sty
catalogue-ctan /macros/latex/contrib/hletter
-catalogue-date 2013-04-17 11:54:35 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.2
catalogue-version 4.2
name hobby
category Package
-revision 29895
+revision 32795
shortdesc An implementation of Hobby's algorithm for PGF/TikZ.
longdesc This package defines a path generation function for PGF/TikZ
longdesc which implements Hobby's algorithm for a path built out of
longdesc Bezier curves which passes through a given set of points. The
longdesc path thus generated may by used as a TikZ 'to path'. The
longdesc implementation is in LaTeX3.
-docfiles size=136
- texmf-dist/doc/latex/hobby/README.txt
+docfiles size=221
+ texmf-dist/doc/latex/hobby/README
+ texmf-dist/doc/latex/hobby/hobby.pdf details="Annotated code"
texmf-dist/doc/latex/hobby/hobby_doc.pdf details="Package documentation"
texmf-dist/doc/latex/hobby/hobby_doc.tex
-srcfiles size=27
+srcfiles size=28
texmf-dist/source/latex/hobby/hobby.dtx
texmf-dist/source/latex/hobby/hobby.ins
runfiles size=19
@@ -73890,9 +81898,9 @@ runfiles size=19
texmf-dist/tex/latex/hobby/pml3array.sty
texmf-dist/tex/latex/hobby/tikzlibraryhobby.code.tex
catalogue-ctan /graphics/pgf/contrib/hobby
-catalogue-date 2013-04-15 11:53:39 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
-catalogue-version 1.2
+catalogue-version 1.4
name hobete
category Package
@@ -73915,7 +81923,7 @@ runfiles size=7
texmf-dist/tex/latex/hobete/beamerthemehohenheim.sty
texmf-dist/tex/latex/hobete/hobete.sty
catalogue-ctan /macros/latex/contrib/beamer-contrib/hobete
-catalogue-date 2012-06-26 15:55:21 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
name horoscop
@@ -73937,7 +81945,7 @@ srcfiles size=76
runfiles size=14
texmf-dist/tex/latex/horoscop/horoscop.sty
catalogue-ctan /macros/latex/contrib/horoscop
-catalogue-date 2013-05-27 13:55:07 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license pd
catalogue-version 0.92
@@ -73983,7 +81991,7 @@ srcfiles size=12
runfiles size=2
texmf-dist/tex/latex/hrefhide/hrefhide.sty
catalogue-ctan /macros/latex/contrib/hrefhide
-catalogue-date 2012-07-15 23:55:51 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.0f
@@ -74057,20 +82065,20 @@ docfiles size=24
runfiles size=1
texmf-dist/tex/latex/hvindex/hvindex.sty
catalogue-ctan /macros/latex/contrib/hvindex
-catalogue-date 2012-06-19 22:38:05 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 0.02
name hypdvips
category Package
-revision 28667
+revision 33348
shortdesc Hyperref extensions for use with dvips.
longdesc The hypdvips package fixes some problems when using hyperref
longdesc with dvips. It also adds support for breaking links, file
longdesc attachments, embedded documents and different types of GoTo-
longdesc links. The cooperation of hyperref with cleveref is improved,
longdesc which in addition allows an enhanced back-referencing system.
-docfiles size=547
+docfiles size=545
texmf-dist/doc/latex/hypdvips/README details="Readme"
texmf-dist/doc/latex/hypdvips/hypdvips.pdf details="Package documentation"
texmf-dist/doc/latex/hypdvips/images/example1.eps
@@ -74093,9 +82101,9 @@ docfiles size=547
runfiles size=29
texmf-dist/tex/latex/hypdvips/hypdvips.sty
catalogue-ctan /macros/latex/contrib/hypdvips
-catalogue-date 2012-12-30 16:12:46 +0100
+catalogue-date 2014-03-31 21:51:16 +0200
catalogue-license lppl1.3
-catalogue-version 3.00
+catalogue-version 3.01
name hyper
category Package
@@ -74293,7 +82301,7 @@ docfiles size=62
name hyperxmp
category Package
-revision 30003
+revision 32560
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
@@ -74319,25 +82327,27 @@ longdesc PDF version, and contact telephone number/postal address/email
longdesc address/URL. Hyperxmp currently embeds XMP only within PDF
longdesc documents; it is compatible with pdflatex, xelatex,
longdesc latex+dvipdfm, and latex+dvips+ps2pdf.
-docfiles size=158
+docfiles size=133
texmf-dist/doc/latex/hyperxmp/README details="Readme"
texmf-dist/doc/latex/hyperxmp/hyperxmp.pdf details="Package documentation"
-srcfiles size=49
+srcfiles size=53
texmf-dist/source/latex/hyperxmp/einstein-xmp.tex
texmf-dist/source/latex/hyperxmp/einstein1.png
texmf-dist/source/latex/hyperxmp/einstein2.png
+ texmf-dist/source/latex/hyperxmp/gglo-hyxmp.ist
+ texmf-dist/source/latex/hyperxmp/gind-hyxmp.ist
texmf-dist/source/latex/hyperxmp/hyperxmp.dtx
texmf-dist/source/latex/hyperxmp/hyperxmp.ins
runfiles size=7
texmf-dist/tex/latex/hyperxmp/hyperxmp.sty
catalogue-ctan /macros/latex/contrib/hyperxmp
-catalogue-date 2013-04-17 11:24:27 +0200
+catalogue-date 2014-01-03 12:23:53 +0100
catalogue-license lppl1.3
-catalogue-version 2.3a
+catalogue-version 2.4
name hyph-utf8
category Package
-revision 30757
+revision 33887
shortdesc Hyphenation patterns expressed in UTF-8.
longdesc Modern native UTF-8 engines such as XeTeX and LuaTeX need
longdesc hyphenation patterns in UTF-8 format, whereas older systems
@@ -74367,7 +82377,7 @@ docfiles size=191
texmf-dist/doc/generic/hyph-utf8/sa/hyphenmin.txt
texmf-dist/doc/luatex/hyph-utf8/README details="Readme"
texmf-dist/doc/luatex/hyph-utf8/luatex-hyphen.pdf
-srcfiles size=84
+srcfiles size=76
texmf-dist/source/generic/hyph-utf8/README
texmf-dist/source/generic/hyph-utf8/contributed/make-exhyph.pl
texmf-dist/source/generic/hyph-utf8/data/encodings/ec.dat
@@ -74387,7 +82397,6 @@ srcfiles size=84
texmf-dist/source/generic/hyph-utf8/generate-tl-files.rb
texmf-dist/source/generic/hyph-utf8/generate-webpage.rb
texmf-dist/source/generic/hyph-utf8/hyph-utf8.rb
- texmf-dist/source/generic/hyph-utf8/languages-txt.rb
texmf-dist/source/generic/hyph-utf8/languages.rb
texmf-dist/source/generic/hyph-utf8/languages/es/README
texmf-dist/source/generic/hyph-utf8/languages/es/eshyph-make.lua
@@ -74408,7 +82417,7 @@ srcfiles size=84
texmf-dist/source/generic/hyph-utf8/languages/tr/generate_patterns_tr.rb
texmf-dist/source/luatex/hyph-utf8/Makefile
texmf-dist/source/luatex/hyph-utf8/luatex-hyphen.dtx
-runfiles size=2146
+runfiles size=2145
texmf-dist/tex/generic/hyph-utf8/conversions/conv-utf8-ec.tex
texmf-dist/tex/generic/hyph-utf8/conversions/conv-utf8-il2.tex
texmf-dist/tex/generic/hyph-utf8/conversions/conv-utf8-il3.tex
@@ -74904,7 +82913,7 @@ runfiles size=2146
texmf-dist/tex/luatex/hyph-utf8/etex.src
texmf-dist/tex/luatex/hyph-utf8/luatex-hyphen.lua
catalogue-ctan /language/hyph-utf8
-catalogue-date 2013-05-29 00:44:55 +0200
+catalogue-date 2014-05-23 09:15:28 +0200
catalogue-license other-free
name hyphen-afrikaans
@@ -74956,7 +82965,7 @@ execute AddHyphen name=armenian lefthyphenmin=1 righthyphenmin=2 file=loadhy
name hyphen-base
category TLCore
-revision 30797
+revision 31131
runfiles size=23
texmf-dist/tex/generic/config/language.dat
texmf-dist/tex/generic/config/language.dat.lua
@@ -75056,7 +83065,7 @@ depend hyphen-base
depend hyph-utf8
execute AddHyphen name=danish lefthyphenmin=2 righthyphenmin=2 file=loadhyph-da.tex file_patterns=hyph-da.pat.txt file_exceptions=
catalogue-ctan /language/hyphenation/dkhyphen
-catalogue-date 2012-06-28 23:28:54 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
name hyphen-dutch
@@ -75234,7 +83243,7 @@ runfiles size=6
texmf-dist/tex/generic/hyphen/grmhyph5.tex
texmf-dist/tex/generic/hyphen/grphyph5.tex
catalogue-ctan /language/hyphenation/elhyphen
-catalogue-date 2012-05-25 14:41:32 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license other-free
catalogue-version 5
@@ -75268,7 +83277,7 @@ depend hyphen-base
depend hyph-utf8
execute AddHyphen name=icelandic lefthyphenmin=2 righthyphenmin=2 file=loadhyph-is.tex file_patterns=hyph-is.pat.txt file_exceptions=
catalogue-ctan /language/hyphenation/icehyph.tex
-catalogue-date 2012-07-16 13:26:30 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
name hyphen-indic
@@ -75441,13 +83450,13 @@ catalogue-version 3.0a
name hyphen-portuguese
category TLCore
-revision 25990
+revision 31125
shortdesc Portuguese hyphenation patterns.
longdesc Hyphenation patterns for Portuguese in T1/EC and UTF-8
longdesc encodings.
depend hyphen-base
depend hyph-utf8
-execute AddHyphen name=portuguese synonyms=portuges lefthyphenmin=2 righthyphenmin=3 file=loadhyph-pt.tex file_patterns=hyph-pt.pat.txt file_exceptions=hyph-pt.hyp.txt
+execute AddHyphen name=portuguese synonyms=portuges,brazil,brazilian lefthyphenmin=2 righthyphenmin=3 file=loadhyph-pt.tex file_patterns=hyph-pt.pat.txt file_exceptions=hyph-pt.hyp.txt
name hyphen-romanian
category TLCore
@@ -75549,7 +83558,7 @@ depend hyphen-base
depend hyph-utf8
execute AddHyphen name=spanish synonyms=espanol lefthyphenmin=2 righthyphenmin=2 file=loadhyph-es.tex file_patterns=hyph-es.pat.txt file_exceptions=
catalogue-ctan /language/spanish/hyphen/base
-catalogue-date 2012-07-16 10:42:38 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 4.5
@@ -75587,7 +83596,7 @@ depend hyphen-base
depend hyph-utf8
execute AddHyphen name=turkish lefthyphenmin=2 righthyphenmin=2 file=loadhyph-tr.tex file_patterns=hyph-tr.pat.txt file_exceptions=
catalogue-ctan /language/hyphenation/tkhyph.tex
-catalogue-date 2012-07-24 20:02:06 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license other-free
name hyphen-turkmen
@@ -75677,7 +83686,7 @@ srcfiles size=60
runfiles size=5
texmf-dist/tex/generic/hyphenex/ushyphex.tex
catalogue-ctan /info/digests/tugboat/hyphenex
-catalogue-date 2012-05-16 13:34:59 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license other-free
name hyplain
@@ -75808,7 +83817,7 @@ runfiles size=109
texmf-dist/tex/generic/ibygrk/tlgsqq.tex
texmf-dist/tex/generic/ibygrk/version4.tex
catalogue-ctan /fonts/greek/ibygrk
-catalogue-date 2011-09-29 11:00:12 +0200
+catalogue-date 2014-05-08 15:40:26 +0200
catalogue-license gpl
catalogue-version 4.5
@@ -75832,6 +83841,23 @@ catalogue-date 2012-05-08 21:52:08 +0200
catalogue-license lppl
catalogue-version 0.2
+name idxcmds
+category Package
+revision 31557
+shortdesc Semantic commands for adding formatted index entries.
+longdesc The package provides commands for adding formatted index
+longdesc entries; it arises from the author's work on large documents.
+docfiles size=33
+ texmf-dist/doc/latex/idxcmds/README details="Readme"
+ texmf-dist/doc/latex/idxcmds/idxcmds_en.pdf details="Package documentation"
+ texmf-dist/doc/latex/idxcmds/idxcmds_en.tex
+runfiles size=3
+ texmf-dist/tex/latex/idxcmds/idxcmds.sty
+catalogue-ctan /macros/latex/contrib/idxcmds
+catalogue-date 2014-02-26 23:03:13 +0100
+catalogue-license lppl1.3
+catalogue-version 0.2b
+
name idxlayout
category Package
revision 25821
@@ -75851,7 +83877,7 @@ srcfiles size=12
runfiles size=2
texmf-dist/tex/latex/idxlayout/idxlayout.sty
catalogue-ctan /macros/latex/contrib/idxlayout
-catalogue-date 2012-07-16 13:26:30 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 0.4d
@@ -75899,7 +83925,7 @@ runfiles size=2
texmf-dist/tex/latex/ifetex/ifetex.sty
texmf-dist/tex/plain/ifetex/ifetex.tex
catalogue-ctan /macros/latex/contrib/ifetex
-catalogue-date 2012-03-06 15:23:45 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.2
@@ -76011,7 +84037,7 @@ srcfiles size=4
runfiles size=8
texmf-dist/tex/latex/ifnextok/ifnextok.sty
catalogue-ctan /macros/latex/contrib/ifnextok
-catalogue-date 2012-05-29 15:13:53 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 0.3
@@ -76035,7 +84061,7 @@ srcfiles size=4
runfiles size=1
texmf-dist/tex/latex/ifoddpage/ifoddpage.sty
catalogue-ctan /macros/latex/contrib/ifoddpage
-catalogue-date 2012-03-12 20:30:51 +0100
+catalogue-date 2013-11-21 21:20:37 +0100
catalogue-license lppl1.3
catalogue-version 1.0
@@ -76047,10 +84073,10 @@ longdesc This package uses the (La)TeX extension -shell-escape to
longdesc establish whether the document is being processed on a Windows
longdesc or on a Unix-like system (Mac OS X, Linux, etc.), or on Cygwin
longdesc (Unix environment over a windows system). Booleans provided
-longdesc are: - \ifwindows, - \iflinux, - \ifmacosx and - \ifcygwin. The
-longdesc package also preserves the output of uname on a Unix-like
-longdesc system, which may be used to distinguish between various
-longdesc classes of Unix systems.
+longdesc are: \ifwindows, \iflinux, \ifmacosx and \ifcygwin. The package
+longdesc also preserves the output of uname on a Unix-like system, which
+longdesc may be used to distinguish between various classes of Unix
+longdesc systems.
docfiles size=38
texmf-dist/doc/latex/ifplatform/README details="Readme"
texmf-dist/doc/latex/ifplatform/ifplatform.pdf details="Package documentation"
@@ -76060,7 +84086,7 @@ srcfiles size=5
runfiles size=1
texmf-dist/tex/latex/ifplatform/ifplatform.sty
catalogue-ctan /macros/latex/contrib/ifplatform
-catalogue-date 2012-03-06 15:23:45 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 0.4
@@ -76116,7 +84142,7 @@ runfiles size=46
texmf-dist/tex/latex/ifsym/uifsym.fd
texmf-dist/tex/latex/ifsym/uifwea.fd
catalogue-ctan /fonts/ifsym
-catalogue-date 2012-05-08 21:52:08 +0200
+catalogue-date 2014-05-08 15:40:26 +0200
catalogue-license other-free
name iftex
@@ -76136,7 +84162,7 @@ docfiles size=10
runfiles size=1
texmf-dist/tex/generic/iftex/iftex.sty
catalogue-ctan /macros/latex/contrib/iftex
-catalogue-date 2013-04-04 17:50:40 +0200
+catalogue-date 2014-04-29 06:13:54 +0200
catalogue-license lppl1.3
catalogue-version 0.2
@@ -76154,7 +84180,7 @@ docfiles size=1
runfiles size=3
texmf-dist/tex/latex/ifthenx/ifthenx.sty
catalogue-ctan /macros/latex/contrib/ifthenx
-catalogue-date 2012-06-08 17:44:30 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 0.1a
@@ -76206,7 +84232,7 @@ catalogue-version 1.0
name ijmart
category Package
-revision 20276
+revision 30958
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
@@ -76216,7 +84242,7 @@ 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 arXiv with minimal changes in the LaTeX source.
-docfiles size=188
+docfiles size=252
texmf-dist/doc/latex/ijmart/Makefile
texmf-dist/doc/latex/ijmart/README details="Readme"
texmf-dist/doc/latex/ijmart/ijmart.bib
@@ -76231,9 +84257,9 @@ runfiles size=11
texmf-dist/bibtex/bst/ijmart/ijmart.bst
texmf-dist/tex/latex/ijmart/ijmart.cls
catalogue-ctan /macros/latex/contrib/ijmart
-catalogue-date 2011-10-06 15:17:32 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
-catalogue-version 1.6
+catalogue-version 1.7
name ijqc
category Package
@@ -76252,7 +84278,7 @@ docfiles size=39
runfiles size=7
texmf-dist/bibtex/bst/ijqc/ijqc.bst
catalogue-ctan /biblio/bibtex/contrib/ijqc
-catalogue-date 2006-08-27 16:41:02 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.2
@@ -76319,7 +84345,7 @@ catalogue-version v1.0j
name imakeidx
category Package
-revision 29542
+revision 31166
shortdesc A package for producing multiple indexes.
longdesc The package enables the user to produce and typeset one or more
longdesc indexes simultaneously with a document. The package is known to
@@ -76329,7 +84355,7 @@ longdesc entries, no particular setting up is needed when TeX Live is
longdesc used. Using xindy or other programs it is necessary to enable
longdesc shell escape; shell escape is also needed if splitindex is
longdesc used.
-docfiles size=124
+docfiles size=125
texmf-dist/doc/latex/imakeidx/README details="Readme"
texmf-dist/doc/latex/imakeidx/imakeidx.pdf details="Package documentation"
texmf-dist/doc/latex/imakeidx/manifest.txt
@@ -76338,9 +84364,9 @@ srcfiles size=17
runfiles size=4
texmf-dist/tex/latex/imakeidx/imakeidx.sty
catalogue-ctan /macros/latex/contrib/imakeidx
-catalogue-date 2012-11-14 11:11:04 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
-catalogue-version 1.2e
+catalogue-version 1.3a
name impatient
category Package
@@ -76428,7 +84454,7 @@ catalogue-license fdl
name impnattypo
category Package
-revision 24057
+revision 31076
shortdesc Support typography of l'Imprimerie Nationale FranASSaise.
longdesc The package provides useful macros implementing recommendations
longdesc by the French Imprimerie Nationale.
@@ -76442,9 +84468,9 @@ srcfiles size=10
runfiles size=4
texmf-dist/tex/latex/impnattypo/impnattypo.sty
catalogue-ctan /macros/latex/contrib/impnattypo
-catalogue-date 2011-11-04 11:59:33 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
-catalogue-version 1.0
+catalogue-version 1.1
name import
category Package
@@ -76479,7 +84505,7 @@ docfiles size=19
runfiles size=14
texmf-dist/tex/xelatex/imsproc/imsproc.cls
catalogue-ctan /macros/xetex/latex/imsproc
-catalogue-date 2013-04-04 12:47:47 +0200
+catalogue-date 2014-04-29 06:13:54 +0200
catalogue-license lppl1.3
catalogue-version 0.1
@@ -76506,7 +84532,7 @@ srcfiles size=24
runfiles size=4
texmf-dist/tex/latex/imtekda/IMTEKda.cls
catalogue-ctan /macros/latex/contrib/imtekda
-catalogue-date 2012-05-09 15:25:33 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.7
@@ -76539,60 +84565,146 @@ docfiles size=283
runfiles size=4
texmf-dist/tex/latex/incgraph/incgraph.sty
catalogue-ctan /macros/latex/contrib/incgraph
-catalogue-date 2013-01-29 15:40:22 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.11
name inconsolata
category Package
-revision 19721
+revision 32983
shortdesc A monospaced font, with support files for use with TeX.
longdesc Inconsolata is a monospaced font designed by Raph Levien. This
longdesc package contains the font (in both Adobe Type 1 and OpenType
-longdesc formats), metric files for use with TeX, and LaTeX font
-longdesc definition and other relevant files.
-execute addMap fi4.map
-docfiles size=116
- texmf-dist/doc/fonts/inconsolata/ChangeLog
- texmf-dist/doc/fonts/inconsolata/GNUmakefile
- texmf-dist/doc/fonts/inconsolata/NEWS
+longdesc formats) in regular and bold weights, with additional glyphs
+longdesc and options to control slashed zero, upright quotes and a
+longdesc shapelier lower-case L, plus metric files for use with TeX, and
+longdesc LaTeX font definition and other relevant files.
+execute addMap zi4.map
+docfiles size=190
+ texmf-dist/doc/fonts/inconsolata/OFL.txt
texmf-dist/doc/fonts/inconsolata/README details="Readme"
- texmf-dist/doc/fonts/inconsolata/fonttable.pdf
- texmf-dist/doc/fonts/inconsolata/inconsolata.pdf details="Package documentation and font tables"
- texmf-dist/doc/fonts/inconsolata/inconsolata.tex
- texmf-dist/doc/fonts/inconsolata/test-spacing.tex
- texmf-dist/doc/fonts/inconsolata/test-textless.tex
- texmf-dist/doc/fonts/inconsolata/test.pdf
- texmf-dist/doc/fonts/inconsolata/test.tex
- texmf-dist/doc/fonts/inconsolata/testmin.tex
-srcfiles size=29
- texmf-dist/source/fonts/inconsolata/Inconsolata.sfd
-runfiles size=51
- texmf-dist/fonts/enc/dvips/inconsolata/fi4-ec.enc
- texmf-dist/fonts/enc/dvips/inconsolata/fi4-ei1.enc
- texmf-dist/fonts/enc/dvips/inconsolata/fi4-ot1tt.enc
- texmf-dist/fonts/enc/dvips/inconsolata/fi4-qxtt.enc
- texmf-dist/fonts/enc/dvips/inconsolata/fi4-texnansi.enc
- texmf-dist/fonts/enc/dvips/inconsolata/fi4-ts1.enc
- texmf-dist/fonts/map/dvips/inconsolata/fi4.map
- texmf-dist/fonts/opentype/public/inconsolata/Inconsolata.otf
- texmf-dist/fonts/tfm/public/inconsolata/ec-inconsolata.tfm
- texmf-dist/fonts/tfm/public/inconsolata/ei1-inconsolata.tfm
- texmf-dist/fonts/tfm/public/inconsolata/qx-inconsolata.tfm
- texmf-dist/fonts/tfm/public/inconsolata/rm-inconsolata.tfm
- texmf-dist/fonts/tfm/public/inconsolata/texnansi-inconsolata.tfm
- texmf-dist/fonts/tfm/public/inconsolata/ts1-inconsolata.tfm
- texmf-dist/fonts/type1/public/inconsolata/Inconsolata.pfb
- texmf-dist/tex/latex/inconsolata/ei1fi4.fd
+ texmf-dist/doc/fonts/inconsolata/afmcmds.txt
+ texmf-dist/doc/fonts/inconsolata/inconsolata-doc.pdf
+ texmf-dist/doc/fonts/inconsolata/inconsolata-doc.tex
+ texmf-dist/doc/fonts/inconsolata/novarqu-crop.pdf
+ texmf-dist/doc/fonts/inconsolata/novarqu-noupq-crop.pdf
+ texmf-dist/doc/fonts/inconsolata/varqu-noupq-crop.pdf
+runfiles size=182
+ texmf-dist/fonts/enc/dvips/inconsolata/i4-ly1-0.enc
+ texmf-dist/fonts/enc/dvips/inconsolata/i4-ly1-1.enc
+ texmf-dist/fonts/enc/dvips/inconsolata/i4-ly1-2.enc
+ texmf-dist/fonts/enc/dvips/inconsolata/i4-ly1-3.enc
+ texmf-dist/fonts/enc/dvips/inconsolata/i4-ly1-4.enc
+ texmf-dist/fonts/enc/dvips/inconsolata/i4-ly1-5.enc
+ texmf-dist/fonts/enc/dvips/inconsolata/i4-ly1-6.enc
+ texmf-dist/fonts/enc/dvips/inconsolata/i4-ly1-7.enc
+ texmf-dist/fonts/enc/dvips/inconsolata/i4-ot1-0.enc
+ texmf-dist/fonts/enc/dvips/inconsolata/i4-ot1-1.enc
+ texmf-dist/fonts/enc/dvips/inconsolata/i4-ot1-2.enc
+ texmf-dist/fonts/enc/dvips/inconsolata/i4-ot1-3.enc
+ texmf-dist/fonts/enc/dvips/inconsolata/i4-ot1-4.enc
+ texmf-dist/fonts/enc/dvips/inconsolata/i4-ot1-5.enc
+ texmf-dist/fonts/enc/dvips/inconsolata/i4-ot1-6.enc
+ texmf-dist/fonts/enc/dvips/inconsolata/i4-ot1-7.enc
+ texmf-dist/fonts/enc/dvips/inconsolata/i4-qx-0.enc
+ texmf-dist/fonts/enc/dvips/inconsolata/i4-qx-1.enc
+ texmf-dist/fonts/enc/dvips/inconsolata/i4-qx-2.enc
+ texmf-dist/fonts/enc/dvips/inconsolata/i4-qx-3.enc
+ texmf-dist/fonts/enc/dvips/inconsolata/i4-qx-4.enc
+ texmf-dist/fonts/enc/dvips/inconsolata/i4-qx-5.enc
+ texmf-dist/fonts/enc/dvips/inconsolata/i4-qx-6.enc
+ texmf-dist/fonts/enc/dvips/inconsolata/i4-qx-7.enc
+ texmf-dist/fonts/enc/dvips/inconsolata/i4-t1-0.enc
+ texmf-dist/fonts/enc/dvips/inconsolata/i4-t1-1.enc
+ texmf-dist/fonts/enc/dvips/inconsolata/i4-t1-2.enc
+ texmf-dist/fonts/enc/dvips/inconsolata/i4-t1-3.enc
+ texmf-dist/fonts/enc/dvips/inconsolata/i4-t1-4.enc
+ texmf-dist/fonts/enc/dvips/inconsolata/i4-t1-5.enc
+ texmf-dist/fonts/enc/dvips/inconsolata/i4-t1-6.enc
+ texmf-dist/fonts/enc/dvips/inconsolata/i4-t1-7.enc
+ texmf-dist/fonts/enc/dvips/inconsolata/i4-ts1.enc
+ texmf-dist/fonts/map/dvips/inconsolata/zi4.map
+ texmf-dist/fonts/opentype/public/inconsolata/Inconsolatazi4-Bold.otf
+ texmf-dist/fonts/opentype/public/inconsolata/Inconsolatazi4-Regular.otf
+ texmf-dist/fonts/tfm/public/inconsolata/ly1-zi4b-0.tfm
+ texmf-dist/fonts/tfm/public/inconsolata/ly1-zi4b-1.tfm
+ texmf-dist/fonts/tfm/public/inconsolata/ly1-zi4b-2.tfm
+ texmf-dist/fonts/tfm/public/inconsolata/ly1-zi4b-3.tfm
+ texmf-dist/fonts/tfm/public/inconsolata/ly1-zi4b-4.tfm
+ texmf-dist/fonts/tfm/public/inconsolata/ly1-zi4b-5.tfm
+ texmf-dist/fonts/tfm/public/inconsolata/ly1-zi4b-6.tfm
+ texmf-dist/fonts/tfm/public/inconsolata/ly1-zi4b-7.tfm
+ texmf-dist/fonts/tfm/public/inconsolata/ly1-zi4r-0.tfm
+ texmf-dist/fonts/tfm/public/inconsolata/ly1-zi4r-1.tfm
+ texmf-dist/fonts/tfm/public/inconsolata/ly1-zi4r-2.tfm
+ texmf-dist/fonts/tfm/public/inconsolata/ly1-zi4r-3.tfm
+ texmf-dist/fonts/tfm/public/inconsolata/ly1-zi4r-4.tfm
+ texmf-dist/fonts/tfm/public/inconsolata/ly1-zi4r-5.tfm
+ texmf-dist/fonts/tfm/public/inconsolata/ly1-zi4r-6.tfm
+ texmf-dist/fonts/tfm/public/inconsolata/ly1-zi4r-7.tfm
+ texmf-dist/fonts/tfm/public/inconsolata/ot1-zi4b-0.tfm
+ texmf-dist/fonts/tfm/public/inconsolata/ot1-zi4b-1.tfm
+ texmf-dist/fonts/tfm/public/inconsolata/ot1-zi4b-2.tfm
+ texmf-dist/fonts/tfm/public/inconsolata/ot1-zi4b-3.tfm
+ texmf-dist/fonts/tfm/public/inconsolata/ot1-zi4b-4.tfm
+ texmf-dist/fonts/tfm/public/inconsolata/ot1-zi4b-5.tfm
+ texmf-dist/fonts/tfm/public/inconsolata/ot1-zi4b-6.tfm
+ texmf-dist/fonts/tfm/public/inconsolata/ot1-zi4b-7.tfm
+ texmf-dist/fonts/tfm/public/inconsolata/ot1-zi4r-0.tfm
+ texmf-dist/fonts/tfm/public/inconsolata/ot1-zi4r-1.tfm
+ texmf-dist/fonts/tfm/public/inconsolata/ot1-zi4r-2.tfm
+ texmf-dist/fonts/tfm/public/inconsolata/ot1-zi4r-3.tfm
+ texmf-dist/fonts/tfm/public/inconsolata/ot1-zi4r-4.tfm
+ texmf-dist/fonts/tfm/public/inconsolata/ot1-zi4r-5.tfm
+ texmf-dist/fonts/tfm/public/inconsolata/ot1-zi4r-6.tfm
+ texmf-dist/fonts/tfm/public/inconsolata/ot1-zi4r-7.tfm
+ texmf-dist/fonts/tfm/public/inconsolata/qx-zi4b-0.tfm
+ texmf-dist/fonts/tfm/public/inconsolata/qx-zi4b-1.tfm
+ texmf-dist/fonts/tfm/public/inconsolata/qx-zi4b-2.tfm
+ texmf-dist/fonts/tfm/public/inconsolata/qx-zi4b-3.tfm
+ texmf-dist/fonts/tfm/public/inconsolata/qx-zi4b-4.tfm
+ texmf-dist/fonts/tfm/public/inconsolata/qx-zi4b-5.tfm
+ texmf-dist/fonts/tfm/public/inconsolata/qx-zi4b-6.tfm
+ texmf-dist/fonts/tfm/public/inconsolata/qx-zi4b-7.tfm
+ texmf-dist/fonts/tfm/public/inconsolata/qx-zi4r-0.tfm
+ texmf-dist/fonts/tfm/public/inconsolata/qx-zi4r-1.tfm
+ texmf-dist/fonts/tfm/public/inconsolata/qx-zi4r-2.tfm
+ texmf-dist/fonts/tfm/public/inconsolata/qx-zi4r-3.tfm
+ texmf-dist/fonts/tfm/public/inconsolata/qx-zi4r-4.tfm
+ texmf-dist/fonts/tfm/public/inconsolata/qx-zi4r-5.tfm
+ texmf-dist/fonts/tfm/public/inconsolata/qx-zi4r-6.tfm
+ texmf-dist/fonts/tfm/public/inconsolata/qx-zi4r-7.tfm
+ texmf-dist/fonts/tfm/public/inconsolata/t1-zi4b-0.tfm
+ texmf-dist/fonts/tfm/public/inconsolata/t1-zi4b-1.tfm
+ texmf-dist/fonts/tfm/public/inconsolata/t1-zi4b-2.tfm
+ texmf-dist/fonts/tfm/public/inconsolata/t1-zi4b-3.tfm
+ texmf-dist/fonts/tfm/public/inconsolata/t1-zi4b-4.tfm
+ texmf-dist/fonts/tfm/public/inconsolata/t1-zi4b-5.tfm
+ texmf-dist/fonts/tfm/public/inconsolata/t1-zi4b-6.tfm
+ texmf-dist/fonts/tfm/public/inconsolata/t1-zi4b-7.tfm
+ texmf-dist/fonts/tfm/public/inconsolata/t1-zi4r-0.tfm
+ texmf-dist/fonts/tfm/public/inconsolata/t1-zi4r-1.tfm
+ texmf-dist/fonts/tfm/public/inconsolata/t1-zi4r-2.tfm
+ texmf-dist/fonts/tfm/public/inconsolata/t1-zi4r-3.tfm
+ texmf-dist/fonts/tfm/public/inconsolata/t1-zi4r-4.tfm
+ texmf-dist/fonts/tfm/public/inconsolata/t1-zi4r-5.tfm
+ texmf-dist/fonts/tfm/public/inconsolata/t1-zi4r-6.tfm
+ texmf-dist/fonts/tfm/public/inconsolata/t1-zi4r-7.tfm
+ texmf-dist/fonts/tfm/public/inconsolata/ts1-zi4b.tfm
+ texmf-dist/fonts/tfm/public/inconsolata/ts1-zi4r.tfm
+ texmf-dist/fonts/type1/public/inconsolata/Inconsolata-zi4b.pfb
+ texmf-dist/fonts/type1/public/inconsolata/Inconsolata-zi4r.pfb
texmf-dist/tex/latex/inconsolata/inconsolata.sty
- texmf-dist/tex/latex/inconsolata/ly1fi4.fd
- texmf-dist/tex/latex/inconsolata/ot1fi4.fd
- texmf-dist/tex/latex/inconsolata/qxfi4.fd
- texmf-dist/tex/latex/inconsolata/t1fi4.fd
- texmf-dist/tex/latex/inconsolata/ts1fi4.fd
+ texmf-dist/tex/latex/inconsolata/ly1zi4.fd
+ texmf-dist/tex/latex/inconsolata/ot1zi4.fd
+ texmf-dist/tex/latex/inconsolata/qxzi4.fd
+ texmf-dist/tex/latex/inconsolata/t1zi4.fd
+ texmf-dist/tex/latex/inconsolata/ts1zi4.fd
+ texmf-dist/tex/latex/inconsolata/zi4.sty
catalogue-ctan /fonts/inconsolata
-catalogue-date 2012-12-07 18:46:56 +0100
+catalogue-date 2014-05-08 15:40:26 +0200
catalogue-license ofl
+catalogue-version 1.04
name index
category Package
@@ -76823,7 +84935,7 @@ runfiles size=898
texmf-dist/tex/latex/initials/Typocaps.fd
texmf-dist/tex/latex/initials/Zallman.fd
catalogue-ctan /fonts/initials
-catalogue-date 2012-05-08 22:31:22 +0200
+catalogue-date 2014-05-08 15:40:26 +0200
catalogue-license lppl
name inlinebib
@@ -76873,7 +84985,7 @@ srcfiles size=11
runfiles size=3
texmf-dist/tex/latex/inlinedef/inlinedef.sty
catalogue-ctan /macros/latex/contrib/inlinedef
-catalogue-date 2012-06-18 18:51:38 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.0
@@ -76901,7 +85013,7 @@ runfiles size=3
texmf-dist/tex/latex/inputtrc/inputtrc.RLS
texmf-dist/tex/latex/inputtrc/inputtrc.sty
catalogue-ctan /macros/latex/contrib/inputtrc
-catalogue-date 2012-10-16 10:36:45 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 0.3
@@ -76922,7 +85034,7 @@ catalogue-version 2.2
name installfont
category Package
-revision 29349
+revision 31205
shortdesc A bash script for installing a LaTeX font family.
longdesc With this script you can install a LaTeX font family
longdesc (PostScript Type 1, TrueType and OpenType formats are
@@ -76934,7 +85046,7 @@ longdesc font files (in PostScript Type1 format) named in the Karl Berry
longdesc scheme (e.g. 5bbr8a.pfb). After running the script, you should
longdesc have a working font installation in your local TeX tree.
depend installfont.ARCH
-docfiles size=28
+docfiles size=24
texmf-dist/doc/support/installfont/LICENSE
texmf-dist/doc/support/installfont/README details="Readme"
texmf-dist/doc/support/installfont/installfont
@@ -76944,9 +85056,9 @@ docfiles size=28
runfiles size=5
texmf-dist/scripts/installfont/installfont-tl
catalogue-ctan /support/installfont
-catalogue-date 2012-08-30 22:39:52 +0200
+catalogue-date 2013-07-15 19:52:10 +0200
catalogue-license lppl
-catalogue-version v1.6b
+catalogue-version v1.7
name installfont.alpha-linux
category Package
@@ -77032,13 +85144,6 @@ shortdesc i386-solaris files of installfont
binfiles arch=i386-solaris size=1
bin/i386-solaris/installfont-tl
-name installfont.mips-irix
-category Package
-revision 29949
-shortdesc mips-irix files of installfont
-binfiles arch=mips-irix size=1
- bin/mips-irix/installfont-tl
-
name installfont.mipsel-linux
category Package
revision 29946
@@ -77069,11 +85174,18 @@ binfiles arch=universal-darwin size=1
name installfont.win32
category Package
-revision 25205
+revision 33638
shortdesc win32 files of installfont
binfiles arch=win32 size=1
bin/win32/installfont-tl.exe
+name installfont.x86_64-cygwin
+category Package
+revision 33557
+shortdesc x86_64-cygwin files of installfont
+binfiles arch=x86_64-cygwin size=1
+ bin/x86_64-cygwin/installfont-tl
+
name installfont.x86_64-darwin
category Package
revision 19743
@@ -77271,7 +85383,7 @@ runfiles size=60
texmf-dist/tex/latex/interfaces/interfaces-umrand.sty
texmf-dist/tex/latex/interfaces/interfaces.sty
catalogue-ctan /macros/latex/contrib/interfaces
-catalogue-date 2012-04-09 12:10:14 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 3.1
@@ -77303,13 +85415,13 @@ runfiles size=8
texmf-dist/tex/luatex/interpreter/interpreter.sty
texmf-dist/tex/luatex/interpreter/interpreter.tex
catalogue-ctan /macros/luatex/generic/interpreter
-catalogue-date 2012-06-10 11:15:14 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.2
name interval
category Package
-revision 30747
+revision 33012
shortdesc Format mathematical intervals, ensuring proper spacing.
longdesc When typing an open interval as $]a,b[$, a closing bracket is
longdesc being used in place of an opening fence and vice versa. This
@@ -77319,15 +85431,15 @@ longdesc [a,b] \interval[open]{a}{b} -> ]a,b[ \interval[open left]{a}{b}
longdesc -> ]a,b] The package also supports fence scaling and ensures
longdesc that the enclosing fences will end up having the proper closing
longdesc and opening types. TeX maths does not do this job properly.
-docfiles size=76
+docfiles size=78
texmf-dist/doc/latex/interval/interval.pdf details="Package documentation"
texmf-dist/doc/latex/interval/interval.tex
runfiles size=1
texmf-dist/tex/latex/interval/interval.sty
catalogue-ctan /macros/latex/contrib/interval
-catalogue-date 2013-05-24 14:49:46 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
-catalogue-version 0.1
+catalogue-version 0.2
name intro-scientific
category Package
@@ -77346,7 +85458,7 @@ docfiles size=113
texmf-dist/doc/latex/intro-scientific/scidoc.pdf details="The document itself"
texmf-dist/doc/latex/intro-scientific/scidoc.tex
catalogue-ctan /info/intro-scientific
-catalogue-date 2012-04-09 12:10:14 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 5th edition
@@ -77366,13 +85478,13 @@ srcfiles size=4
runfiles size=1
texmf-dist/tex/latex/inversepath/inversepath.sty
catalogue-ctan /macros/latex/contrib/inversepath
-catalogue-date 2012-04-09 12:10:14 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 0.2
name invoice
category Package
-revision 24194
+revision 31579
shortdesc Generate invoices.
longdesc The package may be used for generating invoices. The package
longdesc can deal with invisible expense items and deductions; output
@@ -77394,7 +85506,7 @@ catalogue-license gpl
name ionumbers
category Package
-revision 23380
+revision 33457
shortdesc Restyle numbers in maths mode.
longdesc 'ionumbers' stands for 'input/output numbers'. The package
longdesc restyles numbers in maths mode. If a number in the input file
@@ -77411,7 +85523,7 @@ longdesc (English) or points (German) as separators. E.g., the input
longdesc $1234.567890$ can be output as $1\,234.\,567\,890$. Finally, an
longdesc e starts the exponent of the number. For example, $21e6$ may be
longdesc output as $26\times10\,^{6}$.
-docfiles size=141
+docfiles size=134
texmf-dist/doc/latex/ionumbers/COPYING
texmf-dist/doc/latex/ionumbers/Makefile
texmf-dist/doc/latex/ionumbers/README details="Readme"
@@ -77424,9 +85536,9 @@ srcfiles size=16
runfiles size=7
texmf-dist/tex/latex/ionumbers/ionumbers.sty
catalogue-ctan /macros/latex/contrib/ionumbers
-catalogue-date 2012-04-09 12:10:14 +0200
+catalogue-date 2014-04-15 20:08:53 +0200
catalogue-license gpl
-catalogue-version 0.3.1-alpha
+catalogue-version 0.3.3
name iopart-num
category Package
@@ -77462,18 +85574,18 @@ runfiles size=6871
texmf-dist/fonts/truetype/public/ipaex/ipag.ttf
texmf-dist/fonts/truetype/public/ipaex/ipam.ttf
catalogue-ctan /fonts/ipaex
-catalogue-date 2013-04-25 17:41:24 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license other-free
name ipaex-type1
category Package
-revision 30557
+revision 31927
shortdesc IPAex fonts converted to Type-1 format Unicode subfonts.
longdesc The package contains the IPAex Fonts converted into Unicode
longdesc subfonts in Type1 format, which is most suitable for use with
longdesc the CJK package. Font conversion was done with ttf2pt1.
execute addMap ipaex-type1.map
-docfiles size=28
+docfiles size=113
texmf-dist/doc/fonts/ipaex-type1/LICENSE
texmf-dist/doc/fonts/ipaex-type1/README-en details="Readme (English)" language="en"
texmf-dist/doc/fonts/ipaex-type1/README-ja details="Readme (Japanese)" language="ja"
@@ -77481,6 +85593,8 @@ docfiles size=28
texmf-dist/doc/fonts/ipaex-type1/c70ipxga.fdx
texmf-dist/doc/fonts/ipaex-type1/c70ipxm.fdx
texmf-dist/doc/fonts/ipaex-type1/c70ipxma.fdx
+ texmf-dist/doc/fonts/ipaex-type1/sample-ipaex-type1.pdf
+ texmf-dist/doc/fonts/ipaex-type1/sample-ipaex-type1.tex
runfiles size=4266
texmf-dist/fonts/map/dvips/ipaex-type1/ipaex-type1.map
texmf-dist/fonts/tfm/public/ipaex-type1/ipxg-r-ot1.tfm
@@ -78326,9 +86440,9 @@ runfiles size=4266
texmf-dist/tex/latex/ipaex-type1/ts1ipxg.fd
texmf-dist/tex/latex/ipaex-type1/ts1ipxm.fd
catalogue-ctan /fonts/ipaex-type1
-catalogue-date 2013-05-18 17:41:16 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license other-free
-catalogue-version 0.3a
+catalogue-version 0.3b
name iso
category Package
@@ -78362,7 +86476,7 @@ runfiles size=27
texmf-dist/tex/latex/iso/isov2.4ht
texmf-dist/tex/latex/iso/isov2.cls
catalogue-ctan /macros/latex/contrib/isostds/iso
-catalogue-date 2012-06-23 20:11:21 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 2.4
@@ -78433,7 +86547,7 @@ runfiles size=87
texmf-dist/tex/latex/iso10303/stepv13.sty
texmf-dist/tex/latex/iso10303/stppdlst.tex
catalogue-ctan /macros/latex/contrib/isostds/iso10303
-catalogue-date 2012-06-11 00:09:45 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.5
@@ -78485,42 +86599,61 @@ catalogue-version 2.28
name isodoc
category Package
-revision 27977
-shortdesc A LaTeX class for the preparation of letters and invoices.
+revision 33683
+shortdesc A LaTeX class for typesetting 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 class is based on the NTG brief class by Victor Eijkhout, which
longdesc implements the NEN1026 standard.
-docfiles size=343
- texmf-dist/doc/latex/isodoc/README
- texmf-dist/doc/latex/isodoc/accept.tex
- texmf-dist/doc/latex/isodoc/binaries.m64
+docfiles size=591
+ texmf-dist/doc/latex/isodoc/README details="Readme"
+ texmf-dist/doc/latex/isodoc/accept/accept.sty
+ texmf-dist/doc/latex/isodoc/accept/accept.tex
+ texmf-dist/doc/latex/isodoc/accept/acceptform.jpg
+ texmf-dist/doc/latex/isodoc/accept/ntgcolor.png
texmf-dist/doc/latex/isodoc/inst
- texmf-dist/doc/latex/isodoc/invoice.tex
+ texmf-dist/doc/latex/isodoc/invoice/invoice.sty
+ texmf-dist/doc/latex/isodoc/invoice/invoice.tex
texmf-dist/doc/latex/isodoc/isodoc.pdf details="Package documentation"
- texmf-dist/doc/latex/isodoc/isontg.sty
- texmf-dist/doc/latex/isodoc/isowybo.sty
- texmf-dist/doc/latex/isodoc/language_template.tex
- texmf-dist/doc/latex/isodoc/letter.tex
+ texmf-dist/doc/latex/isodoc/letter/letter.sty
+ texmf-dist/doc/latex/isodoc/letter/letter.tex
+ texmf-dist/doc/latex/isodoc/letter/sign.png
+ texmf-dist/doc/latex/isodoc/letter/signmarked.png
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/ltxdoc.cfg
- texmf-dist/doc/latex/isodoc/mystyle.sty
- texmf-dist/doc/latex/isodoc/ntgletter.tex
- texmf-dist/doc/latex/isodoc/typo
+ texmf-dist/doc/latex/isodoc/logoletter/ChopinScript.ttf
+ texmf-dist/doc/latex/isodoc/logoletter/logoletter.sty
+ texmf-dist/doc/latex/isodoc/logoletter/logoletter.tex
+ texmf-dist/doc/latex/isodoc/logoletter/shiva-shakti.png
+ texmf-dist/doc/latex/isodoc/logoletter/signblue.png
+ texmf-dist/doc/latex/isodoc/logoletter/typo.txt
+ texmf-dist/doc/latex/isodoc/ntgletter/ntgcolor.png
+ texmf-dist/doc/latex/isodoc/ntgletter/ntgletter.sty
+ texmf-dist/doc/latex/isodoc/ntgletter/ntgletter.tex
+ texmf-dist/doc/latex/isodoc/ntgletter/signlong.png
+ texmf-dist/doc/latex/isodoc/ntgletter/signshort.png
srcfiles size=25
texmf-dist/source/latex/isodoc/isodoc.dtx
texmf-dist/source/latex/isodoc/isodoc.ins
-runfiles size=10
+runfiles size=19
+ texmf-dist/tex/latex/isodoc/isodoc-ca-ES.ldf
+ texmf-dist/tex/latex/isodoc/isodoc-de-DE.ldf
+ texmf-dist/tex/latex/isodoc/isodoc-en-GB.ldf
+ texmf-dist/tex/latex/isodoc/isodoc-en-US.ldf
+ texmf-dist/tex/latex/isodoc/isodoc-es-ES.ldf
+ texmf-dist/tex/latex/isodoc/isodoc-fr-FR.ldf
+ texmf-dist/tex/latex/isodoc/isodoc-it-IT.ldf
+ texmf-dist/tex/latex/isodoc/isodoc-nb-NO.ldf
+ texmf-dist/tex/latex/isodoc/isodoc-nl-BE.ldf
+ texmf-dist/tex/latex/isodoc/isodoc-nl-NL.ldf
+ texmf-dist/tex/latex/isodoc/isodoc-sr-RS.ldf
+ texmf-dist/tex/latex/isodoc/isodoc-template.ldf
texmf-dist/tex/latex/isodoc/isodoc.cls
- texmf-dist/tex/latex/isodoc/isodocsymbols.sty
catalogue-ctan /macros/latex/contrib/isodoc
-catalogue-date 2012-09-29 14:32:13 +0200
-catalogue-license lppl
-catalogue-version 0.11
+catalogue-date 2014-04-25 15:16:15 +0200
+catalogue-license lppl1.3
+catalogue-version 1.05
name isomath
category Package
@@ -78546,7 +86679,7 @@ docfiles size=211
runfiles size=4
texmf-dist/tex/latex/isomath/isomath.sty
catalogue-ctan /macros/latex/contrib/isomath
-catalogue-date 2012-09-12 18:41:18 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 0.6.1
@@ -78566,7 +86699,7 @@ docfiles size=52
runfiles size=2
texmf-dist/tex/latex/isonums/isonums.sty
catalogue-ctan /macros/latex/contrib/isonums
-catalogue-date 2012-06-23 19:30:01 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.0
@@ -78636,7 +86769,7 @@ srcfiles size=4
runfiles size=1
texmf-dist/tex/latex/issuulinks/issuulinks.sty
catalogue-ctan /macros/latex/contrib/issuulinks
-catalogue-date 2012-06-23 19:30:01 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.1
@@ -78658,7 +86791,7 @@ srcfiles size=8
runfiles size=2
texmf-dist/tex/latex/itnumpar/itnumpar.sty
catalogue-ctan /macros/latex/contrib/itnumpar
-catalogue-date 2012-04-09 22:37:34 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.0
@@ -78679,7 +86812,7 @@ docfiles size=100
runfiles size=8
texmf-dist/tex/latex/iwhdp/iwhdp.cls
catalogue-ctan /macros/latex/contrib/iwhdp
-catalogue-date 2012-09-10 15:57:53 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 0.30
@@ -79318,7 +87451,7 @@ runfiles size=4371
texmf-dist/tex/latex/iwona/ts1iwonalc.fd
texmf-dist/tex/plain/iwona/iwona-math.tex
catalogue-ctan /fonts/iwona
-catalogue-date 2012-04-09 22:37:34 +0200
+catalogue-date 2014-05-09 00:43:11 +0200
catalogue-license gfsl
catalogue-version 0.995b
@@ -79337,22 +87470,27 @@ docfiles size=6
runfiles size=7
texmf-dist/fonts/source/public/jablantile/jablantile.mf
catalogue-ctan /fonts/jablantile
-catalogue-date 2012-04-09 22:37:34 +0200
+catalogue-date 2014-05-09 00:43:11 +0200
catalogue-license pd
name jadetex
category Package
-revision 23409
+revision 33694
shortdesc Macros supporting Jade DSSSL output.
longdesc Macro package on top of LaTeX to typeset TeX output of the Jade
longdesc DSSSL implementation.
depend latex
+depend passivetex
depend pdftex
depend tex
depend jadetex.ARCH
execute AddFormat name=jadetex engine=pdftex patterns=language.dat options="*jadetex.ini"
execute AddFormat name=pdfjadetex engine=pdftex patterns=language.dat options="*pdfjadetex.ini"
-docfiles size=29
+docfiles size=34
+ texmf-dist/doc/man/man1/jadetex.1
+ texmf-dist/doc/man/man1/jadetex.man1.pdf
+ texmf-dist/doc/man/man1/pdfjadetex.1
+ texmf-dist/doc/man/man1/pdfjadetex.man1.pdf
texmf-dist/doc/otherformats/jadetex/base/ChangeLog
texmf-dist/doc/otherformats/jadetex/base/ChangeLog-old
texmf-dist/doc/otherformats/jadetex/base/Makefile
@@ -79361,10 +87499,8 @@ docfiles size=29
texmf-dist/doc/otherformats/jadetex/base/index.html
texmf-dist/doc/otherformats/jadetex/base/index.xml
texmf-dist/doc/otherformats/jadetex/base/index.xsl
- texmf-dist/doc/otherformats/jadetex/base/jadetex.1
texmf-dist/doc/otherformats/jadetex/base/jadetex.cfg
texmf-dist/doc/otherformats/jadetex/base/logo.png
- texmf-dist/doc/otherformats/jadetex/base/pdfjadetex.1
texmf-dist/doc/otherformats/jadetex/base/releasenotes.dsl
texmf-dist/doc/otherformats/jadetex/base/releasenotes.xml
srcfiles size=21
@@ -79479,14 +87615,6 @@ binfiles arch=i386-solaris size=2
bin/i386-solaris/jadetex
bin/i386-solaris/pdfjadetex
-name jadetex.mips-irix
-category Package
-revision 29975
-shortdesc mips-irix files of jadetex
-binfiles arch=mips-irix size=2
- bin/mips-irix/jadetex
- bin/mips-irix/pdfjadetex
-
name jadetex.mipsel-linux
category Package
revision 29946
@@ -79521,12 +87649,20 @@ binfiles arch=universal-darwin size=2
name jadetex.win32
category Package
-revision 8086
+revision 33512
shortdesc win32 files of jadetex
binfiles arch=win32 size=2
bin/win32/jadetex.exe
bin/win32/pdfjadetex.exe
+name jadetex.x86_64-cygwin
+category Package
+revision 33557
+shortdesc x86_64-cygwin files of jadetex
+binfiles arch=x86_64-cygwin size=2
+ bin/x86_64-cygwin/jadetex
+ bin/x86_64-cygwin/pdfjadetex
+
name jadetex.x86_64-darwin
category Package
revision 18441
@@ -79682,7 +87818,7 @@ catalogue-version 1.12
name japanese
category Package
-revision 24533
+revision 30855
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
@@ -79698,24 +87834,25 @@ srcfiles size=4
runfiles size=1
texmf-dist/tex/platex/japanese/japanese.ldf
catalogue-ctan /language/japanese/japanese
-catalogue-date 2012-02-06 14:44:00 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.3
name japanese-otf
category Package
-revision 29929
+revision 32233
shortdesc Advanced font selection for platex and its friends.
longdesc The package contains pLaTeX support files and virtual fonts for
longdesc supporting a wide variety of fonts in LaTeX using the pTeX
longdesc engine.
execute addKanjiMap otf-cktx.map
execute addKanjiMap otf-@kanjiEmbed@.map
-docfiles size=16
+docfiles size=18
texmf-dist/doc/fonts/japanese-otf/COPYRIGHT
+ texmf-dist/doc/fonts/japanese-otf/fontmap.zip
texmf-dist/doc/fonts/japanese-otf/otf-script-gteb.diff
texmf-dist/doc/fonts/japanese-otf/readme.en.txt details="Readme (English)" language="en"
- texmf-dist/doc/fonts/japanese-otf/readme.txt details="Readme (japanese)" language="jp"
+ texmf-dist/doc/fonts/japanese-otf/readme.txt details="Readme (japanese)" language="ja"
texmf-dist/doc/fonts/japanese-otf/test/brsgtest.tex
texmf-dist/doc/fonts/japanese-otf/test/jis2004.tex
texmf-dist/doc/fonts/japanese-otf/test/koreanexample.tex
@@ -81871,25 +90008,26 @@ runfiles size=31495
texmf-dist/tex/platex/japanese-otf/otf-hangul.dfu
texmf-dist/tex/platex/japanese-otf/redeffont.sty
catalogue-ctan /language/japanese/japanese-otf
-catalogue-date 2013-04-14 10:19:50 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license other-free
-catalogue-version v1.7b5.1
+catalogue-version v1.7b6
name japanese-otf-uptex
category Package
-revision 29931
+revision 32255
shortdesc Support for Japanese OTF files in upLaTeX.
longdesc The bundle offers support of the fonts in the japanese-otf
longdesc package, for use with the UpTeX distribution (version 0.20 or
longdesc later).
depend japanese-otf
execute addKanjiMap otf-up-@kanjiEmbed@.map
-docfiles size=28
+docfiles size=31
texmf-dist/doc/fonts/japanese-otf-uptex/00otf-uptex.txt
texmf-dist/doc/fonts/japanese-otf-uptex/COPYRIGHT
texmf-dist/doc/fonts/japanese-otf-uptex/README details="Readme"
- texmf-dist/doc/fonts/japanese-otf-uptex/otf-script-gteb.diff
+ texmf-dist/doc/fonts/japanese-otf-uptex/fontmap.zip
texmf-dist/doc/fonts/japanese-otf-uptex/test/uplatex/Makefile
+ texmf-dist/doc/fonts/japanese-otf-uptex/test/uplatex/otfscale.tex
texmf-dist/doc/fonts/japanese-otf-uptex/test/uplatex/sp_cns_utf.tex
texmf-dist/doc/fonts/japanese-otf-uptex/test/uplatex/sp_gb_utf.tex
texmf-dist/doc/fonts/japanese-otf-uptex/test/uplatex/sp_jp_text.tex
@@ -81899,12 +90037,13 @@ docfiles size=28
texmf-dist/doc/fonts/japanese-otf-uptex/test/uplatex/uotftest-utf8.tex
texmf-dist/doc/fonts/japanese-otf-uptex/test/uplatex/uotftest.tex
texmf-dist/doc/fonts/japanese-otf-uptex/test/uplatex/upbrsgtest.tex
-srcfiles size=36
+ texmf-dist/doc/fonts/japanese-otf-uptex/test/uplatex/upjis2004.tex
+srcfiles size=39
texmf-dist/source/fonts/japanese-otf-uptex/basepl/ubase-h.pl
texmf-dist/source/fonts/japanese-otf-uptex/basepl/ubase-v.pl
texmf-dist/source/fonts/japanese-otf-uptex/basepl/ubrsg-h.pl
texmf-dist/source/fonts/japanese-otf-uptex/basepl/ubrsg-v.pl
- texmf-dist/source/fonts/japanese-otf-uptex/patch/otfbeta_uptex-0.10.patch
+ texmf-dist/source/fonts/japanese-otf-uptex/patch/otfbeta_uptex-0.13.patch
texmf-dist/source/fonts/japanese-otf-uptex/script/MakeSPList.pm
texmf-dist/source/fonts/japanese-otf-uptex/script/mktfm_sp.pl
texmf-dist/source/fonts/japanese-otf-uptex/script/mkutf32list.pl
@@ -81915,8 +90054,9 @@ srcfiles size=36
texmf-dist/source/fonts/japanese-otf-uptex/script/sp_list_t.txt
texmf-dist/source/fonts/japanese-otf-uptex/umakeotf
texmf-dist/source/fonts/japanese-otf-uptex/umakeotf_brsg
+ texmf-dist/source/fonts/japanese-otf-uptex/umakeotf_jis04
texmf-dist/source/fonts/japanese-otf-uptex/umkjvf
-runfiles size=12447
+runfiles size=21421
texmf-dist/fonts/ovp/public/japanese-otf-uptex/utfcgrk-h.ovp
texmf-dist/fonts/ovp/public/japanese-otf-uptex/utfcgrk-v.ovp
texmf-dist/fonts/ovp/public/japanese-otf-uptex/utfcgrl-h.ovp
@@ -82235,74 +90375,144 @@ runfiles size=12447
texmf-dist/fonts/ovp/public/japanese-otf-uptex/utftmrz-v.ovp
texmf-dist/fonts/tfm/public/japanese-otf-uptex/upbrsgexpgothb-h.tfm
texmf-dist/fonts/tfm/public/japanese-otf-uptex/upbrsgexpgothb-v.tfm
+ texmf-dist/fonts/tfm/public/japanese-otf-uptex/upbrsgexpgothbn-h.tfm
+ texmf-dist/fonts/tfm/public/japanese-otf-uptex/upbrsgexpgothbn-v.tfm
texmf-dist/fonts/tfm/public/japanese-otf-uptex/upbrsgexpgotheb-h.tfm
texmf-dist/fonts/tfm/public/japanese-otf-uptex/upbrsgexpgotheb-v.tfm
+ texmf-dist/fonts/tfm/public/japanese-otf-uptex/upbrsgexpgothebn-h.tfm
+ texmf-dist/fonts/tfm/public/japanese-otf-uptex/upbrsgexpgothebn-v.tfm
texmf-dist/fonts/tfm/public/japanese-otf-uptex/upbrsgexpgothr-h.tfm
texmf-dist/fonts/tfm/public/japanese-otf-uptex/upbrsgexpgothr-v.tfm
+ texmf-dist/fonts/tfm/public/japanese-otf-uptex/upbrsgexpgothrn-h.tfm
+ texmf-dist/fonts/tfm/public/japanese-otf-uptex/upbrsgexpgothrn-v.tfm
texmf-dist/fonts/tfm/public/japanese-otf-uptex/upbrsgexpmgothr-h.tfm
texmf-dist/fonts/tfm/public/japanese-otf-uptex/upbrsgexpmgothr-v.tfm
+ texmf-dist/fonts/tfm/public/japanese-otf-uptex/upbrsgexpmgothrn-h.tfm
+ texmf-dist/fonts/tfm/public/japanese-otf-uptex/upbrsgexpmgothrn-v.tfm
texmf-dist/fonts/tfm/public/japanese-otf-uptex/upbrsgexpminb-h.tfm
texmf-dist/fonts/tfm/public/japanese-otf-uptex/upbrsgexpminb-v.tfm
+ texmf-dist/fonts/tfm/public/japanese-otf-uptex/upbrsgexpminbn-h.tfm
+ texmf-dist/fonts/tfm/public/japanese-otf-uptex/upbrsgexpminbn-v.tfm
texmf-dist/fonts/tfm/public/japanese-otf-uptex/upbrsgexpminl-h.tfm
texmf-dist/fonts/tfm/public/japanese-otf-uptex/upbrsgexpminl-v.tfm
+ texmf-dist/fonts/tfm/public/japanese-otf-uptex/upbrsgexpminln-h.tfm
+ texmf-dist/fonts/tfm/public/japanese-otf-uptex/upbrsgexpminln-v.tfm
texmf-dist/fonts/tfm/public/japanese-otf-uptex/upbrsgexpminr-h.tfm
texmf-dist/fonts/tfm/public/japanese-otf-uptex/upbrsgexpminr-v.tfm
+ texmf-dist/fonts/tfm/public/japanese-otf-uptex/upbrsgexpminrn-h.tfm
+ texmf-dist/fonts/tfm/public/japanese-otf-uptex/upbrsgexpminrn-v.tfm
texmf-dist/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlgothb-h.tfm
texmf-dist/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlgothb-v.tfm
+ texmf-dist/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlgothbn-h.tfm
+ texmf-dist/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlgothbn-v.tfm
texmf-dist/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlgotheb-h.tfm
texmf-dist/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlgotheb-v.tfm
+ texmf-dist/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlgothebn-h.tfm
+ texmf-dist/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlgothebn-v.tfm
texmf-dist/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlgothr-h.tfm
texmf-dist/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlgothr-v.tfm
+ texmf-dist/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlgothrn-h.tfm
+ texmf-dist/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlgothrn-v.tfm
texmf-dist/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlmgothr-h.tfm
texmf-dist/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlmgothr-v.tfm
+ texmf-dist/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlmgothrn-h.tfm
+ texmf-dist/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlmgothrn-v.tfm
texmf-dist/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlminb-h.tfm
texmf-dist/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlminb-v.tfm
+ texmf-dist/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlminbn-h.tfm
+ texmf-dist/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlminbn-v.tfm
texmf-dist/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlminl-h.tfm
texmf-dist/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlminl-v.tfm
+ texmf-dist/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlminln-h.tfm
+ texmf-dist/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlminln-v.tfm
texmf-dist/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlminr-h.tfm
texmf-dist/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlminr-v.tfm
+ texmf-dist/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlminrn-h.tfm
+ texmf-dist/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlminrn-v.tfm
texmf-dist/fonts/tfm/public/japanese-otf-uptex/upexpgothb-h.tfm
texmf-dist/fonts/tfm/public/japanese-otf-uptex/upexpgothb-v.tfm
+ texmf-dist/fonts/tfm/public/japanese-otf-uptex/upexpgothbn-h.tfm
+ texmf-dist/fonts/tfm/public/japanese-otf-uptex/upexpgothbn-v.tfm
texmf-dist/fonts/tfm/public/japanese-otf-uptex/upexpgotheb-h.tfm
texmf-dist/fonts/tfm/public/japanese-otf-uptex/upexpgotheb-v.tfm
+ texmf-dist/fonts/tfm/public/japanese-otf-uptex/upexpgothebn-h.tfm
+ texmf-dist/fonts/tfm/public/japanese-otf-uptex/upexpgothebn-v.tfm
texmf-dist/fonts/tfm/public/japanese-otf-uptex/upexpgothr-h.tfm
texmf-dist/fonts/tfm/public/japanese-otf-uptex/upexpgothr-v.tfm
+ texmf-dist/fonts/tfm/public/japanese-otf-uptex/upexpgothrn-h.tfm
+ texmf-dist/fonts/tfm/public/japanese-otf-uptex/upexpgothrn-v.tfm
texmf-dist/fonts/tfm/public/japanese-otf-uptex/upexpmgothr-h.tfm
texmf-dist/fonts/tfm/public/japanese-otf-uptex/upexpmgothr-v.tfm
+ texmf-dist/fonts/tfm/public/japanese-otf-uptex/upexpmgothrn-h.tfm
+ texmf-dist/fonts/tfm/public/japanese-otf-uptex/upexpmgothrn-v.tfm
texmf-dist/fonts/tfm/public/japanese-otf-uptex/upexpminb-h.tfm
texmf-dist/fonts/tfm/public/japanese-otf-uptex/upexpminb-v.tfm
+ texmf-dist/fonts/tfm/public/japanese-otf-uptex/upexpminbn-h.tfm
+ texmf-dist/fonts/tfm/public/japanese-otf-uptex/upexpminbn-v.tfm
texmf-dist/fonts/tfm/public/japanese-otf-uptex/upexpminl-h.tfm
texmf-dist/fonts/tfm/public/japanese-otf-uptex/upexpminl-v.tfm
+ texmf-dist/fonts/tfm/public/japanese-otf-uptex/upexpminln-h.tfm
+ texmf-dist/fonts/tfm/public/japanese-otf-uptex/upexpminln-v.tfm
texmf-dist/fonts/tfm/public/japanese-otf-uptex/upexpminr-h.tfm
texmf-dist/fonts/tfm/public/japanese-otf-uptex/upexpminr-v.tfm
+ texmf-dist/fonts/tfm/public/japanese-otf-uptex/upexpminrn-h.tfm
+ texmf-dist/fonts/tfm/public/japanese-otf-uptex/upexpminrn-v.tfm
texmf-dist/fonts/tfm/public/japanese-otf-uptex/uphgothb-h.tfm
texmf-dist/fonts/tfm/public/japanese-otf-uptex/uphgothb-v.tfm
+ texmf-dist/fonts/tfm/public/japanese-otf-uptex/uphgothbn-h.tfm
+ texmf-dist/fonts/tfm/public/japanese-otf-uptex/uphgothbn-v.tfm
texmf-dist/fonts/tfm/public/japanese-otf-uptex/uphgotheb-h.tfm
texmf-dist/fonts/tfm/public/japanese-otf-uptex/uphgotheb-v.tfm
+ texmf-dist/fonts/tfm/public/japanese-otf-uptex/uphgothebn-h.tfm
+ texmf-dist/fonts/tfm/public/japanese-otf-uptex/uphgothebn-v.tfm
texmf-dist/fonts/tfm/public/japanese-otf-uptex/uphgothr-h.tfm
texmf-dist/fonts/tfm/public/japanese-otf-uptex/uphgothr-v.tfm
+ texmf-dist/fonts/tfm/public/japanese-otf-uptex/uphgothrn-h.tfm
+ texmf-dist/fonts/tfm/public/japanese-otf-uptex/uphgothrn-v.tfm
texmf-dist/fonts/tfm/public/japanese-otf-uptex/uphmgothr-h.tfm
texmf-dist/fonts/tfm/public/japanese-otf-uptex/uphmgothr-v.tfm
+ texmf-dist/fonts/tfm/public/japanese-otf-uptex/uphmgothrn-h.tfm
+ texmf-dist/fonts/tfm/public/japanese-otf-uptex/uphmgothrn-v.tfm
texmf-dist/fonts/tfm/public/japanese-otf-uptex/uphminb-h.tfm
texmf-dist/fonts/tfm/public/japanese-otf-uptex/uphminb-v.tfm
+ texmf-dist/fonts/tfm/public/japanese-otf-uptex/uphminbn-h.tfm
+ texmf-dist/fonts/tfm/public/japanese-otf-uptex/uphminbn-v.tfm
texmf-dist/fonts/tfm/public/japanese-otf-uptex/uphminl-h.tfm
texmf-dist/fonts/tfm/public/japanese-otf-uptex/uphminl-v.tfm
+ texmf-dist/fonts/tfm/public/japanese-otf-uptex/uphminln-h.tfm
+ texmf-dist/fonts/tfm/public/japanese-otf-uptex/uphminln-v.tfm
texmf-dist/fonts/tfm/public/japanese-otf-uptex/uphminr-h.tfm
texmf-dist/fonts/tfm/public/japanese-otf-uptex/uphminr-v.tfm
+ texmf-dist/fonts/tfm/public/japanese-otf-uptex/uphminrn-h.tfm
+ texmf-dist/fonts/tfm/public/japanese-otf-uptex/uphminrn-v.tfm
texmf-dist/fonts/tfm/public/japanese-otf-uptex/upnmlgothb-h.tfm
texmf-dist/fonts/tfm/public/japanese-otf-uptex/upnmlgothb-v.tfm
+ texmf-dist/fonts/tfm/public/japanese-otf-uptex/upnmlgothbn-h.tfm
+ texmf-dist/fonts/tfm/public/japanese-otf-uptex/upnmlgothbn-v.tfm
texmf-dist/fonts/tfm/public/japanese-otf-uptex/upnmlgotheb-h.tfm
texmf-dist/fonts/tfm/public/japanese-otf-uptex/upnmlgotheb-v.tfm
+ texmf-dist/fonts/tfm/public/japanese-otf-uptex/upnmlgothebn-h.tfm
+ texmf-dist/fonts/tfm/public/japanese-otf-uptex/upnmlgothebn-v.tfm
texmf-dist/fonts/tfm/public/japanese-otf-uptex/upnmlgothr-h.tfm
texmf-dist/fonts/tfm/public/japanese-otf-uptex/upnmlgothr-v.tfm
+ texmf-dist/fonts/tfm/public/japanese-otf-uptex/upnmlgothrn-h.tfm
+ texmf-dist/fonts/tfm/public/japanese-otf-uptex/upnmlgothrn-v.tfm
texmf-dist/fonts/tfm/public/japanese-otf-uptex/upnmlmgothr-h.tfm
texmf-dist/fonts/tfm/public/japanese-otf-uptex/upnmlmgothr-v.tfm
+ texmf-dist/fonts/tfm/public/japanese-otf-uptex/upnmlmgothrn-h.tfm
+ texmf-dist/fonts/tfm/public/japanese-otf-uptex/upnmlmgothrn-v.tfm
texmf-dist/fonts/tfm/public/japanese-otf-uptex/upnmlminb-h.tfm
texmf-dist/fonts/tfm/public/japanese-otf-uptex/upnmlminb-v.tfm
+ texmf-dist/fonts/tfm/public/japanese-otf-uptex/upnmlminbn-h.tfm
+ texmf-dist/fonts/tfm/public/japanese-otf-uptex/upnmlminbn-v.tfm
texmf-dist/fonts/tfm/public/japanese-otf-uptex/upnmlminl-h.tfm
texmf-dist/fonts/tfm/public/japanese-otf-uptex/upnmlminl-v.tfm
+ texmf-dist/fonts/tfm/public/japanese-otf-uptex/upnmlminln-h.tfm
+ texmf-dist/fonts/tfm/public/japanese-otf-uptex/upnmlminln-v.tfm
texmf-dist/fonts/tfm/public/japanese-otf-uptex/upnmlminr-h.tfm
texmf-dist/fonts/tfm/public/japanese-otf-uptex/upnmlminr-v.tfm
+ texmf-dist/fonts/tfm/public/japanese-otf-uptex/upnmlminrn-h.tfm
+ texmf-dist/fonts/tfm/public/japanese-otf-uptex/upnmlminrn-v.tfm
texmf-dist/fonts/tfm/public/japanese-otf-uptex/uprubygothb-h.tfm
texmf-dist/fonts/tfm/public/japanese-otf-uptex/uprubygothb-v.tfm
texmf-dist/fonts/tfm/public/japanese-otf-uptex/uprubygotheb-h.tfm
@@ -82635,60 +90845,116 @@ runfiles size=12447
texmf-dist/fonts/tfm/public/japanese-otf-uptex/utftmrz-v.tfm
texmf-dist/fonts/vf/public/japanese-otf-uptex/upbrsgexpgothb-h.vf
texmf-dist/fonts/vf/public/japanese-otf-uptex/upbrsgexpgothb-v.vf
+ texmf-dist/fonts/vf/public/japanese-otf-uptex/upbrsgexpgothbn-h.vf
+ texmf-dist/fonts/vf/public/japanese-otf-uptex/upbrsgexpgothbn-v.vf
texmf-dist/fonts/vf/public/japanese-otf-uptex/upbrsgexpgotheb-h.vf
texmf-dist/fonts/vf/public/japanese-otf-uptex/upbrsgexpgotheb-v.vf
+ texmf-dist/fonts/vf/public/japanese-otf-uptex/upbrsgexpgothebn-h.vf
+ texmf-dist/fonts/vf/public/japanese-otf-uptex/upbrsgexpgothebn-v.vf
texmf-dist/fonts/vf/public/japanese-otf-uptex/upbrsgexpgothr-h.vf
texmf-dist/fonts/vf/public/japanese-otf-uptex/upbrsgexpgothr-v.vf
+ texmf-dist/fonts/vf/public/japanese-otf-uptex/upbrsgexpgothrn-h.vf
+ texmf-dist/fonts/vf/public/japanese-otf-uptex/upbrsgexpgothrn-v.vf
texmf-dist/fonts/vf/public/japanese-otf-uptex/upbrsgexpmgothr-h.vf
texmf-dist/fonts/vf/public/japanese-otf-uptex/upbrsgexpmgothr-v.vf
+ texmf-dist/fonts/vf/public/japanese-otf-uptex/upbrsgexpmgothrn-h.vf
+ texmf-dist/fonts/vf/public/japanese-otf-uptex/upbrsgexpmgothrn-v.vf
texmf-dist/fonts/vf/public/japanese-otf-uptex/upbrsgexpminb-h.vf
texmf-dist/fonts/vf/public/japanese-otf-uptex/upbrsgexpminb-v.vf
+ texmf-dist/fonts/vf/public/japanese-otf-uptex/upbrsgexpminbn-h.vf
+ texmf-dist/fonts/vf/public/japanese-otf-uptex/upbrsgexpminbn-v.vf
texmf-dist/fonts/vf/public/japanese-otf-uptex/upbrsgexpminl-h.vf
texmf-dist/fonts/vf/public/japanese-otf-uptex/upbrsgexpminl-v.vf
+ texmf-dist/fonts/vf/public/japanese-otf-uptex/upbrsgexpminln-h.vf
+ texmf-dist/fonts/vf/public/japanese-otf-uptex/upbrsgexpminln-v.vf
texmf-dist/fonts/vf/public/japanese-otf-uptex/upbrsgexpminr-h.vf
texmf-dist/fonts/vf/public/japanese-otf-uptex/upbrsgexpminr-v.vf
+ texmf-dist/fonts/vf/public/japanese-otf-uptex/upbrsgexpminrn-h.vf
+ texmf-dist/fonts/vf/public/japanese-otf-uptex/upbrsgexpminrn-v.vf
texmf-dist/fonts/vf/public/japanese-otf-uptex/upbrsgnmlgothb-h.vf
texmf-dist/fonts/vf/public/japanese-otf-uptex/upbrsgnmlgothb-v.vf
+ texmf-dist/fonts/vf/public/japanese-otf-uptex/upbrsgnmlgothbn-h.vf
+ texmf-dist/fonts/vf/public/japanese-otf-uptex/upbrsgnmlgothbn-v.vf
texmf-dist/fonts/vf/public/japanese-otf-uptex/upbrsgnmlgotheb-h.vf
texmf-dist/fonts/vf/public/japanese-otf-uptex/upbrsgnmlgotheb-v.vf
+ texmf-dist/fonts/vf/public/japanese-otf-uptex/upbrsgnmlgothebn-h.vf
+ texmf-dist/fonts/vf/public/japanese-otf-uptex/upbrsgnmlgothebn-v.vf
texmf-dist/fonts/vf/public/japanese-otf-uptex/upbrsgnmlgothr-h.vf
texmf-dist/fonts/vf/public/japanese-otf-uptex/upbrsgnmlgothr-v.vf
+ texmf-dist/fonts/vf/public/japanese-otf-uptex/upbrsgnmlgothrn-h.vf
+ texmf-dist/fonts/vf/public/japanese-otf-uptex/upbrsgnmlgothrn-v.vf
texmf-dist/fonts/vf/public/japanese-otf-uptex/upbrsgnmlmgothr-h.vf
texmf-dist/fonts/vf/public/japanese-otf-uptex/upbrsgnmlmgothr-v.vf
+ texmf-dist/fonts/vf/public/japanese-otf-uptex/upbrsgnmlmgothrn-h.vf
+ texmf-dist/fonts/vf/public/japanese-otf-uptex/upbrsgnmlmgothrn-v.vf
texmf-dist/fonts/vf/public/japanese-otf-uptex/upbrsgnmlminb-h.vf
texmf-dist/fonts/vf/public/japanese-otf-uptex/upbrsgnmlminb-v.vf
+ texmf-dist/fonts/vf/public/japanese-otf-uptex/upbrsgnmlminbn-h.vf
+ texmf-dist/fonts/vf/public/japanese-otf-uptex/upbrsgnmlminbn-v.vf
texmf-dist/fonts/vf/public/japanese-otf-uptex/upbrsgnmlminl-h.vf
texmf-dist/fonts/vf/public/japanese-otf-uptex/upbrsgnmlminl-v.vf
+ texmf-dist/fonts/vf/public/japanese-otf-uptex/upbrsgnmlminln-h.vf
+ texmf-dist/fonts/vf/public/japanese-otf-uptex/upbrsgnmlminln-v.vf
texmf-dist/fonts/vf/public/japanese-otf-uptex/upbrsgnmlminr-h.vf
texmf-dist/fonts/vf/public/japanese-otf-uptex/upbrsgnmlminr-v.vf
+ texmf-dist/fonts/vf/public/japanese-otf-uptex/upbrsgnmlminrn-h.vf
+ texmf-dist/fonts/vf/public/japanese-otf-uptex/upbrsgnmlminrn-v.vf
texmf-dist/fonts/vf/public/japanese-otf-uptex/upexpgothb-h.vf
texmf-dist/fonts/vf/public/japanese-otf-uptex/upexpgothb-v.vf
+ texmf-dist/fonts/vf/public/japanese-otf-uptex/upexpgothbn-h.vf
+ texmf-dist/fonts/vf/public/japanese-otf-uptex/upexpgothbn-v.vf
texmf-dist/fonts/vf/public/japanese-otf-uptex/upexpgotheb-h.vf
texmf-dist/fonts/vf/public/japanese-otf-uptex/upexpgotheb-v.vf
+ texmf-dist/fonts/vf/public/japanese-otf-uptex/upexpgothebn-h.vf
+ texmf-dist/fonts/vf/public/japanese-otf-uptex/upexpgothebn-v.vf
texmf-dist/fonts/vf/public/japanese-otf-uptex/upexpgothr-h.vf
texmf-dist/fonts/vf/public/japanese-otf-uptex/upexpgothr-v.vf
+ texmf-dist/fonts/vf/public/japanese-otf-uptex/upexpgothrn-h.vf
+ texmf-dist/fonts/vf/public/japanese-otf-uptex/upexpgothrn-v.vf
texmf-dist/fonts/vf/public/japanese-otf-uptex/upexpmgothr-h.vf
texmf-dist/fonts/vf/public/japanese-otf-uptex/upexpmgothr-v.vf
+ texmf-dist/fonts/vf/public/japanese-otf-uptex/upexpmgothrn-h.vf
+ texmf-dist/fonts/vf/public/japanese-otf-uptex/upexpmgothrn-v.vf
texmf-dist/fonts/vf/public/japanese-otf-uptex/upexpminb-h.vf
texmf-dist/fonts/vf/public/japanese-otf-uptex/upexpminb-v.vf
+ texmf-dist/fonts/vf/public/japanese-otf-uptex/upexpminbn-h.vf
+ texmf-dist/fonts/vf/public/japanese-otf-uptex/upexpminbn-v.vf
texmf-dist/fonts/vf/public/japanese-otf-uptex/upexpminl-h.vf
texmf-dist/fonts/vf/public/japanese-otf-uptex/upexpminl-v.vf
+ texmf-dist/fonts/vf/public/japanese-otf-uptex/upexpminln-h.vf
+ texmf-dist/fonts/vf/public/japanese-otf-uptex/upexpminln-v.vf
texmf-dist/fonts/vf/public/japanese-otf-uptex/upexpminr-h.vf
texmf-dist/fonts/vf/public/japanese-otf-uptex/upexpminr-v.vf
+ texmf-dist/fonts/vf/public/japanese-otf-uptex/upexpminrn-h.vf
+ texmf-dist/fonts/vf/public/japanese-otf-uptex/upexpminrn-v.vf
texmf-dist/fonts/vf/public/japanese-otf-uptex/upnmlgothb-h.vf
texmf-dist/fonts/vf/public/japanese-otf-uptex/upnmlgothb-v.vf
+ texmf-dist/fonts/vf/public/japanese-otf-uptex/upnmlgothbn-h.vf
+ texmf-dist/fonts/vf/public/japanese-otf-uptex/upnmlgothbn-v.vf
texmf-dist/fonts/vf/public/japanese-otf-uptex/upnmlgotheb-h.vf
texmf-dist/fonts/vf/public/japanese-otf-uptex/upnmlgotheb-v.vf
+ texmf-dist/fonts/vf/public/japanese-otf-uptex/upnmlgothebn-h.vf
+ texmf-dist/fonts/vf/public/japanese-otf-uptex/upnmlgothebn-v.vf
texmf-dist/fonts/vf/public/japanese-otf-uptex/upnmlgothr-h.vf
texmf-dist/fonts/vf/public/japanese-otf-uptex/upnmlgothr-v.vf
+ texmf-dist/fonts/vf/public/japanese-otf-uptex/upnmlgothrn-h.vf
+ texmf-dist/fonts/vf/public/japanese-otf-uptex/upnmlgothrn-v.vf
texmf-dist/fonts/vf/public/japanese-otf-uptex/upnmlmgothr-h.vf
texmf-dist/fonts/vf/public/japanese-otf-uptex/upnmlmgothr-v.vf
+ texmf-dist/fonts/vf/public/japanese-otf-uptex/upnmlmgothrn-h.vf
+ texmf-dist/fonts/vf/public/japanese-otf-uptex/upnmlmgothrn-v.vf
texmf-dist/fonts/vf/public/japanese-otf-uptex/upnmlminb-h.vf
texmf-dist/fonts/vf/public/japanese-otf-uptex/upnmlminb-v.vf
+ texmf-dist/fonts/vf/public/japanese-otf-uptex/upnmlminbn-h.vf
+ texmf-dist/fonts/vf/public/japanese-otf-uptex/upnmlminbn-v.vf
texmf-dist/fonts/vf/public/japanese-otf-uptex/upnmlminl-h.vf
texmf-dist/fonts/vf/public/japanese-otf-uptex/upnmlminl-v.vf
+ texmf-dist/fonts/vf/public/japanese-otf-uptex/upnmlminln-h.vf
+ texmf-dist/fonts/vf/public/japanese-otf-uptex/upnmlminln-v.vf
texmf-dist/fonts/vf/public/japanese-otf-uptex/upnmlminr-h.vf
texmf-dist/fonts/vf/public/japanese-otf-uptex/upnmlminr-v.vf
+ texmf-dist/fonts/vf/public/japanese-otf-uptex/upnmlminrn-h.vf
+ texmf-dist/fonts/vf/public/japanese-otf-uptex/upnmlminrn-v.vf
texmf-dist/fonts/vf/public/japanese-otf-uptex/uprubygothb-h.vf
texmf-dist/fonts/vf/public/japanese-otf-uptex/uprubygothb-v.vf
texmf-dist/fonts/vf/public/japanese-otf-uptex/uprubygotheb-h.vf
@@ -83022,25 +91288,33 @@ runfiles size=12447
texmf-dist/tex/platex/japanese-otf-uptex/mlutf.sty
texmf-dist/tex/platex/japanese-otf-uptex/otf.sty
catalogue-ctan /language/japanese/japanese-otf-uptex
-catalogue-date 2013-04-14 10:19:50 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license other-free
-catalogue-version 0.11.1
+catalogue-version 0.13
name jfontmaps
category Package
-revision 30011
+revision 33067
shortdesc Font maps and configuration tools for Japanese fonts.
longdesc The package offers font maps, and supporting material, that
longdesc make various Japanese fonts available to users of (u)ptex and
-longdesc related programs or formats.
+longdesc related programs or formats. The package does not ship any of
+longdesc the fonts mentioned in the documentation, but only map files
+longdesc for use with dvipdfmx; the user must obtain the other fonts
+longdesc separately. The first exception is that ipa and ipaex the
+longdesc respective fonts a shipped as part of the TeX Live distribution
+longdesc and are available for free. The other exception is that the Yu
+longdesc Mincho/Gothic fonts are available to Windows and MacOSX users,
+longdesc as part of their operating system distribution.
depend jfontmaps.ARCH
-docfiles size=7
+docfiles size=9
texmf-dist/doc/fonts/jfontmaps/ChangeLog
texmf-dist/doc/fonts/jfontmaps/ChangeLog.pre-git
texmf-dist/doc/fonts/jfontmaps/README details="Readme"
texmf-dist/doc/fonts/jfontmaps/examples/otf-sample-04.tex
texmf-dist/doc/fonts/jfontmaps/examples/otf-sample.tex
texmf-dist/doc/fonts/jfontmaps/examples/ptex-sample.tex
+ texmf-dist/doc/fonts/jfontmaps/examples/series-compare.tex
srcfiles size=254
texmf-dist/source/jfontmaps/jis04cmap_exp/JISX0213-2004-H
texmf-dist/source/jfontmaps/jis04cmap_exp/JISX0213-2004-V
@@ -83055,7 +91329,7 @@ srcfiles size=254
texmf-dist/source/jfontmaps/script/updmap-otf.sh
texmf-dist/source/jfontmaps/tools/mkmap.lua
texmf-dist/source/jfontmaps/tools/release.sh
-runfiles size=82
+runfiles size=94
texmf-dist/fonts/cmap/jfontmaps/2004-H
texmf-dist/fonts/cmap/jfontmaps/2004-V
texmf-dist/fonts/map/dvipdfmx/jfontmaps/hiragino-pron/otf-hiragino-pron.map
@@ -83118,12 +91392,23 @@ runfiles size=82
texmf-dist/fonts/map/dvipdfmx/jfontmaps/noEmbed/ptex-noEmbed.map
texmf-dist/fonts/map/dvipdfmx/jfontmaps/noEmbed/uptex-noEmbed-04.map
texmf-dist/fonts/map/dvipdfmx/jfontmaps/noEmbed/uptex-noEmbed.map
+ texmf-dist/fonts/map/dvipdfmx/jfontmaps/yu-osx/otf-up-yu-osx.map
+ texmf-dist/fonts/map/dvipdfmx/jfontmaps/yu-osx/otf-yu-osx.map
+ texmf-dist/fonts/map/dvipdfmx/jfontmaps/yu-osx/ptex-yu-osx-04.map
+ texmf-dist/fonts/map/dvipdfmx/jfontmaps/yu-osx/ptex-yu-osx.map
+ texmf-dist/fonts/map/dvipdfmx/jfontmaps/yu-osx/uptex-yu-osx-04.map
+ texmf-dist/fonts/map/dvipdfmx/jfontmaps/yu-osx/uptex-yu-osx.map
+ texmf-dist/fonts/map/dvipdfmx/jfontmaps/yu-win/otf-up-yu-win.map
+ texmf-dist/fonts/map/dvipdfmx/jfontmaps/yu-win/otf-yu-win.map
+ texmf-dist/fonts/map/dvipdfmx/jfontmaps/yu-win/ptex-yu-win.map
+ texmf-dist/fonts/map/dvipdfmx/jfontmaps/yu-win/uptex-yu-win.map
texmf-dist/scripts/jfontmaps/kanji-config-updmap-sys.sh
texmf-dist/scripts/jfontmaps/kanji-config-updmap.pl
texmf-dist/scripts/jfontmaps/kanji-fontmap-creator.pl
catalogue-ctan /language/japanese/jfontmaps
-catalogue-date 2013-04-11 22:52:04 +0200
-catalogue-license gpl3
+catalogue-date 2014-05-09 00:43:11 +0200
+catalogue-license other-free
+catalogue-version 20140301.0
name jfontmaps.alpha-linux
category Package
@@ -83233,15 +91518,6 @@ binfiles arch=i386-solaris size=3
bin/i386-solaris/kanji-config-updmap-sys
bin/i386-solaris/kanji-fontmap-creator
-name jfontmaps.mips-irix
-category Package
-revision 29949
-shortdesc mips-irix files of jfontmaps
-binfiles arch=mips-irix size=3
- bin/mips-irix/kanji-config-updmap
- bin/mips-irix/kanji-config-updmap-sys
- bin/mips-irix/kanji-fontmap-creator
-
name jfontmaps.mipsel-linux
category Package
revision 29946
@@ -83287,6 +91563,15 @@ binfiles arch=win32 size=3
bin/win32/kanji-config-updmap.exe
bin/win32/kanji-fontmap-creator.exe
+name jfontmaps.x86_64-cygwin
+category Package
+revision 33557
+shortdesc x86_64-cygwin files of jfontmaps
+binfiles arch=x86_64-cygwin size=3
+ bin/x86_64-cygwin/kanji-config-updmap
+ bin/x86_64-cygwin/kanji-config-updmap-sys
+ bin/x86_64-cygwin/kanji-fontmap-creator
+
name jfontmaps.x86_64-darwin
category Package
revision 29848
@@ -83319,15 +91604,15 @@ category Package
revision 19440
catalogue jknappen
shortdesc Miscellaneous packages by Joerg Knappen.
-longdesc Miscellaneous macros by Jorg Knappen, including: - represent
-longdesc counters in greek; - Maxwell's non-commutative division; -
+longdesc Miscellaneous macros by Jorg 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; - swap
-longdesc Roman and Sans fonts; - transliterate semitic languages; -
-longdesc patches to make (La)TeX formulae embeddable in SGML; - use
-longdesc maths "minus" in text as appropriate; - simple Young tableaux.
+longdesc ISO Latin codes; blackboard bold fonts in maths; use of RSFS
+longdesc fonts in maths; extra alignments for \parboxes; swap Roman and
+longdesc Sans fonts; transliterate semitic languages; patches to make
+longdesc (La)TeX formulae embeddable in SGML; use maths "minus" in text
+longdesc as appropriate; simple Young tableaux.
docfiles size=4
texmf-dist/doc/latex/jknapltx/00readme.txt
texmf-dist/doc/latex/jknapltx/README.TEXLIVE
@@ -83351,7 +91636,7 @@ runfiles size=19
texmf-dist/tex/latex/jknapltx/ustmary.fd
texmf-dist/tex/latex/jknapltx/young.sty
catalogue-ctan /macros/latex/contrib/jknappen
-catalogue-date 2012-04-24 20:59:15 +0200
+catalogue-date 2014-01-03 22:58:53 +0100
catalogue-license gpl
name jlabels
@@ -83367,13 +91652,13 @@ docfiles size=11
runfiles size=1
texmf-dist/tex/latex/jlabels/jlabels.sty
catalogue-ctan /macros/latex/contrib/jlabels
-catalogue-date 2011-12-20 08:28:11 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 2011-06-05
name jmlr
category Package
-revision 26759
+revision 31945
shortdesc Class files for the Journal of Machine Learning Research.
longdesc The jmlr bundle provides a class for authors (jmlr) and a class
longdesc for production editors (jmlrbook), as well as a script
@@ -83387,7 +91672,7 @@ longdesc greyscale nonhyperlinked PDFs of a document using the jmlrbook
longdesc class. It can also create a set of HTML files that list the
longdesc included papers with links to their abstracts and the
longdesc individual articles as PDFs.
-docfiles size=456
+docfiles size=499
texmf-dist/doc/latex/jmlr/CHANGES
texmf-dist/doc/latex/jmlr/INSTALL
texmf-dist/doc/latex/jmlr/README details="Readme"
@@ -83418,18 +91703,18 @@ docfiles size=456
texmf-dist/doc/latex/jmlr/sample-papers/jmlr-sample.tex
texmf-dist/doc/latex/jmlr/sample-papers/jmlrwcp-sample.pdf
texmf-dist/doc/latex/jmlr/sample-papers/jmlrwcp-sample.tex
-srcfiles size=46
+srcfiles size=48
texmf-dist/source/latex/jmlr/jmlr.dtx
texmf-dist/source/latex/jmlr/jmlr.ins
-runfiles size=27
+runfiles size=28
texmf-dist/scripts/jmlr/makejmlrbook
texmf-dist/scripts/jmlr/makejmlrbook.bat
texmf-dist/tex/latex/jmlr/jmlr.cls
texmf-dist/tex/latex/jmlr/jmlrbook.cls
catalogue-ctan /macros/latex/contrib/jmlr
-catalogue-date 2012-05-30 16:45:26 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
-catalogue-version 1.17
+catalogue-version 1.18
name jmn
category Package
@@ -83486,9 +91771,9 @@ name js-misc
category Package
revision 16211
shortdesc Miscellaneous macros from Joachim Schrod.
-longdesc A bunch of packages, including: - idverb.tex, for 'short
-longdesc verbatim'; - xfig.tex, for including xfig/transfig output in a
-longdesc TeX document; and - cassette.tex for setting cassette labels.
+longdesc A bunch of packages, including: idverb.tex, for 'short
+longdesc verbatim'; xfig.tex, for including xfig/transfig output in a
+longdesc TeX document; and cassette.tex for setting cassette labels.
docfiles size=26
texmf-dist/doc/plain/js-misc/History
texmf-dist/doc/plain/js-misc/INSTALL
@@ -83514,12 +91799,12 @@ runfiles size=13
texmf-dist/tex/plain/js-misc/sperr.tex
texmf-dist/tex/plain/js-misc/xfig.tex
catalogue-ctan /macros/plain/contrib/js-misc
-catalogue-date 2012-05-10 17:02:32 +0200
+catalogue-date 2014-01-03 22:58:53 +0100
catalogue-license pd
name jsclasses
category Package
-revision 30647
+revision 34224
shortdesc Classes tailored for use with Japanese.
longdesc Classes jsarticle and jsbook are provided, together with
longdesc packages okumacro, okuverb and morisawa. These classes are
@@ -83532,7 +91817,7 @@ docfiles size=162
texmf-dist/doc/platex/jsclasses/morisawa.pdf details="Morisawa package documentation (Japanese)" language="ja"
texmf-dist/doc/platex/jsclasses/okumacro.pdf details="Okumacro package documentation (Japanese)" language="ja"
texmf-dist/doc/platex/jsclasses/okuverb.pdf details="Okuverb package documentation (Japanese)" language="ja"
-srcfiles size=61
+srcfiles size=62
texmf-dist/source/platex/jsclasses/jsclasses.dtx
texmf-dist/source/platex/jsclasses/jsclasses.ins
texmf-dist/source/platex/jsclasses/jsverb.dtx
@@ -83543,7 +91828,7 @@ srcfiles size=61
texmf-dist/source/platex/jsclasses/okumacro.ins
texmf-dist/source/platex/jsclasses/okuverb.dtx
texmf-dist/source/platex/jsclasses/okuverb.ins
-runfiles size=63
+runfiles size=64
texmf-dist/tex/platex/jsclasses/jsarticle.cls
texmf-dist/tex/platex/jsclasses/jsbook.cls
texmf-dist/tex/platex/jsclasses/jspf.cls
@@ -83554,7 +91839,7 @@ runfiles size=63
texmf-dist/tex/platex/jsclasses/okumacro.sty
texmf-dist/tex/platex/jsclasses/okuverb.sty
catalogue-ctan /macros/latex/contrib/jsclasses
-catalogue-date 2013-05-27 13:53:30 +0200
+catalogue-date 2014-05-23 15:52:39 +0200
catalogue-license bsd
name junicode
@@ -83582,7 +91867,7 @@ runfiles size=752
texmf-dist/fonts/truetype/public/junicode/Junicode.ttf
texmf-dist/tex/latex/junicode/mt-Junicode.cfg
catalogue-ctan /fonts/junicode
-catalogue-date 2013-03-04 16:31:08 +0100
+catalogue-date 2014-05-11 22:11:06 +0200
catalogue-license gpl
catalogue-version 0.7.7
@@ -83702,8 +91987,8 @@ category Package
revision 15878
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.
+longdesc opinions, books and dissertations for German lawyers. A
+longdesc jurabook class is also provided, which may not yet be complete.
docfiles size=469
texmf-dist/doc/latex/juramisc/README details="Package README" language="de"
texmf-dist/doc/latex/juramisc/doc/jbook/jbook.dtx
@@ -83720,7 +92005,7 @@ runfiles size=31
texmf-dist/tex/latex/juramisc/juraovw.cls
texmf-dist/tex/latex/juramisc/juraurtl.cls
catalogue-ctan /macros/latex/contrib/juramisc
-catalogue-date 2012-05-09 16:03:55 +0200
+catalogue-date 2013-10-30 13:49:16 +0100
catalogue-license lppl
catalogue-version 0.91
@@ -83757,10 +92042,10 @@ longdesc This package provides a LaTeX environment listing, an
longdesc alternative to the built-in verbatim environment. The listing
longdesc environment is tailored for including listings of computer
longdesc program source code into documents. The main advantages over
-longdesc the original verbatim environment are: - environments
+longdesc the original verbatim environment are: environments
longdesc automatically fixes leading whitespace so that the environment
longdesc and program listing can be indented with the rest of the
-longdesc document source, and; - listing environments may easily be
+longdesc document source, and; listing environments may easily be
longdesc customised and extended.
docfiles size=53
texmf-dist/doc/latex/jvlisting/README
@@ -83773,7 +92058,7 @@ srcfiles size=7
runfiles size=2
texmf-dist/tex/latex/jvlisting/jvlisting.sty
catalogue-ctan /macros/latex/contrib/jvlisting
-catalogue-date 2011-11-18 01:15:46 +0100
+catalogue-date 2014-01-03 22:58:53 +0100
catalogue-license lppl
catalogue-version 0.7
@@ -83794,7 +92079,7 @@ srcfiles size=50
runfiles size=47
texmf-dist/tex/latex/kantlipsum/kantlipsum.sty
catalogue-ctan /macros/latex/contrib/kantlipsum
-catalogue-date 2012-10-18 12:56:21 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 0.6
@@ -83813,7 +92098,7 @@ docfiles size=47
runfiles size=5
texmf-dist/tex/latex/karnaugh/kvmacros.tex
catalogue-ctan /macros/latex/contrib/karnaugh
-catalogue-date 2012-05-15 17:33:34 +0200
+catalogue-date 2013-12-04 20:37:03 +0100
catalogue-license lppl1
name kastrup
@@ -83863,7 +92148,7 @@ runfiles size=5
texmf-dist/tex/latex/kdgdocs/kdgcoursetext.cls
texmf-dist/tex/latex/kdgdocs/kdgmasterthesis.cls
catalogue-ctan /macros/latex/contrib/kdgdocs
-catalogue-date 2011-11-07 10:55:35 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.0
@@ -84143,7 +92428,7 @@ runfiles size=760
texmf-dist/tex/latex/kerkis/t1mak.fd
texmf-dist/tex/latex/kerkis/t1maksf.fd
catalogue-ctan /fonts/greek/kerkis
-catalogue-date 2012-12-11 00:23:00 +0100
+catalogue-date 2014-05-11 22:11:06 +0200
catalogue-license lppl
name kerntest
@@ -84218,7 +92503,7 @@ srcfiles size=16
runfiles size=5
texmf-dist/tex/latex/keycommand/keycommand.sty
catalogue-ctan /macros/latex/contrib/keycommand
-catalogue-date 2012-05-08 22:29:29 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 3.1415
@@ -84240,7 +92525,7 @@ docfiles size=64
runfiles size=10
texmf-dist/tex/latex/keyreader/keyreader.sty
catalogue-ctan /macros/latex/contrib/keyreader
-catalogue-date 2012-11-06 20:07:31 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 0.5b
@@ -84285,7 +92570,7 @@ docfiles size=91
runfiles size=3
texmf-dist/tex/latex/keyval2e/keyval2e.sty
catalogue-ctan /macros/latex/contrib/keyval2e
-catalogue-date 2012-02-22 10:43:42 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 0.0.2
@@ -84323,7 +92608,7 @@ runfiles size=2
texmf-dist/fonts/source/public/kixfont/kix.mf
texmf-dist/fonts/tfm/public/kixfont/kix.tfm
catalogue-ctan /fonts/kixfont
-catalogue-date 2012-04-03 18:17:17 +0200
+catalogue-date 2014-05-09 00:43:11 +0200
catalogue-license other-free
name kluwer
@@ -84459,7 +92744,7 @@ runfiles size=280
texmf-dist/tex/latex/knitting/uknit.fd
texmf-dist/tex/plain/knitting/knitting.tex
catalogue-ctan /fonts/knitting
-catalogue-date 2012-05-08 22:29:29 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 2.0
@@ -84482,18 +92767,18 @@ docfiles size=42
runfiles size=1
texmf-dist/tex/latex/knittingpattern/knittingpattern.cls
catalogue-ctan /macros/latex/contrib/knittingpattern
-catalogue-date 2012-05-08 22:29:29 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
name knuth
category Package
-revision 30780
+revision 32899
catalogue knuth-errata
shortdesc Knuth's published errata.
-longdesc These files are details of problems reported in the 'Computers
-longdesc and Typesetting' series of books, for the Computer Modern
-longdesc fonts, and for TeX, MetaFont and related programs.
-docfiles size=3785
+longdesc These files record details of problems reported in the
+longdesc 'Computers and Typesetting' series of books, for the Computer
+longdesc Modern fonts, and for TeX, MetaFont and related programs.
+docfiles size=3792
texmf-dist/doc/generic/knuth/errata/cm85.bug
texmf-dist/doc/generic/knuth/errata/errata.pdf
texmf-dist/doc/generic/knuth/errata/errorlog.pdf
@@ -84517,7 +92802,7 @@ docfiles size=3785
texmf-dist/doc/generic/knuth/web/tangle.pdf
texmf-dist/doc/generic/knuth/web/weave.pdf
texmf-dist/doc/generic/knuth/web/webman.pdf
-srcfiles size=156
+srcfiles size=157
texmf-dist/source/generic/knuth/errata/errata.eight
texmf-dist/source/generic/knuth/errata/errata.eleven
texmf-dist/source/generic/knuth/errata/errata.five
@@ -84535,7 +92820,65 @@ srcfiles size=156
texmf-dist/source/generic/knuth/tex/glue.web
texmf-dist/source/generic/knuth/web/webman.tex
catalogue-ctan /systems/knuth/dist/errata
-catalogue-date 2012-06-11 20:26:30 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
+catalogue-license knuth
+
+name knuth-lib
+category Package
+revision 33039
+shortdesc A small library of MetaFont sources.
+longdesc A collection of miscellaneous MetaFont source, including the
+longdesc means to generate the logo font that is used for MetaFont and
+longdesc MetaPost.
+runfiles size=11
+ texmf-dist/fonts/source/public/knuth-lib/grayf.mf
+ texmf-dist/fonts/source/public/knuth-lib/manfnt.mf
+ texmf-dist/fonts/source/public/knuth-lib/slant.mf
+ texmf-dist/fonts/tfm/public/knuth-lib/manfnt.tfm
+ texmf-dist/tex/generic/knuth-lib/null.tex
+catalogue-ctan /systems/knuth/dist/lib
+catalogue-date 2014-02-26 23:03:13 +0100
+catalogue-license knuth
+
+name knuth-local
+category Package
+revision 33147
+shortdesc Knuth's local information.
+longdesc A collection of experimental programs and developments based
+longdesc on, or complementary to, the matter in his distribution
+longdesc directories.
+runfiles size=50
+ texmf-dist/fonts/source/public/knuth-local/black.mf
+ texmf-dist/fonts/source/public/knuth-local/blackaps.mf
+ texmf-dist/fonts/source/public/knuth-local/blackimagen.mf
+ texmf-dist/fonts/source/public/knuth-local/blacklino.mf
+ texmf-dist/fonts/source/public/knuth-local/blacklj.mf
+ texmf-dist/fonts/source/public/knuth-local/domino.mf
+ texmf-dist/fonts/source/public/knuth-local/gray.mf
+ texmf-dist/fonts/source/public/knuth-local/grayaps.mf
+ texmf-dist/fonts/source/public/knuth-local/grayimagen.mf
+ texmf-dist/fonts/source/public/knuth-local/grayimagen3.mf
+ texmf-dist/fonts/source/public/knuth-local/grayimagenlight.mf
+ texmf-dist/fonts/source/public/knuth-local/graylj.mf
+ texmf-dist/fonts/source/public/knuth-local/local.mf
+ texmf-dist/fonts/source/public/knuth-local/logod10.mf
+ texmf-dist/fonts/source/public/knuth-local/logosl9.mf
+ texmf-dist/fonts/source/public/knuth-local/mfman.mf
+ texmf-dist/fonts/source/public/knuth-local/oneone.mf
+ texmf-dist/fonts/source/public/knuth-local/random.mf
+ texmf-dist/fonts/source/public/knuth-local/slantaps4.mf
+ texmf-dist/fonts/source/public/knuth-local/slantimagen4.mf
+ texmf-dist/fonts/source/public/knuth-local/slantimagen6.mf
+ texmf-dist/fonts/source/public/knuth-local/slantlino4.mf
+ texmf-dist/fonts/source/public/knuth-local/slantlj4.mf
+ texmf-dist/fonts/source/public/knuth-local/snfont.mf
+ texmf-dist/fonts/tfm/public/knuth-local/domino.tfm
+ texmf-dist/fonts/tfm/public/knuth-local/random.tfm
+ texmf-dist/fonts/tfm/public/knuth-local/snfont.tfm
+ texmf-dist/mft/knuth-local/e.mft
+ texmf-dist/tex/plain/knuth-local/xepsf.tex
+catalogue-ctan /systems/knuth/local
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license knuth
name knuthotherfonts
@@ -84577,7 +92920,7 @@ catalogue-version v0.5
name koma-script
category TLCore
-revision 29774
+revision 32489
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
@@ -84593,7 +92936,7 @@ longdesc standard classes. Since every package has its own version
longdesc number, the version number quoted only refers to the version of
longdesc scrbook, scrreprt, scrartcl, scrlttr2 and typearea. These are
longdesc the main parts of the bundle.
-runfiles size=2733
+runfiles size=3229
texmf-dist/doc/latex/koma-script/INSTALL.txt
texmf-dist/doc/latex/koma-script/INSTALLD.txt
texmf-dist/doc/latex/koma-script/README
@@ -84609,12 +92952,17 @@ runfiles size=2733
texmf-dist/doc/latex/koma-script/scrbase.html
texmf-dist/doc/latex/koma-script/scrbook.html
texmf-dist/doc/latex/koma-script/scrdate.html
+ texmf-dist/doc/latex/koma-script/scrextend.html
texmf-dist/doc/latex/koma-script/scrguide.html
texmf-dist/doc/latex/koma-script/scrguide.pdf
texmf-dist/doc/latex/koma-script/scrguien.html
texmf-dist/doc/latex/koma-script/scrguien.pdf
+ texmf-dist/doc/latex/koma-script/scrhack.html
texmf-dist/doc/latex/koma-script/scrhack.pdf
texmf-dist/doc/latex/koma-script/scrjura.pdf
+ texmf-dist/doc/latex/koma-script/scrlayer-notecolumn.html
+ texmf-dist/doc/latex/koma-script/scrlayer-scrpage.html
+ texmf-dist/doc/latex/koma-script/scrlayer.html
texmf-dist/doc/latex/koma-script/scrlfile.html
texmf-dist/doc/latex/koma-script/scrlttr2.html
texmf-dist/doc/latex/koma-script/scrpage2.html
@@ -84646,6 +92994,8 @@ runfiles size=2733
texmf-dist/source/latex/koma-script/doc/english/common-14.tex
texmf-dist/source/latex/koma-script/doc/english/common-15.tex
texmf-dist/source/latex/koma-script/doc/english/common-2.tex
+ texmf-dist/source/latex/koma-script/doc/english/common-20.tex
+ texmf-dist/source/latex/koma-script/doc/english/common-21.tex
texmf-dist/source/latex/koma-script/doc/english/common-3.tex
texmf-dist/source/latex/koma-script/doc/english/common-4.tex
texmf-dist/source/latex/koma-script/doc/english/common-5.tex
@@ -84668,6 +93018,10 @@ runfiles size=2733
texmf-dist/source/latex/koma-script/doc/english/scrdatetime.tex
texmf-dist/source/latex/koma-script/doc/english/scrextend.tex
texmf-dist/source/latex/koma-script/doc/english/scrhack.tex
+ texmf-dist/source/latex/koma-script/doc/english/scrlayer-notecolumn.tex
+ texmf-dist/source/latex/koma-script/doc/english/scrlayer-scrpage-experts.tex
+ texmf-dist/source/latex/koma-script/doc/english/scrlayer-scrpage.tex
+ texmf-dist/source/latex/koma-script/doc/english/scrlayer.tex
texmf-dist/source/latex/koma-script/doc/english/scrlfile.tex
texmf-dist/source/latex/koma-script/doc/english/scrlttr2-experts.tex
texmf-dist/source/latex/koma-script/doc/english/scrlttr2.tex
@@ -84692,6 +93046,8 @@ runfiles size=2733
texmf-dist/source/latex/koma-script/doc/ngerman/common-14.tex
texmf-dist/source/latex/koma-script/doc/ngerman/common-15.tex
texmf-dist/source/latex/koma-script/doc/ngerman/common-2.tex
+ texmf-dist/source/latex/koma-script/doc/ngerman/common-20.tex
+ texmf-dist/source/latex/koma-script/doc/ngerman/common-21.tex
texmf-dist/source/latex/koma-script/doc/ngerman/common-3.tex
texmf-dist/source/latex/koma-script/doc/ngerman/common-4.tex
texmf-dist/source/latex/koma-script/doc/ngerman/common-5.tex
@@ -84713,6 +93069,11 @@ runfiles size=2733
texmf-dist/source/latex/koma-script/doc/ngerman/scrdatetime.tex
texmf-dist/source/latex/koma-script/doc/ngerman/scrextend.tex
texmf-dist/source/latex/koma-script/doc/ngerman/scrhack.tex
+ texmf-dist/source/latex/koma-script/doc/ngerman/scrlayer-notecolumn-example.tex
+ texmf-dist/source/latex/koma-script/doc/ngerman/scrlayer-notecolumn.tex
+ texmf-dist/source/latex/koma-script/doc/ngerman/scrlayer-scrpage-experts.tex
+ texmf-dist/source/latex/koma-script/doc/ngerman/scrlayer-scrpage.tex
+ texmf-dist/source/latex/koma-script/doc/ngerman/scrlayer.tex
texmf-dist/source/latex/koma-script/doc/ngerman/scrlfile.tex
texmf-dist/source/latex/koma-script/doc/ngerman/scrlttr2-experts.tex
texmf-dist/source/latex/koma-script/doc/ngerman/scrlttr2.tex
@@ -84728,42 +93089,41 @@ runfiles size=2733
texmf-dist/source/latex/koma-script/doc/scrguide.ist
texmf-dist/source/latex/koma-script/japanlco.dtx
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/scrdocstrip.tex
texmf-dist/source/latex/koma-script/scrextend.dtx
texmf-dist/source/latex/koma-script/scrhack.dtx
texmf-dist/source/latex/koma-script/scrjura.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/scrkernel-basics.dtx
+ texmf-dist/source/latex/koma-script/scrkernel-bibliography.dtx
+ texmf-dist/source/latex/koma-script/scrkernel-circularletters.dtx
+ texmf-dist/source/latex/koma-script/scrkernel-compatibility.dtx
+ texmf-dist/source/latex/koma-script/scrkernel-floats.dtx
+ texmf-dist/source/latex/koma-script/scrkernel-fonts.dtx
+ texmf-dist/source/latex/koma-script/scrkernel-footnotes.dtx
+ texmf-dist/source/latex/koma-script/scrkernel-index.dtx
+ texmf-dist/source/latex/koma-script/scrkernel-language.dtx
+ texmf-dist/source/latex/koma-script/scrkernel-letterclassoptions.dtx
+ texmf-dist/source/latex/koma-script/scrkernel-listsandtabulars.dtx
+ texmf-dist/source/latex/koma-script/scrkernel-listsof.dtx
+ texmf-dist/source/latex/koma-script/scrkernel-miscellaneous.dtx
+ texmf-dist/source/latex/koma-script/scrkernel-notepaper.dtx
+ texmf-dist/source/latex/koma-script/scrkernel-pagestyles.dtx
+ texmf-dist/source/latex/koma-script/scrkernel-paragraphs.dtx
+ texmf-dist/source/latex/koma-script/scrkernel-pseudolengths.dtx
+ texmf-dist/source/latex/koma-script/scrkernel-sections.dtx
+ texmf-dist/source/latex/koma-script/scrkernel-title.dtx
+ texmf-dist/source/latex/koma-script/scrkernel-typearea.dtx
+ texmf-dist/source/latex/koma-script/scrkernel-variables.dtx
+ texmf-dist/source/latex/koma-script/scrkernel-version.dtx
+ texmf-dist/source/latex/koma-script/scrlayer-notecolumn.dtx
+ texmf-dist/source/latex/koma-script/scrlayer-scrpage.dtx
+ texmf-dist/source/latex/koma-script/scrlayer.dtx
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
@@ -84800,10 +93160,11 @@ runfiles size=2733
texmf-dist/tex/latex/koma-script/scrhack.sty
texmf-dist/tex/latex/koma-script/scrjura.sty
texmf-dist/tex/latex/koma-script/scrkbase.sty
- texmf-dist/tex/latex/koma-script/scrlettr.cls
+ texmf-dist/tex/latex/koma-script/scrlayer-notecolumn.sty
+ texmf-dist/tex/latex/koma-script/scrlayer-scrpage.sty
+ texmf-dist/tex/latex/koma-script/scrlayer.sty
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/scrsize10pt.clo
@@ -84816,63 +93177,67 @@ runfiles size=2733
texmf-dist/tex/latex/koma-script/typearea.sty
texmf-dist/tex/latex/koma-script/visualize.lco
catalogue-ctan /macros/latex/contrib/koma-script
-catalogue-date 2013-02-07 17:36:02 +0100
+catalogue-date 2013-12-26 07:56:41 +0100
catalogue-license lppl
-catalogue-version 3.11b
+catalogue-version 3.12
name koma-script-examples
category Package
-revision 29940
+revision 34243
shortdesc Examples from the KOMA-Script book.
-longdesc This package contains some examples from the 4th edition of the
-longdesc book <<KOMA-Script--Eine Sammlung von Klassen und Paketen fur
-longdesc LaTeX2e>> by Markus Kohm and Jens-Uwe Morawski. There are no
-longdesc further descriptions of these examples.
-docfiles size=392
+longdesc This package contains some examples from the 5th edition of the
+longdesc book >>KOMA-Script<<, >>Eine Sammlung von Klassen und Paketen
+longdesc fur LaTeX2e<< by Markus Kohm, published by Lehmanns Media.
+longdesc There are no further descriptions of these examples.
+docfiles size=419
texmf-dist/doc/latex/koma-script-examples/Anhang-B/result/chapterthumbexample.pdf
texmf-dist/doc/latex/koma-script-examples/Anhang-B/source/chapterthumb.sty
texmf-dist/doc/latex/koma-script-examples/Anhang-B/source/chapterthumbexample.tex
texmf-dist/doc/latex/koma-script-examples/Anhang-C/result/floattrick.pdf
texmf-dist/doc/latex/koma-script-examples/Anhang-C/source/floattrick.tex
+ texmf-dist/doc/latex/koma-script-examples/Anhang-D/result/briefDIN.pdf
+ texmf-dist/doc/latex/koma-script-examples/Anhang-D/result/briefSN.pdf
+ texmf-dist/doc/latex/koma-script-examples/Anhang-D/result/briefbak3.pdf
+ texmf-dist/doc/latex/koma-script-examples/Anhang-D/result/briefdup.pdf
+ texmf-dist/doc/latex/koma-script-examples/Anhang-D/result/brieflft.pdf
+ texmf-dist/doc/latex/koma-script-examples/Anhang-D/result/brieflfu.pdf
+ texmf-dist/doc/latex/koma-script-examples/Anhang-D/result/briefnow.pdf
+ texmf-dist/doc/latex/koma-script-examples/Anhang-D/result/briefrag2.pdf
+ texmf-dist/doc/latex/koma-script-examples/Anhang-D/result/briefwbk.pdf
+ texmf-dist/doc/latex/koma-script-examples/Anhang-D/result/briefwbk2.pdf
+ texmf-dist/doc/latex/koma-script-examples/Anhang-D/result/briefwbt2.pdf
texmf-dist/doc/latex/koma-script-examples/Anhang-D/result/letter-nipponA.pdf
texmf-dist/doc/latex/koma-script-examples/Anhang-D/result/letter-nipponB.pdf
+ texmf-dist/doc/latex/koma-script-examples/Anhang-D/source/CaptainHook-1.pdf
+ texmf-dist/doc/latex/koma-script-examples/Anhang-D/source/SNslhead.lco
+ texmf-dist/doc/latex/koma-script-examples/Anhang-D/source/asymTypB.lco
+ texmf-dist/doc/latex/koma-script-examples/Anhang-D/source/briefDIN.tex
+ texmf-dist/doc/latex/koma-script-examples/Anhang-D/source/briefSN.tex
+ texmf-dist/doc/latex/koma-script-examples/Anhang-D/source/briefbak3.tex
+ texmf-dist/doc/latex/koma-script-examples/Anhang-D/source/briefdup.tex
+ texmf-dist/doc/latex/koma-script-examples/Anhang-D/source/brieflft.tex
+ texmf-dist/doc/latex/koma-script-examples/Anhang-D/source/brieflfu.tex
+ texmf-dist/doc/latex/koma-script-examples/Anhang-D/source/briefnow.tex
+ texmf-dist/doc/latex/koma-script-examples/Anhang-D/source/briefrag2.tex
+ texmf-dist/doc/latex/koma-script-examples/Anhang-D/source/brieftemplate.tex
+ texmf-dist/doc/latex/koma-script-examples/Anhang-D/source/briefwbk.tex
+ texmf-dist/doc/latex/koma-script-examples/Anhang-D/source/briefwbk2.tex
+ texmf-dist/doc/latex/koma-script-examples/Anhang-D/source/briefwbt2.tex
+ texmf-dist/doc/latex/koma-script-examples/Anhang-D/source/dateup.lco
texmf-dist/doc/latex/koma-script-examples/Anhang-D/source/letter-nipponA.tex
texmf-dist/doc/latex/koma-script-examples/Anhang-D/source/letter-nipponB.tex
- texmf-dist/doc/latex/koma-script-examples/Anhang-E/result/briefDIN.pdf
- texmf-dist/doc/latex/koma-script-examples/Anhang-E/result/briefSN.pdf
- texmf-dist/doc/latex/koma-script-examples/Anhang-E/result/briefbak3.pdf
- texmf-dist/doc/latex/koma-script-examples/Anhang-E/result/briefdup.pdf
- texmf-dist/doc/latex/koma-script-examples/Anhang-E/result/brieflft.pdf
- texmf-dist/doc/latex/koma-script-examples/Anhang-E/result/brieflfu.pdf
- texmf-dist/doc/latex/koma-script-examples/Anhang-E/result/briefnow.pdf
- texmf-dist/doc/latex/koma-script-examples/Anhang-E/result/briefrag2.pdf
- texmf-dist/doc/latex/koma-script-examples/Anhang-E/result/briefwbk.pdf
- texmf-dist/doc/latex/koma-script-examples/Anhang-E/result/briefwbk2.pdf
- texmf-dist/doc/latex/koma-script-examples/Anhang-E/result/briefwbt2.pdf
- texmf-dist/doc/latex/koma-script-examples/Anhang-E/source/CaptainHook-1.pdf
- texmf-dist/doc/latex/koma-script-examples/Anhang-E/source/SNslhead.lco
- texmf-dist/doc/latex/koma-script-examples/Anhang-E/source/asymTypB.lco
- texmf-dist/doc/latex/koma-script-examples/Anhang-E/source/briefDIN.tex
- texmf-dist/doc/latex/koma-script-examples/Anhang-E/source/briefSN.tex
- texmf-dist/doc/latex/koma-script-examples/Anhang-E/source/briefbak3.tex
- texmf-dist/doc/latex/koma-script-examples/Anhang-E/source/briefdup.tex
- texmf-dist/doc/latex/koma-script-examples/Anhang-E/source/brieflft.tex
- texmf-dist/doc/latex/koma-script-examples/Anhang-E/source/brieflfu.tex
- texmf-dist/doc/latex/koma-script-examples/Anhang-E/source/briefnow.tex
- texmf-dist/doc/latex/koma-script-examples/Anhang-E/source/briefrag2.tex
- texmf-dist/doc/latex/koma-script-examples/Anhang-E/source/brieftemplate.tex
- texmf-dist/doc/latex/koma-script-examples/Anhang-E/source/briefwbk.tex
- texmf-dist/doc/latex/koma-script-examples/Anhang-E/source/briefwbk2.tex
- texmf-dist/doc/latex/koma-script-examples/Anhang-E/source/briefwbt2.tex
- texmf-dist/doc/latex/koma-script-examples/Anhang-E/source/dateup.lco
- texmf-dist/doc/latex/koma-script-examples/Anhang-E/source/nowindow.lco
- texmf-dist/doc/latex/koma-script-examples/Anhang-F/result/letter-label.pdf
- texmf-dist/doc/latex/koma-script-examples/Anhang-F/source/labelbasic.lco
- texmf-dist/doc/latex/koma-script-examples/Anhang-F/source/letter-label.tex
- texmf-dist/doc/latex/koma-script-examples/Anhang-F/source/settleford600label.lco
- texmf-dist/doc/latex/koma-script-examples/Kapitel-14/result/remarkexample.pdf
- texmf-dist/doc/latex/koma-script-examples/Kapitel-14/source/remarkbox.sty
- texmf-dist/doc/latex/koma-script-examples/Kapitel-14/source/remarkexample.tex
+ texmf-dist/doc/latex/koma-script-examples/Anhang-D/source/nowindow.lco
+ texmf-dist/doc/latex/koma-script-examples/Anhang-E/result/letter-label.pdf
+ texmf-dist/doc/latex/koma-script-examples/Anhang-E/source/labelbasic.lco
+ texmf-dist/doc/latex/koma-script-examples/Anhang-E/source/letter-label.tex
+ texmf-dist/doc/latex/koma-script-examples/Anhang-E/source/settleford600label.lco
+ texmf-dist/doc/latex/koma-script-examples/Kapitel-11/result/scrjuraexample.pdf
+ texmf-dist/doc/latex/koma-script-examples/Kapitel-11/source/scrjuraexample.tex
+ texmf-dist/doc/latex/koma-script-examples/Kapitel-15/result/remarkexample.pdf
+ texmf-dist/doc/latex/koma-script-examples/Kapitel-15/source/remarkbox.sty
+ texmf-dist/doc/latex/koma-script-examples/Kapitel-15/source/remarkexample.tex
+ texmf-dist/doc/latex/koma-script-examples/Kapitel-19/result/scrlayer-notecolumn-example.pdf
+ texmf-dist/doc/latex/koma-script-examples/Kapitel-19/source/scrlayer-notecolumn-example.tex
texmf-dist/doc/latex/koma-script-examples/Kapitel-4/result/letter-0.pdf
texmf-dist/doc/latex/koma-script-examples/Kapitel-4/result/letter-1.pdf
texmf-dist/doc/latex/koma-script-examples/Kapitel-4/result/letter-10.pdf
@@ -84927,8 +93292,8 @@ docfiles size=392
texmf-dist/doc/latex/koma-script-examples/LEGAL_DE.txt
texmf-dist/doc/latex/koma-script-examples/LIESMICH.txt details="German Readme" language="de"
texmf-dist/doc/latex/koma-script-examples/README details="English Readme" language="en"
-catalogue-ctan /info/examples/KOMA-Script-4
-catalogue-date 2013-04-11 22:56:41 +0200
+catalogue-ctan /info/examples/KOMA-Script-5
+catalogue-date 2014-05-23 11:15:36 +0200
catalogue-license lppl
name koma-script-sfs
@@ -84952,9 +93317,347 @@ catalogue-date 2012-05-08 12:20:07 +0200
catalogue-license lppl
catalogue-version 1.0
+name kotex-oblivoir
+category Package
+revision 34243
+shortdesc A LaTeX document class for typesetting Korean documents.
+longdesc The class is based on memoir, and is adapted to typesetting
+longdesc Korean documents. The bundle (of class and associated packages)
+longdesc belongs to the ko.TeX bundle.
+depend memoir
+depend kotex-utf
+docfiles size=83
+ texmf-dist/doc/latex/kotex-oblivoir/ChangeLog
+ texmf-dist/doc/latex/kotex-oblivoir/README details="Readme"
+ texmf-dist/doc/latex/kotex-oblivoir/README.md
+ texmf-dist/doc/latex/kotex-oblivoir/oblivoir-simpledoc.pdf details="Package documentation"
+ texmf-dist/doc/latex/kotex-oblivoir/oblivoir-simpledoc.tex
+ texmf-dist/doc/latex/kotex-oblivoir/oblivoir-test.tex
+runfiles size=68
+ texmf-dist/tex/latex/kotex-oblivoir/memhangul-ucs/10_5.sty
+ texmf-dist/tex/latex/kotex-oblivoir/memhangul-ucs/fapapersize.sty
+ texmf-dist/tex/latex/kotex-oblivoir/memhangul-ucs/hfontsel.sty
+ texmf-dist/tex/latex/kotex-oblivoir/memhangul-ucs/hfontspec.nanum
+ texmf-dist/tex/latex/kotex-oblivoir/memhangul-ucs/memhangul-common.sty
+ texmf-dist/tex/latex/kotex-oblivoir/memhangul-ucs/memhangul-patch.sty
+ texmf-dist/tex/latex/kotex-oblivoir/memhangul-ucs/memhangul-ucs.sty
+ texmf-dist/tex/latex/kotex-oblivoir/memhangul-ucs/memucs-enumerate.sty
+ texmf-dist/tex/latex/kotex-oblivoir/memhangul-ucs/memucs-gremph.sty
+ texmf-dist/tex/latex/kotex-oblivoir/memhangul-ucs/memucs-interword.sty
+ texmf-dist/tex/latex/kotex-oblivoir/memhangul-ucs/memucs-setspace.sty
+ texmf-dist/tex/latex/kotex-oblivoir/memhangul-ucs/nanumfontsel.sty
+ texmf-dist/tex/latex/kotex-oblivoir/memhangul-ucs/ob-koreanappendix.sty
+ texmf-dist/tex/latex/kotex-oblivoir/memhangul-ucs/ob-nokoreanappendix.sty
+ texmf-dist/tex/latex/kotex-oblivoir/memhangul-ucs/ob-toclof.sty
+ texmf-dist/tex/latex/kotex-oblivoir/memhangul-x/luatexko-xobfont.sty
+ texmf-dist/tex/latex/kotex-oblivoir/memhangul-x/memhangul-x.sty
+ texmf-dist/tex/latex/kotex-oblivoir/memhangul-x/memucs-interword-x.sty
+ texmf-dist/tex/latex/kotex-oblivoir/memhangul-x/xetexko-var.sty
+ texmf-dist/tex/latex/kotex-oblivoir/memhangul-x/xetexko-xobfont.sty
+ texmf-dist/tex/latex/kotex-oblivoir/memhangul-x/xob-amssymb.sty
+ texmf-dist/tex/latex/kotex-oblivoir/memhangul-x/xob-dotemph.sty
+ texmf-dist/tex/latex/kotex-oblivoir/memhangul-x/xob-hyper.sty
+ texmf-dist/tex/latex/kotex-oblivoir/memhangul-x/xob-paralist.sty
+ texmf-dist/tex/latex/kotex-oblivoir/oblivoir-base.cls
+ texmf-dist/tex/latex/kotex-oblivoir/oblivoir-xlua.cls
+ texmf-dist/tex/latex/kotex-oblivoir/oblivoir.cls
+ texmf-dist/tex/latex/kotex-oblivoir/xoblivoir.cls
+catalogue-ctan /language/korean/kotex-oblivoir
+catalogue-date 2014-05-23 15:55:46 +0200
+catalogue-license lppl
+catalogue-version 2.0.1
+
+name kotex-plain
+category Package
+revision 32104
+shortdesc Macros for typesetting Korean under Plain TeX.
+longdesc The package provides macros for typesetting Hangul, the native
+longdesc alphabet of the Korean language, using plain *TeX. Input Korean
+longdesc text should be encoded in UTF-8. The package is belongs to the
+longdesc ko.TeX bundle.
+docfiles size=2
+ texmf-dist/doc/plain/kotex-plain/ChangeLog
+ texmf-dist/doc/plain/kotex-plain/README details="Readme"
+runfiles size=11
+ texmf-dist/tex/plain/kotex-plain/hangulcweb.tex
+ texmf-dist/tex/plain/kotex-plain/kotexplain.tex
+ texmf-dist/tex/plain/kotex-plain/kotexutf-core.tex
+ texmf-dist/tex/plain/kotex-plain/kotexutf.tex
+catalogue-ctan /language/korean/kotex-plain
+catalogue-date 2014-02-26 23:03:13 +0100
+catalogue-license lppl1.3
+
+name kotex-utf
+category Package
+revision 34243
+shortdesc Typeset Hangul, coded in UTF-8.
+longdesc The package typesets Hangul, which is the native alphabet of
+longdesc the Korean language; input Korean text should be encoded in
+longdesc UTF-8. The bundle (of class and associated packages) belongs to
+longdesc the ko.TeX bundle.
+depend cjk-ko
+docfiles size=2067
+ texmf-dist/doc/latex/kotex-utf/ChangeLog
+ texmf-dist/doc/latex/kotex-utf/README details="Readme"
+ texmf-dist/doc/latex/kotex-utf/README.md
+ texmf-dist/doc/latex/kotex-utf/fig/allowbreak-dhucs.pdf
+ texmf-dist/doc/latex/kotex-utf/fig/fntexp.pdf
+ texmf-dist/doc/latex/kotex-utf/fig/fntnormal.pdf
+ texmf-dist/doc/latex/kotex-utf/fig/histkotex.jpg
+ texmf-dist/doc/latex/kotex-utf/fig/linebreaktest.pdf
+ texmf-dist/doc/latex/kotex-utf/fig/testdhucsallowbreak.pdf
+ texmf-dist/doc/latex/kotex-utf/kotexdoc.pdf
+ texmf-dist/doc/latex/kotex-utf/kotexdoc.tex
+ texmf-dist/doc/latex/kotex-utf/sample-finemath-setup.tex
+ texmf-dist/doc/latex/kotex-utf/yettext.tex
+ texmf-dist/doc/latex/kotex-utf/yettext.txt
+runfiles size=38
+ texmf-dist/tex/latex/kotex-utf/contrib/dhucs-cmap.sty
+ texmf-dist/tex/latex/kotex-utf/contrib/dhucs-enumerate.sty
+ texmf-dist/tex/latex/kotex-utf/contrib/dhucs-enumitem.sty
+ texmf-dist/tex/latex/kotex-utf/contrib/dhucs-gremph.sty
+ texmf-dist/tex/latex/kotex-utf/contrib/dhucs-interword.sty
+ texmf-dist/tex/latex/kotex-utf/contrib/dhucs-paralist.sty
+ texmf-dist/tex/latex/kotex-utf/contrib/dhucs-sectsty.sty
+ texmf-dist/tex/latex/kotex-utf/contrib/dhucs-setspace.sty
+ texmf-dist/tex/latex/kotex-utf/contrib/dhucs-trivcj.sty
+ texmf-dist/tex/latex/kotex-utf/contrib/dhucs-ucshyper.sty
+ texmf-dist/tex/latex/kotex-utf/contrib/dhucsfn.sty
+ texmf-dist/tex/latex/kotex-utf/contrib/kotex-logo.sty
+ texmf-dist/tex/latex/kotex-utf/contrib/kotex-varioref.sty
+ texmf-dist/tex/latex/kotex-utf/dhucs-nanumfont.sty
+ texmf-dist/tex/latex/kotex-utf/dhucs.sty
+ texmf-dist/tex/latex/kotex-utf/hfontspec.default
+ texmf-dist/tex/latex/kotex-utf/kosections-utf.sty
+ texmf-dist/tex/latex/kotex-utf/kotex.cfg
+ texmf-dist/tex/latex/kotex-utf/kotexutf.sty
+ texmf-dist/tex/latex/kotex-utf/lucenc.dfu
+ texmf-dist/tex/latex/kotex-utf/lucuhcmj.fd
+ texmf-dist/tex/latex/kotex-utf/tex4ht/dhucs.4ht
+ texmf-dist/tex/latex/kotex-utf/tex4ht/dhucs.cfg
+ texmf-dist/tex/latex/kotex-utf/tex4ht/kosections-utf.4ht
+catalogue-ctan /language/korean/kotex-utf
+catalogue-date 2014-02-26 23:03:13 +0100
+catalogue-license lppl1.3
+catalogue-version 2.0.1
+
+name kotex-utils
+category Package
+revision 32101
+shortdesc Utility scripts and support files for typesetting Korean.
+longdesc The bundle provides scripts and support files for index
+longdesc generation in Korean language typesetting. The files belong to
+longdesc the ko.TeX bundle.
+depend kotex-utf
+depend kotex-utils.ARCH
+docfiles size=150
+ texmf-dist/doc/latex/kotex-utils/ChangeLog
+ texmf-dist/doc/latex/kotex-utils/README details="Readme"
+ texmf-dist/doc/latex/kotex-utils/utf8-lang.xdy
+ texmf-dist/doc/latex/kotex-utils/utf8.xdy
+runfiles size=74
+ texmf-dist/makeindex/kotex-utils/kotex.ist
+ texmf-dist/makeindex/kotex-utils/memucs-manual.ist
+ texmf-dist/scripts/kotex-utils/jamo-normalize.pl
+ texmf-dist/scripts/kotex-utils/komkindex.pl
+ texmf-dist/scripts/kotex-utils/ttf2kotexfont.pl
+catalogue-ctan /language/korean/kotex-utils
+catalogue-date 2014-02-26 23:03:13 +0100
+catalogue-license lppl
+catalogue-version 2.0.1
+
+name kotex-utils.alpha-linux
+category Package
+revision 32101
+shortdesc alpha-linux files of kotex-utils
+binfiles arch=alpha-linux size=3
+ bin/alpha-linux/jamo-normalize
+ bin/alpha-linux/komkindex
+ bin/alpha-linux/ttf2kotexfont
+
+name kotex-utils.amd64-freebsd
+category Package
+revision 32101
+shortdesc amd64-freebsd files of kotex-utils
+binfiles arch=amd64-freebsd size=3
+ bin/amd64-freebsd/jamo-normalize
+ bin/amd64-freebsd/komkindex
+ bin/amd64-freebsd/ttf2kotexfont
+
+name kotex-utils.amd64-kfreebsd
+category Package
+revision 32101
+shortdesc amd64-kfreebsd files of kotex-utils
+binfiles arch=amd64-kfreebsd size=3
+ bin/amd64-kfreebsd/jamo-normalize
+ bin/amd64-kfreebsd/komkindex
+ bin/amd64-kfreebsd/ttf2kotexfont
+
+name kotex-utils.amd64-netbsd
+category Package
+revision 32101
+shortdesc amd64-netbsd files of kotex-utils
+binfiles arch=amd64-netbsd size=3
+ bin/amd64-netbsd/jamo-normalize
+ bin/amd64-netbsd/komkindex
+ bin/amd64-netbsd/ttf2kotexfont
+
+name kotex-utils.armel-linux
+category Package
+revision 32101
+shortdesc armel-linux files of kotex-utils
+binfiles arch=armel-linux size=3
+ bin/armel-linux/jamo-normalize
+ bin/armel-linux/komkindex
+ bin/armel-linux/ttf2kotexfont
+
+name kotex-utils.armhf-linux
+category Package
+revision 32101
+shortdesc armhf-linux files of kotex-utils
+binfiles arch=armhf-linux size=3
+ bin/armhf-linux/jamo-normalize
+ bin/armhf-linux/komkindex
+ bin/armhf-linux/ttf2kotexfont
+
+name kotex-utils.i386-cygwin
+category Package
+revision 32101
+shortdesc i386-cygwin files of kotex-utils
+binfiles arch=i386-cygwin size=3
+ bin/i386-cygwin/jamo-normalize
+ bin/i386-cygwin/komkindex
+ bin/i386-cygwin/ttf2kotexfont
+
+name kotex-utils.i386-freebsd
+category Package
+revision 32101
+shortdesc i386-freebsd files of kotex-utils
+binfiles arch=i386-freebsd size=3
+ bin/i386-freebsd/jamo-normalize
+ bin/i386-freebsd/komkindex
+ bin/i386-freebsd/ttf2kotexfont
+
+name kotex-utils.i386-kfreebsd
+category Package
+revision 32101
+shortdesc i386-kfreebsd files of kotex-utils
+binfiles arch=i386-kfreebsd size=3
+ bin/i386-kfreebsd/jamo-normalize
+ bin/i386-kfreebsd/komkindex
+ bin/i386-kfreebsd/ttf2kotexfont
+
+name kotex-utils.i386-linux
+category Package
+revision 32101
+shortdesc i386-linux files of kotex-utils
+binfiles arch=i386-linux size=3
+ bin/i386-linux/jamo-normalize
+ bin/i386-linux/komkindex
+ bin/i386-linux/ttf2kotexfont
+
+name kotex-utils.i386-netbsd
+category Package
+revision 32101
+shortdesc i386-netbsd files of kotex-utils
+binfiles arch=i386-netbsd size=3
+ bin/i386-netbsd/jamo-normalize
+ bin/i386-netbsd/komkindex
+ bin/i386-netbsd/ttf2kotexfont
+
+name kotex-utils.i386-solaris
+category Package
+revision 32101
+shortdesc i386-solaris files of kotex-utils
+binfiles arch=i386-solaris size=3
+ bin/i386-solaris/jamo-normalize
+ bin/i386-solaris/komkindex
+ bin/i386-solaris/ttf2kotexfont
+
+name kotex-utils.mipsel-linux
+category Package
+revision 32101
+shortdesc mipsel-linux files of kotex-utils
+binfiles arch=mipsel-linux size=3
+ bin/mipsel-linux/jamo-normalize
+ bin/mipsel-linux/komkindex
+ bin/mipsel-linux/ttf2kotexfont
+
+name kotex-utils.powerpc-linux
+category Package
+revision 32101
+shortdesc powerpc-linux files of kotex-utils
+binfiles arch=powerpc-linux size=3
+ bin/powerpc-linux/jamo-normalize
+ bin/powerpc-linux/komkindex
+ bin/powerpc-linux/ttf2kotexfont
+
+name kotex-utils.sparc-solaris
+category Package
+revision 32101
+shortdesc sparc-solaris files of kotex-utils
+binfiles arch=sparc-solaris size=3
+ bin/sparc-solaris/jamo-normalize
+ bin/sparc-solaris/komkindex
+ bin/sparc-solaris/ttf2kotexfont
+
+name kotex-utils.universal-darwin
+category Package
+revision 32101
+shortdesc universal-darwin files of kotex-utils
+binfiles arch=universal-darwin size=3
+ bin/universal-darwin/jamo-normalize
+ bin/universal-darwin/komkindex
+ bin/universal-darwin/ttf2kotexfont
+
+name kotex-utils.win32
+category Package
+revision 32101
+shortdesc win32 files of kotex-utils
+binfiles arch=win32 size=3
+ bin/win32/jamo-normalize.exe
+ bin/win32/komkindex.exe
+ bin/win32/ttf2kotexfont.exe
+
+name kotex-utils.x86_64-cygwin
+category Package
+revision 33557
+shortdesc x86_64-cygwin files of kotex-utils
+binfiles arch=x86_64-cygwin size=3
+ bin/x86_64-cygwin/jamo-normalize
+ bin/x86_64-cygwin/komkindex
+ bin/x86_64-cygwin/ttf2kotexfont
+
+name kotex-utils.x86_64-darwin
+category Package
+revision 32101
+shortdesc x86_64-darwin files of kotex-utils
+binfiles arch=x86_64-darwin size=3
+ bin/x86_64-darwin/jamo-normalize
+ bin/x86_64-darwin/komkindex
+ bin/x86_64-darwin/ttf2kotexfont
+
+name kotex-utils.x86_64-linux
+category Package
+revision 32101
+shortdesc x86_64-linux files of kotex-utils
+binfiles arch=x86_64-linux size=3
+ bin/x86_64-linux/jamo-normalize
+ bin/x86_64-linux/komkindex
+ bin/x86_64-linux/ttf2kotexfont
+
+name kotex-utils.x86_64-solaris
+category Package
+revision 32101
+shortdesc x86_64-solaris files of kotex-utils
+binfiles arch=x86_64-solaris size=3
+ bin/x86_64-solaris/jamo-normalize
+ bin/x86_64-solaris/komkindex
+ bin/x86_64-solaris/ttf2kotexfont
+
name kpathsea
category TLCore
-revision 30218
+revision 34145
shortdesc Path searching library for TeX-related files.
longdesc Kpathsea is a library and utility programs which provide path
longdesc searching facilities for TeX file types, including the self-
@@ -84963,7 +93666,7 @@ longdesc top of a general search mechanism. It is not distributed
longdesc separately, but rather is released and maintained as part of
longdesc the TeX live sources.
depend kpathsea.ARCH
-docfiles size=566
+docfiles size=537
texmf-dist/doc/info/dir
texmf-dist/doc/info/kpathsea.info
texmf-dist/doc/info/tds.info
@@ -85032,7 +93735,7 @@ catalogue-license lgpl
name kpathsea.alpha-linux
category TLCore
-revision 29891
+revision 33553
shortdesc alpha-linux files of kpathsea
binfiles arch=alpha-linux size=45
bin/alpha-linux/kpseaccess
@@ -85050,7 +93753,7 @@ binfiles arch=alpha-linux size=45
name kpathsea.amd64-freebsd
category TLCore
-revision 29874
+revision 33488
shortdesc amd64-freebsd files of kpathsea
binfiles arch=amd64-freebsd size=39
bin/amd64-freebsd/kpseaccess
@@ -85068,7 +93771,7 @@ binfiles arch=amd64-freebsd size=39
name kpathsea.amd64-kfreebsd
category TLCore
-revision 30655
+revision 33864
shortdesc amd64-kfreebsd files of kpathsea
binfiles arch=amd64-kfreebsd size=39
bin/amd64-kfreebsd/kpseaccess
@@ -85086,7 +93789,7 @@ binfiles arch=amd64-kfreebsd size=39
name kpathsea.amd64-netbsd
category TLCore
-revision 30660
+revision 33726
shortdesc amd64-netbsd files of kpathsea
binfiles arch=amd64-netbsd size=39
bin/amd64-netbsd/kpseaccess
@@ -85104,7 +93807,7 @@ binfiles arch=amd64-netbsd size=39
name kpathsea.armel-linux
category TLCore
-revision 29888
+revision 33916
shortdesc armel-linux files of kpathsea
binfiles arch=armel-linux size=36
bin/armel-linux/kpseaccess
@@ -85122,7 +93825,7 @@ binfiles arch=armel-linux size=36
name kpathsea.armhf-linux
category TLCore
-revision 30443
+revision 34125
shortdesc armhf-linux files of kpathsea
binfiles arch=armhf-linux size=35
bin/armhf-linux/kpseaccess
@@ -85140,9 +93843,9 @@ binfiles arch=armhf-linux size=35
name kpathsea.i386-cygwin
category TLCore
-revision 30526
+revision 34161
shortdesc i386-cygwin files of kpathsea
-binfiles arch=i386-cygwin size=37
+binfiles arch=i386-cygwin size=44
bin/i386-cygwin/kpseaccess.exe
bin/i386-cygwin/kpsereadlink.exe
bin/i386-cygwin/kpsestat.exe
@@ -85158,7 +93861,7 @@ binfiles arch=i386-cygwin size=37
name kpathsea.i386-freebsd
category TLCore
-revision 29874
+revision 33488
shortdesc i386-freebsd files of kpathsea
binfiles arch=i386-freebsd size=39
bin/i386-freebsd/kpseaccess
@@ -85176,9 +93879,9 @@ binfiles arch=i386-freebsd size=39
name kpathsea.i386-kfreebsd
category TLCore
-revision 30440
+revision 33864
shortdesc i386-kfreebsd files of kpathsea
-binfiles arch=i386-kfreebsd size=38
+binfiles arch=i386-kfreebsd size=39
bin/i386-kfreebsd/kpseaccess
bin/i386-kfreebsd/kpsereadlink
bin/i386-kfreebsd/kpsestat
@@ -85194,9 +93897,9 @@ binfiles arch=i386-kfreebsd size=38
name kpathsea.i386-linux
category TLCore
-revision 30088
+revision 33479
shortdesc i386-linux files of kpathsea
-binfiles arch=i386-linux size=38
+binfiles arch=i386-linux size=40
bin/i386-linux/kpseaccess
bin/i386-linux/kpsereadlink
bin/i386-linux/kpsestat
@@ -85212,7 +93915,7 @@ binfiles arch=i386-linux size=38
name kpathsea.i386-netbsd
category TLCore
-revision 30191
+revision 33562
shortdesc i386-netbsd files of kpathsea
binfiles arch=i386-netbsd size=37
bin/i386-netbsd/kpseaccess
@@ -85230,7 +93933,7 @@ binfiles arch=i386-netbsd size=37
name kpathsea.i386-solaris
category TLCore
-revision 30112
+revision 34203
shortdesc i386-solaris files of kpathsea
binfiles arch=i386-solaris size=42
bin/i386-solaris/kpseaccess
@@ -85246,29 +93949,11 @@ binfiles arch=i386-solaris size=42
bin/i386-solaris/mktextfm
bin/i386-solaris/texhash
-name kpathsea.mips-irix
-category TLCore
-revision 30131
-shortdesc mips-irix files of kpathsea
-binfiles arch=mips-irix size=70
- bin/mips-irix/kpseaccess
- bin/mips-irix/kpsereadlink
- bin/mips-irix/kpsestat
- bin/mips-irix/kpsewhich
- 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
-
name kpathsea.mipsel-linux
category TLCore
-revision 29995
+revision 33811
shortdesc mipsel-linux files of kpathsea
-binfiles arch=mipsel-linux size=43
+binfiles arch=mipsel-linux size=38
bin/mipsel-linux/kpseaccess
bin/mipsel-linux/kpsereadlink
bin/mipsel-linux/kpsestat
@@ -85284,9 +93969,9 @@ binfiles arch=mipsel-linux size=43
name kpathsea.powerpc-linux
category TLCore
-revision 30114
+revision 33889
shortdesc powerpc-linux files of kpathsea
-binfiles arch=powerpc-linux size=39
+binfiles arch=powerpc-linux size=38
bin/powerpc-linux/kpseaccess
bin/powerpc-linux/kpsereadlink
bin/powerpc-linux/kpsestat
@@ -85302,9 +93987,9 @@ binfiles arch=powerpc-linux size=39
name kpathsea.sparc-solaris
category TLCore
-revision 29877
+revision 33871
shortdesc sparc-solaris files of kpathsea
-binfiles arch=sparc-solaris size=40
+binfiles arch=sparc-solaris size=39
bin/sparc-solaris/kpseaccess
bin/sparc-solaris/kpsereadlink
bin/sparc-solaris/kpsestat
@@ -85320,7 +94005,7 @@ binfiles arch=sparc-solaris size=40
name kpathsea.universal-darwin
category TLCore
-revision 30764
+revision 34201
shortdesc universal-darwin files of kpathsea
binfiles arch=universal-darwin size=81
bin/universal-darwin/kpseaccess
@@ -85338,10 +94023,10 @@ binfiles arch=universal-darwin size=81
name kpathsea.win32
category TLCore
-revision 29817
+revision 33897
shortdesc win32 files of kpathsea
-binfiles arch=win32 size=49
- bin/win32/kpathsea611.dll
+binfiles arch=win32 size=251
+ bin/win32/kpathsea620.dll
bin/win32/kpseaccess.exe
bin/win32/kpsereadlink.exe
bin/win32/kpsestat.exe
@@ -85354,11 +94039,30 @@ binfiles arch=win32 size=49
bin/win32/mktexpk.exe
bin/win32/mktextfm.exe
bin/win32/mktexupd.exe
+ bin/win32/msvcr100.dll
bin/win32/texhash.exe
+name kpathsea.x86_64-cygwin
+category TLCore
+revision 34161
+shortdesc x86_64-cygwin files of kpathsea
+binfiles arch=x86_64-cygwin size=43
+ bin/x86_64-cygwin/kpseaccess.exe
+ bin/x86_64-cygwin/kpsereadlink.exe
+ bin/x86_64-cygwin/kpsestat.exe
+ bin/x86_64-cygwin/kpsewhich.exe
+ bin/x86_64-cygwin/mkocp
+ bin/x86_64-cygwin/mkofm
+ bin/x86_64-cygwin/mktexfmt
+ bin/x86_64-cygwin/mktexlsr
+ bin/x86_64-cygwin/mktexmf
+ bin/x86_64-cygwin/mktexpk
+ bin/x86_64-cygwin/mktextfm
+ bin/x86_64-cygwin/texhash
+
name kpathsea.x86_64-darwin
category TLCore
-revision 29879
+revision 34201
shortdesc x86_64-darwin files of kpathsea
binfiles arch=x86_64-darwin size=44
bin/x86_64-darwin/kpseaccess
@@ -85376,7 +94080,7 @@ binfiles arch=x86_64-darwin size=44
name kpathsea.x86_64-linux
category TLCore
-revision 30204
+revision 33723
shortdesc x86_64-linux files of kpathsea
binfiles arch=x86_64-linux size=38
bin/x86_64-linux/kpseaccess
@@ -85394,7 +94098,7 @@ binfiles arch=x86_64-linux size=38
name kpathsea.x86_64-solaris
category TLCore
-revision 30112
+revision 34203
shortdesc x86_64-solaris files of kpathsea
binfiles arch=x86_64-solaris size=47
bin/x86_64-solaris/kpseaccess
@@ -87357,7 +96061,7 @@ runfiles size=3918
texmf-dist/tex/latex/kpfonts/ujkpsyd.fd
texmf-dist/tex/latex/kpfonts/ujkpsydw.fd
catalogue-ctan /fonts/kpfonts
-catalogue-date 2012-07-05 15:28:28 +0200
+catalogue-date 2014-05-10 17:23:39 +0200
catalogue-license gpl
catalogue-version 3.31
@@ -87373,7 +96077,7 @@ longdesc supported.
runfiles size=6
texmf-dist/bibtex/bst/ksfh_nat/ksfh_nat.bst
catalogue-ctan /biblio/bibtex/contrib/ksfh_nat/ksfh_nat.bst
-catalogue-date 2011-12-20 12:39:21 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.1
@@ -88038,7 +96742,7 @@ runfiles size=4363
texmf-dist/tex/latex/kurier/ts1kurierlc.fd
texmf-dist/tex/plain/kurier/kurier-math.tex
catalogue-ctan /fonts/kurier
-catalogue-date 2012-04-26 12:50:58 +0200
+catalogue-date 2014-05-10 17:23:39 +0200
catalogue-license gfsl
catalogue-version 0.995b
@@ -88094,17 +96798,17 @@ catalogue-version 1.8.5.7
name l2tabu-french
category Package
-revision 15878
+revision 31315
shortdesc French translation of l2tabu.
longdesc French translation of l2tabu.
-docfiles size=115
+docfiles size=101
texmf-dist/doc/latex/l2tabu-french/README details="The document itself" language="fr"
- texmf-dist/doc/latex/l2tabu-french/l2tabufr-heavy.pdf
- texmf-dist/doc/latex/l2tabu-french/l2tabufr-light.pdf
+ texmf-dist/doc/latex/l2tabu-french/l2tabufr.pdf
texmf-dist/doc/latex/l2tabu-french/l2tabufr.tex
catalogue-ctan /info/l2tabu/french
-catalogue-date 2012-02-17 14:35:03 +0100
+catalogue-date 2013-07-30 20:12:28 +0200
catalogue-license gpl
+catalogue-version 2.3
name l2tabu-italian
category Package
@@ -88132,37 +96836,34 @@ docfiles size=84
texmf-dist/doc/latex/l2tabu-spanish/l2tabues.pdf details="The document itself" language="es"
texmf-dist/doc/latex/l2tabu-spanish/l2tabues.tex
catalogue-ctan /info/l2tabu/spanish
-catalogue-date 2012-03-13 18:56:34 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license pd
catalogue-version 1.1
name l3experimental
category Package
-revision 29361
+revision 33859
shortdesc Experimental LaTeX3 concepts.
longdesc The l3experimental packages are a collection of experimental
longdesc implementations for aspects of the LaTeX3 kernel, dealing with
longdesc higher-level ideas such as the Designer Interface. Some of them
longdesc work as stand alone packages, providing new functionality, and
longdesc can be used on top of LaTeX2e with no changes to the existing
-longdesc kernel. The present release includes: - xgalley, which controls
-longdesc boxes receiving text for typesetting. - l3dt: kernel support
-longdesc for data tables; - l3galley: kernel support for xgalley; -
-longdesc l3regex: kernel support for regular expression search and
-longdesc replace operations; - l3sort: kernel support for sorting
-longdesc sequences, token lists or comma-lists, according to user-
-longdesc specified comparison criteria; - l3str: kernel support for
-longdesc string manipulation; - l3tl-build: kernel support for token
-longdesc list building; - l3tl_analysis: kernel support for token list
-longdesc analysis; and - xcoffins, which allows the alignment of boxes
-longdesc using a series of 'handle' positions, supplementing the simple
-longdesc TeX reference point. All the files of the bundle are also
-longdesc available in the Subversion (SVN) repository of the LaTeX3
-longdesc Project. The bundle on CTAN is based on a snapshot of the SVN
-longdesc repository on 2012-11-21.
-docfiles size=1745
+longdesc kernel. The present release includes: xgalley, which controls
+longdesc boxes receiving text for typesetting. l3regex: kernel support
+longdesc for regular expression search and replace operations; l3sort:
+longdesc kernel support for sorting sequences, token lists or comma-
+longdesc lists, according to user-specified comparison criteria; l3str:
+longdesc kernel support for string manipulation; l3tl-build: kernel
+longdesc support for token list building; l3tl_analysis: kernel support
+longdesc for token list analysis; and xcoffins, which allows the
+longdesc alignment of boxes using a series of 'handle' positions,
+longdesc supplementing the simple TeX reference point. All the files of
+longdesc the bundle are also available in the Subversion (SVN)
+longdesc repository of the LaTeX3 Project. The bundle on CTAN is based
+longdesc on a snapshot of the SVN repository on 2013-10-11.
+docfiles size=1622
texmf-dist/doc/latex/l3experimental/README details="Readme"
- texmf-dist/doc/latex/l3experimental/l3dt/l3dt.pdf
texmf-dist/doc/latex/l3experimental/l3sort/l3sort.pdf
texmf-dist/doc/latex/l3experimental/l3str/l3flag.pdf
texmf-dist/doc/latex/l3experimental/l3str/l3regex.pdf
@@ -88174,9 +96875,7 @@ docfiles size=1745
texmf-dist/doc/latex/l3experimental/xcoffins/xcoffins.pdf details="coffins documentation"
texmf-dist/doc/latex/l3experimental/xgalley/l3galley.pdf
texmf-dist/doc/latex/l3experimental/xgalley/xgalley.pdf details="galley documentation"
-srcfiles size=188
- texmf-dist/source/latex/l3experimental/l3dt/l3dt.dtx
- texmf-dist/source/latex/l3experimental/l3dt/l3dt.ins
+srcfiles size=179
texmf-dist/source/latex/l3experimental/l3sort/l3sort.dtx
texmf-dist/source/latex/l3experimental/l3sort/l3sort.ins
texmf-dist/source/latex/l3experimental/l3str/l3flag.dtx
@@ -88192,13 +96891,34 @@ srcfiles size=188
texmf-dist/source/latex/l3experimental/xgalley/l3galley.dtx
texmf-dist/source/latex/l3experimental/xgalley/xgalley.dtx
texmf-dist/source/latex/l3experimental/xgalley/xgalley.ins
-runfiles size=90
- texmf-dist/tex/latex/l3experimental/l3dt/l3dt.sty
+runfiles size=114
texmf-dist/tex/latex/l3experimental/l3sort/l3sort.sty
texmf-dist/tex/latex/l3experimental/l3str/l3flag.sty
texmf-dist/tex/latex/l3experimental/l3str/l3regex-trace.sty
texmf-dist/tex/latex/l3experimental/l3str/l3regex.sty
texmf-dist/tex/latex/l3experimental/l3str/l3str-convert.sty
+ texmf-dist/tex/latex/l3experimental/l3str/l3str-enc-iso88591.def
+ texmf-dist/tex/latex/l3experimental/l3str/l3str-enc-iso885910.def
+ texmf-dist/tex/latex/l3experimental/l3str/l3str-enc-iso885911.def
+ texmf-dist/tex/latex/l3experimental/l3str/l3str-enc-iso885913.def
+ texmf-dist/tex/latex/l3experimental/l3str/l3str-enc-iso885914.def
+ texmf-dist/tex/latex/l3experimental/l3str/l3str-enc-iso885915.def
+ texmf-dist/tex/latex/l3experimental/l3str/l3str-enc-iso885916.def
+ texmf-dist/tex/latex/l3experimental/l3str/l3str-enc-iso88592.def
+ texmf-dist/tex/latex/l3experimental/l3str/l3str-enc-iso88593.def
+ texmf-dist/tex/latex/l3experimental/l3str/l3str-enc-iso88594.def
+ texmf-dist/tex/latex/l3experimental/l3str/l3str-enc-iso88595.def
+ texmf-dist/tex/latex/l3experimental/l3str/l3str-enc-iso88596.def
+ texmf-dist/tex/latex/l3experimental/l3str/l3str-enc-iso88597.def
+ texmf-dist/tex/latex/l3experimental/l3str/l3str-enc-iso88598.def
+ texmf-dist/tex/latex/l3experimental/l3str/l3str-enc-iso88599.def
+ texmf-dist/tex/latex/l3experimental/l3str/l3str-enc-utf16.def
+ texmf-dist/tex/latex/l3experimental/l3str/l3str-enc-utf32.def
+ texmf-dist/tex/latex/l3experimental/l3str/l3str-enc-utf8.def
+ texmf-dist/tex/latex/l3experimental/l3str/l3str-esc-hex.def
+ texmf-dist/tex/latex/l3experimental/l3str/l3str-esc-name.def
+ texmf-dist/tex/latex/l3experimental/l3str/l3str-esc-string.def
+ texmf-dist/tex/latex/l3experimental/l3str/l3str-esc-url.def
texmf-dist/tex/latex/l3experimental/l3str/l3str-format.sty
texmf-dist/tex/latex/l3experimental/l3str/l3str.sty
texmf-dist/tex/latex/l3experimental/l3str/l3tl-analysis.sty
@@ -88207,13 +96927,13 @@ runfiles size=90
texmf-dist/tex/latex/l3experimental/xgalley/l3galley.sty
texmf-dist/tex/latex/l3experimental/xgalley/xgalley.sty
catalogue-ctan /macros/latex/contrib/l3experimental
-catalogue-date 2013-03-12 10:55:10 +0100
+catalogue-date 2014-05-07 15:15:43 +0200
catalogue-license lppl1.3
-catalogue-version SVN 4467
+catalogue-version SVN 4742
name l3kernel
category Package
-revision 29409
+revision 34204
shortdesc LaTeX3 programming conventions.
longdesc The l3kernel bundle provides an implementation of the LaTeX3
longdesc programmers' interface, as a set of packages that run under
@@ -88221,23 +96941,22 @@ longdesc LaTeX 2e. The interface provides the foundation on which the
longdesc LaTeX3 kernel and other future code are built: it is an API for
longdesc TeX programmers. The packages are set up so that the LaTeX3
longdesc conventions can be used with regular LaTeX 2e packages. All the
-longdesc files of the bundle are also available in the Subversion (SVN)
-longdesc repository of the LaTeX3 Project. The bundle on CTAN is based
-longdesc on a snapshot of the SVN repository on 2012-11-21.
-docfiles size=1664
+longdesc files of the bundle are also available in the project's
+longdesc Subversion (SVN) repository
+docfiles size=1722
texmf-dist/doc/latex/l3kernel/README details="Readme"
texmf-dist/doc/latex/l3kernel/expl3.pdf details="The LaTeX3 Programming Language"
- texmf-dist/doc/latex/l3kernel/interface3.pdf details="LaTeX3 interfaces"
+ texmf-dist/doc/latex/l3kernel/interface3.pdf
texmf-dist/doc/latex/l3kernel/interface3.tex
texmf-dist/doc/latex/l3kernel/l3docstrip.pdf
texmf-dist/doc/latex/l3kernel/l3styleguide.pdf details="LaTeX3 style guide"
texmf-dist/doc/latex/l3kernel/l3styleguide.tex
texmf-dist/doc/latex/l3kernel/l3syntax-changes.pdf details="Syntax changes"
texmf-dist/doc/latex/l3kernel/l3syntax-changes.tex
- texmf-dist/doc/latex/l3kernel/source3.pdf details="Sources of the whole bundle"
+ texmf-dist/doc/latex/l3kernel/source3.pdf
texmf-dist/doc/latex/l3kernel/source3.tex
texmf-dist/doc/latex/l3kernel/source3body.tex
-srcfiles size=484
+srcfiles size=505
texmf-dist/source/latex/l3kernel/expl3.dtx
texmf-dist/source/latex/l3kernel/l3alloc.dtx
texmf-dist/source/latex/l3kernel/l3basics.dtx
@@ -88278,60 +96997,41 @@ srcfiles size=484
texmf-dist/source/latex/l3kernel/l3skip.dtx
texmf-dist/source/latex/l3kernel/l3tl.dtx
texmf-dist/source/latex/l3kernel/l3token.dtx
-runfiles size=168
+runfiles size=169
texmf-dist/makeindex/l3kernel/l3doc.ist
+ texmf-dist/tex/latex/l3kernel/expl3-code.tex
+ texmf-dist/tex/latex/l3kernel/expl3-generic.tex
texmf-dist/tex/latex/l3kernel/expl3.sty
- texmf-dist/tex/latex/l3kernel/l3basics.sty
- texmf-dist/tex/latex/l3kernel/l3bootstrap.sty
- texmf-dist/tex/latex/l3kernel/l3box.sty
- texmf-dist/tex/latex/l3kernel/l3candidates.sty
- texmf-dist/tex/latex/l3kernel/l3clist.sty
- texmf-dist/tex/latex/l3kernel/l3coffins.sty
- texmf-dist/tex/latex/l3kernel/l3color.sty
texmf-dist/tex/latex/l3kernel/l3doc.cls
texmf-dist/tex/latex/l3kernel/l3docstrip.tex
texmf-dist/tex/latex/l3kernel/l3dvipdfmx.def
texmf-dist/tex/latex/l3kernel/l3dvips.def
- texmf-dist/tex/latex/l3kernel/l3expan.sty
- texmf-dist/tex/latex/l3kernel/l3file.sty
- texmf-dist/tex/latex/l3kernel/l3fp.sty
- texmf-dist/tex/latex/l3kernel/l3int.sty
- texmf-dist/tex/latex/l3kernel/l3keys.sty
- texmf-dist/tex/latex/l3kernel/l3luatex.sty
- texmf-dist/tex/latex/l3kernel/l3msg.sty
- texmf-dist/tex/latex/l3kernel/l3names.sty
texmf-dist/tex/latex/l3kernel/l3pdfmode.def
- texmf-dist/tex/latex/l3kernel/l3prg.sty
- texmf-dist/tex/latex/l3kernel/l3prop.sty
- texmf-dist/tex/latex/l3kernel/l3quark.sty
- texmf-dist/tex/latex/l3kernel/l3seq.sty
- texmf-dist/tex/latex/l3kernel/l3skip.sty
- texmf-dist/tex/latex/l3kernel/l3tl.sty
- texmf-dist/tex/latex/l3kernel/l3token.sty
texmf-dist/tex/latex/l3kernel/l3xdvipdfmx.def
catalogue-ctan /macros/latex/contrib/l3kernel
-catalogue-date 2013-03-14 21:55:57 +0100
+catalogue-date 2014-05-22 16:34:50 +0200
catalogue-license lppl1.3
-catalogue-version SVN 4469
+catalogue-version SVN 4714
name l3packages
category Package
-revision 29361
+revision 33859
shortdesc High-level LaTeX3 concepts.
longdesc The bundle holds prototype implementations of concepts for a
longdesc LaTeX designer interface, to be used with the experimental
longdesc LaTeX kernel as programming tools and kernel support. Packages
-longdesc provided in this release are: - l3keys2e, which makes the
+longdesc provided in this release are: l3keys2e, which makes the
longdesc facilities of the kernel module l3keys available for use by
-longdesc LaTeX 2e packages; - xfrac, which provides flexible split-level
-longdesc fractions; - xparse, which provides a high-level interface for
-longdesc declaring document commands; and - xtemplate, which provides a
+longdesc LaTeX 2e packages; xfrac, which provides flexible split-level
+longdesc fractions; xparse, which provides a high-level interface for
+longdesc declaring document commands; and xtemplate, which provides a
longdesc means of defining generic functions using a key-value syntax.
longdesc All the files of the bundle are also available in the
longdesc Subversion (SVN) repository of the LaTeX3 Project. The bundle
-longdesc on CTAN is based on a snapshot of the SVN repository on 2012-
-longdesc 11-21.
-docfiles size=644
+longdesc on CTAN is based on a snapshot of the SVN repository on; it
+longdesc should be used with copies of the l3kernel at SVN version 2544
+longdesc or later.
+docfiles size=482
texmf-dist/doc/latex/l3packages/README details="Readme"
texmf-dist/doc/latex/l3packages/l3keys2e/l3keys2e.pdf details="l3keys2e documentation"
texmf-dist/doc/latex/l3packages/xfrac/xfrac.pdf details="xfrac documentation"
@@ -88352,9 +97052,9 @@ runfiles size=33
texmf-dist/tex/latex/l3packages/xparse/xparse.sty
texmf-dist/tex/latex/l3packages/xtemplate/xtemplate.sty
catalogue-ctan /macros/latex/contrib/l3packages
-catalogue-date 2013-03-12 10:55:10 +0100
+catalogue-date 2014-05-06 07:39:29 +0200
catalogue-license lppl1.3
-catalogue-version SVN 4467
+catalogue-version SVN 4742
name labbook
category Package
@@ -88387,10 +97087,10 @@ name labelcas
category Package
revision 15878
shortdesc Check the existence of labels, and fork accordingly.
-longdesc The package defines two commands: - \eachlabelcase, which
+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-separated
+longdesc to a macro; and \lotlabelcase, which takes a comma-separated
longdesc list of label names, and distinguishes the resulting action on
longdesc whether all were defined, whether none were defined, whether
longdesc not all were defined, or whether the lest is empty (again, the
@@ -88404,7 +97104,7 @@ srcfiles size=19
runfiles size=2
texmf-dist/tex/latex/labelcas/labelcas.sty
catalogue-ctan /macros/latex/contrib/labelcas
-catalogue-date 2012-03-12 21:18:36 +0100
+catalogue-date 2014-01-08 11:19:39 +0100
catalogue-license lppl1.3
catalogue-version 1.12
@@ -88469,15 +97169,35 @@ catalogue-date 2011-12-16 16:22:52 +0100
catalogue-license lppl1.2
catalogue-version .13
+name labyrinth
+category Package
+revision 33454
+shortdesc Draw labyrinths and solution paths.
+longdesc The labyrinth package provides code and an environment for
+longdesc typesetting simple labyrinths with LaTeX, and generating an
+longdesc automatic or manual solution path.
+docfiles size=63
+ texmf-dist/doc/latex/labyrinth/README details="Readme"
+ texmf-dist/doc/latex/labyrinth/classic-en.ist
+ texmf-dist/doc/latex/labyrinth/labyrinth.pdf details="Package documentation"
+ texmf-dist/doc/latex/labyrinth/labyrinth.tex
+ texmf-dist/doc/latex/labyrinth/lstlocal.cfg
+runfiles size=2
+ texmf-dist/tex/latex/labyrinth/labyrinth.sty
+catalogue-ctan /macros/latex/contrib/labyrinth
+catalogue-date 2014-04-25 11:20:11 +0200
+catalogue-license lppl
+catalogue-version 1.0
+
name lacheck
category TLCore
-revision 29764
+revision 33818
shortdesc LaTeX checker.
longdesc Lacheck is a tool for finding common mistakes in LaTeX
longdesc documents. The distribution includes sources, and executables
longdesc for OS/2 and Win32 environments.
depend lacheck.ARCH
-runfiles size=3
+docfiles size=3
texmf-dist/doc/man/man1/lacheck.1
texmf-dist/doc/man/man1/lacheck.man1.pdf
catalogue-ctan /support/lacheck
@@ -88487,147 +97207,147 @@ catalogue-version 1.26
name lacheck.alpha-linux
category TLCore
-revision 29834
+revision 33553
shortdesc alpha-linux files of lacheck
binfiles arch=alpha-linux size=17
bin/alpha-linux/lacheck
name lacheck.amd64-freebsd
category TLCore
-revision 29785
+revision 33488
shortdesc amd64-freebsd files of lacheck
binfiles arch=amd64-freebsd size=15
bin/amd64-freebsd/lacheck
name lacheck.amd64-kfreebsd
category TLCore
-revision 30655
+revision 33529
shortdesc amd64-kfreebsd files of lacheck
binfiles arch=amd64-kfreebsd size=16
bin/amd64-kfreebsd/lacheck
name lacheck.amd64-netbsd
category TLCore
-revision 30660
+revision 33726
shortdesc amd64-netbsd files of lacheck
binfiles arch=amd64-netbsd size=15
bin/amd64-netbsd/lacheck
name lacheck.armel-linux
category TLCore
-revision 29805
+revision 33508
shortdesc armel-linux files of lacheck
binfiles arch=armel-linux size=14
bin/armel-linux/lacheck
name lacheck.armhf-linux
category TLCore
-revision 30015
+revision 33545
shortdesc armhf-linux files of lacheck
binfiles arch=armhf-linux size=14
bin/armhf-linux/lacheck
name lacheck.i386-cygwin
category TLCore
-revision 30526
+revision 34161
shortdesc i386-cygwin files of lacheck
-binfiles arch=i386-cygwin size=14
+binfiles arch=i386-cygwin size=16
bin/i386-cygwin/lacheck.exe
name lacheck.i386-freebsd
category TLCore
-revision 29785
+revision 33488
shortdesc i386-freebsd files of lacheck
binfiles arch=i386-freebsd size=14
bin/i386-freebsd/lacheck
name lacheck.i386-kfreebsd
category TLCore
-revision 30440
+revision 33529
shortdesc i386-kfreebsd files of lacheck
binfiles arch=i386-kfreebsd size=15
bin/i386-kfreebsd/lacheck
name lacheck.i386-linux
category TLCore
-revision 30088
+revision 33479
shortdesc i386-linux files of lacheck
binfiles arch=i386-linux size=15
bin/i386-linux/lacheck
name lacheck.i386-netbsd
category TLCore
-revision 30191
+revision 33562
shortdesc i386-netbsd files of lacheck
binfiles arch=i386-netbsd size=14
bin/i386-netbsd/lacheck
name lacheck.i386-solaris
category TLCore
-revision 30112
+revision 34203
shortdesc i386-solaris files of lacheck
binfiles arch=i386-solaris size=15
bin/i386-solaris/lacheck
-name lacheck.mips-irix
-category TLCore
-revision 29949
-shortdesc mips-irix files of lacheck
-binfiles arch=mips-irix size=24
- bin/mips-irix/lacheck
-
name lacheck.mipsel-linux
category TLCore
-revision 29783
+revision 33811
shortdesc mipsel-linux files of lacheck
-binfiles arch=mipsel-linux size=17
+binfiles arch=mipsel-linux size=16
bin/mipsel-linux/lacheck
name lacheck.powerpc-linux
category TLCore
-revision 29833
+revision 33561
shortdesc powerpc-linux files of lacheck
binfiles arch=powerpc-linux size=15
bin/powerpc-linux/lacheck
name lacheck.sparc-solaris
category TLCore
-revision 29877
+revision 33871
shortdesc sparc-solaris files of lacheck
-binfiles arch=sparc-solaris size=15
+binfiles arch=sparc-solaris size=17
bin/sparc-solaris/lacheck
name lacheck.universal-darwin
category TLCore
-revision 30764
+revision 34201
shortdesc universal-darwin files of lacheck
binfiles arch=universal-darwin size=34
bin/universal-darwin/lacheck
name lacheck.win32
category TLCore
-revision 29816
+revision 33897
shortdesc win32 files of lacheck
-binfiles arch=win32 size=14
+binfiles arch=win32 size=15
bin/win32/lacheck.exe
+name lacheck.x86_64-cygwin
+category TLCore
+revision 34161
+shortdesc x86_64-cygwin files of lacheck
+binfiles arch=x86_64-cygwin size=16
+ bin/x86_64-cygwin/lacheck.exe
+
name lacheck.x86_64-darwin
category TLCore
-revision 29809
+revision 34201
shortdesc x86_64-darwin files of lacheck
binfiles arch=x86_64-darwin size=16
bin/x86_64-darwin/lacheck
name lacheck.x86_64-linux
category TLCore
-revision 30204
+revision 33723
shortdesc x86_64-linux files of lacheck
-binfiles arch=x86_64-linux size=16
+binfiles arch=x86_64-linux size=17
bin/x86_64-linux/lacheck
name lacheck.x86_64-solaris
category TLCore
-revision 30112
+revision 34203
shortdesc x86_64-solaris files of lacheck
binfiles arch=x86_64-solaris size=17
bin/x86_64-solaris/lacheck
@@ -88664,6 +97384,24 @@ runfiles size=85
texmf-dist/tex/lambda/config/lambda.ini
texmf-dist/tex/lambda/config/language.dat
+name lambda-lists
+category Package
+revision 31402
+shortdesc Lists in TeX's mouth.
+longdesc These list-processing macros avoid the reassignments employed
+longdesc in the macros shown in Appendix D of the TeXbook: all the
+longdesc manipulations take place in what Knuth is pleased to call
+longdesc "TeX's mouth".
+docfiles size=45
+ texmf-dist/doc/plain/lambda-lists/README
+ texmf-dist/doc/plain/lambda-lists/lambda-lists.pdf
+ texmf-dist/doc/plain/lambda-lists/lambda-lists.tex
+runfiles size=1
+ texmf-dist/tex/plain/lambda-lists/lambda.sty
+catalogue-ctan /macros/generic/lambda-lists
+catalogue-date 2013-08-20 11:39:33 +0200
+catalogue-license lppl
+
name langcode
category Package
revision 27764
@@ -88686,7 +97424,7 @@ srcfiles size=2
runfiles size=2
texmf-dist/tex/generic/langcode/langcode.sty
catalogue-ctan /macros/generic/langcode
-catalogue-date 2012-09-27 12:35:27 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 0.2
@@ -88695,13 +97433,13 @@ category Package
revision 23806
shortdesc PDF drawing directly in TeX documents.
longdesc The package provides the means to use PDF drawing primitives to
-longdesc produce high quality, colored graphics. It - uses Bezier curves
-longdesc (integral and rational) from degree one to seven, - allows TeX
-longdesc typesetting in the graphic, - offers most of the standard math
-longdesc functions, - allows plotting normal, parametric and polar
+longdesc produce high quality, colored graphics. It uses Bezier curves
+longdesc (integral and rational) from degree one to seven, allows TeX
+longdesc typesetting in the graphic, offers most of the standard math
+longdesc functions, allows plotting normal, parametric and polar
longdesc functions. The package has linear, logx, logy, logxy and polar
-longdesc grids with many specs; - it can rotate, clip and do many nice
-longdesc things easily - it has two looping commands for programming and
+longdesc grids with many specs; it can rotate, clip and do many nice
+longdesc things easily it has two looping commands for programming and
longdesc many instructive example files. The package requires pdfTeX but
longdesc otherwise only depends on the calc package.
docfiles size=819
@@ -88785,7 +97523,7 @@ docfiles size=819
runfiles size=16
texmf-dist/tex/latex/lapdf/lapdf.sty
catalogue-ctan /macros/latex/contrib/lapdf
-catalogue-date 2012-06-07 15:01:30 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license gpl
catalogue-version 1.1
@@ -88817,7 +97555,7 @@ catalogue-version 1.2l
name latex
category Package
-revision 27907
+revision 34069
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
@@ -88838,7 +97576,7 @@ depend luatex
depend pdftex
depend latexconfig
depend latex-fonts
-docfiles size=2203
+docfiles size=2229
texmf-dist/doc/latex/base/00readme.txt
texmf-dist/doc/latex/base/alltt.pdf
texmf-dist/doc/latex/base/autoload.txt
@@ -88891,7 +97629,7 @@ docfiles size=2203
texmf-dist/doc/latex/base/usrguide.pdf
texmf-dist/doc/latex/base/utf8ienc.pdf
texmf-dist/doc/latex/base/webcomp.pdf
-srcfiles size=841
+srcfiles size=847
texmf-dist/source/latex/base/alltt.dtx
texmf-dist/source/latex/base/alltt.ins
texmf-dist/source/latex/base/autoload.ins
@@ -88975,6 +97713,7 @@ srcfiles size=841
texmf-dist/source/latex/base/ltnews18.tex
texmf-dist/source/latex/base/ltnews19.tex
texmf-dist/source/latex/base/ltnews20.tex
+ texmf-dist/source/latex/base/ltnews21.tex
texmf-dist/source/latex/base/ltoutenc.dtx
texmf-dist/source/latex/base/ltoutenc.ins
texmf-dist/source/latex/base/ltoutput.dtx
@@ -89015,7 +97754,7 @@ srcfiles size=841
texmf-dist/source/latex/base/usrguide.tex
texmf-dist/source/latex/base/utf8ienc.dtx
texmf-dist/source/latex/base/webcomp.err
-runfiles size=365
+runfiles size=373
texmf-dist/makeindex/latex/gglo.ist
texmf-dist/makeindex/latex/gind.ist
texmf-dist/tex/latex/base/alltt.sty
@@ -89048,6 +97787,7 @@ runfiles size=365
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/fltrace.sty
texmf-dist/tex/latex/base/fontenc.sty
texmf-dist/tex/latex/base/fontmath.cfg
texmf-dist/tex/latex/base/fontmath.ltx
@@ -89377,12 +98117,12 @@ docfiles size=233
texmf-dist/doc/latex/latex-bib-ex/plainDemo.bst
texmf-dist/doc/latex/latex-bib-ex/vanBib.bib
catalogue-ctan /info/examples/LaTeX-Bib
-catalogue-date 2012-04-02 13:07:24 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
name latex-bin
category TLCore
-revision 29764
+revision 33736
shortdesc LaTeX executables and man pages.
depend latex
depend latex-bin.ARCH
@@ -89390,6 +98130,7 @@ execute AddFormat name=latex engine=pdftex patterns=language.dat
execute AddFormat name=pdflatex engine=pdftex patterns=language.dat options="-translate-file=cp227.tcx *pdflatex.ini"
execute AddFormat name=dvilualatex engine=luatex patterns=language.dat,language.dat.lua options="dvilualatex.ini"
execute AddFormat name=lualatex engine=luatex patterns=language.dat,language.dat.lua options="lualatex.ini"
+execute AddFormat name=luajitlatex mode=disabled engine=luajittex patterns=language.dat,language.dat.lua options="lualatex.ini"
docfiles size=9
texmf-dist/doc/man/man1/latex.1
texmf-dist/doc/man/man1/latex.man1.pdf
@@ -89516,16 +98257,6 @@ binfiles arch=i386-solaris size=4
bin/i386-solaris/lualatex
bin/i386-solaris/pdflatex
-name latex-bin.mips-irix
-category TLCore
-revision 29975
-shortdesc mips-irix files of latex-bin
-binfiles arch=mips-irix size=4
- bin/mips-irix/dvilualatex
- bin/mips-irix/latex
- bin/mips-irix/lualatex
- bin/mips-irix/pdflatex
-
name latex-bin.mipsel-linux
category TLCore
revision 29946
@@ -89568,7 +98299,7 @@ binfiles arch=universal-darwin size=4
name latex-bin.win32
category TLCore
-revision 14101
+revision 33627
shortdesc win32 files of latex-bin
binfiles arch=win32 size=4
bin/win32/dvilualatex.exe
@@ -89576,6 +98307,16 @@ binfiles arch=win32 size=4
bin/win32/lualatex.exe
bin/win32/pdflatex.exe
+name latex-bin.x86_64-cygwin
+category TLCore
+revision 33557
+shortdesc x86_64-cygwin files of latex-bin
+binfiles arch=x86_64-cygwin size=4
+ bin/x86_64-cygwin/dvilualatex
+ bin/x86_64-cygwin/latex
+ bin/x86_64-cygwin/lualatex
+ bin/x86_64-cygwin/pdflatex
+
name latex-bin.x86_64-darwin
category TLCore
revision 18441
@@ -89638,7 +98379,7 @@ docfiles size=2752
texmf-dist/doc/latex/latex-brochure/typo-degraded.eps
texmf-dist/doc/latex/latex-brochure/typo-degraded.png
catalogue-ctan /info/latex-brochure
-catalogue-date 2013-01-26 20:33:05 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 2013-01-22
@@ -89660,7 +98401,7 @@ docfiles size=248
texmf-dist/doc/latex/latex-course/README details="Readme"
texmf-dist/doc/latex/latex-course/beamercolorthemeross.sty
catalogue-ctan /info/latex-course
-catalogue-date 2012-07-07 15:54:01 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license gpl
catalogue-version 2
@@ -89680,7 +98421,7 @@ docfiles size=44
texmf-dist/doc/latex/latex-doc-ptr/latex-doc-ptr.sty
texmf-dist/doc/latex/latex-doc-ptr/latex-doc-ptr.tex
catalogue-ctan /info/latex-doc-ptr
-catalogue-date 2012-08-22 15:22:16 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license pd
catalogue-version 2009-03-24
@@ -89754,9 +98495,180 @@ runfiles size=61
texmf-dist/fonts/tfm/public/latex-fonts/line10.tfm
texmf-dist/fonts/tfm/public/latex-fonts/linew10.tfm
catalogue-ctan /fonts/latex
-catalogue-date 2012-07-07 15:54:01 +0200
+catalogue-date 2014-05-10 17:23:39 +0200
catalogue-license lppl
+name latex-git-log
+category Package
+revision 30983
+shortdesc Typeset git log information.
+longdesc The program is run within a git repository, and outputs the
+longdesc entire version history, as a LaTeX table. That output will
+longdesc typically be redirected to a file; the author recommends
+longdesc typesetting in landscape orientation.
+depend latex-git-log.ARCH
+docfiles size=31
+ texmf-dist/doc/man/man1/latex-git-log.1
+ texmf-dist/doc/man/man1/latex-git-log.man1.pdf
+ texmf-dist/doc/support/latex-git-log/README details="Readme"
+ texmf-dist/doc/support/latex-git-log/example-output.tex
+ texmf-dist/doc/support/latex-git-log/example.pdf
+ texmf-dist/doc/support/latex-git-log/example.tex
+ texmf-dist/doc/support/latex-git-log/po/de.po
+runfiles size=3
+ texmf-dist/scripts/latex-git-log/latex-git-log
+catalogue-ctan /support/latex-git-log
+catalogue-date 2014-02-26 23:03:13 +0100
+catalogue-license gpl3
+catalogue-version 0.9
+
+name latex-git-log.alpha-linux
+category Package
+revision 30983
+shortdesc alpha-linux files of latex-git-log
+binfiles arch=alpha-linux size=1
+ bin/alpha-linux/latex-git-log
+
+name latex-git-log.amd64-freebsd
+category Package
+revision 30983
+shortdesc amd64-freebsd files of latex-git-log
+binfiles arch=amd64-freebsd size=1
+ bin/amd64-freebsd/latex-git-log
+
+name latex-git-log.amd64-kfreebsd
+category Package
+revision 30983
+shortdesc amd64-kfreebsd files of latex-git-log
+binfiles arch=amd64-kfreebsd size=1
+ bin/amd64-kfreebsd/latex-git-log
+
+name latex-git-log.amd64-netbsd
+category Package
+revision 30983
+shortdesc amd64-netbsd files of latex-git-log
+binfiles arch=amd64-netbsd size=1
+ bin/amd64-netbsd/latex-git-log
+
+name latex-git-log.armel-linux
+category Package
+revision 30983
+shortdesc armel-linux files of latex-git-log
+binfiles arch=armel-linux size=1
+ bin/armel-linux/latex-git-log
+
+name latex-git-log.armhf-linux
+category Package
+revision 30983
+shortdesc armhf-linux files of latex-git-log
+binfiles arch=armhf-linux size=1
+ bin/armhf-linux/latex-git-log
+
+name latex-git-log.i386-cygwin
+category Package
+revision 30983
+shortdesc i386-cygwin files of latex-git-log
+binfiles arch=i386-cygwin size=1
+ bin/i386-cygwin/latex-git-log
+
+name latex-git-log.i386-freebsd
+category Package
+revision 30983
+shortdesc i386-freebsd files of latex-git-log
+binfiles arch=i386-freebsd size=1
+ bin/i386-freebsd/latex-git-log
+
+name latex-git-log.i386-kfreebsd
+category Package
+revision 30983
+shortdesc i386-kfreebsd files of latex-git-log
+binfiles arch=i386-kfreebsd size=1
+ bin/i386-kfreebsd/latex-git-log
+
+name latex-git-log.i386-linux
+category Package
+revision 30983
+shortdesc i386-linux files of latex-git-log
+binfiles arch=i386-linux size=1
+ bin/i386-linux/latex-git-log
+
+name latex-git-log.i386-netbsd
+category Package
+revision 30983
+shortdesc i386-netbsd files of latex-git-log
+binfiles arch=i386-netbsd size=1
+ bin/i386-netbsd/latex-git-log
+
+name latex-git-log.i386-solaris
+category Package
+revision 30983
+shortdesc i386-solaris files of latex-git-log
+binfiles arch=i386-solaris size=1
+ bin/i386-solaris/latex-git-log
+
+name latex-git-log.mipsel-linux
+category Package
+revision 30983
+shortdesc mipsel-linux files of latex-git-log
+binfiles arch=mipsel-linux size=1
+ bin/mipsel-linux/latex-git-log
+
+name latex-git-log.powerpc-linux
+category Package
+revision 30983
+shortdesc powerpc-linux files of latex-git-log
+binfiles arch=powerpc-linux size=1
+ bin/powerpc-linux/latex-git-log
+
+name latex-git-log.sparc-solaris
+category Package
+revision 30983
+shortdesc sparc-solaris files of latex-git-log
+binfiles arch=sparc-solaris size=1
+ bin/sparc-solaris/latex-git-log
+
+name latex-git-log.universal-darwin
+category Package
+revision 30983
+shortdesc universal-darwin files of latex-git-log
+binfiles arch=universal-darwin size=1
+ bin/universal-darwin/latex-git-log
+
+name latex-git-log.win32
+category Package
+revision 30983
+shortdesc win32 files of latex-git-log
+binfiles arch=win32 size=1
+ bin/win32/latex-git-log.exe
+
+name latex-git-log.x86_64-cygwin
+category Package
+revision 33557
+shortdesc x86_64-cygwin files of latex-git-log
+binfiles arch=x86_64-cygwin size=1
+ bin/x86_64-cygwin/latex-git-log
+
+name latex-git-log.x86_64-darwin
+category Package
+revision 30983
+shortdesc x86_64-darwin files of latex-git-log
+binfiles arch=x86_64-darwin size=1
+ bin/x86_64-darwin/latex-git-log
+
+name latex-git-log.x86_64-linux
+category Package
+revision 30983
+shortdesc x86_64-linux files of latex-git-log
+binfiles arch=x86_64-linux size=1
+ bin/x86_64-linux/latex-git-log
+
+name latex-git-log.x86_64-solaris
+category Package
+revision 30983
+shortdesc x86_64-solaris files of latex-git-log
+binfiles arch=x86_64-solaris size=1
+ bin/x86_64-solaris/latex-git-log
+
name latex-graphics-companion
category Package
revision 29235
@@ -90270,34 +99182,62 @@ docfiles size=603
texmf-dist/doc/generic/latex-notes-zh-cn/src/reading.bib
texmf-dist/doc/generic/latex-notes-zh-cn/src/tables.tex
catalogue-ctan /info/latex-notes-zh-cn
-catalogue-date 2012-02-07 15:34:07 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.20
name latex-referenz
category Package
-revision 16980
+revision 31584
shortdesc Examples from the book "LaTeX Referenz".
longdesc This bundle contains all the examples, as source, eps and pdf,
longdesc of the author's book "LaTeX Referenz" (2nd ed.), published by
-longdesc DANTE/Lehmanns. The examples can be run as usual with the
-longdesc example class ttctexa.cls, which is in the distribution.
-docfiles size=92
+longdesc DANTE/Lehmanns. The examples can be run, using the example
+longdesc class (ttctexa.cls) in the distribution.
+docfiles size=309
texmf-dist/doc/latex/latex-referenz/01-03-1.xltx
texmf-dist/doc/latex/latex-referenz/01-04-1.lux
texmf-dist/doc/latex/latex-referenz/01-04-2.lux
- texmf-dist/doc/latex/latex-referenz/02-03-1.ltxps
- texmf-dist/doc/latex/latex-referenz/02-03-2.ltx2crop
+ texmf-dist/doc/latex/latex-referenz/01-08-1.sh
+ texmf-dist/doc/latex/latex-referenz/01-08-2.sh
+ texmf-dist/doc/latex/latex-referenz/02-03-1.ltx2crop
+ texmf-dist/doc/latex/latex-referenz/02-03-2.ltx
texmf-dist/doc/latex/latex-referenz/02-03-3.ltx
texmf-dist/doc/latex/latex-referenz/02-03-4.ltx
+ texmf-dist/doc/latex/latex-referenz/03-01-1.lux
texmf-dist/doc/latex/latex-referenz/03-03-1.ltx
texmf-dist/doc/latex/latex-referenz/03-04-1.ltx
texmf-dist/doc/latex/latex-referenz/03-05-1.ltx
texmf-dist/doc/latex/latex-referenz/03-06-1.ltx
texmf-dist/doc/latex/latex-referenz/03-07-1.ltx
+ texmf-dist/doc/latex/latex-referenz/03-07-2.ltx
texmf-dist/doc/latex/latex-referenz/03-08-1.ltx
+ texmf-dist/doc/latex/latex-referenz/03-08-2.ltx
+ texmf-dist/doc/latex/latex-referenz/03-08-3.ltx
+ texmf-dist/doc/latex/latex-referenz/03-08-4.ltx
+ texmf-dist/doc/latex/latex-referenz/03-08-5.ltx
+ texmf-dist/doc/latex/latex-referenz/03-08-6.ltx
texmf-dist/doc/latex/latex-referenz/04-02-1.ltx
texmf-dist/doc/latex/latex-referenz/05-01-1.ltx
+ texmf-dist/doc/latex/latex-referenz/05-02-1.ltx
+ texmf-dist/doc/latex/latex-referenz/06-02-1.ltx
+ texmf-dist/doc/latex/latex-referenz/06-02-10.ltx
+ texmf-dist/doc/latex/latex-referenz/06-02-11.ltx
+ texmf-dist/doc/latex/latex-referenz/06-02-12.ltx
+ texmf-dist/doc/latex/latex-referenz/06-02-13.ltx
+ texmf-dist/doc/latex/latex-referenz/06-02-14.ltx
+ texmf-dist/doc/latex/latex-referenz/06-02-15.ltx
+ texmf-dist/doc/latex/latex-referenz/06-02-16.ltx
+ texmf-dist/doc/latex/latex-referenz/06-02-17.lux
+ texmf-dist/doc/latex/latex-referenz/06-02-18.ltx
+ texmf-dist/doc/latex/latex-referenz/06-02-2.ltx
+ texmf-dist/doc/latex/latex-referenz/06-02-3.ltx
+ texmf-dist/doc/latex/latex-referenz/06-02-4.ltx
+ texmf-dist/doc/latex/latex-referenz/06-02-5.ltx
+ texmf-dist/doc/latex/latex-referenz/06-02-6.ltx
+ texmf-dist/doc/latex/latex-referenz/06-02-7.ltx
+ texmf-dist/doc/latex/latex-referenz/06-02-8.ltx
+ texmf-dist/doc/latex/latex-referenz/06-02-9.ltx
texmf-dist/doc/latex/latex-referenz/06-03-1.ltx
texmf-dist/doc/latex/latex-referenz/06-03-10.ltx
texmf-dist/doc/latex/latex-referenz/06-03-11.ltx
@@ -90306,12 +99246,9 @@ docfiles size=92
texmf-dist/doc/latex/latex-referenz/06-03-14.ltx
texmf-dist/doc/latex/latex-referenz/06-03-15.ltx
texmf-dist/doc/latex/latex-referenz/06-03-16.ltx
- texmf-dist/doc/latex/latex-referenz/06-03-17.ltx
+ texmf-dist/doc/latex/latex-referenz/06-03-17.lux
texmf-dist/doc/latex/latex-referenz/06-03-18.ltx
- texmf-dist/doc/latex/latex-referenz/06-03-19.ltx
texmf-dist/doc/latex/latex-referenz/06-03-2.ltx
- texmf-dist/doc/latex/latex-referenz/06-03-20.ltx
- texmf-dist/doc/latex/latex-referenz/06-03-21.ltx
texmf-dist/doc/latex/latex-referenz/06-03-3.ltx
texmf-dist/doc/latex/latex-referenz/06-03-4.ltx
texmf-dist/doc/latex/latex-referenz/06-03-5.ltx
@@ -90319,64 +99256,190 @@ docfiles size=92
texmf-dist/doc/latex/latex-referenz/06-03-7.ltx
texmf-dist/doc/latex/latex-referenz/06-03-8.ltx
texmf-dist/doc/latex/latex-referenz/06-03-9.ltx
- texmf-dist/doc/latex/latex-referenz/08-03-1.ltx
- texmf-dist/doc/latex/latex-referenz/08-03-2.ltx
- texmf-dist/doc/latex/latex-referenz/08-03-3.ltx
- texmf-dist/doc/latex/latex-referenz/08-03-4.ltx
- texmf-dist/doc/latex/latex-referenz/08-05-1.ltx
- texmf-dist/doc/latex/latex-referenz/08-05-2.ltx
- texmf-dist/doc/latex/latex-referenz/08-05-3.ltx
- texmf-dist/doc/latex/latex-referenz/08-05-4.ltx
- texmf-dist/doc/latex/latex-referenz/08-05-5.ltx
- texmf-dist/doc/latex/latex-referenz/08-05-6.ltx
- texmf-dist/doc/latex/latex-referenz/08-05-7.ltx
- texmf-dist/doc/latex/latex-referenz/08-05-8.ltx
- texmf-dist/doc/latex/latex-referenz/08-07-1.ltx
- texmf-dist/doc/latex/latex-referenz/08-07-10.ltx
- texmf-dist/doc/latex/latex-referenz/08-07-11.ltx
- texmf-dist/doc/latex/latex-referenz/08-07-12.ltx
- texmf-dist/doc/latex/latex-referenz/08-07-13.ltx
- texmf-dist/doc/latex/latex-referenz/08-07-2.ltx
- texmf-dist/doc/latex/latex-referenz/08-07-3.ltx
- texmf-dist/doc/latex/latex-referenz/08-07-4.ltx
- texmf-dist/doc/latex/latex-referenz/08-07-5.ltx
- texmf-dist/doc/latex/latex-referenz/08-07-6.ltx
- texmf-dist/doc/latex/latex-referenz/08-07-7.ltx
- texmf-dist/doc/latex/latex-referenz/08-07-8.ltx
- texmf-dist/doc/latex/latex-referenz/08-07-9.ltx
- texmf-dist/doc/latex/latex-referenz/08-08-1.ltx
- texmf-dist/doc/latex/latex-referenz/08-08-10.ltx
- texmf-dist/doc/latex/latex-referenz/08-08-11.ltx
- texmf-dist/doc/latex/latex-referenz/08-08-12.ltx
- texmf-dist/doc/latex/latex-referenz/08-08-13.ltx
- texmf-dist/doc/latex/latex-referenz/08-08-2.ltx
- texmf-dist/doc/latex/latex-referenz/08-08-3.ltx
- texmf-dist/doc/latex/latex-referenz/08-08-4.ltx
- texmf-dist/doc/latex/latex-referenz/08-08-5.ltx
- texmf-dist/doc/latex/latex-referenz/08-08-6.ltx
- texmf-dist/doc/latex/latex-referenz/08-08-7.ltx
- texmf-dist/doc/latex/latex-referenz/08-08-8.ltxps
- texmf-dist/doc/latex/latex-referenz/08-08-9.ltx
- texmf-dist/doc/latex/latex-referenz/09-02-1.ltx2crop
+ texmf-dist/doc/latex/latex-referenz/06-04-1.ltx
+ texmf-dist/doc/latex/latex-referenz/06-04-10.ltx
+ texmf-dist/doc/latex/latex-referenz/06-04-11.ltx
+ texmf-dist/doc/latex/latex-referenz/06-04-12.ltx
+ texmf-dist/doc/latex/latex-referenz/06-04-13.ltx
+ texmf-dist/doc/latex/latex-referenz/06-04-14.ltx
+ texmf-dist/doc/latex/latex-referenz/06-04-15.ltx
+ texmf-dist/doc/latex/latex-referenz/06-04-16.ltx
+ texmf-dist/doc/latex/latex-referenz/06-04-17.ltx
+ texmf-dist/doc/latex/latex-referenz/06-04-18.lux
+ texmf-dist/doc/latex/latex-referenz/06-04-19.ltx
+ texmf-dist/doc/latex/latex-referenz/06-04-2.ltx
+ texmf-dist/doc/latex/latex-referenz/06-04-20.ltx
+ texmf-dist/doc/latex/latex-referenz/06-04-21.ltx
+ texmf-dist/doc/latex/latex-referenz/06-04-22.ltx
+ texmf-dist/doc/latex/latex-referenz/06-04-23.ltx
+ texmf-dist/doc/latex/latex-referenz/06-04-3.ltx
+ texmf-dist/doc/latex/latex-referenz/06-04-4.ltx
+ texmf-dist/doc/latex/latex-referenz/06-04-5.ltx
+ texmf-dist/doc/latex/latex-referenz/06-04-6.ltx
+ texmf-dist/doc/latex/latex-referenz/06-04-7.ltx
+ texmf-dist/doc/latex/latex-referenz/06-04-8.ltx
+ texmf-dist/doc/latex/latex-referenz/06-04-9.ltx
+ texmf-dist/doc/latex/latex-referenz/06-05-1.ltx
+ texmf-dist/doc/latex/latex-referenz/06-05-10.ltx
+ texmf-dist/doc/latex/latex-referenz/06-05-11.ltx
+ texmf-dist/doc/latex/latex-referenz/06-05-12.ltx
+ texmf-dist/doc/latex/latex-referenz/06-05-13.ltx
+ texmf-dist/doc/latex/latex-referenz/06-05-14.ltx
+ texmf-dist/doc/latex/latex-referenz/06-05-15.ltx
+ texmf-dist/doc/latex/latex-referenz/06-05-16.lux
+ texmf-dist/doc/latex/latex-referenz/06-05-17.ltx
+ texmf-dist/doc/latex/latex-referenz/06-05-18.ltx
+ texmf-dist/doc/latex/latex-referenz/06-05-19.ltx
+ texmf-dist/doc/latex/latex-referenz/06-05-2.ltx
+ texmf-dist/doc/latex/latex-referenz/06-05-20.ltx
+ texmf-dist/doc/latex/latex-referenz/06-05-21.ltx
+ texmf-dist/doc/latex/latex-referenz/06-05-22.ltx
+ texmf-dist/doc/latex/latex-referenz/06-05-23.ltx
+ texmf-dist/doc/latex/latex-referenz/06-05-3.ltx
+ texmf-dist/doc/latex/latex-referenz/06-05-4.ltx
+ texmf-dist/doc/latex/latex-referenz/06-05-5.ltx
+ texmf-dist/doc/latex/latex-referenz/06-05-6.ltx
+ texmf-dist/doc/latex/latex-referenz/06-05-7.ltx
+ texmf-dist/doc/latex/latex-referenz/06-05-8.ltx
+ texmf-dist/doc/latex/latex-referenz/06-05-9.ltx
+ texmf-dist/doc/latex/latex-referenz/06-06-1.ltx
+ texmf-dist/doc/latex/latex-referenz/07-03-1.ltx
+ texmf-dist/doc/latex/latex-referenz/07-03-10.ltx
+ texmf-dist/doc/latex/latex-referenz/07-03-11.ltx
+ texmf-dist/doc/latex/latex-referenz/07-03-12.ltx
+ texmf-dist/doc/latex/latex-referenz/07-03-13.ltx
+ texmf-dist/doc/latex/latex-referenz/07-03-14.ltx
+ texmf-dist/doc/latex/latex-referenz/07-03-15.ltx
+ texmf-dist/doc/latex/latex-referenz/07-03-16.ltx
+ texmf-dist/doc/latex/latex-referenz/07-03-17.ltx
+ texmf-dist/doc/latex/latex-referenz/07-03-18.ltx
+ texmf-dist/doc/latex/latex-referenz/07-03-19.ltx
+ texmf-dist/doc/latex/latex-referenz/07-03-2.ltx
+ texmf-dist/doc/latex/latex-referenz/07-03-20.ltx
+ texmf-dist/doc/latex/latex-referenz/07-03-21.ltx
+ texmf-dist/doc/latex/latex-referenz/07-03-3.ltx
+ texmf-dist/doc/latex/latex-referenz/07-03-4.ltx
+ texmf-dist/doc/latex/latex-referenz/07-03-5.ltx
+ texmf-dist/doc/latex/latex-referenz/07-03-6.ltx
+ texmf-dist/doc/latex/latex-referenz/07-03-7.ltx
+ texmf-dist/doc/latex/latex-referenz/07-03-8.ltx
+ texmf-dist/doc/latex/latex-referenz/07-03-9.ltx
+ texmf-dist/doc/latex/latex-referenz/07-04-1.ltx
+ texmf-dist/doc/latex/latex-referenz/07-04-2.ltx
+ texmf-dist/doc/latex/latex-referenz/07-04-3.ltx
+ texmf-dist/doc/latex/latex-referenz/07-04-4.ltx
+ texmf-dist/doc/latex/latex-referenz/08-08-1.xltx
+ texmf-dist/doc/latex/latex-referenz/08-08-2.xltx
+ texmf-dist/doc/latex/latex-referenz/08-08-3.lux
+ texmf-dist/doc/latex/latex-referenz/08-08-4.lux
+ texmf-dist/doc/latex/latex-referenz/08-08-5.lux
+ texmf-dist/doc/latex/latex-referenz/08-08-6.lux
texmf-dist/doc/latex/latex-referenz/09-03-1.ltx
- texmf-dist/doc/latex/latex-referenz/09-03-10.ltx
- texmf-dist/doc/latex/latex-referenz/09-03-11.ltx
- texmf-dist/doc/latex/latex-referenz/09-03-12.ltx
- texmf-dist/doc/latex/latex-referenz/09-03-13.ltx
- texmf-dist/doc/latex/latex-referenz/09-03-14.ltx
- texmf-dist/doc/latex/latex-referenz/09-03-15.ltx
- texmf-dist/doc/latex/latex-referenz/09-03-16.ltx2
texmf-dist/doc/latex/latex-referenz/09-03-2.ltx
texmf-dist/doc/latex/latex-referenz/09-03-3.ltx
texmf-dist/doc/latex/latex-referenz/09-03-4.ltx
- texmf-dist/doc/latex/latex-referenz/09-03-5.ltx
- texmf-dist/doc/latex/latex-referenz/09-03-6.ltx
- texmf-dist/doc/latex/latex-referenz/09-03-7.ltx
- texmf-dist/doc/latex/latex-referenz/09-03-8.ltx
- texmf-dist/doc/latex/latex-referenz/09-03-9.ltx
+ texmf-dist/doc/latex/latex-referenz/09-05-1.ltx
+ texmf-dist/doc/latex/latex-referenz/09-05-2.ltx
+ texmf-dist/doc/latex/latex-referenz/09-05-3.ltx
+ texmf-dist/doc/latex/latex-referenz/09-05-4.ltx
+ texmf-dist/doc/latex/latex-referenz/09-05-5.ltx
+ texmf-dist/doc/latex/latex-referenz/09-05-6.ltx
+ texmf-dist/doc/latex/latex-referenz/09-05-7.ltx
+ texmf-dist/doc/latex/latex-referenz/09-05-8.ltx
+ texmf-dist/doc/latex/latex-referenz/09-07-1.ltx
+ texmf-dist/doc/latex/latex-referenz/09-07-10.ltx
+ texmf-dist/doc/latex/latex-referenz/09-07-11.ltx
+ texmf-dist/doc/latex/latex-referenz/09-07-12.ltx
+ texmf-dist/doc/latex/latex-referenz/09-07-13.ltx
+ texmf-dist/doc/latex/latex-referenz/09-07-2.ltx
+ texmf-dist/doc/latex/latex-referenz/09-07-3.ltx
+ texmf-dist/doc/latex/latex-referenz/09-07-4.ltx
+ texmf-dist/doc/latex/latex-referenz/09-07-5.ltx
+ texmf-dist/doc/latex/latex-referenz/09-07-6.ltx
+ texmf-dist/doc/latex/latex-referenz/09-07-7.ltx
+ texmf-dist/doc/latex/latex-referenz/09-07-8.ltx
+ texmf-dist/doc/latex/latex-referenz/09-07-9.ltx
+ texmf-dist/doc/latex/latex-referenz/09-08-1.ltx
+ texmf-dist/doc/latex/latex-referenz/09-08-10.ltx
+ texmf-dist/doc/latex/latex-referenz/09-08-11.ltx
+ texmf-dist/doc/latex/latex-referenz/09-08-12.ltx
+ texmf-dist/doc/latex/latex-referenz/09-08-13.ltx
+ texmf-dist/doc/latex/latex-referenz/09-08-2.ltx
+ texmf-dist/doc/latex/latex-referenz/09-08-3.ltx
+ texmf-dist/doc/latex/latex-referenz/09-08-4.ltx
+ texmf-dist/doc/latex/latex-referenz/09-08-5.ltx
+ texmf-dist/doc/latex/latex-referenz/09-08-6.ltx
+ texmf-dist/doc/latex/latex-referenz/09-08-7.ltx
+ texmf-dist/doc/latex/latex-referenz/09-08-8.ltxps
+ texmf-dist/doc/latex/latex-referenz/09-08-9.ltx
+ texmf-dist/doc/latex/latex-referenz/10-02-1.ltx2crop
+ texmf-dist/doc/latex/latex-referenz/10-03-1.ltx
+ texmf-dist/doc/latex/latex-referenz/10-03-10.ltx
+ texmf-dist/doc/latex/latex-referenz/10-03-11.ltx
+ texmf-dist/doc/latex/latex-referenz/10-03-12.ltx
+ texmf-dist/doc/latex/latex-referenz/10-03-13.ltx
+ texmf-dist/doc/latex/latex-referenz/10-03-14.ltx
+ texmf-dist/doc/latex/latex-referenz/10-03-15.ltx
+ texmf-dist/doc/latex/latex-referenz/10-03-16.ltx
+ texmf-dist/doc/latex/latex-referenz/10-03-17.ltx
+ texmf-dist/doc/latex/latex-referenz/10-03-18.ltx
+ texmf-dist/doc/latex/latex-referenz/10-03-19.ltx
+ texmf-dist/doc/latex/latex-referenz/10-03-2.ltx
+ texmf-dist/doc/latex/latex-referenz/10-03-20.ltx
+ texmf-dist/doc/latex/latex-referenz/10-03-21.ltx
+ texmf-dist/doc/latex/latex-referenz/10-03-22.ltx
+ texmf-dist/doc/latex/latex-referenz/10-03-23.ltx
+ texmf-dist/doc/latex/latex-referenz/10-03-24.ltx
+ texmf-dist/doc/latex/latex-referenz/10-03-25.ltx
+ texmf-dist/doc/latex/latex-referenz/10-03-26.ltx
+ texmf-dist/doc/latex/latex-referenz/10-03-27.ltx
+ texmf-dist/doc/latex/latex-referenz/10-03-28.ltx
+ texmf-dist/doc/latex/latex-referenz/10-03-29.ltx
+ texmf-dist/doc/latex/latex-referenz/10-03-3.ltx
+ texmf-dist/doc/latex/latex-referenz/10-03-30.ltx
+ texmf-dist/doc/latex/latex-referenz/10-03-31.ltx
+ texmf-dist/doc/latex/latex-referenz/10-03-32.ltx2
+ texmf-dist/doc/latex/latex-referenz/10-03-4.ltx
+ texmf-dist/doc/latex/latex-referenz/10-03-5.lux
+ texmf-dist/doc/latex/latex-referenz/10-03-6.ltx
+ texmf-dist/doc/latex/latex-referenz/10-03-7.ltx
+ texmf-dist/doc/latex/latex-referenz/10-03-8.ltx
+ texmf-dist/doc/latex/latex-referenz/10-03-9.ltx
+ texmf-dist/doc/latex/latex-referenz/DEexa.sty
+ texmf-dist/doc/latex/latex-referenz/DEoptions.sty
texmf-dist/doc/latex/latex-referenz/README
-catalogue-ctan /info/examples/LaTeX-Referenz2
-catalogue-date 2012-07-07 16:18:52 +0200
+ texmf-dist/doc/latex/latex-referenz/UTF8.bib
+ texmf-dist/doc/latex/latex-referenz/bspfont.cls
+ texmf-dist/doc/latex/latex-referenz/caspervector.bib
+ texmf-dist/doc/latex/latex-referenz/de-examples-dw.bib
+ texmf-dist/doc/latex/latex-referenz/demo11.bib
+ texmf-dist/doc/latex/latex-referenz/exa-fontconfig.tex
+ texmf-dist/doc/latex/latex-referenz/exaarticle.cls
+ texmf-dist/doc/latex/latex-referenz/exaarticle2.cls
+ texmf-dist/doc/latex/latex-referenz/exabook.cls
+ texmf-dist/doc/latex/latex-referenz/exabook2.cls
+ texmf-dist/doc/latex/latex-referenz/examinimal.cls
+ texmf-dist/doc/latex/latex-referenz/examples-dw.bib
+ texmf-dist/doc/latex/latex-referenz/examples.bib
+ texmf-dist/doc/latex/latex-referenz/examplesA.bib
+ texmf-dist/doc/latex/latex-referenz/examplesB.bib
+ texmf-dist/doc/latex/latex-referenz/exareport.cls
+ texmf-dist/doc/latex/latex-referenz/exaxetex.cls
+ texmf-dist/doc/latex/latex-referenz/fontDemo-E.tex
+ texmf-dist/doc/latex/latex-referenz/fontDemo.tex
+ texmf-dist/doc/latex/latex-referenz/hv.bib
+ texmf-dist/doc/latex/latex-referenz/images/B.eps
+ texmf-dist/doc/latex/latex-referenz/images/B.pdf
+ texmf-dist/doc/latex/latex-referenz/klassiker.bib
+ texmf-dist/doc/latex/latex-referenz/l3keysdemo.sty
+ texmf-dist/doc/latex/latex-referenz/luabibentry.lua
+ texmf-dist/doc/latex/latex-referenz/plainDemo.bst
+ texmf-dist/doc/latex/latex-referenz/screxa.cls
+ texmf-dist/doc/latex/latex-referenz/screxabook.cls
+ texmf-dist/doc/latex/latex-referenz/screxareport.cls
+ texmf-dist/doc/latex/latex-referenz/textdemo.sty
+catalogue-ctan /info/examples/LaTeX-Referenz
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
name latex-tabellen
@@ -90708,12 +99771,12 @@ docfiles size=324
texmf-dist/doc/latex/latex-tabellen/07-03-2.ltx2
texmf-dist/doc/latex/latex-tabellen/README
catalogue-ctan /info/examples/Tabellen2
-catalogue-date 2012-07-07 16:18:52 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
name latex-tds
category Package
-revision 29325
+revision 34068
shortdesc A structured copy of the LaTeX distribution.
longdesc This bundle provides a set of zip file modules containing TDS-
longdesc compliant trees for items of the LaTeX distribution (both the
@@ -90740,7 +99803,7 @@ srcfiles size=95
texmf-dist/source/latex/latex-tds/patch/amsldoc.tex.diff
texmf-dist/source/latex/latex-tds/patch/changes.tex.diff
texmf-dist/source/latex/latex-tds/patch/encguide.tex.diff
- texmf-dist/source/latex/latex-tds/patch/hebrew.fdd.diff
+ texmf-dist/source/latex/latex-tds/patch/errorlog.tex.diff
texmf-dist/source/latex/latex-tds/patch/logmac.tex.diff
texmf-dist/source/latex/latex-tds/patch/source2e.tex.diff
texmf-dist/source/latex/latex-tds/patch/tlc2.err.diff
@@ -90749,7 +99812,6 @@ srcfiles size=95
texmf-dist/source/latex/latex-tds/patch/utf8ienc.dtx.diff
texmf-dist/source/latex/latex-tds/patch/webman.tex.diff
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.all
@@ -90757,8 +99819,9 @@ srcfiles size=95
texmf-dist/source/latex/latex-tds/tex/errata.drv
texmf-dist/source/latex/latex-tds/tex/errorlog.drv
texmf-dist/source/latex/latex-tds/tex/etex_man.drv
- texmf-dist/source/latex/latex-tds/tex/greek-usage.tex
+ texmf-dist/source/latex/latex-tds/tex/fix-expl3-lua.ini
texmf-dist/source/latex/latex-tds/tex/hyperref.cfg
+ texmf-dist/source/latex/latex-tds/tex/knuth-outline.tex
texmf-dist/source/latex/latex-tds/tex/knuth.drv
texmf-dist/source/latex/latex-tds/tex/ltnews.cfg
texmf-dist/source/latex/latex-tds/tex/ltnews.tex
@@ -90775,7 +99838,7 @@ srcfiles size=95
texmf-dist/source/latex/latex-tds/tex/tools-overview.cls
texmf-dist/source/latex/latex-tds/tex/tools.tex
catalogue-ctan /macros/latex/contrib/latex-tds
-catalogue-date 2013-03-10 15:09:27 +0100
+catalogue-date 2014-05-16 08:01:22 +0200
catalogue-license lppl1.3
name latex-veryshortguide
@@ -90800,7 +99863,7 @@ docfiles size=473
texmf-dist/doc/latex/latex-veryshortguide/vsg-3.jpg
texmf-dist/doc/latex/latex-veryshortguide/vsg-4.jpg
catalogue-ctan /info/latex-veryshortguide
-catalogue-date 2013-01-22 18:02:11 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
name latex-web-companion
@@ -90972,7 +100035,7 @@ catalogue-license lppl
name latex2e-help-texinfo
category Package
-revision 30487
+revision 34128
shortdesc Unoffical reference manual covering LaTeX2e.
longdesc The manual is provided as Texinfo source (which was originally
longdesc derived from the VMS help file in the DECUS TeX distribution of
@@ -90980,7 +100043,7 @@ longdesc 1990, with many subsequent changes). This is a collaborative
longdesc development, and details of getting involved are to be found on
longdesc the package home page. All the other formats in the
longdesc distribution are derived from the Texinfo source, as usual.
-docfiles size=714
+docfiles size=719
texmf-dist/doc/info/latex2e.info
texmf-dist/doc/latex/latex2e-help-texinfo/ChangeLog
texmf-dist/doc/latex/latex2e-help-texinfo/Makefile
@@ -90994,13 +100057,13 @@ docfiles size=714
texmf-dist/doc/latex/latex2e-help-texinfo/latex2e.xml
texmf-dist/doc/latex/latex2e-help-texinfo/ltx-help.el
catalogue-ctan /info/latex2e-help-texinfo
-catalogue-date 2013-05-14 23:18:47 +0200
+catalogue-date 2014-05-20 13:50:35 +0200
catalogue-license other-free
name latex2e-help-texinfo-spanish
category Package
-revision 29725
-docfiles size=740
+revision 34129
+docfiles size=749
texmf-dist/doc/info/latex2e-es.info
texmf-dist/doc/latex/latex2e-help-texinfo-spanish/latex2e-es.dbk
texmf-dist/doc/latex/latex2e-help-texinfo-spanish/latex2e-es.html
@@ -91011,7 +100074,7 @@ docfiles size=740
name latex2man
category Package
-revision 29725
+revision 31989
shortdesc Translate LaTeX-based manual pages into Unix man format.
longdesc A tool to translate UNIX manual pages written with LaTeX into a
longdesc man-page format understood by the Unix man(1) command.
@@ -91019,15 +100082,16 @@ longdesc Alternatively HTML or TexInfo code can be produced. Output of
longdesc parts of the text may be supressed using the conditional text
longdesc feature.
depend latex2man.ARCH
-docfiles size=109
+docfiles size=117
texmf-dist/doc/info/latex2man.info
+ texmf-dist/doc/man/man1/latex2man.1
+ texmf-dist/doc/man/man1/latex2man.man1.pdf
texmf-dist/doc/support/latex2man/CHANGES
texmf-dist/doc/support/latex2man/INSTALL
texmf-dist/doc/support/latex2man/Makefile
texmf-dist/doc/support/latex2man/README details="Readme"
texmf-dist/doc/support/latex2man/THIS-IS-VERSION-1.24
texmf-dist/doc/support/latex2man/latex2man-CHANGES.html
- texmf-dist/doc/support/latex2man/latex2man.1
texmf-dist/doc/support/latex2man/latex2man.css
texmf-dist/doc/support/latex2man/latex2man.html details="Package documentation (HTML)"
texmf-dist/doc/support/latex2man/latex2man.pdf details="Package documentation (PDF)"
@@ -91128,13 +100192,6 @@ shortdesc i386-solaris files of latex2man
binfiles arch=i386-solaris size=1
bin/i386-solaris/latex2man
-name latex2man.mips-irix
-category Package
-revision 29949
-shortdesc mips-irix files of latex2man
-binfiles arch=mips-irix size=1
- bin/mips-irix/latex2man
-
name latex2man.mipsel-linux
category Package
revision 29946
@@ -91170,6 +100227,13 @@ shortdesc win32 files of latex2man
binfiles arch=win32 size=1
bin/win32/latex2man.exe
+name latex2man.x86_64-cygwin
+category Package
+revision 33557
+shortdesc x86_64-cygwin files of latex2man
+binfiles arch=x86_64-cygwin size=1
+ bin/x86_64-cygwin/latex2man
+
name latex2man.x86_64-darwin
category Package
revision 18441
@@ -91250,7 +100314,7 @@ docfiles size=248
texmf-dist/doc/latex/latex4wp-it/xfig.eps
texmf-dist/doc/latex/latex4wp-it/xfig.png
catalogue-ctan /info/latex4wp-it
-catalogue-date 2012-06-09 10:33:16 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license fdl
catalogue-version 1.0.8
@@ -91266,7 +100330,7 @@ docfiles size=50
texmf-dist/doc/latex/latexcheat/latexsheet.pdf details="The document itself"
texmf-dist/doc/latex/latexcheat/latexsheet.tex
catalogue-ctan /info/latexcheat/latexcheat
-catalogue-date 2012-06-09 10:33:16 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.13
@@ -91282,7 +100346,7 @@ docfiles size=79
texmf-dist/doc/latex/latexcheat-esmx/latexsheet-esmx.pdf details="The document itself" language="es"
texmf-dist/doc/latex/latexcheat-esmx/latexsheet-esmx.tex
catalogue-ctan /info/latexcheat/latexcheat-esmx
-catalogue-date 2012-06-09 10:33:16 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
name latexcheat-ptbr
@@ -91296,7 +100360,7 @@ docfiles size=68
texmf-dist/doc/latex/latexcheat-ptbr/latexsheet-ptbr.pdf details="The document itself" language="pt"
texmf-dist/doc/latex/latexcheat-ptbr/latexsheet-ptbr.tex
catalogue-ctan /info/latexcheat/latexcheat-ptbr
-catalogue-date 2012-06-09 10:33:16 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.13
@@ -91322,7 +100386,7 @@ runfiles size=15
name latexdiff
category Package
-revision 29752
+revision 30961
shortdesc Determine and mark up significant differences between latex files.
longdesc Latexdiff is a Perl script for visual mark up and revision of
longdesc significant differences between two latex files. Various
@@ -91335,7 +100399,7 @@ longdesc all changes. Manual editing of the difference file can be used
longdesc to override this default behaviour and accept or reject
longdesc selected changes only.
depend latexdiff.ARCH
-docfiles size=168
+docfiles size=187
texmf-dist/doc/man/man1/latexdiff-vc.1
texmf-dist/doc/man/man1/latexdiff-vc.man1.pdf
texmf-dist/doc/man/man1/latexdiff.1
@@ -91344,10 +100408,6 @@ docfiles size=168
texmf-dist/doc/man/man1/latexrevise.man1.pdf
texmf-dist/doc/support/latexdiff/COPYING
texmf-dist/doc/support/latexdiff/README details="Package Readme"
- texmf-dist/doc/support/latexdiff/contrib/README.latexchanges
- texmf-dist/doc/support/latexdiff/contrib/latexchanges.py
- texmf-dist/doc/support/latexdiff/contrib/latexdiff-wrap
- texmf-dist/doc/support/latexdiff/contrib/latexdiff.spec
texmf-dist/doc/support/latexdiff/doc/example-diff.tex
texmf-dist/doc/support/latexdiff/doc/latexdiff-man.pdf details="Package manual"
texmf-dist/doc/support/latexdiff/doc/latexdiff-man.tex
@@ -91355,14 +100415,14 @@ docfiles size=168
texmf-dist/doc/support/latexdiff/example/example-rev.tex
texmf-dist/doc/support/latexdiff/latexdiff
texmf-dist/doc/support/latexdiff/latexdiff-fast
-runfiles size=44
+runfiles size=45
texmf-dist/scripts/latexdiff/latexdiff-vc.pl
texmf-dist/scripts/latexdiff/latexdiff.pl
texmf-dist/scripts/latexdiff/latexrevise.pl
catalogue-ctan /support/latexdiff
-catalogue-date 2012-12-18 12:31:15 +0100
+catalogue-date 2013-06-17 18:07:35 +0200
catalogue-license gpl
-catalogue-version 1.0.2
+catalogue-version 1.0.3
name latexdiff.alpha-linux
category Package
@@ -91472,15 +100532,6 @@ binfiles arch=i386-solaris size=3
bin/i386-solaris/latexdiff-vc
bin/i386-solaris/latexrevise
-name latexdiff.mips-irix
-category Package
-revision 29949
-shortdesc mips-irix files of latexdiff
-binfiles arch=mips-irix size=3
- bin/mips-irix/latexdiff
- bin/mips-irix/latexdiff-vc
- bin/mips-irix/latexrevise
-
name latexdiff.mipsel-linux
category Package
revision 29946
@@ -91526,6 +100577,15 @@ binfiles arch=win32 size=3
bin/win32/latexdiff.exe
bin/win32/latexrevise.exe
+name latexdiff.x86_64-cygwin
+category Package
+revision 33557
+shortdesc x86_64-cygwin files of latexdiff
+binfiles arch=x86_64-cygwin size=3
+ bin/x86_64-cygwin/latexdiff
+ bin/x86_64-cygwin/latexdiff-vc
+ bin/x86_64-cygwin/latexrevise
+
name latexdiff.x86_64-darwin
category Package
revision 18441
@@ -91573,7 +100633,7 @@ srcfiles size=8
runfiles size=1
texmf-dist/tex/latex/latexfileinfo-pkgs/latexfileinfo_pkgs.RLS
catalogue-ctan /info/latexfileinfo-pkgs
-catalogue-date 2012-05-30 14:24:48 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 0.22
@@ -91593,7 +100653,7 @@ docfiles size=2
runfiles size=1
texmf-dist/scripts/latexfileversion/latexfileversion
catalogue-ctan /support/latexfileversion
-catalogue-date 2012-05-22 13:29:11 +0200
+catalogue-date 2013-11-21 21:33:57 +0100
catalogue-license lppl
catalogue-version v0.3
@@ -91681,13 +100741,6 @@ shortdesc i386-solaris files of latexfileversion
binfiles arch=i386-solaris size=1
bin/i386-solaris/latexfileversion
-name latexfileversion.mips-irix
-category Package
-revision 29949
-shortdesc mips-irix files of latexfileversion
-binfiles arch=mips-irix size=1
- bin/mips-irix/latexfileversion
-
name latexfileversion.mipsel-linux
category Package
revision 29946
@@ -91716,6 +100769,13 @@ shortdesc universal-darwin files of latexfileversion
binfiles arch=universal-darwin size=1
bin/universal-darwin/latexfileversion
+name latexfileversion.x86_64-cygwin
+category Package
+revision 33557
+shortdesc x86_64-cygwin files of latexfileversion
+binfiles arch=x86_64-cygwin size=1
+ bin/x86_64-cygwin/latexfileversion
+
name latexfileversion.x86_64-darwin
category Package
revision 25012
@@ -91737,9 +100797,207 @@ shortdesc x86_64-solaris files of latexfileversion
binfiles arch=x86_64-solaris size=1
bin/x86_64-solaris/latexfileversion
+name latexindent
+category Package
+revision 32228
+shortdesc Indent a LaTeX document, highlighting the programming structure.
+longdesc The Perl script (also available as a windows executable)
+longdesc processes a LaTeX file, indenting parts so as to highlight the
+longdesc structure for the reader.
+depend latexindent.ARCH
+docfiles size=200
+ texmf-dist/doc/support/latexindent/README details="Readme"
+ texmf-dist/doc/support/latexindent/documentation/manual.pdf details="Package documentation"
+ texmf-dist/doc/support/latexindent/documentation/manual.tex
+ texmf-dist/doc/support/latexindent/indent.yaml
+ texmf-dist/doc/support/latexindent/success/bigTest.tex
+ texmf-dist/doc/support/latexindent/success/braceTest.tex
+ texmf-dist/doc/support/latexindent/success/braceTestsmall.tex
+ texmf-dist/doc/support/latexindent/success/environments.tex
+ texmf-dist/doc/support/latexindent/success/filecontents.tex
+ texmf-dist/doc/support/latexindent/success/matrix.tex
+ texmf-dist/doc/support/latexindent/success/nestedalignment.tex
+ texmf-dist/doc/support/latexindent/success/nestedalignment1.tex
+ texmf-dist/doc/support/latexindent/success/outputfile.tex
+ texmf-dist/doc/support/latexindent/success/preamble.tex
+ texmf-dist/doc/support/latexindent/success/pstricks1.tex
+ texmf-dist/doc/support/latexindent/success/pstricks2.tex
+ texmf-dist/doc/support/latexindent/success/pstricks3.tex
+ texmf-dist/doc/support/latexindent/success/sampleAFTER.tex
+ texmf-dist/doc/support/latexindent/success/sampleBEFORE.tex
+ texmf-dist/doc/support/latexindent/success/stylefile.tex
+ texmf-dist/doc/support/latexindent/success/table1.tex
+ texmf-dist/doc/support/latexindent/success/table2.tex
+ texmf-dist/doc/support/latexindent/success/table3.tex
+ texmf-dist/doc/support/latexindent/success/testHeadings.tex
+ texmf-dist/doc/support/latexindent/success/testHeadings1.tex
+ texmf-dist/doc/support/latexindent/success/theorem.tex
+ texmf-dist/doc/support/latexindent/success/tikz1.tex
+ texmf-dist/doc/support/latexindent/success/tikz2.tex
+ texmf-dist/doc/support/latexindent/success/tikz3.tex
+ texmf-dist/doc/support/latexindent/success/tikz4.tex
+ texmf-dist/doc/support/latexindent/success/tikz5.tex
+ texmf-dist/doc/support/latexindent/success/torusPGF.tex
+ texmf-dist/doc/support/latexindent/success/torusPSTricks.tex
+ texmf-dist/doc/support/latexindent/success/trailingComments.tex
+runfiles size=18
+ texmf-dist/scripts/latexindent/defaultSettings.yaml
+ texmf-dist/scripts/latexindent/latexindent.pl
+catalogue-ctan /support/latexindent
+catalogue-date 2014-02-26 23:03:13 +0100
+catalogue-license gpl3
+catalogue-version 1.1R
+
+name latexindent.alpha-linux
+category Package
+revision 32150
+shortdesc alpha-linux files of latexindent
+binfiles arch=alpha-linux size=1
+ bin/alpha-linux/latexindent
+
+name latexindent.amd64-freebsd
+category Package
+revision 32150
+shortdesc amd64-freebsd files of latexindent
+binfiles arch=amd64-freebsd size=1
+ bin/amd64-freebsd/latexindent
+
+name latexindent.amd64-kfreebsd
+category Package
+revision 32150
+shortdesc amd64-kfreebsd files of latexindent
+binfiles arch=amd64-kfreebsd size=1
+ bin/amd64-kfreebsd/latexindent
+
+name latexindent.amd64-netbsd
+category Package
+revision 32150
+shortdesc amd64-netbsd files of latexindent
+binfiles arch=amd64-netbsd size=1
+ bin/amd64-netbsd/latexindent
+
+name latexindent.armel-linux
+category Package
+revision 32150
+shortdesc armel-linux files of latexindent
+binfiles arch=armel-linux size=1
+ bin/armel-linux/latexindent
+
+name latexindent.armhf-linux
+category Package
+revision 32150
+shortdesc armhf-linux files of latexindent
+binfiles arch=armhf-linux size=1
+ bin/armhf-linux/latexindent
+
+name latexindent.i386-cygwin
+category Package
+revision 32150
+shortdesc i386-cygwin files of latexindent
+binfiles arch=i386-cygwin size=1
+ bin/i386-cygwin/latexindent
+
+name latexindent.i386-freebsd
+category Package
+revision 32150
+shortdesc i386-freebsd files of latexindent
+binfiles arch=i386-freebsd size=1
+ bin/i386-freebsd/latexindent
+
+name latexindent.i386-kfreebsd
+category Package
+revision 32150
+shortdesc i386-kfreebsd files of latexindent
+binfiles arch=i386-kfreebsd size=1
+ bin/i386-kfreebsd/latexindent
+
+name latexindent.i386-linux
+category Package
+revision 32150
+shortdesc i386-linux files of latexindent
+binfiles arch=i386-linux size=1
+ bin/i386-linux/latexindent
+
+name latexindent.i386-netbsd
+category Package
+revision 32150
+shortdesc i386-netbsd files of latexindent
+binfiles arch=i386-netbsd size=1
+ bin/i386-netbsd/latexindent
+
+name latexindent.i386-solaris
+category Package
+revision 32150
+shortdesc i386-solaris files of latexindent
+binfiles arch=i386-solaris size=1
+ bin/i386-solaris/latexindent
+
+name latexindent.mipsel-linux
+category Package
+revision 32150
+shortdesc mipsel-linux files of latexindent
+binfiles arch=mipsel-linux size=1
+ bin/mipsel-linux/latexindent
+
+name latexindent.powerpc-linux
+category Package
+revision 32150
+shortdesc powerpc-linux files of latexindent
+binfiles arch=powerpc-linux size=1
+ bin/powerpc-linux/latexindent
+
+name latexindent.sparc-solaris
+category Package
+revision 32150
+shortdesc sparc-solaris files of latexindent
+binfiles arch=sparc-solaris size=1
+ bin/sparc-solaris/latexindent
+
+name latexindent.universal-darwin
+category Package
+revision 32150
+shortdesc universal-darwin files of latexindent
+binfiles arch=universal-darwin size=1
+ bin/universal-darwin/latexindent
+
+name latexindent.win32
+category Package
+revision 32272
+shortdesc win32 files of latexindent
+binfiles arch=win32 size=1
+ bin/win32/latexindent.exe
+
+name latexindent.x86_64-cygwin
+category Package
+revision 33557
+shortdesc x86_64-cygwin files of latexindent
+binfiles arch=x86_64-cygwin size=1
+ bin/x86_64-cygwin/latexindent
+
+name latexindent.x86_64-darwin
+category Package
+revision 32150
+shortdesc x86_64-darwin files of latexindent
+binfiles arch=x86_64-darwin size=1
+ bin/x86_64-darwin/latexindent
+
+name latexindent.x86_64-linux
+category Package
+revision 32150
+shortdesc x86_64-linux files of latexindent
+binfiles arch=x86_64-linux size=1
+ bin/x86_64-linux/latexindent
+
+name latexindent.x86_64-solaris
+category Package
+revision 32150
+shortdesc x86_64-solaris files of latexindent
+binfiles arch=x86_64-solaris size=1
+ bin/x86_64-solaris/latexindent
+
name latexmk
category Package
-revision 29752
+revision 33756
shortdesc Fully automated LaTeX document generation.
longdesc Latexmk completely automates the process of generating a LaTeX
longdesc document. Given the source files for a document, latexmk issues
@@ -91748,10 +101006,10 @@ longdesc .pdf or hardcopy version of the document. An important feature
longdesc is the "preview continuous mode", where the script watches all
longdesc of the source files (primary file and included TeX and graphics
longdesc files), and reruns LaTeX, etc., whenever a source file has
-longdesc changed. Thus a previewer can have an updated display whenever
-longdesc the source files change.
+longdesc changed. Thus a previewer can offer a display of the document's
+longdesc latest state.
depend latexmk.ARCH
-docfiles size=167
+docfiles size=180
texmf-dist/doc/man/man1/latexmk.1
texmf-dist/doc/man/man1/latexmk.man1.pdf
texmf-dist/doc/support/latexmk/CHANGES
@@ -91759,14 +101017,17 @@ docfiles size=167
texmf-dist/doc/support/latexmk/INSTALL
texmf-dist/doc/support/latexmk/README details="Readme"
texmf-dist/doc/support/latexmk/example_rcfiles/README details="Readme"
- texmf-dist/doc/support/latexmk/example_rcfiles/Sweave_latexmkrc
- texmf-dist/doc/support/latexmk/example_rcfiles/TeX4ht-latexmkrc
texmf-dist/doc/support/latexmk/example_rcfiles/asymptote_latexmkrc
+ texmf-dist/doc/support/latexmk/example_rcfiles/clean_pattern_latexmkrc
+ texmf-dist/doc/support/latexmk/example_rcfiles/exceltex_latexmkrc
texmf-dist/doc/support/latexmk/example_rcfiles/glossary_latexmkrc
+ texmf-dist/doc/support/latexmk/example_rcfiles/lualatex_latexmkrc
texmf-dist/doc/support/latexmk/example_rcfiles/mpost_latexmkrc
texmf-dist/doc/support/latexmk/example_rcfiles/pdflatexmkrc
+ texmf-dist/doc/support/latexmk/example_rcfiles/pythontex-latexmkrc
texmf-dist/doc/support/latexmk/example_rcfiles/sagetex_latexmkrc
texmf-dist/doc/support/latexmk/example_rcfiles/sweave_latexmkrc
+ texmf-dist/doc/support/latexmk/example_rcfiles/tex4ht-latexmkrc
texmf-dist/doc/support/latexmk/example_rcfiles/xelatex_latexmkrc
texmf-dist/doc/support/latexmk/extra-scripts/README1
texmf-dist/doc/support/latexmk/extra-scripts/dvipdfm_call
@@ -91785,12 +101046,12 @@ docfiles size=167
texmf-dist/doc/support/latexmk/latexmk.txt details="Manual page, text format"
srcfiles size=1
texmf-dist/source/support/latexmk/latexmk.bat
-runfiles size=78
+runfiles size=79
texmf-dist/scripts/latexmk/latexmk.pl
catalogue-ctan /support/latexmk
-catalogue-date 2012-11-17 01:32:51 +0100
+catalogue-date 2013-12-03 18:34:20 +0100
catalogue-license gpl
-catalogue-version 4.35
+catalogue-version 4.39
name latexmk.alpha-linux
category Package
@@ -91876,13 +101137,6 @@ shortdesc i386-solaris files of latexmk
binfiles arch=i386-solaris size=1
bin/i386-solaris/latexmk
-name latexmk.mips-irix
-category Package
-revision 29949
-shortdesc mips-irix files of latexmk
-binfiles arch=mips-irix size=1
- bin/mips-irix/latexmk
-
name latexmk.mipsel-linux
category Package
revision 29946
@@ -91918,6 +101172,13 @@ shortdesc win32 files of latexmk
binfiles arch=win32 size=1
bin/win32/latexmk.exe
+name latexmk.x86_64-cygwin
+category Package
+revision 33557
+shortdesc x86_64-cygwin files of latexmk
+binfiles arch=x86_64-cygwin size=1
+ bin/x86_64-cygwin/latexmk
+
name latexmk.x86_64-darwin
category Package
revision 18441
@@ -91963,27 +101224,33 @@ catalogue-version 1.2.1
name latexpand
category Package
-revision 28402
+revision 33372
shortdesc Expand \input and \include in a LaTeX document.
longdesc Latexpand is a Perl script that simply replaces \input and
longdesc \include commands with the content of the file input/included.
longdesc The script does not deal with \includeonly commands.
depend latexpand.ARCH
-docfiles size=10
+docfiles size=17
texmf-dist/doc/support/latexpand/Makefile
- texmf-dist/doc/support/latexpand/README
- texmf-dist/doc/support/latexpand/tests/README
+ texmf-dist/doc/support/latexpand/README details="Readme"
+ texmf-dist/doc/support/latexpand/tests/README details="Readme"
+ texmf-dist/doc/support/latexpand/tests/df-conflict/a.tex
+ texmf-dist/doc/support/latexpand/tests/df-conflict/b.tex
+ texmf-dist/doc/support/latexpand/tests/df-conflict/b/README-df-conflict.txt
texmf-dist/doc/support/latexpand/tests/foo.tex
+ texmf-dist/doc/support/latexpand/tests/includegraphic.tex
texmf-dist/doc/support/latexpand/tests/includer.tex
texmf-dist/doc/support/latexpand/tests/just-comment.tex
texmf-dist/doc/support/latexpand/tests/my-package.sty
texmf-dist/doc/support/latexpand/tests/no-eol.tex
texmf-dist/doc/support/latexpand/tests/package-user.tex
+ texmf-dist/doc/support/latexpand/tests/smile.pdf
+ texmf-dist/doc/support/latexpand/tests/text-after-end.tex
texmf-dist/doc/support/latexpand/version.txt
runfiles size=2
texmf-dist/scripts/latexpand/latexpand
catalogue-ctan /support/latexpand
-catalogue-date 2012-11-28 13:57:31 +0100
+catalogue-date 2014-04-04 14:16:13 +0200
catalogue-license bsd
name latexpand.alpha-linux
@@ -92070,13 +101337,6 @@ shortdesc i386-solaris files of latexpand
binfiles arch=i386-solaris size=1
bin/i386-solaris/latexpand
-name latexpand.mips-irix
-category Package
-revision 29949
-shortdesc mips-irix files of latexpand
-binfiles arch=mips-irix size=1
- bin/mips-irix/latexpand
-
name latexpand.mipsel-linux
category Package
revision 29946
@@ -92112,6 +101372,13 @@ shortdesc win32 files of latexpand
binfiles arch=win32 size=1
bin/win32/latexpand.exe
+name latexpand.x86_64-cygwin
+category Package
+revision 33557
+shortdesc x86_64-cygwin files of latexpand
+binfiles arch=x86_64-cygwin size=1
+ bin/x86_64-cygwin/latexpand
+
name latexpand.x86_64-darwin
category Package
revision 27025
@@ -92136,7 +101403,7 @@ binfiles arch=x86_64-solaris size=1
name lato
category Package
revision 24986
-shortdesc Lato font fanily and LaTeX support.
+shortdesc Lato font family and LaTeX support.
longdesc Lato is a sanserif typeface family designed in the Summer 2010
longdesc by Warsaw-based designer Lukasz Dziedzic for the tyPoland
longdesc foundry. This font, which includes five weights (hairline,
@@ -92355,7 +101622,7 @@ runfiles size=1022
texmf-dist/tex/latex/lato/t1fla.fd
texmf-dist/tex/latex/lato/ts1fla.fd
catalogue-ctan /fonts/lato
-catalogue-date 2012-07-05 14:57:44 +0200
+catalogue-date 2014-05-07 18:10:38 +0200
catalogue-license lppl1.3
catalogue-version 2.2
@@ -92449,28 +101716,27 @@ catalogue-version 0.3
name lcdftypetools
category TLCore
-revision 29764
+revision 33736
catalogue lcdf-typetools
shortdesc A bundle of outline font manipulation tools.
-longdesc This bundle of tools comprises: - Cfftot1, which translates a
+longdesc This bundle of tools comprises: Cfftot1, which translates a
longdesc Compact Font Format (CFF) font, or a PostScript-flavored
longdesc OpenType font, into PostScript Type 1 format. It correctly
-longdesc handles subroutines and hints; - Mmafm and mmpfb, which create
+longdesc handles subroutines and hints; Mmafm and mmpfb, which create
longdesc instances of multiple-master fonts (mmafm and mmpfb were
-longdesc previously distributed in their own package, mminstance); -
+longdesc previously distributed in their own package, mminstance);
longdesc Otfinfo, which reports information about OpenType fonts, such
longdesc as the features they support and the contents of their 'size'
-longdesc optical size features; - Otftotfm, which creates TeX font
-longdesc metrics and encodings that correspond to a PostScript-flavored
-longdesc OpenType font. It will interpret glyph positionings,
-longdesc substitutions, and ligatures as far as it is able. You can say
-longdesc which OpenType features should be activated; - T1dotlessj,
-longdesc creates a Type 1 font whose only character is a dotless j
-longdesc matching the input font's design; - T1lint, which checks a Type
-longdesc 1 font for correctness; - T1reencode, which replaces a font's
-longdesc internal encoding with one you specify; and - T1testpage, which
-longdesc creates a PostScript proof for a Type 1 font. It is preliminary
-longdesc software.
+longdesc optical size features; Otftotfm, which creates TeX font metrics
+longdesc and encodings that correspond to a PostScript-flavored OpenType
+longdesc font. It will interpret glyph positionings, substitutions, and
+longdesc ligatures as far as it is able. You can say which OpenType
+longdesc features should be activated; T1dotlessj, creates a Type 1 font
+longdesc whose only character is a dotless j matching the input font's
+longdesc design; T1lint, which checks a Type 1 font for correctness;
+longdesc T1reencode, which replaces a font's internal encoding with one
+longdesc you specify; and T1testpage, which creates a PostScript proof
+longdesc for a Type 1 font. It is preliminary software.
depend glyphlist
depend lcdftypetools.ARCH
docfiles size=65
@@ -92497,15 +101763,15 @@ docfiles size=65
texmf-dist/doc/man/man1/ttftotype42.1
texmf-dist/doc/man/man1/ttftotype42.man1.pdf
catalogue-ctan /fonts/utilities/lcdf-typetools
-catalogue-date 2013-04-12 10:31:24 +0200
+catalogue-date 2014-01-06 13:53:04 +0100
catalogue-license gpl
catalogue-version 2.98
name lcdftypetools.alpha-linux
category TLCore
-revision 29891
+revision 33553
shortdesc alpha-linux files of lcdftypetools
-binfiles arch=alpha-linux size=1407
+binfiles arch=alpha-linux size=1401
bin/alpha-linux/cfftot1
bin/alpha-linux/mmafm
bin/alpha-linux/mmpfb
@@ -92520,7 +101786,7 @@ binfiles arch=alpha-linux size=1407
name lcdftypetools.amd64-freebsd
category TLCore
-revision 29874
+revision 33488
shortdesc amd64-freebsd files of lcdftypetools
binfiles arch=amd64-freebsd size=1113
bin/amd64-freebsd/cfftot1
@@ -92537,7 +101803,7 @@ binfiles arch=amd64-freebsd size=1113
name lcdftypetools.amd64-kfreebsd
category TLCore
-revision 30655
+revision 33864
shortdesc amd64-kfreebsd files of lcdftypetools
binfiles arch=amd64-kfreebsd size=1086
bin/amd64-kfreebsd/cfftot1
@@ -92554,7 +101820,7 @@ binfiles arch=amd64-kfreebsd size=1086
name lcdftypetools.amd64-netbsd
category TLCore
-revision 30660
+revision 33726
shortdesc amd64-netbsd files of lcdftypetools
binfiles arch=amd64-netbsd size=1069
bin/amd64-netbsd/cfftot1
@@ -92571,9 +101837,9 @@ binfiles arch=amd64-netbsd size=1069
name lcdftypetools.armel-linux
category TLCore
-revision 29888
+revision 33916
shortdesc armel-linux files of lcdftypetools
-binfiles arch=armel-linux size=970
+binfiles arch=armel-linux size=971
bin/armel-linux/cfftot1
bin/armel-linux/mmafm
bin/armel-linux/mmpfb
@@ -92588,9 +101854,9 @@ binfiles arch=armel-linux size=970
name lcdftypetools.armhf-linux
category TLCore
-revision 30443
+revision 34125
shortdesc armhf-linux files of lcdftypetools
-binfiles arch=armhf-linux size=879
+binfiles arch=armhf-linux size=878
bin/armhf-linux/cfftot1
bin/armhf-linux/mmafm
bin/armhf-linux/mmpfb
@@ -92605,9 +101871,9 @@ binfiles arch=armhf-linux size=879
name lcdftypetools.i386-cygwin
category TLCore
-revision 30526
+revision 34161
shortdesc i386-cygwin files of lcdftypetools
-binfiles arch=i386-cygwin size=1051
+binfiles arch=i386-cygwin size=1057
bin/i386-cygwin/cfftot1.exe
bin/i386-cygwin/mmafm.exe
bin/i386-cygwin/mmpfb.exe
@@ -92622,7 +101888,7 @@ binfiles arch=i386-cygwin size=1051
name lcdftypetools.i386-freebsd
category TLCore
-revision 29874
+revision 33488
shortdesc i386-freebsd files of lcdftypetools
binfiles arch=i386-freebsd size=1048
bin/i386-freebsd/cfftot1
@@ -92639,9 +101905,9 @@ binfiles arch=i386-freebsd size=1048
name lcdftypetools.i386-kfreebsd
category TLCore
-revision 30440
+revision 33864
shortdesc i386-kfreebsd files of lcdftypetools
-binfiles arch=i386-kfreebsd size=1070
+binfiles arch=i386-kfreebsd size=1074
bin/i386-kfreebsd/cfftot1
bin/i386-kfreebsd/mmafm
bin/i386-kfreebsd/mmpfb
@@ -92656,9 +101922,9 @@ binfiles arch=i386-kfreebsd size=1070
name lcdftypetools.i386-linux
category TLCore
-revision 30088
+revision 33479
shortdesc i386-linux files of lcdftypetools
-binfiles arch=i386-linux size=1095
+binfiles arch=i386-linux size=1162
bin/i386-linux/cfftot1
bin/i386-linux/mmafm
bin/i386-linux/mmpfb
@@ -92673,9 +101939,9 @@ binfiles arch=i386-linux size=1095
name lcdftypetools.i386-netbsd
category TLCore
-revision 30191
+revision 33562
shortdesc i386-netbsd files of lcdftypetools
-binfiles arch=i386-netbsd size=1018
+binfiles arch=i386-netbsd size=1020
bin/i386-netbsd/cfftot1
bin/i386-netbsd/mmafm
bin/i386-netbsd/mmpfb
@@ -92690,9 +101956,9 @@ binfiles arch=i386-netbsd size=1018
name lcdftypetools.i386-solaris
category TLCore
-revision 30112
+revision 34203
shortdesc i386-solaris files of lcdftypetools
-binfiles arch=i386-solaris size=1644
+binfiles arch=i386-solaris size=1660
bin/i386-solaris/cfftot1
bin/i386-solaris/mmafm
bin/i386-solaris/mmpfb
@@ -92705,28 +101971,11 @@ binfiles arch=i386-solaris size=1644
bin/i386-solaris/t1testpage
bin/i386-solaris/ttftotype42
-name lcdftypetools.mips-irix
-category TLCore
-revision 30131
-shortdesc mips-irix files of lcdftypetools
-binfiles arch=mips-irix size=2719
- 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/t1rawafm
- bin/mips-irix/t1reencode
- bin/mips-irix/t1testpage
- bin/mips-irix/ttftotype42
-
name lcdftypetools.mipsel-linux
category TLCore
-revision 29995
+revision 33811
shortdesc mipsel-linux files of lcdftypetools
-binfiles arch=mipsel-linux size=1482
+binfiles arch=mipsel-linux size=1244
bin/mipsel-linux/cfftot1
bin/mipsel-linux/mmafm
bin/mipsel-linux/mmpfb
@@ -92741,9 +101990,9 @@ binfiles arch=mipsel-linux size=1482
name lcdftypetools.powerpc-linux
category TLCore
-revision 30114
+revision 33889
shortdesc powerpc-linux files of lcdftypetools
-binfiles arch=powerpc-linux size=1220
+binfiles arch=powerpc-linux size=1148
bin/powerpc-linux/cfftot1
bin/powerpc-linux/mmafm
bin/powerpc-linux/mmpfb
@@ -92758,9 +102007,9 @@ binfiles arch=powerpc-linux size=1220
name lcdftypetools.sparc-solaris
category TLCore
-revision 29877
+revision 33871
shortdesc sparc-solaris files of lcdftypetools
-binfiles arch=sparc-solaris size=1415
+binfiles arch=sparc-solaris size=1381
bin/sparc-solaris/cfftot1
bin/sparc-solaris/mmafm
bin/sparc-solaris/mmpfb
@@ -92775,9 +102024,9 @@ binfiles arch=sparc-solaris size=1415
name lcdftypetools.universal-darwin
category TLCore
-revision 30764
+revision 34201
shortdesc universal-darwin files of lcdftypetools
-binfiles arch=universal-darwin size=2076
+binfiles arch=universal-darwin size=2074
bin/universal-darwin/cfftot1
bin/universal-darwin/mmafm
bin/universal-darwin/mmpfb
@@ -92792,9 +102041,9 @@ binfiles arch=universal-darwin size=2076
name lcdftypetools.win32
category TLCore
-revision 29861
+revision 33897
shortdesc win32 files of lcdftypetools
-binfiles arch=win32 size=1047
+binfiles arch=win32 size=808
bin/win32/cfftot1.exe
bin/win32/mmafm.exe
bin/win32/mmpfb.exe
@@ -92807,11 +102056,28 @@ binfiles arch=win32 size=1047
bin/win32/t1testpage.exe
bin/win32/ttftotype42.exe
+name lcdftypetools.x86_64-cygwin
+category TLCore
+revision 34161
+shortdesc x86_64-cygwin files of lcdftypetools
+binfiles arch=x86_64-cygwin size=1181
+ bin/x86_64-cygwin/cfftot1.exe
+ bin/x86_64-cygwin/mmafm.exe
+ bin/x86_64-cygwin/mmpfb.exe
+ bin/x86_64-cygwin/otfinfo.exe
+ bin/x86_64-cygwin/otftotfm.exe
+ bin/x86_64-cygwin/t1dotlessj.exe
+ bin/x86_64-cygwin/t1lint.exe
+ bin/x86_64-cygwin/t1rawafm.exe
+ bin/x86_64-cygwin/t1reencode.exe
+ bin/x86_64-cygwin/t1testpage.exe
+ bin/x86_64-cygwin/ttftotype42.exe
+
name lcdftypetools.x86_64-darwin
category TLCore
-revision 29879
+revision 34201
shortdesc x86_64-darwin files of lcdftypetools
-binfiles arch=x86_64-darwin size=1131
+binfiles arch=x86_64-darwin size=1137
bin/x86_64-darwin/cfftot1
bin/x86_64-darwin/mmafm
bin/x86_64-darwin/mmpfb
@@ -92826,9 +102092,9 @@ binfiles arch=x86_64-darwin size=1131
name lcdftypetools.x86_64-linux
category TLCore
-revision 30204
+revision 33723
shortdesc x86_64-linux files of lcdftypetools
-binfiles arch=x86_64-linux size=1089
+binfiles arch=x86_64-linux size=1096
bin/x86_64-linux/cfftot1
bin/x86_64-linux/mmafm
bin/x86_64-linux/mmpfb
@@ -92843,9 +102109,9 @@ binfiles arch=x86_64-linux size=1089
name lcdftypetools.x86_64-solaris
category TLCore
-revision 30112
+revision 34203
shortdesc x86_64-solaris files of lcdftypetools
-binfiles arch=x86_64-solaris size=1932
+binfiles arch=x86_64-solaris size=1958
bin/x86_64-solaris/cfftot1
bin/x86_64-solaris/mmafm
bin/x86_64-solaris/mmpfb
@@ -92860,13 +102126,14 @@ binfiles arch=x86_64-solaris size=1932
name lcg
category Package
-revision 15878
+revision 31474
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.
-docfiles size=36
+longdesc numbers are written to a counter. The keyval package is used
+longdesc for the user to provide values for the range and a seed, and
+longdesc for the name of the counter to be used.
+docfiles size=65
texmf-dist/doc/latex/lcg/lcg.pdf details="Package documentation"
srcfiles size=7
texmf-dist/source/latex/lcg/lcg.dtx
@@ -92874,9 +102141,9 @@ srcfiles size=7
runfiles size=2
texmf-dist/tex/latex/lcg/lcg.sty
catalogue-ctan /macros/latex/contrib/lcg
-catalogue-date 2012-07-05 15:17:31 +0200
+catalogue-date 2014-01-04 14:18:29 +0100
catalogue-license lppl
-catalogue-version 1.2
+catalogue-version 1.3
name lcyw
category Package
@@ -92924,13 +102191,13 @@ srcfiles size=4
runfiles size=1
texmf-dist/tex/latex/leading/leading.sty
catalogue-ctan /macros/latex/contrib/leading
-catalogue-date 2012-07-05 15:17:31 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 0.3
name leaflet
category Package
-revision 27126
+revision 32093
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
@@ -92949,9 +102216,9 @@ srcfiles size=13
runfiles size=5
texmf-dist/tex/latex/leaflet/leaflet.cls
catalogue-ctan /macros/latex/contrib/leaflet
-catalogue-date 2012-07-05 15:17:31 +0200
+catalogue-date 2013-11-07 14:52:10 +0100
catalogue-license lppl
-catalogue-version 1.0d
+catalogue-version 1.0e
name lecturer
category Package
@@ -92960,24 +102227,23 @@ shortdesc On-screen presentations for (almost) all formats.
longdesc The package creates slides for on-screen presentations based on
longdesc PDF features without manipulating TeX's typesetting process.
longdesc The presentation flow relies on PDF's abilities to display
-longdesc content step by step. Features include: - Free positioning of
+longdesc content step by step. Features include: Free positioning of
longdesc anything anywhere in painted areas on the slide, as well as in
-longdesc the main textblock; - Numerous attributes to control the layout
+longdesc the main textblock; Numerous attributes to control the layout
longdesc and the presentation flow, from TeX's primitive dimensions to
-longdesc the visibility of steps; - Feature inheritance from global to
-longdesc local settings, with intermediate types; - Basic drawing
+longdesc the visibility of steps; Feature inheritance from global to
+longdesc local settings, with intermediate types; Basic drawing
longdesc facilities to produce symbols, e.g., for list items or buttons;
-longdesc - Colors, transparency, shades, and pictures; - Navigation with
-longdesc links, pop-up menus, and customizable bookmarks; - Easy switch
-longdesc between presentation and handout; and - PDF transitions.
-longdesc Besides the traditional documentation, the distribution
-longdesc includes visual documentation and six demo presentations
-longdesc ranging from geometric abstraction to classic style to silly
-longdesc video game. Lecturer is designed to work with all formats, but
-longdesc presently fails with ConTeXt MkIV (because of clashes in
-longdesc management of PDF objects, probably), works only with pdfTeX
-longdesc and LuaTeX for the time being, and requires texapi and yax,
-longdesc both v.1.02.
+longdesc Colors, transparency, shades, and pictures; Navigation with
+longdesc links, pop-up menus, and customizable bookmarks; Easy switch
+longdesc between presentation and handout; and PDF transitions. Besides
+longdesc the traditional documentation, the distribution includes visual
+longdesc documentation and six demo presentations ranging from geometric
+longdesc abstraction to classic style to silly video game. Lecturer is
+longdesc designed to work with all formats, but presently fails with
+longdesc ConTeXt MkIV (because of clashes in management of PDF objects,
+longdesc probably), works only with pdfTeX and LuaTeX for the time
+longdesc being, and requires texapi and yax, both v.1.02.
docfiles size=1022
texmf-dist/doc/generic/lecturer/LecturerDemo-BeamerCambridgeUS.pdf
texmf-dist/doc/generic/lecturer/LecturerDemo-BeamerCambridgeUS.tex
@@ -93008,12 +102274,12 @@ runfiles size=23
texmf-dist/tex/generic/lecturer/ltr-steps.tex
texmf-dist/tex/generic/lecturer/t-lecturer.tex
catalogue-ctan /macros/generic/lecturer
-catalogue-date 2012-02-25 10:31:12 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
name ledmac
category Package
-revision 27721
+revision 30987
shortdesc Typeset scholarly editions.
longdesc A macro package for typesetting scholarly critical editions.
longdesc The ledmac package is a LaTeX port of the plain TeX EDMAC
@@ -93068,9 +102334,9 @@ runfiles size=41
texmf-dist/tex/latex/ledmac/ledmac.sty
texmf-dist/tex/latex/ledmac/ledpar.sty
catalogue-ctan /macros/latex/contrib/ledmac
-catalogue-date 2013-02-22 12:55:37 +0100
+catalogue-date 2013-06-15 00:57:55 +0200
catalogue-license lppl
-catalogue-version 0.19
+catalogue-version 0.19.1
name leftidx
category Package
@@ -93093,14 +102359,15 @@ catalogue-license lppl
name leipzig
category Package
-revision 30785
-shortdesc Consistent typesetting of glossing abbreviations.
-longdesc The \leipzig{} package provides a set of macros for standard
+revision 31045
+shortdesc Typeset and index linguistic gloss abbreviations.
+longdesc The leipzig package provides a set of macros for standard
longdesc glossing abbreviations, with options to create new ones. They
longdesc are mnemonic (e.g. \Acc{} for accusative, abbreviated acc).
longdesc These abbre can be used alone or on top of the glossaries
longdesc package for easy indexing and glossary printing.
-docfiles size=118
+docfiles size=119
+ texmf-dist/doc/latex/leipzig/README details="Readme"
texmf-dist/doc/latex/leipzig/README.txt
texmf-dist/doc/latex/leipzig/leipzig.pdf details="Package documentation"
texmf-dist/doc/latex/leipzig/leipzig.tex
@@ -93110,73 +102377,74 @@ srcfiles size=12
runfiles size=2
texmf-dist/tex/latex/leipzig/leipzig.sty
catalogue-ctan /macros/latex/contrib/leipzig
-catalogue-date 2013-05-29 23:28:43 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
-catalogue-version 1.0
+catalogue-version 1.1
+
+name lengthconvert
+category Package
+revision 30867
+shortdesc Express lengths in arbitrary units.
+longdesc The package provides a command to convert a length to any of a
+longdesc large selection of units. The package relies on the LaTeX 3
+longdesc programming environment.
+docfiles size=109
+ texmf-dist/doc/latex/lengthconvert/lengthconvert.pdf details="Package documentation"
+srcfiles size=5
+ texmf-dist/source/latex/lengthconvert/lengthconvert.dtx
+ texmf-dist/source/latex/lengthconvert/lengthconvert.ins
+runfiles size=2
+ texmf-dist/tex/latex/lengthconvert/lengthconvert.sty
+catalogue-ctan /macros/latex/contrib/lengthconvert
+catalogue-date 2014-02-26 23:03:13 +0100
+catalogue-license lppl1.3
+catalogue-version 1.0a
name lettre
category Package
-revision 21400
+revision 31879
shortdesc Letters and faxes in French.
longdesc Developed from the ancestor of the standard letter class, at
longdesc the Observatoire de Geneve.
-docfiles size=1017
- texmf-dist/doc/latex/lettre/2.346-release-notes
- texmf-dist/doc/latex/lettre/ALIRE details="Readme (French)" language="fr"
- texmf-dist/doc/latex/lettre/LAST_VERSION_IS_2.346
+docfiles size=365
+ texmf-dist/doc/latex/lettre/ALIRE
+ texmf-dist/doc/latex/lettre/LAST_VERSION
texmf-dist/doc/latex/lettre/LICENSE
texmf-dist/doc/latex/lettre/README details="Readme"
+ texmf-dist/doc/latex/lettre/amg.ins
+ texmf-dist/doc/latex/lettre/amgmono.eps
+ texmf-dist/doc/latex/lettre/ecusson55.ps
texmf-dist/doc/latex/lettre/institut.tpl
- texmf-dist/doc/latex/lettre/letdoc.ps
- texmf-dist/doc/latex/lettre/letex1.odt
- texmf-dist/doc/latex/lettre/letex1.ps
+ texmf-dist/doc/latex/lettre/letdoc.pdf
+ texmf-dist/doc/latex/lettre/letdoc.tex
+ texmf-dist/doc/latex/lettre/letdoc2.pdf
+ texmf-dist/doc/latex/lettre/letdoc2.tex
+ texmf-dist/doc/latex/lettre/letdocmain.tex
texmf-dist/doc/latex/lettre/letex1.tex
- texmf-dist/doc/latex/lettre/letex2.odt
- texmf-dist/doc/latex/lettre/letex2.ps
texmf-dist/doc/latex/lettre/letex2.tex
- texmf-dist/doc/latex/lettre/letex3.odt
- texmf-dist/doc/latex/lettre/letex3.ps
texmf-dist/doc/latex/lettre/letex3.tex
- texmf-dist/doc/latex/lettre/letex4.odt
- texmf-dist/doc/latex/lettre/letex4.ps
texmf-dist/doc/latex/lettre/letex4.tex
- texmf-dist/doc/latex/lettre/letex5.odt
- texmf-dist/doc/latex/lettre/letex5.ps
texmf-dist/doc/latex/lettre/letex5.tex
- texmf-dist/doc/latex/lettre/letex6.odt
- texmf-dist/doc/latex/lettre/letex6.ps
texmf-dist/doc/latex/lettre/letex6.tex
- texmf-dist/doc/latex/lettre/letex7.odt
texmf-dist/doc/latex/lettre/letex7.tex
- texmf-dist/doc/latex/lettre/letex71.ps
- texmf-dist/doc/latex/lettre/letex72.ps
- texmf-dist/doc/latex/lettre/letex8.odt
texmf-dist/doc/latex/lettre/letex8.tex
- texmf-dist/doc/latex/lettre/letex81.ps
- texmf-dist/doc/latex/lettre/letex82.ps
- texmf-dist/doc/latex/lettre/letex83.ps
texmf-dist/doc/latex/lettre/lettre.tpl
texmf-dist/doc/latex/lettre/lppl.txt
+ texmf-dist/doc/latex/lettre/makefile
+ texmf-dist/doc/latex/lettre/obs.ins
+ texmf-dist/doc/latex/lettre/release-notes
+ texmf-dist/doc/latex/lettre/sondes.tex
texmf-dist/doc/latex/lettre/telefax.tpl
- texmf-dist/doc/latex/lettre/testfaxd.odt
- texmf-dist/doc/latex/lettre/testfaxd.ps
texmf-dist/doc/latex/lettre/testfaxd.tex
- texmf-dist/doc/latex/lettre/testfaxe.odt
- texmf-dist/doc/latex/lettre/testfaxe.ps
texmf-dist/doc/latex/lettre/testfaxe.tex
- texmf-dist/doc/latex/lettre/testfaxf.odt
texmf-dist/doc/latex/lettre/testfaxf.tex
- texmf-dist/doc/latex/lettre/testfaxf1.ps
- texmf-dist/doc/latex/lettre/testfaxf2.ps
-runfiles size=26
+runfiles size=13
texmf-dist/tex/latex/lettre/default.ins
texmf-dist/tex/latex/lettre/lettre.cls
- texmf-dist/tex/latex/lettre/lettre.cls_2.346
- texmf-dist/tex/latex/lettre/obs.ins
catalogue-ctan /macros/latex/contrib/lettre
-catalogue-date 2012-02-27 22:13:39 +0100
+catalogue-date 2013-10-10 10:12:24 +0200
catalogue-license lppl
-catalogue-version 2.346
+catalogue-version 2.349
name lettrine
category Package
@@ -93283,7 +102551,7 @@ runfiles size=82
texmf-dist/tex/generic/levy/greekmacros.tex
texmf-dist/tex/generic/levy/slgreek.sty
catalogue-ctan /fonts/greek/levy
-catalogue-date 2012-07-05 22:19:39 +0200
+catalogue-date 2014-05-11 22:11:06 +0200
catalogue-license gpl2
name lewis
@@ -93319,6 +102587,28 @@ catalogue-date 2012-08-30 22:39:52 +0200
catalogue-license lppl
catalogue-version 1.0c
+name lexref
+category Package
+revision 32751
+shortdesc Convenient and uniform references to legal provisions.
+longdesc The package is aimed at continental lawyers (especially those
+longdesc in Switzerland and Germany), allowing the user to make
+longdesc references to legal provisions conveniently and uniformly. The
+longdesc package also allows the user to add cited Acts to a
+longdesc nomenclature list (automatically), and to build specific
+longdesc indexes for each cited Act. The package is still under
+longdesc development, and should be treated as an 'alpha'-release.
+docfiles size=99
+ texmf-dist/doc/latex/lexref/README details="Readme"
+ texmf-dist/doc/latex/lexref/lexref.pdf details="Package documentation"
+ texmf-dist/doc/latex/lexref/lexref.tex
+runfiles size=5
+ texmf-dist/tex/latex/lexref/lexref.sty
+catalogue-ctan /macros/latex/contrib/lexref
+catalogue-date 2014-02-26 23:03:13 +0100
+catalogue-license lppl1.3
+catalogue-version 1.0.1 alpha
+
name lfb
category Package
revision 15878
@@ -93404,7 +102694,7 @@ runfiles size=83
texmf-dist/fonts/tfm/public/lfb/lfbb8.tfm
texmf-dist/fonts/tfm/public/lfb/lfbb9.tfm
catalogue-ctan /fonts/greek/lfb
-catalogue-date 2012-07-05 22:19:39 +0200
+catalogue-date 2014-05-11 22:11:06 +0200
catalogue-license lppl
catalogue-version 1.0
@@ -93427,45 +102717,6 @@ catalogue-ctan /macros/latex/contrib/lgreek
catalogue-date 2012-04-27 17:19:37 +0200
catalogue-license gpl2
-name lgrx
-category Package
-revision 30735
-shortdesc Greek text with the LGR font encoding.
-longdesc The LGRx bundle provides packages and definitions for
-longdesc typesetting Greek text with fonts in the LGR encoding, the de-
-longdesc facto standard set by babel. It includes a comprehensive font
-longdesc definition file, support for Unicode input and macros for Greek
-longdesc letters in non-Greek text.
-docfiles size=422
- texmf-dist/doc/latex/lgrx/8-bit-greek.txt
- texmf-dist/doc/latex/lgrx/README details="Readme"
- texmf-dist/doc/latex/lgrx/README.html
- texmf-dist/doc/latex/lgrx/alphabeta-test.pdf
- texmf-dist/doc/latex/lgrx/alphabeta-test.tex
- texmf-dist/doc/latex/lgrx/alphabeta.sty.html
- texmf-dist/doc/latex/lgrx/diacritics.pdf details="Greek diacritics with standard accent commands"
- texmf-dist/doc/latex/lgrx/diacritics.tex
- texmf-dist/doc/latex/lgrx/greek-unicode.pdf details="Using inputenc for Unicode Greek characters"
- texmf-dist/doc/latex/lgrx/greek-unicode.tex
- texmf-dist/doc/latex/lgrx/greekhyperref.pdf details="Using hyperref with Greek characters"
- texmf-dist/doc/latex/lgrx/greekhyperref.tex
- texmf-dist/doc/latex/lgrx/lgrenc.dfu
- texmf-dist/doc/latex/lgrx/lgrenc.dfu.html
- texmf-dist/doc/latex/lgrx/lgrxenc-test.pdf
- texmf-dist/doc/latex/lgrx/lgrxenc-test.tex
- texmf-dist/doc/latex/lgrx/lgrxenc.def.html
- texmf-dist/doc/latex/lgrx/textalpha-test.pdf
- texmf-dist/doc/latex/lgrx/textalpha-test.tex
- texmf-dist/doc/latex/lgrx/textalpha.sty.html details="Providing Greek symbols in text"
-runfiles size=20
- texmf-dist/tex/latex/lgrx/alphabeta.sty
- texmf-dist/tex/latex/lgrx/lgrxenc.def
- texmf-dist/tex/latex/lgrx/textalpha.sty
-catalogue-ctan /macros/latex/contrib/lgrx
-catalogue-date 2013-05-08 11:19:07 +0200
-catalogue-license lppl1.3
-catalogue-version 0.7
-
name lh
category Package
revision 15878
@@ -94189,13 +103440,13 @@ runfiles size=1023
texmf-dist/tex/plain/lh/testfox.tex
texmf-dist/tex/plain/lh/testkern.tex
catalogue-ctan /fonts/cyrillic/lh
-catalogue-date 2012-03-02 14:16:16 +0100
+catalogue-date 2014-05-11 22:11:06 +0200
catalogue-license lppl
catalogue-version 3.5g
name lhcyr
category Package
-revision 29349
+revision 31795
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
@@ -94255,7 +103506,7 @@ runfiles size=73
texmf-dist/tex/latex/lhcyr/rusfonts.tex
texmf-dist/tex/latex/lhcyr/statya.tex
catalogue-ctan /macros/latex/contrib/lhcyr
-catalogue-date 2012-05-22 11:10:15 +0200
+catalogue-date 2014-05-11 22:11:06 +0200
catalogue-license other-free
name lhelp
@@ -94287,13 +103538,14 @@ catalogue-version 2.0
name libertine
category Package
-revision 29099
+revision 33008
shortdesc Use of Linux Libertine and Biolinum fonts with LaTeX.
longdesc The package provides the Libertine and Biolinum fonts in both
longdesc Type 1 and OTF styles, together with support macros for their
longdesc use. Monospaced and display fonts, and the "keyboard" set are
-longdesc also included, in OTF style, only. The package supersedes both
-longdesc the libertineotf and the libertine-legacy packages.
+longdesc also included, in OTF style, only. The mweights package is used
+longdesc to manage the selection of font weights. The package supersedes
+longdesc both the libertineotf and the libertine-legacy packages.
execute addMap libertine.map
docfiles size=303
texmf-dist/doc/fonts/libertine/Bugs.txt
@@ -94308,7 +103560,7 @@ docfiles size=303
texmf-dist/doc/fonts/libertine/rename_enc
texmf-dist/doc/fonts/libertine/samples.pdf
texmf-dist/doc/fonts/libertine/samples.tex
-runfiles size=5963
+runfiles size=5956
texmf-dist/fonts/enc/dvips/libertine/lbtn_25tcsq.enc
texmf-dist/fonts/enc/dvips/libertine/lbtn_2exa4z.enc
texmf-dist/fonts/enc/dvips/libertine/lbtn_2ezly2.enc
@@ -95714,15 +104966,17 @@ runfiles size=5963
texmf-dist/tex/latex/libertine/TS1LinuxLibertineT-TLF.fd
texmf-dist/tex/latex/libertine/TS1LinuxLibertineT-TOsF.fd
texmf-dist/tex/latex/libertine/biolinum-type1.sty
+ texmf-dist/tex/latex/libertine/biolinum.sty
texmf-dist/tex/latex/libertine/libertine-type1.sty
texmf-dist/tex/latex/libertine/libertine.sty
texmf-dist/tex/latex/libertine/libertineMono-type1.sty
+ texmf-dist/tex/latex/libertine/libertineMono.sty
+ texmf-dist/tex/latex/libertine/libertineRoman.sty
texmf-dist/tex/latex/libertine/libertineotf.sty
- texmf-dist/tex/latex/libertine/mt-EBGaramond.cfg
catalogue-ctan /fonts/libertine
-catalogue-date 2013-02-14 16:13:10 +0100
+catalogue-date 2014-05-11 22:01:43 +0200
catalogue-license lppl
-catalogue-version 5.3.0 (2013-02-13)
+catalogue-version 5.3.0
name libgreek
category Package
@@ -95743,7 +104997,7 @@ srcfiles size=5
runfiles size=3
texmf-dist/tex/latex/libgreek/libgreek.sty
catalogue-ctan /macros/latex/contrib/libgreek
-catalogue-date 2012-09-23 17:25:02 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.0
@@ -95773,13 +105027,13 @@ runfiles size=10
texmf-dist/tex/generic/librarian/librarian.tex
texmf-dist/tex/generic/librarian/t-librarian.tex
catalogue-ctan /macros/generic/librarian
-catalogue-date 2012-02-25 10:35:52 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.0
name librebaskerville
category Package
-revision 29803
+revision 31741
shortdesc LaTeX support for the Libre Baskerville family of fonts.
longdesc Libre Baskerville is designed by Pablo Impallari. It is
longdesc primarily intended to be a web font but is also attractive as a
@@ -95889,19 +105143,183 @@ runfiles size=397
texmf-dist/tex/latex/librebaskerville/TS1LibreBaskerville-TLF.fd
texmf-dist/tex/latex/librebaskerville/librebaskerville.sty
catalogue-ctan /fonts/librebaskerville
-catalogue-date 2013-01-28 07:51:38 +0100
+catalogue-date 2014-05-11 22:01:43 +0200
catalogue-license lppl
+name librecaslon
+category Package
+revision 31929
+shortdesc Libre Caslon fonts, with LaTeX support.
+longdesc The Libre Caslon fonts are designed by Pablo Impallari.
+longdesc Although they have been designed for use as web fonts, they
+longdesc work well as conventional text fonts. A bold italic variant is
+longdesc not currently available. As a stopgap, an artificially slanted
+longdesc bold variant has been created and treated as italic.
+execute addMap LibreCaslon.map
+docfiles size=34
+ texmf-dist/doc/fonts/librecaslon/OFL.txt
+ texmf-dist/doc/fonts/librecaslon/README details="Readme"
+ texmf-dist/doc/fonts/librecaslon/samples.pdf
+ texmf-dist/doc/fonts/librecaslon/samples.tex
+runfiles size=731
+ texmf-dist/fonts/enc/dvips/librecaslon/lcsl_3cl4ql.enc
+ texmf-dist/fonts/enc/dvips/librecaslon/lcsl_4g75lz.enc
+ texmf-dist/fonts/enc/dvips/librecaslon/lcsl_5rmxhc.enc
+ texmf-dist/fonts/enc/dvips/librecaslon/lcsl_aprite.enc
+ texmf-dist/fonts/enc/dvips/librecaslon/lcsl_bpmadw.enc
+ texmf-dist/fonts/enc/dvips/librecaslon/lcsl_cw7ruh.enc
+ texmf-dist/fonts/enc/dvips/librecaslon/lcsl_hb5o6t.enc
+ texmf-dist/fonts/enc/dvips/librecaslon/lcsl_klp7zn.enc
+ texmf-dist/fonts/enc/dvips/librecaslon/lcsl_l5dh3w.enc
+ texmf-dist/fonts/enc/dvips/librecaslon/lcsl_q5us2t.enc
+ texmf-dist/fonts/enc/dvips/librecaslon/lcsl_rpuqof.enc
+ texmf-dist/fonts/enc/dvips/librecaslon/lcsl_wesofd.enc
+ texmf-dist/fonts/enc/dvips/librecaslon/lcsl_yeotsr.enc
+ texmf-dist/fonts/enc/dvips/librecaslon/lcsl_ytsyqt.enc
+ texmf-dist/fonts/enc/dvips/librecaslon/lcsl_z4mu2b.enc
+ texmf-dist/fonts/map/dvips/librecaslon/LibreCaslon.map
+ texmf-dist/fonts/opentype/impallari/librecaslon/LibreCaslonText-Bold.otf
+ texmf-dist/fonts/opentype/impallari/librecaslon/LibreCaslonText-BoldItalic.otf
+ texmf-dist/fonts/opentype/impallari/librecaslon/LibreCaslonText-Italic.otf
+ texmf-dist/fonts/opentype/impallari/librecaslon/LibreCaslonText-Regular.otf
+ texmf-dist/fonts/tfm/impallari/librecaslon/LibreCaslonText-Bold-osf-ly1--base.tfm
+ texmf-dist/fonts/tfm/impallari/librecaslon/LibreCaslonText-Bold-osf-ly1.tfm
+ texmf-dist/fonts/tfm/impallari/librecaslon/LibreCaslonText-Bold-osf-ot1.tfm
+ texmf-dist/fonts/tfm/impallari/librecaslon/LibreCaslonText-Bold-osf-t1--base.tfm
+ texmf-dist/fonts/tfm/impallari/librecaslon/LibreCaslonText-Bold-osf-t1.tfm
+ texmf-dist/fonts/tfm/impallari/librecaslon/LibreCaslonText-Bold-osf-ts1--base.tfm
+ texmf-dist/fonts/tfm/impallari/librecaslon/LibreCaslonText-Bold-osf-ts1.tfm
+ texmf-dist/fonts/tfm/impallari/librecaslon/LibreCaslonText-Bold-sup-ly1--base.tfm
+ texmf-dist/fonts/tfm/impallari/librecaslon/LibreCaslonText-Bold-sup-ly1.tfm
+ texmf-dist/fonts/tfm/impallari/librecaslon/LibreCaslonText-Bold-sup-ot1.tfm
+ texmf-dist/fonts/tfm/impallari/librecaslon/LibreCaslonText-Bold-sup-t1--base.tfm
+ texmf-dist/fonts/tfm/impallari/librecaslon/LibreCaslonText-Bold-sup-t1.tfm
+ texmf-dist/fonts/tfm/impallari/librecaslon/LibreCaslonText-Bold-tlf-ly1--base.tfm
+ texmf-dist/fonts/tfm/impallari/librecaslon/LibreCaslonText-Bold-tlf-ly1.tfm
+ texmf-dist/fonts/tfm/impallari/librecaslon/LibreCaslonText-Bold-tlf-ot1.tfm
+ texmf-dist/fonts/tfm/impallari/librecaslon/LibreCaslonText-Bold-tlf-t1--base.tfm
+ texmf-dist/fonts/tfm/impallari/librecaslon/LibreCaslonText-Bold-tlf-t1.tfm
+ texmf-dist/fonts/tfm/impallari/librecaslon/LibreCaslonText-Bold-tlf-ts1--base.tfm
+ texmf-dist/fonts/tfm/impallari/librecaslon/LibreCaslonText-Bold-tlf-ts1.tfm
+ texmf-dist/fonts/tfm/impallari/librecaslon/LibreCaslonText-BoldItalic-osf-ly1--base.tfm
+ texmf-dist/fonts/tfm/impallari/librecaslon/LibreCaslonText-BoldItalic-osf-ly1.tfm
+ texmf-dist/fonts/tfm/impallari/librecaslon/LibreCaslonText-BoldItalic-osf-ot1.tfm
+ texmf-dist/fonts/tfm/impallari/librecaslon/LibreCaslonText-BoldItalic-osf-t1--base.tfm
+ texmf-dist/fonts/tfm/impallari/librecaslon/LibreCaslonText-BoldItalic-osf-t1.tfm
+ texmf-dist/fonts/tfm/impallari/librecaslon/LibreCaslonText-BoldItalic-osf-ts1--base.tfm
+ texmf-dist/fonts/tfm/impallari/librecaslon/LibreCaslonText-BoldItalic-osf-ts1.tfm
+ texmf-dist/fonts/tfm/impallari/librecaslon/LibreCaslonText-BoldItalic-sup-ly1--base.tfm
+ texmf-dist/fonts/tfm/impallari/librecaslon/LibreCaslonText-BoldItalic-sup-ly1.tfm
+ texmf-dist/fonts/tfm/impallari/librecaslon/LibreCaslonText-BoldItalic-sup-ot1.tfm
+ texmf-dist/fonts/tfm/impallari/librecaslon/LibreCaslonText-BoldItalic-sup-t1--base.tfm
+ texmf-dist/fonts/tfm/impallari/librecaslon/LibreCaslonText-BoldItalic-sup-t1.tfm
+ texmf-dist/fonts/tfm/impallari/librecaslon/LibreCaslonText-BoldItalic-tlf-ly1--base.tfm
+ texmf-dist/fonts/tfm/impallari/librecaslon/LibreCaslonText-BoldItalic-tlf-ly1.tfm
+ texmf-dist/fonts/tfm/impallari/librecaslon/LibreCaslonText-BoldItalic-tlf-ot1.tfm
+ texmf-dist/fonts/tfm/impallari/librecaslon/LibreCaslonText-BoldItalic-tlf-t1--base.tfm
+ texmf-dist/fonts/tfm/impallari/librecaslon/LibreCaslonText-BoldItalic-tlf-t1.tfm
+ texmf-dist/fonts/tfm/impallari/librecaslon/LibreCaslonText-BoldItalic-tlf-ts1--base.tfm
+ texmf-dist/fonts/tfm/impallari/librecaslon/LibreCaslonText-BoldItalic-tlf-ts1.tfm
+ texmf-dist/fonts/tfm/impallari/librecaslon/LibreCaslonText-Italic-osf-ly1--base.tfm
+ texmf-dist/fonts/tfm/impallari/librecaslon/LibreCaslonText-Italic-osf-ly1.tfm
+ texmf-dist/fonts/tfm/impallari/librecaslon/LibreCaslonText-Italic-osf-ot1.tfm
+ texmf-dist/fonts/tfm/impallari/librecaslon/LibreCaslonText-Italic-osf-t1--base.tfm
+ texmf-dist/fonts/tfm/impallari/librecaslon/LibreCaslonText-Italic-osf-t1.tfm
+ texmf-dist/fonts/tfm/impallari/librecaslon/LibreCaslonText-Italic-osf-ts1--base.tfm
+ texmf-dist/fonts/tfm/impallari/librecaslon/LibreCaslonText-Italic-osf-ts1.tfm
+ texmf-dist/fonts/tfm/impallari/librecaslon/LibreCaslonText-Italic-sup-ly1--base.tfm
+ texmf-dist/fonts/tfm/impallari/librecaslon/LibreCaslonText-Italic-sup-ly1.tfm
+ texmf-dist/fonts/tfm/impallari/librecaslon/LibreCaslonText-Italic-sup-ot1.tfm
+ texmf-dist/fonts/tfm/impallari/librecaslon/LibreCaslonText-Italic-sup-t1--base.tfm
+ texmf-dist/fonts/tfm/impallari/librecaslon/LibreCaslonText-Italic-sup-t1.tfm
+ texmf-dist/fonts/tfm/impallari/librecaslon/LibreCaslonText-Italic-tlf-ly1--base.tfm
+ texmf-dist/fonts/tfm/impallari/librecaslon/LibreCaslonText-Italic-tlf-ly1.tfm
+ texmf-dist/fonts/tfm/impallari/librecaslon/LibreCaslonText-Italic-tlf-ot1.tfm
+ texmf-dist/fonts/tfm/impallari/librecaslon/LibreCaslonText-Italic-tlf-t1--base.tfm
+ texmf-dist/fonts/tfm/impallari/librecaslon/LibreCaslonText-Italic-tlf-t1.tfm
+ texmf-dist/fonts/tfm/impallari/librecaslon/LibreCaslonText-Italic-tlf-ts1--base.tfm
+ texmf-dist/fonts/tfm/impallari/librecaslon/LibreCaslonText-Italic-tlf-ts1.tfm
+ texmf-dist/fonts/tfm/impallari/librecaslon/LibreCaslonText-Regular-osf-ly1--base.tfm
+ texmf-dist/fonts/tfm/impallari/librecaslon/LibreCaslonText-Regular-osf-ly1.tfm
+ texmf-dist/fonts/tfm/impallari/librecaslon/LibreCaslonText-Regular-osf-ot1.tfm
+ texmf-dist/fonts/tfm/impallari/librecaslon/LibreCaslonText-Regular-osf-t1--base.tfm
+ texmf-dist/fonts/tfm/impallari/librecaslon/LibreCaslonText-Regular-osf-t1.tfm
+ texmf-dist/fonts/tfm/impallari/librecaslon/LibreCaslonText-Regular-osf-ts1--base.tfm
+ texmf-dist/fonts/tfm/impallari/librecaslon/LibreCaslonText-Regular-osf-ts1.tfm
+ texmf-dist/fonts/tfm/impallari/librecaslon/LibreCaslonText-Regular-sup-ly1--base.tfm
+ texmf-dist/fonts/tfm/impallari/librecaslon/LibreCaslonText-Regular-sup-ly1.tfm
+ texmf-dist/fonts/tfm/impallari/librecaslon/LibreCaslonText-Regular-sup-ot1.tfm
+ texmf-dist/fonts/tfm/impallari/librecaslon/LibreCaslonText-Regular-sup-t1--base.tfm
+ texmf-dist/fonts/tfm/impallari/librecaslon/LibreCaslonText-Regular-sup-t1.tfm
+ texmf-dist/fonts/tfm/impallari/librecaslon/LibreCaslonText-Regular-tlf-ly1--base.tfm
+ texmf-dist/fonts/tfm/impallari/librecaslon/LibreCaslonText-Regular-tlf-ly1.tfm
+ texmf-dist/fonts/tfm/impallari/librecaslon/LibreCaslonText-Regular-tlf-ot1.tfm
+ texmf-dist/fonts/tfm/impallari/librecaslon/LibreCaslonText-Regular-tlf-t1--base.tfm
+ texmf-dist/fonts/tfm/impallari/librecaslon/LibreCaslonText-Regular-tlf-t1.tfm
+ texmf-dist/fonts/tfm/impallari/librecaslon/LibreCaslonText-Regular-tlf-ts1--base.tfm
+ texmf-dist/fonts/tfm/impallari/librecaslon/LibreCaslonText-Regular-tlf-ts1.tfm
+ texmf-dist/fonts/type1/impallari/librecaslon/LibreCaslonText-Bold.pfb
+ texmf-dist/fonts/type1/impallari/librecaslon/LibreCaslonText-BoldItalic.pfb
+ texmf-dist/fonts/type1/impallari/librecaslon/LibreCaslonText-Italic.pfb
+ texmf-dist/fonts/type1/impallari/librecaslon/LibreCaslonText-Regular.pfb
+ texmf-dist/fonts/vf/impallari/librecaslon/LibreCaslonText-Bold-osf-ly1.vf
+ texmf-dist/fonts/vf/impallari/librecaslon/LibreCaslonText-Bold-osf-t1.vf
+ texmf-dist/fonts/vf/impallari/librecaslon/LibreCaslonText-Bold-osf-ts1.vf
+ texmf-dist/fonts/vf/impallari/librecaslon/LibreCaslonText-Bold-sup-ly1.vf
+ texmf-dist/fonts/vf/impallari/librecaslon/LibreCaslonText-Bold-sup-t1.vf
+ texmf-dist/fonts/vf/impallari/librecaslon/LibreCaslonText-Bold-tlf-ly1.vf
+ texmf-dist/fonts/vf/impallari/librecaslon/LibreCaslonText-Bold-tlf-t1.vf
+ texmf-dist/fonts/vf/impallari/librecaslon/LibreCaslonText-Bold-tlf-ts1.vf
+ texmf-dist/fonts/vf/impallari/librecaslon/LibreCaslonText-BoldItalic-osf-ly1.vf
+ texmf-dist/fonts/vf/impallari/librecaslon/LibreCaslonText-BoldItalic-osf-t1.vf
+ texmf-dist/fonts/vf/impallari/librecaslon/LibreCaslonText-BoldItalic-osf-ts1.vf
+ texmf-dist/fonts/vf/impallari/librecaslon/LibreCaslonText-BoldItalic-sup-ly1.vf
+ texmf-dist/fonts/vf/impallari/librecaslon/LibreCaslonText-BoldItalic-sup-t1.vf
+ texmf-dist/fonts/vf/impallari/librecaslon/LibreCaslonText-BoldItalic-tlf-ly1.vf
+ texmf-dist/fonts/vf/impallari/librecaslon/LibreCaslonText-BoldItalic-tlf-t1.vf
+ texmf-dist/fonts/vf/impallari/librecaslon/LibreCaslonText-BoldItalic-tlf-ts1.vf
+ texmf-dist/fonts/vf/impallari/librecaslon/LibreCaslonText-Italic-osf-ly1.vf
+ texmf-dist/fonts/vf/impallari/librecaslon/LibreCaslonText-Italic-osf-t1.vf
+ texmf-dist/fonts/vf/impallari/librecaslon/LibreCaslonText-Italic-osf-ts1.vf
+ texmf-dist/fonts/vf/impallari/librecaslon/LibreCaslonText-Italic-sup-ly1.vf
+ texmf-dist/fonts/vf/impallari/librecaslon/LibreCaslonText-Italic-sup-t1.vf
+ texmf-dist/fonts/vf/impallari/librecaslon/LibreCaslonText-Italic-tlf-ly1.vf
+ texmf-dist/fonts/vf/impallari/librecaslon/LibreCaslonText-Italic-tlf-t1.vf
+ texmf-dist/fonts/vf/impallari/librecaslon/LibreCaslonText-Italic-tlf-ts1.vf
+ texmf-dist/fonts/vf/impallari/librecaslon/LibreCaslonText-Regular-osf-ly1.vf
+ texmf-dist/fonts/vf/impallari/librecaslon/LibreCaslonText-Regular-osf-t1.vf
+ texmf-dist/fonts/vf/impallari/librecaslon/LibreCaslonText-Regular-osf-ts1.vf
+ texmf-dist/fonts/vf/impallari/librecaslon/LibreCaslonText-Regular-sup-ly1.vf
+ texmf-dist/fonts/vf/impallari/librecaslon/LibreCaslonText-Regular-sup-t1.vf
+ texmf-dist/fonts/vf/impallari/librecaslon/LibreCaslonText-Regular-tlf-ly1.vf
+ texmf-dist/fonts/vf/impallari/librecaslon/LibreCaslonText-Regular-tlf-t1.vf
+ texmf-dist/fonts/vf/impallari/librecaslon/LibreCaslonText-Regular-tlf-ts1.vf
+ texmf-dist/tex/latex/librecaslon/LY1LibreCaslonText-OsF.fd
+ texmf-dist/tex/latex/librecaslon/LY1LibreCaslonText-Sup.fd
+ texmf-dist/tex/latex/librecaslon/LY1LibreCaslonText-TLF.fd
+ texmf-dist/tex/latex/librecaslon/OT1LibreCaslonText-OsF.fd
+ texmf-dist/tex/latex/librecaslon/OT1LibreCaslonText-Sup.fd
+ texmf-dist/tex/latex/librecaslon/OT1LibreCaslonText-TLF.fd
+ texmf-dist/tex/latex/librecaslon/T1LibreCaslonText-OsF.fd
+ texmf-dist/tex/latex/librecaslon/T1LibreCaslonText-Sup.fd
+ texmf-dist/tex/latex/librecaslon/T1LibreCaslonText-TLF.fd
+ texmf-dist/tex/latex/librecaslon/TS1LibreCaslonText-OsF.fd
+ texmf-dist/tex/latex/librecaslon/TS1LibreCaslonText-TLF.fd
+ texmf-dist/tex/latex/librecaslon/librecaslon.sty
+catalogue-ctan /fonts/librecaslon
+catalogue-date 2014-05-11 22:01:43 +0200
+catalogue-license ofl
+
name libris
category Package
revision 19409
shortdesc Libris ADF fonts, with LaTeX support.
longdesc LibrisADF is a sans-serif family designed to mimic Lydian. The
-longdesc bundle includes: - fonts, in Adobe Type 1, TrueType and
-longdesc OpenType formats, and - LaTeX support macros, for use with the
-longdesc Type 1 versions of the fonts. The LaTeX macros depend on the
-longdesc nfssext-cfr bundle. GPL licensing applies the fonts themselves;
-longdesc the support macros are distributed under LPPL licensing.
+longdesc bundle includes: fonts, in Adobe Type 1, TrueType and OpenType
+longdesc formats, and LaTeX support macros, for use with the Type 1
+longdesc versions of the fonts. The LaTeX macros depend on the nfssext-
+longdesc cfr bundle. GPL licensing applies the fonts themselves; the
+longdesc support macros are distributed under LPPL licensing.
execute addMap yly.map
docfiles size=138
texmf-dist/doc/fonts/libris/COPYING
@@ -95979,10 +105397,388 @@ runfiles size=169
texmf-dist/tex/latex/libris/ts1yly.fd
texmf-dist/tex/latex/libris/ts1ylyw.fd
catalogue-ctan /fonts/libris
-catalogue-date 2012-04-03 16:38:44 +0200
+catalogue-date 2014-05-11 22:01:43 +0200
catalogue-license gpl
catalogue-version 1.007
+name lilyglyphs
+category Package
+revision 33164
+shortdesc Access lilypond fragments and glyphs, in LaTeX.
+longdesc The package provides the means to include arbitrary elements of
+longdesc Lilypond notation, including symbols from Lilypond's Emmentaler
+longdesc font, in a LaTeX document. The package uses OpenType fonts, and
+longdesc as a result must be compiled with LuaLaTeX or XeLaTeX.
+depend lilyglyphs.ARCH
+docfiles size=463
+ texmf-dist/doc/lualatex/lilyglyphs/CHANGES.md
+ texmf-dist/doc/lualatex/lilyglyphs/INSTALL
+ texmf-dist/doc/lualatex/lilyglyphs/README details="Readme"
+ texmf-dist/doc/lualatex/lilyglyphs/README-scripts
+ texmf-dist/doc/lualatex/lilyglyphs/VERSION
+ texmf-dist/doc/lualatex/lilyglyphs/documentation/lilyglyphs-example-400.png
+ texmf-dist/doc/lualatex/lilyglyphs/documentation/lilyglyphs-example-600.png
+ texmf-dist/doc/lualatex/lilyglyphs/documentation/lilyglyphs-example-de.pdf
+ texmf-dist/doc/lualatex/lilyglyphs/documentation/lilyglyphs-example-de.tex
+ texmf-dist/doc/lualatex/lilyglyphs/documentation/lilyglyphs-example.pdf
+ texmf-dist/doc/lualatex/lilyglyphs/documentation/lilyglyphs-example.png
+ texmf-dist/doc/lualatex/lilyglyphs/documentation/lilyglyphs-example.tex
+ texmf-dist/doc/lualatex/lilyglyphs/documentation/lilyglyphs.pdf details="Package documentation"
+ texmf-dist/doc/lualatex/lilyglyphs/documentation/lilyglyphs.tex
+ texmf-dist/doc/lualatex/lilyglyphs/documentation/lilyglyphs_logo/lilyglyphs_logo.pdf
+ texmf-dist/doc/lualatex/lilyglyphs/documentation/lilyglyphs_logo/lilyglyphs_logo.png
+ texmf-dist/doc/lualatex/lilyglyphs/documentation/lilyglyphs_logo/lilyglyphs_logo.tex
+ texmf-dist/doc/lualatex/lilyglyphs/documentation/lilyglyphs_private.zip
+ texmf-dist/doc/lualatex/lilyglyphs/documentation/resources/lily-088c978c.png
+ texmf-dist/doc/lualatex/lilyglyphs/documentation/resources/lily-1981c3c7.png
+ texmf-dist/doc/lualatex/lilyglyphs/documentation/resources/lily-20e8632d.png
+ texmf-dist/doc/lualatex/lilyglyphs/documentation/resources/lily-2abb8a04.png
+ texmf-dist/doc/lualatex/lilyglyphs/documentation/resources/lily-2be182be.png
+ texmf-dist/doc/lualatex/lilyglyphs/documentation/resources/lily-3b47d3fe.png
+ texmf-dist/doc/lualatex/lilyglyphs/documentation/resources/lily-3f4afecc.png
+ texmf-dist/doc/lualatex/lilyglyphs/documentation/resources/lily-40869867.png
+ texmf-dist/doc/lualatex/lilyglyphs/documentation/resources/lily-5b13ce04.png
+ texmf-dist/doc/lualatex/lilyglyphs/documentation/resources/lily-5c91a201.png
+ texmf-dist/doc/lualatex/lilyglyphs/documentation/resources/lily-707477b7.png
+ texmf-dist/doc/lualatex/lilyglyphs/documentation/resources/lily-76dbcd67.png
+ texmf-dist/doc/lualatex/lilyglyphs/documentation/resources/lily-7fd84ff8.png
+ texmf-dist/doc/lualatex/lilyglyphs/documentation/resources/lily-8155deab.png
+ texmf-dist/doc/lualatex/lilyglyphs/documentation/resources/lily-8b332c94.png
+ texmf-dist/doc/lualatex/lilyglyphs/documentation/resources/lily-8d82df0c.png
+ texmf-dist/doc/lualatex/lilyglyphs/documentation/resources/lily-8d8bb8a3.png
+ texmf-dist/doc/lualatex/lilyglyphs/documentation/resources/lily-907bc72d.png
+ texmf-dist/doc/lualatex/lilyglyphs/documentation/resources/lily-a2bf82dd.png
+ texmf-dist/doc/lualatex/lilyglyphs/documentation/resources/lily-ae3fd948.png
+ texmf-dist/doc/lualatex/lilyglyphs/documentation/resources/lily-b3dc0958.png
+ texmf-dist/doc/lualatex/lilyglyphs/documentation/resources/lily-b69af986.png
+ texmf-dist/doc/lualatex/lilyglyphs/documentation/resources/lily-d9988a2c.png
+ texmf-dist/doc/lualatex/lilyglyphs/documentation/resources/lily-dffaecd2.png
+ texmf-dist/doc/lualatex/lilyglyphs/documentation/resources/lily-f4d0afc9.png
+ texmf-dist/doc/lualatex/lilyglyphs/documentation/resources/lilyglyphsManualFonts.sty
+ texmf-dist/doc/lualatex/lilyglyphs/documentation/resources/lilyglyphsStyle.sty
+ texmf-dist/doc/lualatex/lilyglyphs/documentation/resources/lilypond-manuals.css
+ texmf-dist/doc/lualatex/lilyglyphs/documentation/the-feta-font-2-18-0.html
+ texmf-dist/doc/lualatex/lilyglyphs/license/COPYING.LPPL
+ texmf-dist/doc/lualatex/lilyglyphs/license/MANIFEST
+ texmf-dist/doc/lualatex/lilyglyphs/license/license-preamble.inp
+srcfiles size=91
+ texmf-dist/source/luatex/lilyglyphs/fonts/README-emmentaler
+ texmf-dist/source/luatex/lilyglyphs/fonts/emmentaler-2-18-0.zip
+ texmf-dist/source/luatex/lilyglyphs/glyphimages/definitions/_template.ly
+ texmf-dist/source/luatex/lilyglyphs/glyphimages/definitions/beamednotes.ly
+ texmf-dist/source/luatex/lilyglyphs/glyphimages/definitions/dynamicsigns.ly
+ texmf-dist/source/luatex/lilyglyphs/glyphimages/definitions/fancyexamples.ly
+ texmf-dist/source/luatex/lilyglyphs/glyphimages/definitions/score.ily
+ texmf-dist/source/luatex/lilyglyphs/glyphimages/definitions/singlenotes.ly
+ texmf-dist/source/luatex/lilyglyphs/glyphimages/definitions/singlenotes.pdf
+ texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-crescHairpin.ly
+ texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-crotchet.ly
+ texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-crotchetDotted.ly
+ texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-crotchetDottedDouble.ly
+ texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-crotchetDottedDoubleDown.ly
+ texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-crotchetDottedDown.ly
+ texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-crotchetDown.ly
+ texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-decrescHairpin.ly
+ texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-demisemiquaver.ly
+ texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-demisemiquaverDotted.ly
+ texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-demisemiquaverDottedDouble.ly
+ texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-demisemiquaverDottedDoubleDown.ly
+ texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-demisemiquaverDottedDown.ly
+ texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-demisemiquaverDown.ly
+ texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-fancyExample.ly
+ texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-halfNote.ly
+ texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-halfNoteDotted.ly
+ texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-halfNoteDottedDouble.ly
+ texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-halfNoteDottedDoubleDown.ly
+ texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-halfNoteDottedDown.ly
+ texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-halfNoteDown.ly
+ texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-quaver.ly
+ texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-quaverDotted.ly
+ texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-quaverDottedDouble.ly
+ texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-quaverDottedDoubleDdown.ly
+ texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-quaverDottedDoubleDown.ly
+ texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-quaverDottedDown.ly
+ texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-quaverDown.ly
+ texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-semiquaver.ly
+ texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-semiquaverDotted.ly
+ texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-semiquaverDottedDouble.ly
+ texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-semiquaverDottedDoubleDown.ly
+ texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-semiquaverDottedDown.ly
+ texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-semiquaverDown.ly
+ texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-threeBeamedQuavers.ly
+ texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-threeBeamedQuaversI.ly
+ texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-threeBeamedQuaversII.ly
+ texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-threeBeamedQuaversIII.ly
+ texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-twoBeamedQuavers.ly
+runfiles size=526
+ texmf-dist/fonts/opentype/public/lilyglyphs/FONTLOG
+ texmf-dist/fonts/opentype/public/lilyglyphs/LICENSE.OFL
+ texmf-dist/fonts/opentype/public/lilyglyphs/emmentaler-11.otf
+ texmf-dist/fonts/opentype/public/lilyglyphs/emmentaler-13.otf
+ texmf-dist/fonts/opentype/public/lilyglyphs/emmentaler-14.otf
+ texmf-dist/fonts/opentype/public/lilyglyphs/emmentaler-16.otf
+ texmf-dist/fonts/opentype/public/lilyglyphs/emmentaler-18.otf
+ texmf-dist/fonts/opentype/public/lilyglyphs/emmentaler-20.otf
+ texmf-dist/fonts/opentype/public/lilyglyphs/emmentaler-23.otf
+ texmf-dist/fonts/opentype/public/lilyglyphs/emmentaler-26.otf
+ texmf-dist/fonts/opentype/public/lilyglyphs/emmentaler-brace.otf
+ texmf-dist/scripts/lilyglyphs/lily-glyph-commands.py
+ texmf-dist/scripts/lilyglyphs/lily-image-commands.py
+ texmf-dist/scripts/lilyglyphs/lily-rebuild-pdfs.py
+ texmf-dist/scripts/lilyglyphs/lilyglyphs_common.py
+ texmf-dist/tex/lualatex/lilyglyphs/README-tex
+ texmf-dist/tex/lualatex/lilyglyphs/commands/README-commands
+ texmf-dist/tex/lualatex/lilyglyphs/commands/accidentals.inp
+ texmf-dist/tex/lualatex/lilyglyphs/commands/accordion.inp
+ texmf-dist/tex/lualatex/lilyglyphs/commands/beamednotes.inp
+ texmf-dist/tex/lualatex/lilyglyphs/commands/clefs.inp
+ texmf-dist/tex/lualatex/lilyglyphs/commands/dynamics.inp
+ texmf-dist/tex/lualatex/lilyglyphs/commands/fancyexamples.inp
+ texmf-dist/tex/lualatex/lilyglyphs/commands/noteheads.inp
+ texmf-dist/tex/lualatex/lilyglyphs/commands/numbers.inp
+ texmf-dist/tex/lualatex/lilyglyphs/commands/rests.inp
+ texmf-dist/tex/lualatex/lilyglyphs/commands/scripts.inp
+ texmf-dist/tex/lualatex/lilyglyphs/commands/singlenotes.inp
+ texmf-dist/tex/lualatex/lilyglyphs/commands/timesignatures.inp
+ texmf-dist/tex/lualatex/lilyglyphs/core/README-core
+ texmf-dist/tex/lualatex/lilyglyphs/core/dotted.inp
+ texmf-dist/tex/lualatex/lilyglyphs/core/genericAccess.inp
+ texmf-dist/tex/lualatex/lilyglyphs/core/keyval.inp
+ texmf-dist/tex/lualatex/lilyglyphs/core/opticals.inp
+ texmf-dist/tex/lualatex/lilyglyphs/lilyglyphs.sty
+ texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-crescHairpin.pdf
+ texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-crotchet.pdf
+ texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-crotchetDotted.pdf
+ texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-crotchetDottedDouble.pdf
+ texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-crotchetDottedDoubleDown.pdf
+ texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-crotchetDottedDown.pdf
+ texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-crotchetDown.pdf
+ texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-decrescHairpin.pdf
+ texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-demisemiquaver.pdf
+ texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-demisemiquaverDotted.pdf
+ texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-demisemiquaverDottedDouble.pdf
+ texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-demisemiquaverDottedDoubleDown.pdf
+ texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-demisemiquaverDottedDown.pdf
+ texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-demisemiquaverDown.pdf
+ texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-fancyExample.pdf
+ texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-halfNote.pdf
+ texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-halfNoteDotted.pdf
+ texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-halfNoteDottedDouble.pdf
+ texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-halfNoteDottedDoubleDown.pdf
+ texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-halfNoteDottedDown.pdf
+ texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-halfNoteDown.pdf
+ texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-quaver.pdf
+ texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-quaverDotted.pdf
+ texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-quaverDottedDouble.pdf
+ texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-quaverDottedDoubleDdown.pdf
+ texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-quaverDottedDoubleDown.pdf
+ texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-quaverDottedDown.pdf
+ texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-quaverDown.pdf
+ texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-semiquaver.pdf
+ texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-semiquaverDotted.pdf
+ texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-semiquaverDottedDouble.pdf
+ texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-semiquaverDottedDoubleDown.pdf
+ texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-semiquaverDottedDown.pdf
+ texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-semiquaverDown.pdf
+ texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-threeBeamedQuavers.pdf
+ texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-threeBeamedQuaversI.pdf
+ texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-threeBeamedQuaversII.pdf
+ texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-threeBeamedQuaversIII.pdf
+ texmf-dist/tex/lualatex/lilyglyphs/pdfs/lily-twoBeamedQuavers.pdf
+catalogue-ctan /macros/luatex/latex/lilyglyphs
+catalogue-date 2014-05-11 22:01:43 +0200
+catalogue-license lppl1.3
+catalogue-version 0.2.3
+
+name lilyglyphs.alpha-linux
+category Package
+revision 31696
+shortdesc alpha-linux files of lilyglyphs
+binfiles arch=alpha-linux size=3
+ bin/alpha-linux/lily-glyph-commands
+ bin/alpha-linux/lily-image-commands
+ bin/alpha-linux/lily-rebuild-pdfs
+
+name lilyglyphs.amd64-freebsd
+category Package
+revision 31696
+shortdesc amd64-freebsd files of lilyglyphs
+binfiles arch=amd64-freebsd size=3
+ bin/amd64-freebsd/lily-glyph-commands
+ bin/amd64-freebsd/lily-image-commands
+ bin/amd64-freebsd/lily-rebuild-pdfs
+
+name lilyglyphs.amd64-kfreebsd
+category Package
+revision 31696
+shortdesc amd64-kfreebsd files of lilyglyphs
+binfiles arch=amd64-kfreebsd size=3
+ bin/amd64-kfreebsd/lily-glyph-commands
+ bin/amd64-kfreebsd/lily-image-commands
+ bin/amd64-kfreebsd/lily-rebuild-pdfs
+
+name lilyglyphs.amd64-netbsd
+category Package
+revision 31696
+shortdesc amd64-netbsd files of lilyglyphs
+binfiles arch=amd64-netbsd size=3
+ bin/amd64-netbsd/lily-glyph-commands
+ bin/amd64-netbsd/lily-image-commands
+ bin/amd64-netbsd/lily-rebuild-pdfs
+
+name lilyglyphs.armel-linux
+category Package
+revision 31696
+shortdesc armel-linux files of lilyglyphs
+binfiles arch=armel-linux size=3
+ bin/armel-linux/lily-glyph-commands
+ bin/armel-linux/lily-image-commands
+ bin/armel-linux/lily-rebuild-pdfs
+
+name lilyglyphs.armhf-linux
+category Package
+revision 31696
+shortdesc armhf-linux files of lilyglyphs
+binfiles arch=armhf-linux size=3
+ bin/armhf-linux/lily-glyph-commands
+ bin/armhf-linux/lily-image-commands
+ bin/armhf-linux/lily-rebuild-pdfs
+
+name lilyglyphs.i386-cygwin
+category Package
+revision 31696
+shortdesc i386-cygwin files of lilyglyphs
+binfiles arch=i386-cygwin size=3
+ bin/i386-cygwin/lily-glyph-commands
+ bin/i386-cygwin/lily-image-commands
+ bin/i386-cygwin/lily-rebuild-pdfs
+
+name lilyglyphs.i386-freebsd
+category Package
+revision 31696
+shortdesc i386-freebsd files of lilyglyphs
+binfiles arch=i386-freebsd size=3
+ bin/i386-freebsd/lily-glyph-commands
+ bin/i386-freebsd/lily-image-commands
+ bin/i386-freebsd/lily-rebuild-pdfs
+
+name lilyglyphs.i386-kfreebsd
+category Package
+revision 31696
+shortdesc i386-kfreebsd files of lilyglyphs
+binfiles arch=i386-kfreebsd size=3
+ bin/i386-kfreebsd/lily-glyph-commands
+ bin/i386-kfreebsd/lily-image-commands
+ bin/i386-kfreebsd/lily-rebuild-pdfs
+
+name lilyglyphs.i386-linux
+category Package
+revision 31696
+shortdesc i386-linux files of lilyglyphs
+binfiles arch=i386-linux size=3
+ bin/i386-linux/lily-glyph-commands
+ bin/i386-linux/lily-image-commands
+ bin/i386-linux/lily-rebuild-pdfs
+
+name lilyglyphs.i386-netbsd
+category Package
+revision 31696
+shortdesc i386-netbsd files of lilyglyphs
+binfiles arch=i386-netbsd size=3
+ bin/i386-netbsd/lily-glyph-commands
+ bin/i386-netbsd/lily-image-commands
+ bin/i386-netbsd/lily-rebuild-pdfs
+
+name lilyglyphs.i386-solaris
+category Package
+revision 31696
+shortdesc i386-solaris files of lilyglyphs
+binfiles arch=i386-solaris size=3
+ bin/i386-solaris/lily-glyph-commands
+ bin/i386-solaris/lily-image-commands
+ bin/i386-solaris/lily-rebuild-pdfs
+
+name lilyglyphs.mipsel-linux
+category Package
+revision 31696
+shortdesc mipsel-linux files of lilyglyphs
+binfiles arch=mipsel-linux size=3
+ bin/mipsel-linux/lily-glyph-commands
+ bin/mipsel-linux/lily-image-commands
+ bin/mipsel-linux/lily-rebuild-pdfs
+
+name lilyglyphs.powerpc-linux
+category Package
+revision 31696
+shortdesc powerpc-linux files of lilyglyphs
+binfiles arch=powerpc-linux size=3
+ bin/powerpc-linux/lily-glyph-commands
+ bin/powerpc-linux/lily-image-commands
+ bin/powerpc-linux/lily-rebuild-pdfs
+
+name lilyglyphs.sparc-solaris
+category Package
+revision 31696
+shortdesc sparc-solaris files of lilyglyphs
+binfiles arch=sparc-solaris size=3
+ bin/sparc-solaris/lily-glyph-commands
+ bin/sparc-solaris/lily-image-commands
+ bin/sparc-solaris/lily-rebuild-pdfs
+
+name lilyglyphs.universal-darwin
+category Package
+revision 31696
+shortdesc universal-darwin files of lilyglyphs
+binfiles arch=universal-darwin size=3
+ bin/universal-darwin/lily-glyph-commands
+ bin/universal-darwin/lily-image-commands
+ bin/universal-darwin/lily-rebuild-pdfs
+
+name lilyglyphs.win32
+category Package
+revision 31696
+shortdesc win32 files of lilyglyphs
+binfiles arch=win32 size=3
+ bin/win32/lily-glyph-commands.exe
+ bin/win32/lily-image-commands.exe
+ bin/win32/lily-rebuild-pdfs.exe
+
+name lilyglyphs.x86_64-cygwin
+category Package
+revision 33557
+shortdesc x86_64-cygwin files of lilyglyphs
+binfiles arch=x86_64-cygwin size=3
+ bin/x86_64-cygwin/lily-glyph-commands
+ bin/x86_64-cygwin/lily-image-commands
+ bin/x86_64-cygwin/lily-rebuild-pdfs
+
+name lilyglyphs.x86_64-darwin
+category Package
+revision 31696
+shortdesc x86_64-darwin files of lilyglyphs
+binfiles arch=x86_64-darwin size=3
+ bin/x86_64-darwin/lily-glyph-commands
+ bin/x86_64-darwin/lily-image-commands
+ bin/x86_64-darwin/lily-rebuild-pdfs
+
+name lilyglyphs.x86_64-linux
+category Package
+revision 31696
+shortdesc x86_64-linux files of lilyglyphs
+binfiles arch=x86_64-linux size=3
+ bin/x86_64-linux/lily-glyph-commands
+ bin/x86_64-linux/lily-image-commands
+ bin/x86_64-linux/lily-rebuild-pdfs
+
+name lilyglyphs.x86_64-solaris
+category Package
+revision 31696
+shortdesc x86_64-solaris files of lilyglyphs
+binfiles arch=x86_64-solaris size=3
+ bin/x86_64-solaris/lily-glyph-commands
+ bin/x86_64-solaris/lily-image-commands
+ bin/x86_64-solaris/lily-rebuild-pdfs
+
name limap
category Package
revision 15878
@@ -96034,7 +105830,7 @@ runfiles size=53
texmf-dist/fonts/type1/public/linearA/LinearACmplxSigns.pfb
texmf-dist/tex/latex/linearA/linearA.sty
catalogue-ctan /fonts/archaic/linearA
-catalogue-date 2012-05-22 10:49:40 +0200
+catalogue-date 2014-05-11 22:35:08 +0200
catalogue-license lppl
name linegoal
@@ -96059,7 +105855,7 @@ srcfiles size=11
runfiles size=1
texmf-dist/tex/latex/linegoal/linegoal.sty
catalogue-ctan /macros/latex/contrib/linegoal
-catalogue-date 2012-04-21 20:14:11 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 2.9
@@ -96101,12 +105897,12 @@ name linguex
category Package
revision 30815
shortdesc Format linguists' examples.
-longdesc This bundle comprises two packages: - The linguex package
+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 ps-
-longdesc trees package provides linguistic trees, building on the macros
-longdesc of tree-dvips, but overcoming some of the older package's
+longdesc brackets, and the '*' in grammaticality judgments. The ps-trees
+longdesc package provides linguistic trees, building on the macros of
+longdesc tree-dvips, but overcoming some of the older package's
longdesc shortcomings.
docfiles size=77
texmf-dist/doc/latex/linguex/README
@@ -96119,7 +105915,7 @@ runfiles size=8
texmf-dist/tex/latex/linguex/linguho.sty
texmf-dist/tex/latex/linguex/ps-trees.sty
catalogue-ctan /macros/latex/contrib/linguex
-catalogue-date 2013-05-29 00:53:00 +0200
+catalogue-date 2014-01-06 13:53:04 +0100
catalogue-license lppl
catalogue-version 4.3
@@ -96146,21 +105942,58 @@ catalogue-version v1.2
name lisp-on-tex
category Package
-revision 29291
+revision 32561
shortdesc Execute LISP code in a LaTeX document.
longdesc The package provides a LISP interpreter written using TeX
longdesc macros; it is provided as a LaTeX package. The interpreter
longdesc static scoping, dynamic typing, and eager evaluation.
-docfiles size=31
+docfiles size=743
texmf-dist/doc/latex/lisp-on-tex/LICENSE
texmf-dist/doc/latex/lisp-on-tex/README details="Readme"
texmf-dist/doc/latex/lisp-on-tex/examples/fact.pdf
texmf-dist/doc/latex/lisp-on-tex/examples/fact.tex
texmf-dist/doc/latex/lisp-on-tex/examples/fpnummodule-mandelbrot.pdf
texmf-dist/doc/latex/lisp-on-tex/examples/fpnummodule-mandelbrot.tex
+ texmf-dist/doc/latex/lisp-on-tex/examples/repl.tex
texmf-dist/doc/latex/lisp-on-tex/examples/rocket.pdf
texmf-dist/doc/latex/lisp-on-tex/examples/rocket.tex
-runfiles size=12
+ texmf-dist/doc/latex/lisp-on-tex/examples/showfont.tex
+ texmf-dist/doc/latex/lisp-on-tex/tug2013/bench/expl3/asts.tex
+ texmf-dist/doc/latex/lisp-on-tex/tug2013/bench/expl3/mandel.pdf
+ texmf-dist/doc/latex/lisp-on-tex/tug2013/bench/expl3/mandel.tex
+ texmf-dist/doc/latex/lisp-on-tex/tug2013/bench/expl3/tarai.pdf
+ texmf-dist/doc/latex/lisp-on-tex/tug2013/bench/expl3/tarai.tex
+ texmf-dist/doc/latex/lisp-on-tex/tug2013/bench/latex/ast.tex
+ texmf-dist/doc/latex/lisp-on-tex/tug2013/bench/latex/mandel.pdf
+ texmf-dist/doc/latex/lisp-on-tex/tug2013/bench/latex/mandel.tex
+ texmf-dist/doc/latex/lisp-on-tex/tug2013/bench/latex/tarai.pdf
+ texmf-dist/doc/latex/lisp-on-tex/tug2013/bench/latex/tarai.tex
+ texmf-dist/doc/latex/lisp-on-tex/tug2013/bench/lot/asts.pdf
+ texmf-dist/doc/latex/lisp-on-tex/tug2013/bench/lot/asts.tex
+ texmf-dist/doc/latex/lisp-on-tex/tug2013/bench/lot/mandel.pdf
+ texmf-dist/doc/latex/lisp-on-tex/tug2013/bench/lot/mandel.tex
+ texmf-dist/doc/latex/lisp-on-tex/tug2013/bench/lot/tarai.pdf
+ texmf-dist/doc/latex/lisp-on-tex/tug2013/bench/lot/tarai.tex
+ texmf-dist/doc/latex/lisp-on-tex/tug2013/bench/luatex/asts.pdf
+ texmf-dist/doc/latex/lisp-on-tex/tug2013/bench/luatex/asts.tex
+ texmf-dist/doc/latex/lisp-on-tex/tug2013/bench/luatex/mandel.pdf
+ texmf-dist/doc/latex/lisp-on-tex/tug2013/bench/luatex/mandel.tex
+ texmf-dist/doc/latex/lisp-on-tex/tug2013/bench/luatex/tarai.pdf
+ texmf-dist/doc/latex/lisp-on-tex/tug2013/bench/luatex/tarai.tex
+ texmf-dist/doc/latex/lisp-on-tex/tug2013/bench/perltex/ast.lgpl
+ texmf-dist/doc/latex/lisp-on-tex/tug2013/bench/perltex/ast.pdf
+ texmf-dist/doc/latex/lisp-on-tex/tug2013/bench/perltex/ast.tex
+ texmf-dist/doc/latex/lisp-on-tex/tug2013/bench/perltex/asts.lgpl
+ texmf-dist/doc/latex/lisp-on-tex/tug2013/bench/perltex/asts.pipe
+ texmf-dist/doc/latex/lisp-on-tex/tug2013/bench/perltex/mandel.lgpl
+ texmf-dist/doc/latex/lisp-on-tex/tug2013/bench/perltex/mandel.pdf
+ texmf-dist/doc/latex/lisp-on-tex/tug2013/bench/perltex/mandel.tex
+ texmf-dist/doc/latex/lisp-on-tex/tug2013/bench/perltex/tarai.lgpl
+ texmf-dist/doc/latex/lisp-on-tex/tug2013/bench/perltex/tarai.pdf
+ texmf-dist/doc/latex/lisp-on-tex/tug2013/bench/perltex/tarai.tex
+ texmf-dist/doc/latex/lisp-on-tex/tug2013/slide.pdf details="Slides from TUG 2013 presentation"
+ texmf-dist/doc/latex/lisp-on-tex/tug2013/slide.tex
+runfiles size=14
texmf-dist/tex/latex/lisp-on-tex/lisp-arith.sty
texmf-dist/tex/latex/lisp-on-tex/lisp-latexutil.sty
texmf-dist/tex/latex/lisp-on-tex/lisp-mod-fpnum.sty
@@ -96170,9 +106003,9 @@ runfiles size=12
texmf-dist/tex/latex/lisp-on-tex/lisp-string.sty
texmf-dist/tex/latex/lisp-on-tex/lisp-util.sty
catalogue-ctan /macros/latex/contrib/lisp-on-tex
-catalogue-date 2013-03-06 10:32:55 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license bsd
-catalogue-version 1.0
+catalogue-version 1.2
name listbib
category Package
@@ -96285,13 +106118,6 @@ shortdesc i386-solaris files of listbib
binfiles arch=i386-solaris size=1
bin/i386-solaris/listbib
-name listbib.mips-irix
-category Package
-revision 29949
-shortdesc mips-irix files of listbib
-binfiles arch=mips-irix size=1
- bin/mips-irix/listbib
-
name listbib.mipsel-linux
category Package
revision 29946
@@ -96327,6 +106153,13 @@ shortdesc win32 files of listbib
binfiles arch=win32 size=1
bin/win32/listbib.exe
+name listbib.x86_64-cygwin
+category Package
+revision 33557
+shortdesc x86_64-cygwin files of listbib
+binfiles arch=x86_64-cygwin size=1
+ bin/x86_64-cygwin/listbib
+
name listbib.x86_64-darwin
category Package
revision 26126
@@ -96371,30 +106204,37 @@ catalogue-version 1.2
name listings
category Package
-revision 15878
+revision 33095
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 The package enables the user to typeset programs (programming
+longdesc code) within LaTeX; the source code is read directly by TeX--no
+longdesc front-end processor is needed. 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 strings). Support for hyperref is provided. To use,
+longdesc \usepackage{listings}, identify the language of the object to
+longdesc typeset, using a construct like: \lstset{language=Python}, then
+longdesc use environment lstlisting for inline code. External files may
+longdesc be formatted using \lstinputlisting to process a given file in
+longdesc the form appropriate for the current language. Short (in-line)
+longdesc listings are also available, using either \lstinline|...| or
+longdesc |...| (after defining the | token with the \lstMakeShortInline
longdesc command).
-docfiles size=176
+docfiles size=303
+ texmf-dist/doc/latex/listings/Makefile
texmf-dist/doc/latex/listings/README details="Package Readme"
+ texmf-dist/doc/latex/listings/listings-acm.prf
+ texmf-dist/doc/latex/listings/listings-fortran.prf
+ texmf-dist/doc/latex/listings/listings-lua.prf
+ texmf-dist/doc/latex/listings/listings-python.prf
texmf-dist/doc/latex/listings/listings.pdf details="Package documentation"
-srcfiles size=230
- texmf-dist/source/latex/listings/Makefile
+ texmf-dist/doc/latex/listings/lstdrvrs.pdf details="Language drivers details"
+srcfiles size=237
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=107
+runfiles size=111
texmf-dist/tex/latex/listings/listings.cfg
texmf-dist/tex/latex/listings/listings.sty
texmf-dist/tex/latex/listings/lstdoc.sty
@@ -96403,9 +106243,9 @@ runfiles size=107
texmf-dist/tex/latex/listings/lstlang3.sty
texmf-dist/tex/latex/listings/lstmisc.sty
catalogue-ctan /macros/latex/contrib/listings
-catalogue-date 2012-04-22 10:53:46 +0200
+catalogue-date 2014-03-04 22:18:45 +0100
catalogue-license lppl
-catalogue-version 1.4
+catalogue-version 1.5c
name listings-ext
category Package
@@ -96444,7 +106284,7 @@ runfiles size=5
texmf-dist/scripts/listings-ext/listings-ext.sh
texmf-dist/tex/latex/listings-ext/listings-ext.sty
catalogue-ctan /macros/latex/contrib/listings-ext
-catalogue-date 2012-04-21 20:14:11 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.2
catalogue-version 67
@@ -96532,13 +106372,6 @@ shortdesc i386-solaris files of listings-ext
binfiles arch=i386-solaris size=1
bin/i386-solaris/listings-ext.sh
-name listings-ext.mips-irix
-category Package
-revision 29949
-shortdesc mips-irix files of listings-ext
-binfiles arch=mips-irix size=1
- bin/mips-irix/listings-ext.sh
-
name listings-ext.mipsel-linux
category Package
revision 29946
@@ -96567,6 +106400,13 @@ shortdesc universal-darwin files of listings-ext
binfiles arch=universal-darwin size=1
bin/universal-darwin/listings-ext.sh
+name listings-ext.x86_64-cygwin
+category Package
+revision 33557
+shortdesc x86_64-cygwin files of listings-ext
+binfiles arch=x86_64-cygwin size=1
+ bin/x86_64-cygwin/listings-ext.sh
+
name listings-ext.x86_64-darwin
category Package
revision 18441
@@ -96639,11 +106479,11 @@ name lithuanian
category Package
revision 22722
shortdesc Lithuanian language support.
-longdesc This language support package provides: - Lithuanian language
-longdesc hyphenation patterns; - Lithuanian support for Babel; -
-longdesc Lithuanian mapping and metrics for using the URW base-35 Type 1
-longdesc fonts; - examples for making Lithuanian fonts with fontinst;
-longdesc and - extra tools for intputenc and fontenc.
+longdesc This language support package provides: Lithuanian language
+longdesc hyphenation patterns; Lithuanian support for Babel; Lithuanian
+longdesc mapping and metrics for using the URW base-35 Type 1 fonts;
+longdesc examples for making Lithuanian fonts with fontinst; and extra
+longdesc tools for intputenc and fontenc.
execute addMap l7x-urwvn.map
docfiles size=43
texmf-dist/doc/latex/lithuanian/COPYING
@@ -96715,7 +106555,7 @@ runfiles size=99
texmf-dist/tex/latex/lithuanian/lithuanian.ldf
texmf-dist/tex/latex/lithuanian/lithuanian.sty
catalogue-ctan /language/lithuanian
-catalogue-date 2012-07-07 21:23:31 +0200
+catalogue-date 2014-05-11 22:35:08 +0200
catalogue-license lppl
name liturg
@@ -96734,7 +106574,7 @@ srcfiles size=1
runfiles size=5
texmf-dist/tex/latex/liturg/liturg.sty
catalogue-ctan /macros/latex/contrib/liturg
-catalogue-date 2012-07-07 21:23:31 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.0
@@ -96751,7 +106591,7 @@ docfiles size=65
runfiles size=2
texmf-dist/tex/latex/lkproof/proof.sty
catalogue-ctan /macros/latex/contrib/lkproof
-catalogue-date 2012-07-07 22:28:14 +0200
+catalogue-date 2014-05-12 06:57:13 +0200
catalogue-license gpl
catalogue-version 3.1
@@ -97869,7 +107709,7 @@ runfiles size=10645
texmf-dist/tex/latex/lm/ts1lmtt.fd
texmf-dist/tex/latex/lm/ts1lmvtt.fd
catalogue-ctan /fonts/lm
-catalogue-date 2012-11-29 15:56:16 +0100
+catalogue-date 2014-05-11 22:35:08 +0200
catalogue-license gfsl
catalogue-version 2.004
@@ -97898,7 +107738,7 @@ docfiles size=38
runfiles size=180
texmf-dist/fonts/opentype/public/lm-math/latinmodern-math.otf
catalogue-ctan /fonts/lm-math
-catalogue-date 2013-02-06 18:13:15 +0100
+catalogue-date 2014-05-11 22:35:08 +0200
catalogue-license lppl
catalogue-version 1.958
@@ -97918,10 +107758,115 @@ srcfiles size=6
runfiles size=2
texmf-dist/tex/latex/lmake/lmake.sty
catalogue-ctan /macros/latex/contrib/lmake
-catalogue-date 2012-03-12 21:18:36 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.2
catalogue-version 1.0
+name lobster2
+category Package
+revision 32617
+shortdesc Lobster Two fonts, with support for all LaTeX engines.
+longdesc Lobster Two is a family of script fonts designed bt Pablo
+longdesc Impallari. It has many ligatures and terminal forms, but most
+longdesc of these can be accessed only using XeLaTeX or LuaLaTeX. Font
+longdesc access and use is supported in LaTeX.
+execute addMap LobsterTwo.map
+docfiles size=13
+ texmf-dist/doc/fonts/lobster2/OFL.txt
+ texmf-dist/doc/fonts/lobster2/README details="Readme"
+ texmf-dist/doc/fonts/lobster2/lobster2-samples.pdf
+ texmf-dist/doc/fonts/lobster2/lobster2-samples.tex
+runfiles size=577
+ texmf-dist/fonts/enc/dvips/lobster2/lbst2_2vl4dw.enc
+ texmf-dist/fonts/enc/dvips/lobster2/lbst2_5uiiua.enc
+ texmf-dist/fonts/enc/dvips/lobster2/lbst2_lyobxw.enc
+ texmf-dist/fonts/enc/dvips/lobster2/lbst2_xn7u5r.enc
+ texmf-dist/fonts/map/dvips/lobster2/LobsterTwo.map
+ texmf-dist/fonts/opentype/impallari/lobster2/LobsterTwo-Bold.otf
+ texmf-dist/fonts/opentype/impallari/lobster2/LobsterTwo-BoldItalic.otf
+ texmf-dist/fonts/opentype/impallari/lobster2/LobsterTwo-Italic.otf
+ texmf-dist/fonts/opentype/impallari/lobster2/LobsterTwo-Regular.otf
+ texmf-dist/fonts/tfm/impallari/lobster2/LobsterTwo-Bold-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/impallari/lobster2/LobsterTwo-Bold-lf-ly1--lcdfj.tfm
+ texmf-dist/fonts/tfm/impallari/lobster2/LobsterTwo-Bold-lf-ly1.tfm
+ texmf-dist/fonts/tfm/impallari/lobster2/LobsterTwo-Bold-lf-ot1--base.tfm
+ texmf-dist/fonts/tfm/impallari/lobster2/LobsterTwo-Bold-lf-ot1--lcdfj.tfm
+ texmf-dist/fonts/tfm/impallari/lobster2/LobsterTwo-Bold-lf-ot1.tfm
+ texmf-dist/fonts/tfm/impallari/lobster2/LobsterTwo-Bold-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/impallari/lobster2/LobsterTwo-Bold-lf-t1--lcdfj.tfm
+ texmf-dist/fonts/tfm/impallari/lobster2/LobsterTwo-Bold-lf-t1.tfm
+ texmf-dist/fonts/tfm/impallari/lobster2/LobsterTwo-Bold-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/impallari/lobster2/LobsterTwo-Bold-lf-ts1.tfm
+ texmf-dist/fonts/tfm/impallari/lobster2/LobsterTwo-BoldItalic-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/impallari/lobster2/LobsterTwo-BoldItalic-lf-ly1--lcdfj.tfm
+ texmf-dist/fonts/tfm/impallari/lobster2/LobsterTwo-BoldItalic-lf-ly1.tfm
+ texmf-dist/fonts/tfm/impallari/lobster2/LobsterTwo-BoldItalic-lf-ot1--base.tfm
+ texmf-dist/fonts/tfm/impallari/lobster2/LobsterTwo-BoldItalic-lf-ot1--lcdfj.tfm
+ texmf-dist/fonts/tfm/impallari/lobster2/LobsterTwo-BoldItalic-lf-ot1.tfm
+ texmf-dist/fonts/tfm/impallari/lobster2/LobsterTwo-BoldItalic-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/impallari/lobster2/LobsterTwo-BoldItalic-lf-t1--lcdfj.tfm
+ texmf-dist/fonts/tfm/impallari/lobster2/LobsterTwo-BoldItalic-lf-t1.tfm
+ texmf-dist/fonts/tfm/impallari/lobster2/LobsterTwo-BoldItalic-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/impallari/lobster2/LobsterTwo-BoldItalic-lf-ts1.tfm
+ texmf-dist/fonts/tfm/impallari/lobster2/LobsterTwo-Italic-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/impallari/lobster2/LobsterTwo-Italic-lf-ly1--lcdfj.tfm
+ texmf-dist/fonts/tfm/impallari/lobster2/LobsterTwo-Italic-lf-ly1.tfm
+ texmf-dist/fonts/tfm/impallari/lobster2/LobsterTwo-Italic-lf-ot1--base.tfm
+ texmf-dist/fonts/tfm/impallari/lobster2/LobsterTwo-Italic-lf-ot1--lcdfj.tfm
+ texmf-dist/fonts/tfm/impallari/lobster2/LobsterTwo-Italic-lf-ot1.tfm
+ texmf-dist/fonts/tfm/impallari/lobster2/LobsterTwo-Italic-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/impallari/lobster2/LobsterTwo-Italic-lf-t1--lcdfj.tfm
+ texmf-dist/fonts/tfm/impallari/lobster2/LobsterTwo-Italic-lf-t1.tfm
+ texmf-dist/fonts/tfm/impallari/lobster2/LobsterTwo-Italic-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/impallari/lobster2/LobsterTwo-Italic-lf-ts1.tfm
+ texmf-dist/fonts/tfm/impallari/lobster2/LobsterTwo-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/impallari/lobster2/LobsterTwo-lf-ly1--lcdfj.tfm
+ texmf-dist/fonts/tfm/impallari/lobster2/LobsterTwo-lf-ly1.tfm
+ texmf-dist/fonts/tfm/impallari/lobster2/LobsterTwo-lf-ot1--base.tfm
+ texmf-dist/fonts/tfm/impallari/lobster2/LobsterTwo-lf-ot1--lcdfj.tfm
+ texmf-dist/fonts/tfm/impallari/lobster2/LobsterTwo-lf-ot1.tfm
+ texmf-dist/fonts/tfm/impallari/lobster2/LobsterTwo-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/impallari/lobster2/LobsterTwo-lf-t1--lcdfj.tfm
+ texmf-dist/fonts/tfm/impallari/lobster2/LobsterTwo-lf-t1.tfm
+ texmf-dist/fonts/tfm/impallari/lobster2/LobsterTwo-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/impallari/lobster2/LobsterTwo-lf-ts1.tfm
+ texmf-dist/fonts/truetype/impallari/lobster2/LobsterTwo-Bold.ttf
+ texmf-dist/fonts/truetype/impallari/lobster2/LobsterTwo-BoldItalic.ttf
+ texmf-dist/fonts/truetype/impallari/lobster2/LobsterTwo-Italic.ttf
+ texmf-dist/fonts/truetype/impallari/lobster2/LobsterTwo-Regular.ttf
+ texmf-dist/fonts/type1/impallari/lobster2/LobsterTwo-Bold.pfb
+ texmf-dist/fonts/type1/impallari/lobster2/LobsterTwo-BoldItalic.pfb
+ texmf-dist/fonts/type1/impallari/lobster2/LobsterTwo-BoldItalicLCDFJ.pfb
+ texmf-dist/fonts/type1/impallari/lobster2/LobsterTwo-BoldLCDFJ.pfb
+ texmf-dist/fonts/type1/impallari/lobster2/LobsterTwo-Italic.pfb
+ texmf-dist/fonts/type1/impallari/lobster2/LobsterTwo-ItalicLCDFJ.pfb
+ texmf-dist/fonts/type1/impallari/lobster2/LobsterTwo.pfb
+ texmf-dist/fonts/type1/impallari/lobster2/LobsterTwoLCDFJ.pfb
+ texmf-dist/fonts/vf/impallari/lobster2/LobsterTwo-Bold-lf-ly1.vf
+ texmf-dist/fonts/vf/impallari/lobster2/LobsterTwo-Bold-lf-ot1.vf
+ texmf-dist/fonts/vf/impallari/lobster2/LobsterTwo-Bold-lf-t1.vf
+ texmf-dist/fonts/vf/impallari/lobster2/LobsterTwo-Bold-lf-ts1.vf
+ texmf-dist/fonts/vf/impallari/lobster2/LobsterTwo-BoldItalic-lf-ly1.vf
+ texmf-dist/fonts/vf/impallari/lobster2/LobsterTwo-BoldItalic-lf-ot1.vf
+ texmf-dist/fonts/vf/impallari/lobster2/LobsterTwo-BoldItalic-lf-t1.vf
+ texmf-dist/fonts/vf/impallari/lobster2/LobsterTwo-BoldItalic-lf-ts1.vf
+ texmf-dist/fonts/vf/impallari/lobster2/LobsterTwo-Italic-lf-ly1.vf
+ texmf-dist/fonts/vf/impallari/lobster2/LobsterTwo-Italic-lf-ot1.vf
+ texmf-dist/fonts/vf/impallari/lobster2/LobsterTwo-Italic-lf-t1.vf
+ texmf-dist/fonts/vf/impallari/lobster2/LobsterTwo-Italic-lf-ts1.vf
+ texmf-dist/fonts/vf/impallari/lobster2/LobsterTwo-lf-ly1.vf
+ texmf-dist/fonts/vf/impallari/lobster2/LobsterTwo-lf-ot1.vf
+ texmf-dist/fonts/vf/impallari/lobster2/LobsterTwo-lf-t1.vf
+ texmf-dist/fonts/vf/impallari/lobster2/LobsterTwo-lf-ts1.vf
+ texmf-dist/tex/latex/lobster2/LY1LobsterTwo-LF.fd
+ texmf-dist/tex/latex/lobster2/LobsterTwo.sty
+ texmf-dist/tex/latex/lobster2/OT1LobsterTwo-LF.fd
+ texmf-dist/tex/latex/lobster2/T1LobsterTwo-LF.fd
+ texmf-dist/tex/latex/lobster2/TS1LobsterTwo-LF.fd
+catalogue-ctan /fonts/lobster2
+catalogue-date 2014-05-13 01:37:53 +0200
+catalogue-license ofl
+
name locality
category Package
revision 20422
@@ -97940,7 +107885,7 @@ srcfiles size=8
runfiles size=3
texmf-dist/tex/latex/locality/locality.sty
catalogue-ctan /macros/latex/contrib/locality
-catalogue-date 2012-07-07 21:23:31 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 0.2
@@ -97983,7 +107928,7 @@ srcfiles size=8
runfiles size=1
texmf-dist/tex/latex/logbox/logbox.sty
catalogue-ctan /macros/latex/contrib/logbox
-catalogue-date 2012-03-12 21:18:36 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.0
@@ -97991,8 +107936,8 @@ name logical-markup-utils
category Package
revision 15878
shortdesc Packages for language-dependent inline quotes and dashes.
-longdesc The bundle contains two packages: - quoted, for inserting
-longdesc quotation marks; and - onedash, for inserting dashes. Each
+longdesc The bundle contains two packages: quoted, for inserting
+longdesc quotation marks; and onedash, for inserting dashes. Each
longdesc package takes a language name as an option; accepted language
longdesc options are american, british, german and polish.
docfiles size=11
@@ -98003,40 +107948,67 @@ runfiles size=2
texmf-dist/tex/latex/logical-markup-utils/onedash.sty
texmf-dist/tex/latex/logical-markup-utils/quoted.sty
catalogue-ctan /macros/latex/contrib/logical-markup-utils
-catalogue-date 2012-07-17 13:06:42 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license gpl3
+name logicproof
+category Package
+revision 33254
+shortdesc Box proofs for propositional and predicate logic.
+longdesc A common style of proof used in propositional and predicate
+longdesc logic is Fitch proofs, in which each line of the proof has a
+longdesc statement and a justification, and subproofs within a larger
+longdesc proof have boxes around them. The package provides environments
+longdesc for typesetting such proofs and boxes. It creates proofs in a
+longdesc style similar to that used in "Logic in Computer Science" by
+longdesc Huth and Ryan.
+docfiles size=15
+ texmf-dist/doc/latex/logicproof/README details="Readme"
+ texmf-dist/doc/latex/logicproof/logicproof.pdf details="Package documentation"
+srcfiles size=8
+ texmf-dist/source/latex/logicproof/logicproof.dtx
+ texmf-dist/source/latex/logicproof/logicproof.ins
+runfiles size=2
+ texmf-dist/tex/latex/logicproof/logicproof.sty
+catalogue-ctan /macros/latex/contrib/logicproof
+catalogue-date 2014-03-27 18:52:36 +0100
+catalogue-license lppl1.3
+
name logicpuzzle
category Package
-revision 30558
+revision 31024
shortdesc Typeset (grid-based) logic puzzles.
longdesc The package allows the user to typeset various logic puzzles.
-longdesc At the moment the following puzzles are supported: - 2D-Sudoku
-longdesc (aka Magiequadrat, Diagon, ...), - Battleship (aka Bimaru,
-longdesc Marinespiel, Batalla Naval, ...), - Bokkusu (aka Kakurasu,
-longdesc Feldersummenratsel, ...), - Bridges (akak Bruckenbau, Hashi,
-longdesc ...), - Chaos Sudoku, - Hakyuu (aka Seismic, Ripple Effect,
-longdesc ...), - Hitori, - Kakuro, - Kendoku (aka Mathdoku, Calcudoku,
-longdesc Basic, MiniPlu, Ken Ken, Square Wisdom, Sukendo, Caldoku, ...,
-longdesc - Killer Sudoku (aka Samunapure, Sum Number Place, Sumdoku,
-longdesc Gebietssummen, ...), - Laser Beam (aka Laserstrahl, ...), -
-longdesc Minesweeper (aka Minensuche, ...), - Schatzsuche, - Skyline
-longdesc (aka Skycrapers, Wolkenkratzer, Hochhauser, ...), including
-longdesc Skyline Sudoku and Skyline Sudoku (N*N) variants, - Slitherlink
-longdesc (aka Fences, Number Line, Dotty Dilemma, Sli-Lin, Takegaki,
-longdesc Great Wall of China, Loop the Loop, Rundweg, Gartenzaun, ...),
-longdesc - Star Battle (aka Sternenschlacht, ...), - Stars and Arrows
-longdesc (aka Sternenhimmel, ...), - Sudoku, - Sun and Moon (aka
-longdesc Sternenhaufen, Munraito, ...), - Tents and Trees (aka
-longdesc Zeltlager, Zeltplatz, Camping, ...), and - Tunnel.
-docfiles size=145
+longdesc At the moment the following puzzles are supported: 2D-Sudoku
+longdesc (aka Magiequadrat, Diagon, ...), Battleship (aka Bimaru,
+longdesc Marinespiel, Batalla Naval, ...), Bokkusu (aka Kakurasu,
+longdesc Feldersummenratsel, ...), Bridges (akak Bruckenbau, Hashi,
+longdesc ...), Chaos Sudoku, Four Winds (aka Eminent Domain,
+longdesc Lichtstrahl, ...), Hakyuu (aka Seismic, Ripple Effect, ...),
+longdesc Hitori, Kakuro, Kendoku (aka Mathdoku, Calcudoku, Basic,
+longdesc MiniPlu, Ken Ken, Square Wisdom, Sukendo, Caldoku, ..., Killer
+longdesc Sudoku (aka Samunapure, Sum Number Place, Sumdoku,
+longdesc Gebietssummen, ...), Laser Beam (aka Laserstrahl, ...), Magic
+longdesc Labyrinth (aka Magic Spiral, Magisches Labyrinth, ...), Magnets
+longdesc (aka Magnetplatte, Magnetfeld, ...), Masyu (aka Mashi,
+longdesc {White|Black} Pearls, ...), Minesweeper (aka Minensuche, ...),
+longdesc Number Link, Resuko, Schatzsuche, Skyline (aka Skycrapers,
+longdesc Wolkenkratzer, Hochhauser, ...), including Skyline Sudoku and
+longdesc Skyline Sudoku (N*N) variants, Slitherlink (aka Fences, Number
+longdesc Line, Dotty Dilemma, Sli-Lin, Takegaki, Great Wall of China,
+longdesc Loop the Loop, Rundweg, Gartenzaun, ...), Star Battle (aka
+longdesc Sternenschlacht, ...), Stars and Arrows (aka Sternenhimmel,
+longdesc ...), Sudoku, Sun and Moon (aka Sternenhaufen, Munraito, ...),
+longdesc Tents and Trees (aka Zeltlager, Zeltplatz, Camping, ...), and
+longdesc Tunnel.
+docfiles size=172
texmf-dist/doc/latex/logicpuzzle/CHANGES
texmf-dist/doc/latex/logicpuzzle/INSTALL
texmf-dist/doc/latex/logicpuzzle/README details="Readme"
texmf-dist/doc/latex/logicpuzzle/logicpuzzle.pdf
texmf-dist/doc/latex/logicpuzzle/logicpuzzle.tex
texmf-dist/doc/latex/logicpuzzle/manifest.txt
-runfiles size=36
+runfiles size=43
texmf-dist/scripts/logicpuzzle/createlpsudoku
texmf-dist/scripts/logicpuzzle/lpsmag
texmf-dist/scripts/logicpuzzle/simple.smc
@@ -98055,9 +108027,9 @@ runfiles size=36
texmf-dist/tex/latex/logicpuzzle/skyline.sty
texmf-dist/tex/latex/logicpuzzle/slitherlink.sty
catalogue-ctan /graphics/pgf/contrib/logicpuzzle
-catalogue-date 2013-05-18 17:41:16 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
-catalogue-version 2.2
+catalogue-version 2.4
name logpap
category Package
@@ -98093,9 +108065,9 @@ longdesc external XML file which lists all open tasks in a machine-
longdesc readable format. Compiler scripts and integrated LaTeX editing
longdesc environments may parse this file to determine the next steps in
longdesc the workflow in a way that is more efficient than parsing the
-longdesc main log file. In sum, the package will do two things: 1)
-longdesc enable package authors to use LaTeX commands to issue requests,
-longdesc 2) collect all requests from all packages and write them to an
+longdesc main log file. In sum, the package will do two things: enable
+longdesc package authors to use LaTeX commands to issue requests,
+longdesc collect all requests from all packages and write them to an
longdesc external XML file at the end of the document.
docfiles size=12
texmf-dist/doc/latex/logreq/README details="Readme"
@@ -98113,10 +108085,266 @@ runfiles size=3
texmf-dist/tex/latex/logreq/logreq.def
texmf-dist/tex/latex/logreq/logreq.sty
catalogue-ctan /macros/latex/contrib/logreq
-catalogue-date 2012-10-05 23:15:38 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.0
+name lollipop
+category Package
+revision 33676
+shortdesc TeX made easy.
+longdesc Lollipop is "TeX made easy" -- it is a macro package that
+longdesc functions as a toolbox for writing TeX macros. Its main aim is
+longdesc to make macro writing so easy that implementing a fully new
+longdesc layout in TeX would become a matter of less than an hour for an
+longdesc average document. The aim is that such a task could be
+longdesc accomplished by someone with only a very basic training in TeX
+longdesc programming. Thus, Lollipop aims to make structured text
+longdesc formatting available in environments where typical users would
+longdesc switch to WYSIWYG packages for the freedom that such a
+longdesc mechanism offers. In addition, development of support for
+longdesc Lollipop documents written in RTL languages (such as Persian)
+longdesc is underway.
+depend lollipop.ARCH
+execute AddFormat name=lollipop engine=pdftex options="-translate-file=cp227.tcx *lollipop.ini"
+execute AddFormat name=lualollipop engine=luatex options="lualollipop.ini"
+execute AddFormat name=xelollipop engine=xetex options="-etex xelollipop.ini"
+execute AddFormat name=dvilollipop mode=disabled engine=pdftex options="-translate-file=cp227.tcx *lollipop.ini"
+execute AddFormat name=dvilualollipop mode=disabled engine=luatex options="-translate-file=cp227.tcx lualollipop.ini"
+docfiles size=137
+ texmf-dist/doc/otherformats/lollipop/README details="Readme"
+ texmf-dist/doc/otherformats/lollipop/manual/address.tex
+ texmf-dist/doc/otherformats/lollipop/manual/appendix.tex
+ texmf-dist/doc/otherformats/lollipop/manual/btxmac.tex
+ texmf-dist/doc/otherformats/lollipop/manual/comm.tex
+ texmf-dist/doc/otherformats/lollipop/manual/comment.tex
+ texmf-dist/doc/otherformats/lollipop/manual/example.tex
+ texmf-dist/doc/otherformats/lollipop/manual/extern.tex
+ texmf-dist/doc/otherformats/lollipop/manual/head.tex
+ texmf-dist/doc/otherformats/lollipop/manual/list.tex
+ texmf-dist/doc/otherformats/lollipop/manual/lollipop-manual.bib
+ texmf-dist/doc/otherformats/lollipop/manual/lollipop-manual.pdf
+ texmf-dist/doc/otherformats/lollipop/manual/lollipop-manual.tex
+ texmf-dist/doc/otherformats/lollipop/manual/mandefs.tex
+ texmf-dist/doc/otherformats/lollipop/manual/opt.tex
+ texmf-dist/doc/otherformats/lollipop/manual/out.tex
+ texmf-dist/doc/otherformats/lollipop/manual/prelim.tex
+ texmf-dist/doc/otherformats/lollipop/manual/struct.tex
+ texmf-dist/doc/otherformats/lollipop/manual/titlepag.tex
+ texmf-dist/doc/otherformats/lollipop/manual/trace.tex
+ texmf-dist/doc/otherformats/lollipop/tex-inde.xen
+runfiles size=59
+ texmf-dist/tex/lollipop/dvilollipop.ini
+ texmf-dist/tex/lollipop/dvilualollipop.ini
+ texmf-dist/tex/lollipop/lollipop-define.tex
+ texmf-dist/tex/lollipop/lollipop-document.tex
+ texmf-dist/tex/lollipop/lollipop-float.tex
+ texmf-dist/tex/lollipop/lollipop-fontdefs.tex
+ texmf-dist/tex/lollipop/lollipop-fonts.tex
+ texmf-dist/tex/lollipop/lollipop-heading.tex
+ texmf-dist/tex/lollipop/lollipop-lists.tex
+ texmf-dist/tex/lollipop/lollipop-output.tex
+ texmf-dist/tex/lollipop/lollipop-plain.tex
+ texmf-dist/tex/lollipop/lollipop-text.tex
+ texmf-dist/tex/lollipop/lollipop-tools.tex
+ texmf-dist/tex/lollipop/lollipop.ini
+ texmf-dist/tex/lollipop/lollipop.tex
+ texmf-dist/tex/lollipop/lualollipop.ini
+ texmf-dist/tex/lollipop/xelollipop.ini
+catalogue-ctan /macros/lollipop
+catalogue-date 2014-04-19 12:16:09 +0200
+catalogue-license gpl3
+catalogue-version 1.03
+
+name lollipop.alpha-linux
+category Package
+revision 33728
+shortdesc alpha-linux files of lollipop
+binfiles arch=alpha-linux size=3
+ bin/alpha-linux/lollipop
+ bin/alpha-linux/lualollipop
+ bin/alpha-linux/xelollipop
+
+name lollipop.amd64-freebsd
+category Package
+revision 33728
+shortdesc amd64-freebsd files of lollipop
+binfiles arch=amd64-freebsd size=3
+ bin/amd64-freebsd/lollipop
+ bin/amd64-freebsd/lualollipop
+ bin/amd64-freebsd/xelollipop
+
+name lollipop.amd64-kfreebsd
+category Package
+revision 33664
+shortdesc amd64-kfreebsd files of lollipop
+binfiles arch=amd64-kfreebsd size=3
+ bin/amd64-kfreebsd/lollipop
+ bin/amd64-kfreebsd/lualollipop
+ bin/amd64-kfreebsd/xelollipop
+
+name lollipop.amd64-netbsd
+category Package
+revision 33664
+shortdesc amd64-netbsd files of lollipop
+binfiles arch=amd64-netbsd size=3
+ bin/amd64-netbsd/lollipop
+ bin/amd64-netbsd/lualollipop
+ bin/amd64-netbsd/xelollipop
+
+name lollipop.armel-linux
+category Package
+revision 33728
+shortdesc armel-linux files of lollipop
+binfiles arch=armel-linux size=3
+ bin/armel-linux/lollipop
+ bin/armel-linux/lualollipop
+ bin/armel-linux/xelollipop
+
+name lollipop.armhf-linux
+category Package
+revision 33664
+shortdesc armhf-linux files of lollipop
+binfiles arch=armhf-linux size=3
+ bin/armhf-linux/lollipop
+ bin/armhf-linux/lualollipop
+ bin/armhf-linux/xelollipop
+
+name lollipop.i386-cygwin
+category Package
+revision 33667
+shortdesc i386-cygwin files of lollipop
+binfiles arch=i386-cygwin size=3
+ bin/i386-cygwin/lollipop
+ bin/i386-cygwin/lualollipop
+ bin/i386-cygwin/xelollipop
+
+name lollipop.i386-freebsd
+category Package
+revision 33728
+shortdesc i386-freebsd files of lollipop
+binfiles arch=i386-freebsd size=3
+ bin/i386-freebsd/lollipop
+ bin/i386-freebsd/lualollipop
+ bin/i386-freebsd/xelollipop
+
+name lollipop.i386-kfreebsd
+category Package
+revision 33664
+shortdesc i386-kfreebsd files of lollipop
+binfiles arch=i386-kfreebsd size=3
+ bin/i386-kfreebsd/lollipop
+ bin/i386-kfreebsd/lualollipop
+ bin/i386-kfreebsd/xelollipop
+
+name lollipop.i386-linux
+category Package
+revision 33658
+shortdesc i386-linux files of lollipop
+binfiles arch=i386-linux size=3
+ bin/i386-linux/lollipop
+ bin/i386-linux/lualollipop
+ bin/i386-linux/xelollipop
+
+name lollipop.i386-netbsd
+category Package
+revision 33664
+shortdesc i386-netbsd files of lollipop
+binfiles arch=i386-netbsd size=3
+ bin/i386-netbsd/lollipop
+ bin/i386-netbsd/lualollipop
+ bin/i386-netbsd/xelollipop
+
+name lollipop.i386-solaris
+category Package
+revision 33664
+shortdesc i386-solaris files of lollipop
+binfiles arch=i386-solaris size=3
+ bin/i386-solaris/lollipop
+ bin/i386-solaris/lualollipop
+ bin/i386-solaris/xelollipop
+
+name lollipop.mipsel-linux
+category Package
+revision 33664
+shortdesc mipsel-linux files of lollipop
+binfiles arch=mipsel-linux size=3
+ bin/mipsel-linux/lollipop
+ bin/mipsel-linux/lualollipop
+ bin/mipsel-linux/xelollipop
+
+name lollipop.powerpc-linux
+category Package
+revision 33664
+shortdesc powerpc-linux files of lollipop
+binfiles arch=powerpc-linux size=3
+ bin/powerpc-linux/lollipop
+ bin/powerpc-linux/lualollipop
+ bin/powerpc-linux/xelollipop
+
+name lollipop.sparc-solaris
+category Package
+revision 33664
+shortdesc sparc-solaris files of lollipop
+binfiles arch=sparc-solaris size=3
+ bin/sparc-solaris/lollipop
+ bin/sparc-solaris/lualollipop
+ bin/sparc-solaris/xelollipop
+
+name lollipop.universal-darwin
+category Package
+revision 33664
+shortdesc universal-darwin files of lollipop
+binfiles arch=universal-darwin size=3
+ bin/universal-darwin/lollipop
+ bin/universal-darwin/lualollipop
+ bin/universal-darwin/xelollipop
+
+name lollipop.win32
+category Package
+revision 33897
+shortdesc win32 files of lollipop
+binfiles arch=win32 size=4
+ bin/win32/lollipop.exe
+ bin/win32/lualollipop.exe
+ bin/win32/xelollipop.exe
+
+name lollipop.x86_64-cygwin
+category Package
+revision 33667
+shortdesc x86_64-cygwin files of lollipop
+binfiles arch=x86_64-cygwin size=3
+ bin/x86_64-cygwin/lollipop
+ bin/x86_64-cygwin/lualollipop
+ bin/x86_64-cygwin/xelollipop
+
+name lollipop.x86_64-darwin
+category Package
+revision 33664
+shortdesc x86_64-darwin files of lollipop
+binfiles arch=x86_64-darwin size=3
+ bin/x86_64-darwin/lollipop
+ bin/x86_64-darwin/lualollipop
+ bin/x86_64-darwin/xelollipop
+
+name lollipop.x86_64-linux
+category Package
+revision 33664
+shortdesc x86_64-linux files of lollipop
+binfiles arch=x86_64-linux size=3
+ bin/x86_64-linux/lollipop
+ bin/x86_64-linux/lualollipop
+ bin/x86_64-linux/xelollipop
+
+name lollipop.x86_64-solaris
+category Package
+revision 33664
+shortdesc x86_64-solaris files of lollipop
+binfiles arch=x86_64-solaris size=3
+ bin/x86_64-solaris/lollipop
+ bin/x86_64-solaris/lualollipop
+ bin/x86_64-solaris/xelollipop
+
name longnamefilelist
category Package
revision 27889
@@ -98137,7 +108365,7 @@ srcfiles size=2
runfiles size=2
texmf-dist/tex/latex/longnamefilelist/longnamefilelist.sty
catalogue-ctan /macros/latex/contrib/longnamefilelist
-catalogue-date 2012-10-01 08:11:57 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 0.2
@@ -98155,7 +108383,7 @@ docfiles size=8
runfiles size=13
texmf-dist/tex/latex/loops/loops.sty
catalogue-ctan /macros/latex/contrib/loops
-catalogue-date 2013-05-16 16:49:13 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.3
@@ -98181,10 +108409,32 @@ docfiles size=36
runfiles size=6
texmf-dist/tex/latex/lpic/lpic.sty
catalogue-ctan /macros/latex/contrib/lpic
-catalogue-date 2012-06-08 15:42:15 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 0.8
+name lplfitch
+category Package
+revision 31077
+shortdesc Fitch-style natural deduction proofs.
+longdesc The package provides macros for typesetting natural deduction
+longdesc proofs in "Fitch" style, with subproofs indented and offset by
+longdesc scope lines. The proofs from use of the package are in the
+longdesc format used in the textbook Language, Proof, and Logic by Dave
+longdesc Barker-Plummer, Jon Barwise, and John Etchemendy.
+docfiles size=57
+ texmf-dist/doc/latex/lplfitch/README details="Readme"
+ texmf-dist/doc/latex/lplfitch/lplfitch.pdf details="Package documentation"
+srcfiles size=8
+ texmf-dist/source/latex/lplfitch/lplfitch.dtx
+ texmf-dist/source/latex/lplfitch/lplfitch.ins
+runfiles size=2
+ texmf-dist/tex/latex/lplfitch/lplfitch.sty
+catalogue-ctan /macros/latex/contrib/lplfitch
+catalogue-date 2014-02-26 23:03:13 +0100
+catalogue-license lppl1.3
+catalogue-version 0.9
+
name lps
category Package
revision 21322
@@ -98203,7 +108453,7 @@ srcfiles size=7
runfiles size=2
texmf-dist/tex/latex/lps/lps.cls
catalogue-ctan /macros/latex/contrib/lps
-catalogue-date 2012-07-17 13:06:42 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 0.7
@@ -98278,7 +108528,7 @@ docfiles size=526
texmf-dist/doc/latex/lshort-chinese/src/zhspacing.sty
texmf-dist/doc/latex/lshort-chinese/src/zhulem.sty
catalogue-ctan /info/lshort/chinese
-catalogue-date 2012-07-24 16:30:52 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license gpl
catalogue-version 4.20
@@ -98315,7 +108565,7 @@ docfiles size=637
texmf-dist/doc/latex/lshort-czech/src/title.tex
texmf-dist/doc/latex/lshort-czech/src/typeset.tex
catalogue-ctan /info/lshort/czech
-catalogue-date 2012-07-16 17:38:59 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license gpl
catalogue-version 4.27
@@ -98332,28 +108582,28 @@ docfiles size=272
texmf-dist/doc/latex/lshort-dutch/lshort-nl-1.3.pdf details="The document itself" language="nl"
texmf-dist/doc/latex/lshort-dutch/lshort-nl-1.3.src.zip
catalogue-ctan /info/lshort/dutch
-catalogue-date 2006-08-27 16:41:02 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license gpl
catalogue-version 1.3
name lshort-english
category Package
-revision 22002
+revision 33687
shortdesc A (Not So) Short Introduction to LaTeX2e.
longdesc The document derives from a German introduction ('lkurz'),
longdesc which was translated and updated; it continues to be updated.
longdesc This translation has, in its turn, been translated into several
longdesc other languages; see the lshort catalogue entry for the current
longdesc list.
-docfiles size=559
+docfiles size=465
texmf-dist/doc/latex/lshort-english/CHANGES
texmf-dist/doc/latex/lshort-english/README details="Readme"
- texmf-dist/doc/latex/lshort-english/lshort-5.01.src.tar.gz
+ texmf-dist/doc/latex/lshort-english/lshort-5.03.src.tar.gz
texmf-dist/doc/latex/lshort-english/lshort.pdf details="The document itself"
catalogue-ctan /info/lshort/english
-catalogue-date 2012-07-16 17:38:59 +0200
+catalogue-date 2014-04-22 00:43:27 +0200
catalogue-license gpl2
-catalogue-version 5.01
+catalogue-version 5.02
name lshort-finnish
category Package
@@ -98474,7 +108724,7 @@ docfiles size=383
texmf-dist/doc/latex/lshort-korean/lshort-kr-src.tar.gz
texmf-dist/doc/latex/lshort-korean/lshort-kr.pdf details="The document itself" language="ko"
catalogue-ctan /info/lshort/korean
-catalogue-date 2006-08-27 16:41:02 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license fdl
catalogue-version 4.17
@@ -98512,17 +108762,17 @@ docfiles size=615
texmf-dist/doc/latex/lshort-mongol/src/title.tex
texmf-dist/doc/latex/lshort-mongol/src/typeset.tex
catalogue-ctan /info/lshort/mongolian/lshort-mongol
-catalogue-date 2012-08-25 10:03:02 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 4.26
name lshort-persian
category Package
-revision 15878
+revision 31296
shortdesc Persian (Farsi) introduction to LaTeX.
longdesc A Persian (Farsi) translation of Oetiker's (not so) short
longdesc introduction.
-docfiles size=376
+docfiles size=288
texmf-dist/doc/latex/lshort-persian/README details="Readme"
texmf-dist/doc/latex/lshort-persian/appendix.tex
texmf-dist/doc/latex/lshort-persian/biblio.tex
@@ -98545,9 +108795,9 @@ docfiles size=376
texmf-dist/doc/latex/lshort-persian/transpreface.tex
texmf-dist/doc/latex/lshort-persian/typeset.tex
catalogue-ctan /info/lshort/persian
-catalogue-date 2012-04-06 23:45:37 +0200
+catalogue-date 2013-07-28 14:28:30 +0200
catalogue-license pd
-catalogue-version 4.26:2009-08-04
+catalogue-version 5.01
name lshort-polish
category Package
@@ -98628,7 +108878,7 @@ docfiles size=500
texmf-dist/doc/latex/lshort-slovenian/src/title.tex
texmf-dist/doc/latex/lshort-slovenian/src/typeset.tex
catalogue-ctan /info/lshort/slovenian
-catalogue-date 2012-08-25 10:03:02 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license gpl
catalogue-version 4.20
@@ -98680,7 +108930,7 @@ docfiles size=135
texmf-dist/doc/latex/lshort-thai/lsh132.zip
texmf-dist/doc/latex/lshort-thai/readme details="Readme"
catalogue-ctan /info/lshort/thai
-catalogue-date 2006-08-27 16:41:02 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license pd
catalogue-version 1.32
@@ -98750,10 +109000,10 @@ category Package
revision 26196
shortdesc Add-on packages for listings: autogobble and line background.
longdesc The bundle contains a small collection of add-on packages for
-longdesc the listings package. Current packages are: [?] lstlinebgrd:
-longdesc colour the background of some or all lines of a listing; and
-longdesc [?] lstautogobble: set the standard "gobble" option to the
-longdesc indent of the first line of the code.
+longdesc the listings package. Current packages are: lstlinebgrd: colour
+longdesc the background of some or all lines of a listing; and
+longdesc lstautogobble: set the standard "gobble" option to the indent
+longdesc of the first line of the code.
docfiles size=99
texmf-dist/doc/latex/lstaddons/README details="Readme"
texmf-dist/doc/latex/lstaddons/lstautogobble.pdf details="lstautogobble package documentation"
@@ -98766,10 +109016,29 @@ runfiles size=2
texmf-dist/tex/latex/lstaddons/lstautogobble.sty
texmf-dist/tex/latex/lstaddons/lstlinebgrd.sty
catalogue-ctan /macros/latex/contrib/lstaddons
-catalogue-date 2012-07-18 17:16:51 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 0.1
+name lt3graph
+category Package
+revision 33623
+shortdesc Provide a graph datastructure for experimental LaTeX3.
+longdesc The package defines a 'graph' data structure, for use in
+longdesc documents that are using the experimental LaTeX 3 syntax.
+docfiles size=142
+ texmf-dist/doc/latex/lt3graph/README details="Readme"
+ texmf-dist/doc/latex/lt3graph/lt3graph.pdf details="Package documentation"
+ texmf-dist/doc/latex/lt3graph/lt3graph.tex
+runfiles size=18
+ texmf-dist/tex/latex/lt3graph/lt3graph-dry.sty
+ texmf-dist/tex/latex/lt3graph/lt3graph-packagedoc.cls
+ texmf-dist/tex/latex/lt3graph/lt3graph.sty
+catalogue-ctan /macros/latex/contrib/lt3graph
+catalogue-date 2014-04-22 01:06:17 +0200
+catalogue-license lppl1.3
+catalogue-version 0.1.3
+
name ltablex
category Package
revision 29903
@@ -98784,7 +109053,7 @@ docfiles size=60
runfiles size=2
texmf-dist/tex/latex/ltablex/ltablex.sty
catalogue-ctan /macros/latex/contrib/ltablex
-catalogue-date 2013-04-12 10:31:24 +0200
+catalogue-date 2013-06-19 18:12:49 +0200
catalogue-license lppl
catalogue-version 1.0
@@ -98827,31 +109096,30 @@ runfiles size=8
texmf-dist/tex/latex/ltxdockit/ltxdockit.def
texmf-dist/tex/latex/ltxdockit/ltxdockit.sty
catalogue-ctan /macros/latex/contrib/ltxdockit
-catalogue-date 2012-10-05 23:15:38 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.2d
name ltxfileinfo
category Package
-revision 29349
-shortdesc Print version info for latex class or style file.
-longdesc The bash script ltxfileinfo prints information about a LaTeX
-longdesc class, style and other files to standard output. The script is
-longdesc based on Uwe Luck's readprov, so it prints information only for
-longdesc files that contain a \ProvidesFile, \ProvidesClass or
-longdesc \ProvidesPackage statement. The script tries to correct errors
-longdesc in these \Provides... statements and it has options, useful for
-longdesc developers, to make errors in those statements visible.
+revision 33670
+shortdesc Print version information for a LaTeX file.
+longdesc ltxfileinfo displays version information for LaTeX files. If no
+longdesc path information is given, the file is searched using
+longdesc kpsewhich. As an extra, for developers, the script will (use
+longdesc the --star or --color options) check the valididity of the
+longdesc \Provides... statements in the files. The script uses code from
+longdesc Uwe Luck's readprov.sty.
depend ltxfileinfo.ARCH
-docfiles size=14
+docfiles size=11
texmf-dist/doc/support/ltxfileinfo/README details="README"
texmf-dist/doc/support/ltxfileinfo/ltxfileinfo.pdf details="Package documentation"
runfiles size=4
texmf-dist/scripts/ltxfileinfo/ltxfileinfo
catalogue-ctan /support/ltxfileinfo
-catalogue-date 2013-02-05 06:50:41 +0100
+catalogue-date 2014-04-27 10:32:28 +0200
catalogue-license gpl
-catalogue-version 2.00
+catalogue-version 2.01
name ltxfileinfo.alpha-linux
category Package
@@ -98937,13 +109205,6 @@ shortdesc i386-solaris files of ltxfileinfo
binfiles arch=i386-solaris size=1
bin/i386-solaris/ltxfileinfo
-name ltxfileinfo.mips-irix
-category Package
-revision 29949
-shortdesc mips-irix files of ltxfileinfo
-binfiles arch=mips-irix size=1
- bin/mips-irix/ltxfileinfo
-
name ltxfileinfo.mipsel-linux
category Package
revision 29946
@@ -98972,6 +109233,13 @@ shortdesc universal-darwin files of ltxfileinfo
binfiles arch=universal-darwin size=1
bin/universal-darwin/ltxfileinfo
+name ltxfileinfo.x86_64-cygwin
+category Package
+revision 33557
+shortdesc x86_64-cygwin files of ltxfileinfo
+binfiles arch=x86_64-cygwin size=1
+ bin/x86_64-cygwin/ltxfileinfo
+
name ltxfileinfo.x86_64-darwin
category Package
revision 29005
@@ -98993,6 +109261,174 @@ shortdesc x86_64-solaris files of ltxfileinfo
binfiles arch=x86_64-solaris size=1
bin/x86_64-solaris/ltxfileinfo
+name ltximg
+category Package
+revision 32346
+shortdesc Split LaTeX files to sanitise a conversion process.
+longdesc The package provides a Perl script that extracts all TikZ and
+longdesc PStricks environments for separate processing to produce images
+longdesc (in eps, pdf, png or jpg format) for use by a converter or the
+longdesc preview bundle.
+depend ltximg.ARCH
+docfiles size=18
+ texmf-dist/doc/support/ltximg/README details="Readme"
+ texmf-dist/doc/support/ltximg/ltximg-doc.pdf details="Package documentation"
+ texmf-dist/doc/support/ltximg/ltximg-doc.tex
+ texmf-dist/doc/support/ltximg/test.tex
+runfiles size=5
+ texmf-dist/scripts/ltximg/ltximg.pl
+catalogue-ctan /support/ltximg
+catalogue-date 2014-02-26 23:03:13 +0100
+catalogue-license gpl2
+catalogue-version 1.0
+
+name ltximg.alpha-linux
+category Package
+revision 32346
+shortdesc alpha-linux files of ltximg
+binfiles arch=alpha-linux size=1
+ bin/alpha-linux/ltximg
+
+name ltximg.amd64-freebsd
+category Package
+revision 32346
+shortdesc amd64-freebsd files of ltximg
+binfiles arch=amd64-freebsd size=1
+ bin/amd64-freebsd/ltximg
+
+name ltximg.amd64-kfreebsd
+category Package
+revision 32346
+shortdesc amd64-kfreebsd files of ltximg
+binfiles arch=amd64-kfreebsd size=1
+ bin/amd64-kfreebsd/ltximg
+
+name ltximg.amd64-netbsd
+category Package
+revision 32346
+shortdesc amd64-netbsd files of ltximg
+binfiles arch=amd64-netbsd size=1
+ bin/amd64-netbsd/ltximg
+
+name ltximg.armel-linux
+category Package
+revision 32346
+shortdesc armel-linux files of ltximg
+binfiles arch=armel-linux size=1
+ bin/armel-linux/ltximg
+
+name ltximg.armhf-linux
+category Package
+revision 32346
+shortdesc armhf-linux files of ltximg
+binfiles arch=armhf-linux size=1
+ bin/armhf-linux/ltximg
+
+name ltximg.i386-cygwin
+category Package
+revision 32346
+shortdesc i386-cygwin files of ltximg
+binfiles arch=i386-cygwin size=1
+ bin/i386-cygwin/ltximg
+
+name ltximg.i386-freebsd
+category Package
+revision 32346
+shortdesc i386-freebsd files of ltximg
+binfiles arch=i386-freebsd size=1
+ bin/i386-freebsd/ltximg
+
+name ltximg.i386-kfreebsd
+category Package
+revision 32346
+shortdesc i386-kfreebsd files of ltximg
+binfiles arch=i386-kfreebsd size=1
+ bin/i386-kfreebsd/ltximg
+
+name ltximg.i386-linux
+category Package
+revision 32346
+shortdesc i386-linux files of ltximg
+binfiles arch=i386-linux size=1
+ bin/i386-linux/ltximg
+
+name ltximg.i386-netbsd
+category Package
+revision 32346
+shortdesc i386-netbsd files of ltximg
+binfiles arch=i386-netbsd size=1
+ bin/i386-netbsd/ltximg
+
+name ltximg.i386-solaris
+category Package
+revision 32346
+shortdesc i386-solaris files of ltximg
+binfiles arch=i386-solaris size=1
+ bin/i386-solaris/ltximg
+
+name ltximg.mipsel-linux
+category Package
+revision 32346
+shortdesc mipsel-linux files of ltximg
+binfiles arch=mipsel-linux size=1
+ bin/mipsel-linux/ltximg
+
+name ltximg.powerpc-linux
+category Package
+revision 32346
+shortdesc powerpc-linux files of ltximg
+binfiles arch=powerpc-linux size=1
+ bin/powerpc-linux/ltximg
+
+name ltximg.sparc-solaris
+category Package
+revision 32346
+shortdesc sparc-solaris files of ltximg
+binfiles arch=sparc-solaris size=1
+ bin/sparc-solaris/ltximg
+
+name ltximg.universal-darwin
+category Package
+revision 32346
+shortdesc universal-darwin files of ltximg
+binfiles arch=universal-darwin size=1
+ bin/universal-darwin/ltximg
+
+name ltximg.win32
+category Package
+revision 32346
+shortdesc win32 files of ltximg
+binfiles arch=win32 size=1
+ bin/win32/ltximg.exe
+
+name ltximg.x86_64-cygwin
+category Package
+revision 33557
+shortdesc x86_64-cygwin files of ltximg
+binfiles arch=x86_64-cygwin size=1
+ bin/x86_64-cygwin/ltximg
+
+name ltximg.x86_64-darwin
+category Package
+revision 32346
+shortdesc x86_64-darwin files of ltximg
+binfiles arch=x86_64-darwin size=1
+ bin/x86_64-darwin/ltximg
+
+name ltximg.x86_64-linux
+category Package
+revision 32346
+shortdesc x86_64-linux files of ltximg
+binfiles arch=x86_64-linux size=1
+ bin/x86_64-linux/ltximg
+
+name ltximg.x86_64-solaris
+category Package
+revision 32346
+shortdesc x86_64-solaris files of ltximg
+binfiles arch=x86_64-solaris size=1
+ bin/x86_64-solaris/ltximg
+
name ltxindex
category Package
revision 15878
@@ -99040,7 +109476,7 @@ docfiles size=351
runfiles size=34
texmf-dist/tex/latex/ltxkeys/ltxkeys.sty
catalogue-ctan /macros/latex/contrib/ltxkeys
-catalogue-date 2012-11-22 12:57:51 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 0.0.3c
@@ -99107,7 +109543,7 @@ runfiles size=73
texmf-dist/tex/latex/ltxtools/ltxtools-trace.sty
texmf-dist/tex/latex/ltxtools/ltxtools.sty
catalogue-ctan /macros/latex/contrib/ltxtools
-catalogue-date 2012-03-12 21:18:36 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 0.0.1a
@@ -99130,7 +109566,7 @@ docfiles size=7
runfiles size=1
texmf-dist/scripts/lua-alt-getopt/alt_getopt.lua
catalogue-ctan /support/lua/lua-alt-getopt
-catalogue-date 2012-07-10 13:36:48 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license other-free
catalogue-version 0.7.0
@@ -99154,7 +109590,7 @@ runfiles size=3
texmf-dist/tex/lualatex/lua-check-hyphen/lua-check-hyphen.lua
texmf-dist/tex/lualatex/lua-check-hyphen/lua-check-hyphen.sty
catalogue-ctan /macros/luatex/latex/lua-check-hyphen
-catalogue-date 2012-08-13 12:34:19 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license other-free
catalogue-version 0.1
@@ -99180,7 +109616,7 @@ runfiles size=3
texmf-dist/tex/luatex/lua-visual-debug/lua-visual-debug.lua
texmf-dist/tex/luatex/lua-visual-debug/lua-visual-debug.sty
catalogue-ctan /macros/luatex/generic/lua-visual-debug
-catalogue-date 2012-04-08 13:49:02 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license other-free
catalogue-version 0.4
@@ -99415,7 +109851,7 @@ runfiles size=7
texmf-dist/scripts/lua2dox/lua2dox.lua
texmf-dist/scripts/lua2dox/lua2dox_filter
catalogue-ctan /web/lua2dox
-catalogue-date 2013-02-07 14:27:08 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 0.2
@@ -99503,13 +109939,6 @@ shortdesc i386-solaris files of lua2dox
binfiles arch=i386-solaris size=1
bin/i386-solaris/lua2dox_filter
-name lua2dox.mips-irix
-category Package
-revision 29949
-shortdesc mips-irix files of lua2dox
-binfiles arch=mips-irix size=1
- bin/mips-irix/lua2dox_filter
-
name lua2dox.mipsel-linux
category Package
revision 29946
@@ -99545,6 +109974,13 @@ shortdesc win32 files of lua2dox
binfiles arch=win32 size=1
bin/win32/lua2dox_filter.bat
+name lua2dox.x86_64-cygwin
+category Package
+revision 33557
+shortdesc x86_64-cygwin files of lua2dox
+binfiles arch=x86_64-cygwin size=1
+ bin/x86_64-cygwin/lua2dox_filter
+
name lua2dox.x86_64-darwin
category Package
revision 29053
@@ -99568,7 +110004,7 @@ binfiles arch=x86_64-solaris size=1
name luabibentry
category Package
-revision 23435
+revision 31783
shortdesc Repeat BibTeX entries in a LuaLaTeX document body.
longdesc The package reimplements bibentry, for use in LuaLaTeX.
docfiles size=41
@@ -99582,21 +110018,28 @@ runfiles size=2
texmf-dist/tex/lualatex/luabibentry/luabibentry.lua
texmf-dist/tex/lualatex/luabibentry/luabibentry.sty
catalogue-ctan /macros/luatex/latex/luabibentry
-catalogue-date 2012-07-10 13:36:48 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
-catalogue-version 0.1
+catalogue-version 0.1a
name luabidi
category Package
revision 30790
+shortdesc Bidirectional typesetting with LuaLaTeX.
+longdesc The package attempts to emulate the XeTeX bidi package, in teh
+longdesc context of LuaTeX.
docfiles size=2
- texmf-dist/doc/lualatex/luabidi/README
+ texmf-dist/doc/lualatex/luabidi/README details="Readme"
texmf-dist/doc/lualatex/luabidi/test.tex
runfiles size=4
texmf-dist/tex/lualatex/luabidi/arabmaths.tex
texmf-dist/tex/lualatex/luabidi/autofootnoterule.tex
texmf-dist/tex/lualatex/luabidi/luabidi.sty
texmf-dist/tex/lualatex/luabidi/textwidthfootnoterule.tex
+catalogue-ctan /macros/luatex/latex/luabidi
+catalogue-date 2014-02-26 23:03:13 +0100
+catalogue-license lppl1.3
+catalogue-version 0.2
name luacode
category Package
@@ -99617,7 +110060,7 @@ srcfiles size=7
runfiles size=2
texmf-dist/tex/lualatex/luacode/luacode.sty
catalogue-ctan /macros/luatex/latex/luacode
-catalogue-date 2012-07-10 13:36:48 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.2a
@@ -99640,7 +110083,7 @@ runfiles size=6
texmf-dist/scripts/luaindex/luaindex.lua
texmf-dist/tex/lualatex/luaindex/luaindex.sty
catalogue-ctan /macros/luatex/latex/luaindex
-catalogue-date 2012-07-10 13:36:48 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 0.1b
@@ -99670,13 +110113,13 @@ runfiles size=8
texmf-dist/tex/lualatex/luainputenc/lutf8.def
texmf-dist/tex/lualatex/luainputenc/lutf8x.def
catalogue-ctan /macros/luatex/latex/luainputenc
-catalogue-date 2012-07-10 13:36:48 +0200
+catalogue-date 2014-04-30 15:31:14 +0200
catalogue-license pd
catalogue-version 0.973
name luaintro
category Package
-revision 29349
+revision 30909
shortdesc Examples from the book "Einfuhrung in LuaTeX und LuaLaTeX".
longdesc The bundle provides source of all the examples published in the
longdesc German book "Einfuhrung in LuaTeX und LuaLaTeX", published by
@@ -99892,9 +110335,9 @@ docfiles size=210
texmf-dist/doc/luatex/luaintro/screxabook.cls
texmf-dist/doc/luatex/luaintro/screxareport.cls
catalogue-ctan /info/examples/luaintro
-catalogue-date 2013-02-13 13:36:17 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
-catalogue-version 0.01
+catalogue-version 0.02
name lualatex-doc
category Package
@@ -99913,7 +110356,7 @@ srcfiles size=12
texmf-dist/source/lualatex/lualatex-doc/lltxdoc.cls
texmf-dist/source/lualatex/lualatex-doc/lualatex-doc.tex
catalogue-ctan /info/luatex/lualatex-doc
-catalogue-date 2013-05-14 17:42:28 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license fdl
name lualatex-doc-de
@@ -99929,13 +110372,13 @@ docfiles size=42
texmf-dist/doc/latex/lualatex-doc-de/lualatex-doc-DE.pdf details="The translated document itself"
texmf-dist/doc/latex/lualatex-doc-de/lualatex-doc-DE.tex
catalogue-ctan /info/luatex/lualatex-doc-de
-catalogue-date 2013-05-27 13:53:30 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license fdl
catalogue-version 1.0
name lualatex-math
category Package
-revision 29346
+revision 31389
shortdesc Fixes for mathematics-related LuaLaTeX issues.
longdesc The package patches a few commands of the LaTeX2e kernel and
longdesc the amsmath and mathtools packages to be more compatible with
@@ -99945,8 +110388,8 @@ longdesc functionality. The fixes are mostly moved from the unicode-math
longdesc package to this package since they are not directly related to
longdesc Unicode mathematics typesetting.
docfiles size=87
- texmf-dist/doc/lualatex/lualatex-math/lualatex-math-de.pdf details="Package documentation"
- texmf-dist/doc/lualatex/lualatex-math/lualatex-math.pdf details="Package documentation"
+ texmf-dist/doc/lualatex/lualatex-math/lualatex-math-de.pdf details="Package documentation" language="de"
+ texmf-dist/doc/lualatex/lualatex-math/lualatex-math.pdf details="Package documentation" language="en"
srcfiles size=16
texmf-dist/source/lualatex/lualatex-math/lualatex-math.dtx
texmf-dist/source/lualatex/lualatex-math/lualatex-math.ins
@@ -99954,19 +110397,19 @@ runfiles size=4
texmf-dist/tex/lualatex/lualatex-math/lualatex-math.lua
texmf-dist/tex/lualatex/lualatex-math/lualatex-math.sty
catalogue-ctan /macros/luatex/latex/lualatex-math
-catalogue-date 2013-03-11 10:36:18 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
-catalogue-version 1.2
+catalogue-version 1.3
name lualibs
category Package
-revision 30700
+revision 33861
shortdesc Additional Lua functions for LuaTeX macro programmers.
longdesc Lualibs is a collection of Lua modules useful for general
longdesc programming. The bundle is based on lua modules shipped with
longdesc ConTeXt, and are made available in this bundle for use
longdesc independent of ConTeXt.
-docfiles size=29
+docfiles size=28
texmf-dist/doc/luatex/lualibs/LICENSE
texmf-dist/doc/luatex/lualibs/NEWS
texmf-dist/doc/luatex/lualibs/README details="Readme"
@@ -99976,7 +110419,7 @@ srcfiles size=11
texmf-dist/source/luatex/lualibs/lualibs.dtx
texmf-dist/source/luatex/lualibs/test-lualibs.lua
texmf-dist/source/luatex/lualibs/whatsnew.lua
-runfiles size=145
+runfiles size=151
texmf-dist/tex/luatex/lualibs/lualibs-basic-merged.lua
texmf-dist/tex/luatex/lualibs/lualibs-basic.lua
texmf-dist/tex/luatex/lualibs/lualibs-boolean.lua
@@ -99986,6 +110429,7 @@ runfiles size=145
texmf-dist/tex/luatex/lualibs/lualibs-extended.lua
texmf-dist/tex/luatex/lualibs/lualibs-file.lua
texmf-dist/tex/luatex/lualibs/lualibs-function.lua
+ texmf-dist/tex/luatex/lualibs/lualibs-gzip.lua
texmf-dist/tex/luatex/lualibs/lualibs-io.lua
texmf-dist/tex/luatex/lualibs/lualibs-lpeg.lua
texmf-dist/tex/luatex/lualibs/lualibs-lua.lua
@@ -100002,7 +110446,6 @@ runfiles size=145
texmf-dist/tex/luatex/lualibs/lualibs-url.lua
texmf-dist/tex/luatex/lualibs/lualibs-util-deb.lua
texmf-dist/tex/luatex/lualibs/lualibs-util-dim.lua
- texmf-dist/tex/luatex/lualibs/lualibs-util-env.lua
texmf-dist/tex/luatex/lualibs/lualibs-util-jsn.lua
texmf-dist/tex/luatex/lualibs/lualibs-util-lua.lua
texmf-dist/tex/luatex/lualibs/lualibs-util-prs.lua
@@ -100013,57 +110456,58 @@ runfiles size=145
texmf-dist/tex/luatex/lualibs/lualibs-util-tpl.lua
texmf-dist/tex/luatex/lualibs/lualibs.lua
catalogue-ctan /macros/luatex/generic/lualibs
-catalogue-date 2013-05-24 12:22:55 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license gpl2
-catalogue-version 2.0b
+catalogue-version 2.1a
name luamplib
category Package
-revision 30423
+revision 34021
shortdesc Use LuaTeX's built-in MetaPost interpreter.
longdesc The package enables the user to directly incorporate MetaPost
longdesc diagrams into a document, using LuaTeX's built-in MetaPost
longdesc library. The facility is only available in PDF mode.
-docfiles size=34
+docfiles size=38
texmf-dist/doc/luatex/luamplib/NEWS
texmf-dist/doc/luatex/luamplib/README details="Readme"
texmf-dist/doc/luatex/luamplib/luamplib.pdf details="Package documentation"
texmf-dist/doc/luatex/luamplib/test-luamplib-latex.tex
texmf-dist/doc/luatex/luamplib/test-luamplib-plain.tex
-srcfiles size=14
+srcfiles size=20
texmf-dist/source/luatex/luamplib/Makefile
texmf-dist/source/luatex/luamplib/luamplib.dtx
-runfiles size=6
+runfiles size=11
texmf-dist/tex/luatex/luamplib/luamplib.lua
texmf-dist/tex/luatex/luamplib/luamplib.sty
catalogue-ctan /macros/luatex/generic/luamplib
-catalogue-date 2013-05-06 22:23:37 +0200
-catalogue-license pd
-catalogue-version 1.09
+catalogue-date 2014-03-28 14:02:48 +0100
+catalogue-license gpl2
+catalogue-version 2.6.1
name luaotfload
category Package
-revision 30701
-shortdesc OpenType layout system for Plain TeX and LaTeX.
+revision 34131
+shortdesc OpenType 'loader' for Plain TeX and LaTeX.
longdesc The package adopts the TrueType/OpenType Font loader code
longdesc provided in ConTeXt, and adapts it to use in Plain TeX and
longdesc LaTeX.
depend luaotfload.ARCH
-docfiles size=70
+docfiles size=78
texmf-dist/doc/luatex/luaotfload/NEWS
texmf-dist/doc/luatex/luaotfload/README details="Readme"
texmf-dist/doc/luatex/luaotfload/filegraph.pdf
texmf-dist/doc/luatex/luaotfload/luaotfload.pdf details="Package documentation"
texmf-dist/doc/man/man1/luaotfload-tool.1
texmf-dist/doc/man/man1/luaotfload-tool.man1.pdf
-srcfiles size=25
+srcfiles size=27
texmf-dist/source/luatex/luaotfload/Makefile
texmf-dist/source/luatex/luaotfload/luaotfload.dtx
-runfiles size=470
+runfiles size=605
texmf-dist/scripts/luaotfload/luaotfload-legacy-tool.lua
texmf-dist/scripts/luaotfload/luaotfload-tool.lua
texmf-dist/scripts/luaotfload/mkcharacters
texmf-dist/scripts/luaotfload/mkglyphlist
+ texmf-dist/scripts/luaotfload/mkstatus
texmf-dist/tex/luatex/luaotfload/luaotfload-auxiliary.lua
texmf-dist/tex/luatex/luaotfload/luaotfload-basics-gen.lua
texmf-dist/tex/luatex/luaotfload/luaotfload-basics-nod.lua
@@ -100071,8 +110515,9 @@ runfiles size=470
texmf-dist/tex/luatex/luaotfload/luaotfload-characters.lua
texmf-dist/tex/luatex/luaotfload/luaotfload-colors.lua
texmf-dist/tex/luatex/luaotfload/luaotfload-database.lua
- texmf-dist/tex/luatex/luaotfload/luaotfload-extralibs.lua
+ texmf-dist/tex/luatex/luaotfload/luaotfload-diagnostics.lua
texmf-dist/tex/luatex/luaotfload/luaotfload-features.lua
+ texmf-dist/tex/luatex/luaotfload/luaotfload-fontloader.lua
texmf-dist/tex/luatex/luaotfload/luaotfload-fonts-cbk.lua
texmf-dist/tex/luatex/luaotfload/luaotfload-fonts-def.lua
texmf-dist/tex/luatex/luaotfload/luaotfload-fonts-enc.lua
@@ -100085,17 +110530,15 @@ runfiles size=470
texmf-dist/tex/luatex/luaotfload/luaotfload-legacy-merged.lua
texmf-dist/tex/luatex/luaotfload/luaotfload-legacy.lua
texmf-dist/tex/luatex/luaotfload/luaotfload-letterspace.lua
- texmf-dist/tex/luatex/luaotfload/luaotfload-lib-dir.lua
texmf-dist/tex/luatex/luaotfload/luaotfload-loaders.lua
- texmf-dist/tex/luatex/luaotfload/luaotfload-merged.lua
texmf-dist/tex/luatex/luaotfload/luaotfload-override.lua
- texmf-dist/tex/luatex/luaotfload/luaotfload-typo-krn.lua
+ texmf-dist/tex/luatex/luaotfload/luaotfload-status.lua
texmf-dist/tex/luatex/luaotfload/luaotfload.lua
texmf-dist/tex/luatex/luaotfload/luaotfload.sty
catalogue-ctan /macros/luatex/generic/luaotfload
-catalogue-date 2013-05-24 12:22:55 +0200
+catalogue-date 2014-05-18 22:49:49 +0200
catalogue-license gpl2
-catalogue-version 2.2d
+catalogue-version 2.4-4
name luaotfload.alpha-linux
category Package
@@ -100193,14 +110636,6 @@ binfiles arch=i386-solaris size=2
bin/i386-solaris/luaotfload-tool
bin/i386-solaris/mkluatexfontdb
-name luaotfload.mips-irix
-category Package
-revision 30313
-shortdesc mips-irix files of luaotfload
-binfiles arch=mips-irix size=2
- bin/mips-irix/luaotfload-tool
- bin/mips-irix/mkluatexfontdb
-
name luaotfload.mipsel-linux
category Package
revision 30313
@@ -100241,6 +110676,14 @@ binfiles arch=win32 size=2
bin/win32/luaotfload-tool.exe
bin/win32/mkluatexfontdb.exe
+name luaotfload.x86_64-cygwin
+category Package
+revision 33557
+shortdesc x86_64-cygwin files of luaotfload
+binfiles arch=x86_64-cygwin size=2
+ bin/x86_64-cygwin/luaotfload-tool
+ bin/x86_64-cygwin/mkluatexfontdb
+
name luaotfload.x86_64-darwin
category Package
revision 30313
@@ -100281,13 +110724,13 @@ runfiles size=10
texmf-dist/scripts/luasseq/luasseq.lua
texmf-dist/tex/lualatex/luasseq/luasseq.sty
catalogue-ctan /macros/luatex/latex/luasseq
-catalogue-date 2012-07-10 14:48:34 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 2.1
name luatex
category TLCore
-revision 30581
+revision 33828
shortdesc The LuaTeX engine.
longdesc LuaTeX is an extended version of pdfTeX using Lua as an
longdesc embedded scripting language. The LuaTeX project's main
@@ -100301,7 +110744,8 @@ longdesc absolute stability may not in practice be assumed.
depend luatex.ARCH
execute AddFormat name=luatex engine=luatex patterns=language.def,language.dat.lua options="luatex.ini"
execute AddFormat name=dviluatex engine=luatex patterns=language.def,language.dat.lua options="dviluatex.ini"
-docfiles size=471
+execute AddFormat name=luajittex engine=luajittex patterns=language.def,language.dat.lua options="luatex.ini"
+docfiles size=473
texmf-dist/doc/luatex/base/fdata.lua
texmf-dist/doc/luatex/base/fdata_epdf.lua
texmf-dist/doc/luatex/base/fdata_img.lua
@@ -100322,15 +110766,15 @@ runfiles size=37
texmf-dist/tex/generic/config/luatexiniconfig.tex
texmf-dist/web2c/texmfcnf.lua
catalogue-ctan /systems/luatex/base
-catalogue-date 2011-11-09 15:33:34 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license gpl2
catalogue-version 0.70.1
name luatex.alpha-linux
category TLCore
-revision 30799
+revision 34190
shortdesc alpha-linux files of luatex
-binfiles arch=alpha-linux size=2477
+binfiles arch=alpha-linux size=2453
bin/alpha-linux/dviluatex
bin/alpha-linux/luatex
bin/alpha-linux/texlua
@@ -100338,149 +110782,178 @@ binfiles arch=alpha-linux size=2477
name luatex.amd64-freebsd
category TLCore
-revision 30776
+revision 34091
shortdesc amd64-freebsd files of luatex
-binfiles arch=amd64-freebsd size=2133
+binfiles arch=amd64-freebsd size=4242
bin/amd64-freebsd/dviluatex
+ bin/amd64-freebsd/luajittex
bin/amd64-freebsd/luatex
bin/amd64-freebsd/texlua
bin/amd64-freebsd/texluac
+ bin/amd64-freebsd/texluajit
+ bin/amd64-freebsd/texluajitc
name luatex.amd64-kfreebsd
category TLCore
-revision 30810
+revision 34100
shortdesc amd64-kfreebsd files of luatex
-binfiles arch=amd64-kfreebsd size=2183
+binfiles arch=amd64-kfreebsd size=4360
bin/amd64-kfreebsd/dviluatex
+ bin/amd64-kfreebsd/luajittex
bin/amd64-kfreebsd/luatex
bin/amd64-kfreebsd/texlua
bin/amd64-kfreebsd/texluac
+ bin/amd64-kfreebsd/texluajit
+ bin/amd64-kfreebsd/texluajitc
name luatex.amd64-netbsd
category TLCore
-revision 30767
+revision 34102
shortdesc amd64-netbsd files of luatex
-binfiles arch=amd64-netbsd size=2127
+binfiles arch=amd64-netbsd size=4235
bin/amd64-netbsd/dviluatex
+ bin/amd64-netbsd/luajittex
bin/amd64-netbsd/luatex
bin/amd64-netbsd/texlua
bin/amd64-netbsd/texluac
+ bin/amd64-netbsd/texluajit
+ bin/amd64-netbsd/texluajitc
name luatex.armel-linux
category TLCore
-revision 30774
+revision 34096
shortdesc armel-linux files of luatex
-binfiles arch=armel-linux size=2021
+binfiles arch=armel-linux size=4027
bin/armel-linux/dviluatex
+ bin/armel-linux/luajittex
bin/armel-linux/luatex
bin/armel-linux/texlua
bin/armel-linux/texluac
+ bin/armel-linux/texluajit
+ bin/armel-linux/texluajitc
name luatex.armhf-linux
category TLCore
-revision 30768
+revision 34125
shortdesc armhf-linux files of luatex
-binfiles arch=armhf-linux size=1867
+binfiles arch=armhf-linux size=3705
bin/armhf-linux/dviluatex
+ bin/armhf-linux/luajittex
bin/armhf-linux/luatex
bin/armhf-linux/texlua
bin/armhf-linux/texluac
+ bin/armhf-linux/texluajit
+ bin/armhf-linux/texluajitc
name luatex.i386-cygwin
category TLCore
-revision 30526
+revision 34161
shortdesc i386-cygwin files of luatex
-binfiles arch=i386-cygwin size=2051
+binfiles arch=i386-cygwin size=4304
bin/i386-cygwin/dviluatex
+ bin/i386-cygwin/luajittex.exe
bin/i386-cygwin/luatex.exe
bin/i386-cygwin/texlua
bin/i386-cygwin/texluac
+ bin/i386-cygwin/texluajit
+ bin/i386-cygwin/texluajitc
name luatex.i386-freebsd
category TLCore
-revision 30776
+revision 34091
shortdesc i386-freebsd files of luatex
-binfiles arch=i386-freebsd size=2005
+binfiles arch=i386-freebsd size=3995
bin/i386-freebsd/dviluatex
+ bin/i386-freebsd/luajittex
bin/i386-freebsd/luatex
bin/i386-freebsd/texlua
bin/i386-freebsd/texluac
+ bin/i386-freebsd/texluajit
+ bin/i386-freebsd/texluajitc
name luatex.i386-kfreebsd
category TLCore
-revision 30810
+revision 34100
shortdesc i386-kfreebsd files of luatex
-binfiles arch=i386-kfreebsd size=2112
+binfiles arch=i386-kfreebsd size=4259
bin/i386-kfreebsd/dviluatex
+ bin/i386-kfreebsd/luajittex
bin/i386-kfreebsd/luatex
bin/i386-kfreebsd/texlua
bin/i386-kfreebsd/texluac
+ bin/i386-kfreebsd/texluajit
+ bin/i386-kfreebsd/texluajitc
name luatex.i386-linux
category TLCore
-revision 30739
+revision 34086
shortdesc i386-linux files of luatex
-binfiles arch=i386-linux size=6675
+binfiles arch=i386-linux size=4415
bin/i386-linux/dviluatex
+ bin/i386-linux/luajittex
bin/i386-linux/luatex
bin/i386-linux/texlua
bin/i386-linux/texluac
+ bin/i386-linux/texluajit
+ bin/i386-linux/texluajitc
name luatex.i386-netbsd
category TLCore
-revision 30767
+revision 34102
shortdesc i386-netbsd files of luatex
-binfiles arch=i386-netbsd size=1958
+binfiles arch=i386-netbsd size=3910
bin/i386-netbsd/dviluatex
+ bin/i386-netbsd/luajittex
bin/i386-netbsd/luatex
bin/i386-netbsd/texlua
bin/i386-netbsd/texluac
+ bin/i386-netbsd/texluajit
+ bin/i386-netbsd/texluajitc
name luatex.i386-solaris
category TLCore
-revision 30809
+revision 34203
shortdesc i386-solaris files of luatex
-binfiles arch=i386-solaris size=2665
+binfiles arch=i386-solaris size=5519
bin/i386-solaris/dviluatex
+ bin/i386-solaris/luajittex
bin/i386-solaris/luatex
bin/i386-solaris/texlua
bin/i386-solaris/texluac
-
-name luatex.mips-irix
-category TLCore
-revision 30131
-shortdesc mips-irix files of luatex
-binfiles arch=mips-irix size=3264
- bin/mips-irix/dviluatex
- bin/mips-irix/luatex
- bin/mips-irix/texlua
- bin/mips-irix/texluac
+ bin/i386-solaris/texluajit
+ bin/i386-solaris/texluajitc
name luatex.mipsel-linux
category TLCore
-revision 30802
+revision 34099
shortdesc mipsel-linux files of luatex
-binfiles arch=mipsel-linux size=2435
+binfiles arch=mipsel-linux size=4358
bin/mipsel-linux/dviluatex
+ bin/mipsel-linux/luajittex
bin/mipsel-linux/luatex
bin/mipsel-linux/texlua
bin/mipsel-linux/texluac
+ bin/mipsel-linux/texluajit
+ bin/mipsel-linux/texluajitc
name luatex.powerpc-linux
category TLCore
-revision 30770
+revision 34101
shortdesc powerpc-linux files of luatex
-binfiles arch=powerpc-linux size=2192
+binfiles arch=powerpc-linux size=4154
bin/powerpc-linux/dviluatex
+ bin/powerpc-linux/luajittex
bin/powerpc-linux/luatex
bin/powerpc-linux/texlua
bin/powerpc-linux/texluac
+ bin/powerpc-linux/texluajit
+ bin/powerpc-linux/texluajitc
name luatex.sparc-solaris
category TLCore
-revision 30772
+revision 34030
shortdesc sparc-solaris files of luatex
-binfiles arch=sparc-solaris size=2086
+binfiles arch=sparc-solaris size=2149
bin/sparc-solaris/dviluatex
bin/sparc-solaris/luatex
bin/sparc-solaris/texlua
@@ -100488,51 +110961,75 @@ binfiles arch=sparc-solaris size=2086
name luatex.universal-darwin
category TLCore
-revision 30764
+revision 34201
shortdesc universal-darwin files of luatex
-binfiles arch=universal-darwin size=4042
+binfiles arch=universal-darwin size=6038
bin/universal-darwin/dviluatex
+ bin/universal-darwin/luajittex
bin/universal-darwin/luatex
bin/universal-darwin/texlua
bin/universal-darwin/texluac
+ bin/universal-darwin/texluajit
+ bin/universal-darwin/texluajitc
name luatex.win32
category TLCore
-revision 30631
+revision 34142
shortdesc win32 files of luatex
-binfiles arch=win32 size=1848
+binfiles arch=win32 size=3802
bin/win32/dviluatex.exe
bin/win32/lua52.dll
+ bin/win32/luajit51.dll
+ bin/win32/luajittex.dll
+ bin/win32/luajittex.exe
bin/win32/luatex.dll
bin/win32/luatex.exe
bin/win32/texlua.exe
bin/win32/texluac.exe
+ bin/win32/texluajit.exe
+ bin/win32/texluajitc.exe
+
+name luatex.x86_64-cygwin
+category TLCore
+revision 34161
+shortdesc x86_64-cygwin files of luatex
+binfiles arch=x86_64-cygwin size=2102
+ bin/x86_64-cygwin/dviluatex
+ bin/x86_64-cygwin/luatex.exe
+ bin/x86_64-cygwin/texlua
+ bin/x86_64-cygwin/texluac
name luatex.x86_64-darwin
category TLCore
-revision 30764
+revision 34201
shortdesc x86_64-darwin files of luatex
-binfiles arch=x86_64-darwin size=2266
+binfiles arch=x86_64-darwin size=4512
bin/x86_64-darwin/dviluatex
+ bin/x86_64-darwin/luajittex
bin/x86_64-darwin/luatex
bin/x86_64-darwin/texlua
bin/x86_64-darwin/texluac
+ bin/x86_64-darwin/texluajit
+ bin/x86_64-darwin/texluajitc
name luatex.x86_64-linux
category TLCore
-revision 30751
+revision 34007
shortdesc x86_64-linux files of luatex
-binfiles arch=x86_64-linux size=2141
+binfiles arch=x86_64-linux size=4339
bin/x86_64-linux/dviluatex
+ bin/x86_64-linux/luajittex
bin/x86_64-linux/luatex
bin/x86_64-linux/texlua
bin/x86_64-linux/texluac
+ bin/x86_64-linux/texluajit
+ bin/x86_64-linux/texluajitc
name luatex.x86_64-solaris
category TLCore
-revision 30809
+revision 34203
shortdesc x86_64-solaris files of luatex
-binfiles arch=x86_64-solaris size=3094
+binfiles arch=x86_64-solaris size=3193
bin/x86_64-solaris/dviluatex
bin/x86_64-solaris/luatex
bin/x86_64-solaris/texlua
@@ -100544,14 +111041,13 @@ revision 30562
shortdesc Basic resource management for LuaTeX code.
longdesc The bundle provides basic facilities for LuaTeX macro
longdesc programmers, mostly resource allocation and convenience
-longdesc packages. Provided are: - luatexbase-attr: attribute
-longdesc allocation; - luatexbase-cctb: catcode table allocation; -
-longdesc luatexbase-compat: compatibility helpers; - luatexbase-loader:
-longdesc Lua module loading; - luatexbase-modutils: Lua module
-longdesc declaration; - luatexbase-mcb: callbacks extension; and -
-longdesc luatexbase-regs: allocation of registers and the like. In
-longdesc addition, the (unadorned) luatexbase package loads all the
-longdesc above in one fell swoop.
+longdesc packages. Provided are: luatexbase-attr: attribute allocation;
+longdesc luatexbase-cctb: catcode table allocation; luatexbase-compat:
+longdesc compatibility helpers; luatexbase-loader: Lua module loading;
+longdesc luatexbase-modutils: Lua module declaration; luatexbase-mcb:
+longdesc callbacks extension; and luatexbase-regs: allocation of
+longdesc registers and the like. In addition, the (unadorned) luatexbase
+longdesc package loads all the above in one fell swoop.
docfiles size=963
texmf-dist/doc/luatex/luatexbase/NEWS
texmf-dist/doc/luatex/luatexbase/README details="Readme"
@@ -100610,40 +111106,44 @@ runfiles size=19
texmf-dist/tex/luatex/luatexbase/mcb.lua
texmf-dist/tex/luatex/luatexbase/modutils.lua
catalogue-ctan /macros/luatex/generic/luatexbase
-catalogue-date 2013-05-07 01:17:41 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license pd
catalogue-version 0.6
name luatexja
category Package
-revision 30485
-shortdesc Typesest Japanese with lua(la)tex.
+revision 33863
+shortdesc Typeset Japanese with lua(la)tex.
longdesc The package offers support for typesetting Japanese documents
-longdesc with LuaTeX. Both the Plain and LaTeX2e formats may be used
-longdesc with the package.
-docfiles size=887
+longdesc with LuaTeX. Either of the Plain and LaTeX2e formats may be
+longdesc used with the package.
+docfiles size=785
texmf-dist/doc/luatex/luatexja/COPYING
texmf-dist/doc/luatex/luatexja/README details="Readme"
texmf-dist/doc/luatex/luatexja/jfm-test.lua
+ texmf-dist/doc/luatex/luatexja/jfm-ujisc33.lua
texmf-dist/doc/luatex/luatexja/ltjclasses.pdf
texmf-dist/doc/luatex/luatexja/ltjltxdoc.pdf
texmf-dist/doc/luatex/luatexja/ltjsclasses.pdf
texmf-dist/doc/luatex/luatexja/luatexja-en.pdf
texmf-dist/doc/luatex/luatexja/luatexja-ja.pdf
- texmf-dist/doc/luatex/luatexja/luatexja-zh.pdf
+ texmf-dist/doc/luatex/luatexja/luatexja-ruby.pdf
+ texmf-dist/doc/luatex/luatexja/luatexja-ruby.tex
+ texmf-dist/doc/luatex/luatexja/luatexja-zhfonts.pdf
+ texmf-dist/doc/luatex/luatexja/luatexja-zhfonts.tex
texmf-dist/doc/luatex/luatexja/luatexja.dtx
texmf-dist/doc/luatex/luatexja/luatexja.ins
-srcfiles size=100
+srcfiles size=101
+ texmf-dist/source/luatex/luatexja/ltj-kinsoku_make.tex
texmf-dist/source/luatex/luatexja/ltjclasses.dtx
texmf-dist/source/luatex/luatexja/ltjclasses.ins
texmf-dist/source/luatex/luatexja/ltjltxdoc.dtx
texmf-dist/source/luatex/luatexja/ltjltxdoc.ins
texmf-dist/source/luatex/luatexja/ltjsclasses.dtx
texmf-dist/source/luatex/luatexja/ltjsclasses.ins
- texmf-dist/source/luatex/luatexja/luatexja-kinsoku.tex
- texmf-dist/source/luatex/luatexja/luatexja-kinsoku_make.tex
texmf-dist/source/luatex/luatexja/tool/blocks2defcharrange.rb
texmf-dist/source/luatex/luatexja/tool/chars2defcharrange.rb
+ texmf-dist/source/luatex/luatexja/tool/ivslist.tex
texmf-dist/source/luatex/luatexja/tool/jfm-readable.rb
texmf-dist/source/luatex/luatexja/tool/jisx0208table.tex
texmf-dist/source/luatex/luatexja/tool/kyoikukanji.txt
@@ -100653,12 +111153,15 @@ srcfiles size=100
texmf-dist/source/luatex/luatexja/tool/otf-AdobeSongStd-Light.txt
texmf-dist/source/luatex/luatexja/tool/otf-KozMinPr6N-Regular.txt
texmf-dist/source/luatex/luatexja/tool/unicodeBlocks.tex
-runfiles size=251
+runfiles size=270
texmf-dist/tex/luatex/luatexja/addons/luatexja-adjust.sty
texmf-dist/tex/luatex/luatexja/addons/luatexja-ajmacros.sty
texmf-dist/tex/luatex/luatexja/addons/luatexja-fontspec.sty
texmf-dist/tex/luatex/luatexja/addons/luatexja-otf.sty
texmf-dist/tex/luatex/luatexja/addons/luatexja-preset.sty
+ texmf-dist/tex/luatex/luatexja/addons/luatexja-ruby.sty
+ texmf-dist/tex/luatex/luatexja/addons/luatexja-zhfonts.sty
+ texmf-dist/tex/luatex/luatexja/jfm-CCT.lua
texmf-dist/tex/luatex/luatexja/jfm-banjiao.lua
texmf-dist/tex/luatex/luatexja/jfm-jis.lua
texmf-dist/tex/luatex/luatexja/jfm-kaiming.lua
@@ -100670,7 +111173,6 @@ runfiles size=251
texmf-dist/tex/luatex/luatexja/ltj-adjust.lua
texmf-dist/tex/luatex/luatexja/ltj-base.lua
texmf-dist/tex/luatex/luatexja/ltj-base.sty
- texmf-dist/tex/luatex/luatexja/ltj-cctbreg.sty
texmf-dist/tex/luatex/luatexja/ltj-charrange.lua
texmf-dist/tex/luatex/luatexja/ltj-compat-ptex.sty
texmf-dist/tex/luatex/luatexja/ltj-compat.lua
@@ -100687,23 +111189,25 @@ runfiles size=251
texmf-dist/tex/luatex/luatexja/ltj-plain.sty
texmf-dist/tex/luatex/luatexja/ltj-pretreat.lua
texmf-dist/tex/luatex/luatexja/ltj-rmlgbm.lua
+ texmf-dist/tex/luatex/luatexja/ltj-ruby.lua
texmf-dist/tex/luatex/luatexja/ltj-setwidth.lua
texmf-dist/tex/luatex/luatexja/ltj-stack.lua
texmf-dist/tex/luatex/luatexja/ltj-tangle.lua
- texmf-dist/tex/luatex/luatexja/ltjclasses/ltjarticle.cls
- texmf-dist/tex/luatex/luatexja/ltjclasses/ltjbk10.clo
- texmf-dist/tex/luatex/luatexja/ltjclasses/ltjbk11.clo
- texmf-dist/tex/luatex/luatexja/ltjclasses/ltjbk12.clo
- texmf-dist/tex/luatex/luatexja/ltjclasses/ltjbook.cls
- texmf-dist/tex/luatex/luatexja/ltjclasses/ltjltxdoc.cls
- texmf-dist/tex/luatex/luatexja/ltjclasses/ltjreport.cls
- texmf-dist/tex/luatex/luatexja/ltjclasses/ltjsize10.clo
- texmf-dist/tex/luatex/luatexja/ltjclasses/ltjsize11.clo
- texmf-dist/tex/luatex/luatexja/ltjclasses/ltjsize12.clo
- texmf-dist/tex/luatex/luatexja/ltjsclasses/ltjsarticle.cls
- texmf-dist/tex/luatex/luatexja/ltjsclasses/ltjsbook.cls
- texmf-dist/tex/luatex/luatexja/ltjsclasses/ltjskiyou.cls
- texmf-dist/tex/luatex/luatexja/ltjsclasses/ltjspf.cls
+ texmf-dist/tex/luatex/luatexja/ltj-unicode-ccfix.tex
+ texmf-dist/tex/luatex/luatexja/ltjarticle.cls
+ texmf-dist/tex/luatex/luatexja/ltjbk10.clo
+ texmf-dist/tex/luatex/luatexja/ltjbk11.clo
+ texmf-dist/tex/luatex/luatexja/ltjbk12.clo
+ texmf-dist/tex/luatex/luatexja/ltjbook.cls
+ texmf-dist/tex/luatex/luatexja/ltjltxdoc.cls
+ texmf-dist/tex/luatex/luatexja/ltjreport.cls
+ texmf-dist/tex/luatex/luatexja/ltjsarticle.cls
+ texmf-dist/tex/luatex/luatexja/ltjsbook.cls
+ texmf-dist/tex/luatex/luatexja/ltjsize10.clo
+ texmf-dist/tex/luatex/luatexja/ltjsize11.clo
+ texmf-dist/tex/luatex/luatexja/ltjsize12.clo
+ texmf-dist/tex/luatex/luatexja/ltjskiyou.cls
+ texmf-dist/tex/luatex/luatexja/ltjspf.cls
texmf-dist/tex/luatex/luatexja/luatexja-compat.sty
texmf-dist/tex/luatex/luatexja/luatexja-core.sty
texmf-dist/tex/luatex/luatexja/luatexja.lua
@@ -100715,34 +111219,34 @@ runfiles size=251
texmf-dist/tex/luatex/luatexja/patches/lltjp-listings.sty
texmf-dist/tex/luatex/luatexja/patches/lltjp-unicode-math.sty
texmf-dist/tex/luatex/luatexja/patches/lltjp-xunicode.sty
- texmf-dist/tex/luatex/luatexja/patches/ltj-unicode-ccfix.tex
catalogue-ctan /macros/luatex/generic/luatexja
-catalogue-date 2013-05-14 23:58:42 +0200
+catalogue-date 2014-05-04 09:22:35 +0200
catalogue-license other-free
+catalogue-version 20140504.0
name luatexko
category Package
-revision 30597
+revision 34018
shortdesc Typeset Korean with Lua(La)TeX.
longdesc This is a Lua(La)TeX macro package that supports typesetting
longdesc Korean documents. LuaTeX version 0.76+ and luaotfload package
longdesc version 2.2+ are required. This package also requires both cjk-
longdesc ko and xetexko packages for its full functionality.
-docfiles size=120
+docfiles size=87
texmf-dist/doc/luatex/luatexko/ChangeLog
texmf-dist/doc/luatex/luatexko/README details="Readme"
texmf-dist/doc/luatex/luatexko/luatexko-doc.pdf details="Package documentation"
texmf-dist/doc/luatex/luatexko/luatexko-doc.tex
-runfiles size=22
+runfiles size=28
texmf-dist/tex/luatex/luatexko/luatexko-core.sty
texmf-dist/tex/luatex/luatexko/luatexko-normalize.lua
texmf-dist/tex/luatex/luatexko/luatexko-uhc2utf8.lua
texmf-dist/tex/luatex/luatexko/luatexko.lua
texmf-dist/tex/luatex/luatexko/luatexko.sty
catalogue-ctan /macros/luatex/generic/luatexko
-catalogue-date 2013-05-20 17:36:30 +0200
+catalogue-date 2014-05-11 12:36:43 +0200
catalogue-license lppl
-catalogue-version 1.1
+catalogue-version 1.5
name luatextra
category Package
@@ -100764,35 +111268,39 @@ srcfiles size=3
runfiles size=1
texmf-dist/tex/lualatex/luatextra/luatextra.sty
catalogue-ctan /macros/luatex/latex/luatextra
-catalogue-date 2012-07-10 08:38:43 +0200
+catalogue-date 2014-04-30 15:31:14 +0200
catalogue-license pd
catalogue-version 1.0.1
name luaxml
category Package
-revision 30712
+revision 32741
shortdesc Lua library for reading and serialising XML files.
-longdesc This is a redistribution of a pure lua xml library, LuaXML. The
-longdesc library was originally distributed as part of the odsfile
-longdesc package, but is made available separately in the hope that it
-longdesc can be useful for other projects.
+longdesc This is a redistribution of a pure lua xml library, LuaXML
+longdesc (this version supports Lua 5.2). The library was originally
+longdesc distributed as part of the odsfile package, but is made
+longdesc available separately in the hope that it can be useful for
+longdesc other projects.
docfiles size=32
texmf-dist/doc/luatex/luaxml/README details="Readme"
texmf-dist/doc/luatex/luaxml/luaxml.pdf details="Package documentation"
texmf-dist/doc/luatex/luaxml/luaxml.tex
-runfiles size=10
+runfiles size=13
+ texmf-dist/tex/luatex/luaxml/dom-sample.lua
texmf-dist/tex/luatex/luaxml/luaxml-mod-handler.lua
texmf-dist/tex/luatex/luaxml/luaxml-mod-xml.lua
+ texmf-dist/tex/luatex/luaxml/luaxml-pretty.lua
texmf-dist/tex/luatex/luaxml/luaxml-selectors.lua
texmf-dist/tex/luatex/luaxml/luaxml-stack.lua
+ texmf-dist/tex/luatex/luaxml/luaxml-testxml.lua
catalogue-ctan /macros/luatex/generic/luaxml
-catalogue-date 2013-05-27 20:07:27 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license other-free
catalogue-version 0.0.2
name lxfonts
category Package
-revision 15878
+revision 32354
shortdesc Set of slide fonts based on CM.
longdesc The bundle contains the traditional slides fonts revised to be
longdesc completely usable both as text fonts and mathematics fonts;
@@ -100800,12 +111308,16 @@ longdesc they are fully integrate with the new operators, letters,
longdesc symbols and extensible delimiter fonts, as well as with the AMS
longdesc fonts, all redone with the same stylistic parameters.
execute addMixedMap lxfonts.map
-docfiles size=79
- texmf-dist/doc/fonts/lxfonts/LXfonts-demo.pdf details="Package outline and samples"
+docfiles size=139
+ texmf-dist/doc/fonts/lxfonts/LXfonts-demo.pdf
texmf-dist/doc/fonts/lxfonts/LXfonts-demo.tex
- texmf-dist/doc/fonts/lxfonts/LXfonts.readme details="Readme"
- texmf-dist/doc/fonts/lxfonts/manifest
-runfiles size=385
+ texmf-dist/doc/fonts/lxfonts/LXfonts.readme
+ texmf-dist/doc/fonts/lxfonts/README details="Readme"
+ texmf-dist/doc/fonts/lxfonts/lxfonts.pdf
+ texmf-dist/doc/fonts/lxfonts/manifest.txt
+srcfiles size=8
+ texmf-dist/source/fonts/lxfonts/lxfonts.dtx
+runfiles size=397
texmf-dist/fonts/map/dvips/lxfonts/lxfonts.map
texmf-dist/fonts/source/public/lxfonts/lamsya.mf
texmf-dist/fonts/source/public/lxfonts/lamsyb.mf
@@ -100888,11 +111400,24 @@ runfiles size=385
texmf-dist/fonts/type1/public/lxfonts/ltcli8.pfb
texmf-dist/fonts/type1/public/lxfonts/ltclo8.pfb
texmf-dist/fonts/type1/public/lxfonts/ltclq8.pfb
+ texmf-dist/tex/latex/lxfonts/lgrllcmss.fd
+ texmf-dist/tex/latex/lxfonts/lgrllcmtt.fd
texmf-dist/tex/latex/lxfonts/lxfonts.sty
+ texmf-dist/tex/latex/lxfonts/omlllcmm.fd
+ texmf-dist/tex/latex/lxfonts/omsllcmsy.fd
+ texmf-dist/tex/latex/lxfonts/omxllcmex.fd
+ texmf-dist/tex/latex/lxfonts/ot1llcmss.fd
+ texmf-dist/tex/latex/lxfonts/ot1llcmtt.fd
+ texmf-dist/tex/latex/lxfonts/t1llcmss.fd
+ texmf-dist/tex/latex/lxfonts/t1llcmtt.fd
+ texmf-dist/tex/latex/lxfonts/ts1llcmss.fd
+ texmf-dist/tex/latex/lxfonts/ulllasy.fd
+ texmf-dist/tex/latex/lxfonts/ulmsa.fd
+ texmf-dist/tex/latex/lxfonts/ulmsb.fd
catalogue-ctan /fonts/lxfonts
-catalogue-date 2012-07-10 08:38:43 +0200
+catalogue-date 2014-05-14 00:24:01 +0200
catalogue-license lppl
-catalogue-version 0.4
+catalogue-version 2.0b
name ly1
category Package
@@ -100984,7 +111509,7 @@ catalogue-license lppl
name m-tx
category Package
-revision 29764
+revision 33825
shortdesc A preprocessor for pmx.
longdesc M-Tx is a preprocessor to pmx, which is itself a preprocessor
longdesc to musixtex, a music typesetting system. The prime motivation
@@ -100999,7 +111524,7 @@ docfiles size=200
texmf-dist/doc/generic/m-tx/mtx-install.tex
texmf-dist/doc/generic/m-tx/mtx060.pdf
texmf-dist/doc/generic/m-tx/mtx060/Makefile
- texmf-dist/doc/generic/m-tx/mtx060/README details="Readme"
+ texmf-dist/doc/generic/m-tx/mtx060/README.M-Txdoc
texmf-dist/doc/generic/m-tx/mtx060/borup.mtx
texmf-dist/doc/generic/m-tx/mtx060/chord.mtx
texmf-dist/doc/generic/m-tx/mtx060/dertod.mtx
@@ -101051,9 +111576,9 @@ runfiles size=4
texmf-dist/scripts/m-tx/m-tx.lua
texmf-dist/tex/generic/m-tx/mtx.tex
catalogue-ctan /support/m-tx
-catalogue-date 2013-01-20 14:45:16 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license gpl
-catalogue-version 0.60d 2013-01-19
+catalogue-version 0.60d
name m-tx.alpha-linux
category Package
@@ -101073,7 +111598,7 @@ binfiles arch=amd64-freebsd size=27
name m-tx.amd64-kfreebsd
category Package
-revision 30655
+revision 33529
shortdesc amd64-kfreebsd files of m-tx
binfiles arch=amd64-kfreebsd size=27
bin/amd64-kfreebsd/m-tx
@@ -101081,7 +111606,7 @@ binfiles arch=amd64-kfreebsd size=27
name m-tx.amd64-netbsd
category Package
-revision 30660
+revision 33726
shortdesc amd64-netbsd files of m-tx
binfiles arch=amd64-netbsd size=28
bin/amd64-netbsd/m-tx
@@ -101097,7 +111622,7 @@ binfiles arch=armel-linux size=25
name m-tx.armhf-linux
category Package
-revision 30015
+revision 33545
shortdesc armhf-linux files of m-tx
binfiles arch=armhf-linux size=23
bin/armhf-linux/m-tx
@@ -101105,9 +111630,9 @@ binfiles arch=armhf-linux size=23
name m-tx.i386-cygwin
category Package
-revision 30526
+revision 34161
shortdesc i386-cygwin files of m-tx
-binfiles arch=i386-cygwin size=25
+binfiles arch=i386-cygwin size=27
bin/i386-cygwin/m-tx
bin/i386-cygwin/prepmx.exe
@@ -101121,7 +111646,7 @@ binfiles arch=i386-freebsd size=24
name m-tx.i386-kfreebsd
category Package
-revision 30440
+revision 33529
shortdesc i386-kfreebsd files of m-tx
binfiles arch=i386-kfreebsd size=27
bin/i386-kfreebsd/m-tx
@@ -101129,15 +111654,15 @@ binfiles arch=i386-kfreebsd size=27
name m-tx.i386-linux
category Package
-revision 30088
+revision 33479
shortdesc i386-linux files of m-tx
-binfiles arch=i386-linux size=28
+binfiles arch=i386-linux size=29
bin/i386-linux/m-tx
bin/i386-linux/prepmx
name m-tx.i386-netbsd
category Package
-revision 30191
+revision 33562
shortdesc i386-netbsd files of m-tx
binfiles arch=i386-netbsd size=24
bin/i386-netbsd/m-tx
@@ -101145,47 +111670,39 @@ binfiles arch=i386-netbsd size=24
name m-tx.i386-solaris
category Package
-revision 30112
+revision 34203
shortdesc i386-solaris files of m-tx
binfiles arch=i386-solaris size=29
bin/i386-solaris/m-tx
bin/i386-solaris/prepmx
-name m-tx.mips-irix
-category Package
-revision 29949
-shortdesc mips-irix files of m-tx
-binfiles arch=mips-irix size=48
- bin/mips-irix/m-tx
- bin/mips-irix/prepmx
-
name m-tx.mipsel-linux
category Package
-revision 29946
+revision 33811
shortdesc mipsel-linux files of m-tx
-binfiles arch=mipsel-linux size=35
+binfiles arch=mipsel-linux size=27
bin/mipsel-linux/m-tx
bin/mipsel-linux/prepmx
name m-tx.powerpc-linux
category Package
-revision 29833
+revision 33561
shortdesc powerpc-linux files of m-tx
-binfiles arch=powerpc-linux size=28
+binfiles arch=powerpc-linux size=26
bin/powerpc-linux/m-tx
bin/powerpc-linux/prepmx
name m-tx.sparc-solaris
category Package
-revision 29877
+revision 33871
shortdesc sparc-solaris files of m-tx
-binfiles arch=sparc-solaris size=28
+binfiles arch=sparc-solaris size=27
bin/sparc-solaris/m-tx
bin/sparc-solaris/prepmx
name m-tx.universal-darwin
category Package
-revision 30764
+revision 34201
shortdesc universal-darwin files of m-tx
binfiles arch=universal-darwin size=55
bin/universal-darwin/m-tx
@@ -101193,15 +111710,23 @@ binfiles arch=universal-darwin size=55
name m-tx.win32
category Package
-revision 29816
+revision 33513
shortdesc win32 files of m-tx
-binfiles arch=win32 size=22
+binfiles arch=win32 size=25
bin/win32/m-tx.exe
bin/win32/prepmx.exe
+name m-tx.x86_64-cygwin
+category Package
+revision 34161
+shortdesc x86_64-cygwin files of m-tx
+binfiles arch=x86_64-cygwin size=26
+ bin/x86_64-cygwin/m-tx
+ bin/x86_64-cygwin/prepmx.exe
+
name m-tx.x86_64-darwin
category Package
-revision 29809
+revision 34201
shortdesc x86_64-darwin files of m-tx
binfiles arch=x86_64-darwin size=31
bin/x86_64-darwin/m-tx
@@ -101209,7 +111734,7 @@ binfiles arch=x86_64-darwin size=31
name m-tx.x86_64-linux
category Package
-revision 30204
+revision 33723
shortdesc x86_64-linux files of m-tx
binfiles arch=x86_64-linux size=27
bin/x86_64-linux/m-tx
@@ -101217,7 +111742,7 @@ binfiles arch=x86_64-linux size=27
name m-tx.x86_64-solaris
category Package
-revision 30112
+revision 34203
shortdesc x86_64-solaris files of m-tx
binfiles arch=x86_64-solaris size=35
bin/x86_64-solaris/m-tx
@@ -101228,7 +111753,7 @@ category Package
revision 23236
shortdesc A list of internal LaTeX2e macros.
longdesc This document lists the internal macros defined by the LaTeX2e
-longdesc base files which can be also useful to package authors. The
+longdesc base files which can also be useful to package authors. The
longdesc macros are hyper-linked to their description in source2e. For
longdesc this to work both PDFs must be inside the same directory. This
longdesc document is not yet complete in content and format and may miss
@@ -101236,10 +111761,30 @@ longdesc some macros.
docfiles size=53
texmf-dist/doc/latex/macros2e/macros2e.pdf
texmf-dist/doc/latex/macros2e/macros2e.tex
-catalogue-date 2012-07-06 12:12:34 +0200
+catalogue-date 2013-08-19 13:55:31 +0200
catalogue-license lppl
catalogue-version v0.4
+name macroswap
+category Package
+revision 31498
+shortdesc Swap the definitions of two LaTeX macros.
+longdesc The package provides simple utility methods to swap the meaning
+longdesc (token expansion) of two macros by name.
+docfiles size=42
+ texmf-dist/doc/latex/macroswap/Makefile
+ texmf-dist/doc/latex/macroswap/README details="Readme"
+ texmf-dist/doc/latex/macroswap/macroswap.pdf details="Package documentation"
+srcfiles size=3
+ texmf-dist/source/latex/macroswap/macroswap.dtx
+ texmf-dist/source/latex/macroswap/macroswap.ins
+runfiles size=1
+ texmf-dist/tex/latex/macroswap/macroswap.sty
+catalogue-ctan /macros/latex/contrib/macroswap
+catalogue-date 2014-02-26 23:03:13 +0100
+catalogue-license lppl1.2
+catalogue-version 1.1
+
name mafr
category Package
revision 15878
@@ -101278,7 +111823,7 @@ docfiles size=62
runfiles size=3
texmf-dist/tex/latex/magaz/magaz.sty
catalogue-ctan /macros/latex/contrib/magaz
-catalogue-date 2011-11-29 11:02:24 +0100
+catalogue-date 2013-11-21 21:33:57 +0100
catalogue-license other-free
catalogue-version 0.4
@@ -101322,7 +111867,7 @@ srcfiles size=4
runfiles size=1
texmf-dist/tex/latex/mailmerge/mailmerge.sty
catalogue-ctan /macros/latex/contrib/mailmerge
-catalogue-date 2012-05-21 14:42:12 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.2
catalogue-version 1.0
@@ -101345,7 +111890,7 @@ docfiles size=79
runfiles size=5
texmf-dist/tex/latex/makebarcode/makebarcode.sty
catalogue-ctan /macros/latex/contrib/makebarcode
-catalogue-date 2012-04-03 18:09:05 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.0
@@ -101381,13 +111926,13 @@ 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 around
+longdesc also offers: a macro which changes the vertical space around
longdesc all the cells in a tabular environment (similar to the function
-longdesc of the tabls package, but using the facilities of the array); -
-longdesc - macros for multirow cells, which use the facilities of the
-longdesc multirow package; -- macros to number rows in tables, or to
-longdesc skip cells; -- diagonally divided cells; and -- horizontal
-longdesc lines in tabular environments with defined thickness.
+longdesc of the tabls package, but using the facilities of the array) ;
+longdesc macros for multirow cells, which use the facilities of the
+longdesc multirow package; macros to number rows in tables, or to skip
+longdesc cells; diagonally divided cells; horizontal lines in tabular
+longdesc environments with defined thickness.
docfiles size=209
texmf-dist/doc/latex/makecell/README details="README file"
texmf-dist/doc/latex/makecell/makecell-rus.pdf details="Package documentation" language="ru"
@@ -101398,7 +111943,7 @@ srcfiles size=17
runfiles size=4
texmf-dist/tex/latex/makecell/makecell.sty
catalogue-ctan /macros/latex/contrib/makecell
-catalogue-date 2012-05-21 14:42:12 +0200
+catalogue-date 2014-01-13 13:25:37 +0100
catalogue-license lppl
catalogue-version 0.1e
@@ -101491,7 +112036,7 @@ catalogue-license gpl
name makeindex
category Package
-revision 29764
+revision 33736
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
@@ -101509,7 +112054,7 @@ docfiles size=94
texmf-dist/doc/support/makeindex/ind-src.zip
texmf-dist/doc/support/makeindex/ind.pdf
texmf-dist/doc/support/makeindex/makeindex.pdf
-runfiles size=7
+runfiles size=9
texmf-dist/makeindex/base/din.ist
texmf-dist/makeindex/base/icase.ist
texmf-dist/makeindex/base/latex.ist
@@ -101517,6 +112062,7 @@ runfiles size=7
texmf-dist/makeindex/base/mkind.ist
texmf-dist/makeindex/base/puncts.ist
texmf-dist/makeindex/base/tex.ist
+ texmf-dist/tex/plain/makeindex/idxmac.tex
catalogue-ctan /indexing/makeindex
catalogue-date 2011-09-24 09:40:13 +0200
catalogue-license other-free
@@ -101524,7 +112070,7 @@ catalogue-version 2.12
name makeindex.alpha-linux
category Package
-revision 29998
+revision 33553
shortdesc alpha-linux files of makeindex
binfiles arch=alpha-linux size=45
bin/alpha-linux/makeindex
@@ -101532,7 +112078,7 @@ binfiles arch=alpha-linux size=45
name makeindex.amd64-freebsd
category Package
-revision 30100
+revision 33488
shortdesc amd64-freebsd files of makeindex
binfiles arch=amd64-freebsd size=36
bin/amd64-freebsd/makeindex
@@ -101540,7 +112086,7 @@ binfiles arch=amd64-freebsd size=36
name makeindex.amd64-kfreebsd
category Package
-revision 30655
+revision 33864
shortdesc amd64-kfreebsd files of makeindex
binfiles arch=amd64-kfreebsd size=35
bin/amd64-kfreebsd/makeindex
@@ -101548,7 +112094,7 @@ binfiles arch=amd64-kfreebsd size=35
name makeindex.amd64-netbsd
category Package
-revision 30660
+revision 33726
shortdesc amd64-netbsd files of makeindex
binfiles arch=amd64-netbsd size=35
bin/amd64-netbsd/makeindex
@@ -101556,7 +112102,7 @@ binfiles arch=amd64-netbsd size=35
name makeindex.armel-linux
category Package
-revision 29991
+revision 33916
shortdesc armel-linux files of makeindex
binfiles arch=armel-linux size=33
bin/armel-linux/makeindex
@@ -101564,7 +112110,7 @@ binfiles arch=armel-linux size=33
name makeindex.armhf-linux
category Package
-revision 30443
+revision 34125
shortdesc armhf-linux files of makeindex
binfiles arch=armhf-linux size=32
bin/armhf-linux/makeindex
@@ -101572,23 +112118,23 @@ binfiles arch=armhf-linux size=32
name makeindex.i386-cygwin
category Package
-revision 30526
+revision 34161
shortdesc i386-cygwin files of makeindex
-binfiles arch=i386-cygwin size=34
+binfiles arch=i386-cygwin size=36
bin/i386-cygwin/makeindex.exe
bin/i386-cygwin/mkindex
name makeindex.i386-freebsd
category Package
-revision 30100
+revision 33488
shortdesc i386-freebsd files of makeindex
-binfiles arch=i386-freebsd size=34
+binfiles arch=i386-freebsd size=35
bin/i386-freebsd/makeindex
bin/i386-freebsd/mkindex
name makeindex.i386-kfreebsd
category Package
-revision 30440
+revision 33864
shortdesc i386-kfreebsd files of makeindex
binfiles arch=i386-kfreebsd size=35
bin/i386-kfreebsd/makeindex
@@ -101596,15 +112142,15 @@ binfiles arch=i386-kfreebsd size=35
name makeindex.i386-linux
category Package
-revision 30088
+revision 33479
shortdesc i386-linux files of makeindex
-binfiles arch=i386-linux size=35
+binfiles arch=i386-linux size=37
bin/i386-linux/makeindex
bin/i386-linux/mkindex
name makeindex.i386-netbsd
category Package
-revision 30191
+revision 33562
shortdesc i386-netbsd files of makeindex
binfiles arch=i386-netbsd size=33
bin/i386-netbsd/makeindex
@@ -101612,47 +112158,39 @@ binfiles arch=i386-netbsd size=33
name makeindex.i386-solaris
category Package
-revision 30112
+revision 34203
shortdesc i386-solaris files of makeindex
binfiles arch=i386-solaris size=39
bin/i386-solaris/makeindex
bin/i386-solaris/mkindex
-name makeindex.mips-irix
-category Package
-revision 30131
-shortdesc mips-irix files of makeindex
-binfiles arch=mips-irix size=61
- bin/mips-irix/makeindex
- bin/mips-irix/mkindex
-
name makeindex.mipsel-linux
category Package
-revision 29995
+revision 33811
shortdesc mipsel-linux files of makeindex
-binfiles arch=mipsel-linux size=43
+binfiles arch=mipsel-linux size=35
bin/mipsel-linux/makeindex
bin/mipsel-linux/mkindex
name makeindex.powerpc-linux
category Package
-revision 30114
+revision 33889
shortdesc powerpc-linux files of makeindex
-binfiles arch=powerpc-linux size=37
+binfiles arch=powerpc-linux size=34
bin/powerpc-linux/makeindex
bin/powerpc-linux/mkindex
name makeindex.sparc-solaris
category Package
-revision 30096
+revision 33871
shortdesc sparc-solaris files of makeindex
-binfiles arch=sparc-solaris size=37
+binfiles arch=sparc-solaris size=36
bin/sparc-solaris/makeindex
bin/sparc-solaris/mkindex
name makeindex.universal-darwin
category Package
-revision 30764
+revision 34201
shortdesc universal-darwin files of makeindex
binfiles arch=universal-darwin size=74
bin/universal-darwin/makeindex
@@ -101660,14 +112198,22 @@ binfiles arch=universal-darwin size=74
name makeindex.win32
category Package
-revision 29816
+revision 33897
shortdesc win32 files of makeindex
-binfiles arch=win32 size=19
+binfiles arch=win32 size=21
bin/win32/makeindex.exe
+name makeindex.x86_64-cygwin
+category Package
+revision 34161
+shortdesc x86_64-cygwin files of makeindex
+binfiles arch=x86_64-cygwin size=35
+ bin/x86_64-cygwin/makeindex.exe
+ bin/x86_64-cygwin/mkindex
+
name makeindex.x86_64-darwin
category Package
-revision 30115
+revision 34201
shortdesc x86_64-darwin files of makeindex
binfiles arch=x86_64-darwin size=39
bin/x86_64-darwin/makeindex
@@ -101675,7 +112221,7 @@ binfiles arch=x86_64-darwin size=39
name makeindex.x86_64-linux
category Package
-revision 30204
+revision 33723
shortdesc x86_64-linux files of makeindex
binfiles arch=x86_64-linux size=35
bin/x86_64-linux/makeindex
@@ -101683,7 +112229,7 @@ binfiles arch=x86_64-linux size=35
name makeindex.x86_64-solaris
category Package
-revision 30112
+revision 34203
shortdesc x86_64-solaris files of makeindex
binfiles arch=x86_64-solaris size=44
bin/x86_64-solaris/makeindex
@@ -101710,7 +112256,7 @@ srcfiles size=12
runfiles size=5
texmf-dist/tex/latex/makeplot/makeplot.sty
catalogue-ctan /graphics/pstricks/contrib/makeplot
-catalogue-date 2012-07-06 13:09:55 +0200
+catalogue-date 2013-07-15 20:25:07 +0200
catalogue-license lppl
catalogue-version 1.0.6
@@ -101737,32 +112283,32 @@ srcfiles size=27
runfiles size=2
texmf-dist/tex/latex/makeshape/makeshape.sty
catalogue-ctan /graphics/pgf/contrib/makeshape
-catalogue-date 2013-02-02 13:02:12 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 2.1
name mandi
category Package
-revision 29837
+revision 30981
shortdesc Macros for introductory physics and astronomy.
longdesc The package contains commands for students and teachers of
longdesc introductory physics. Commands for physical quantities
longdesc intelligently handle SI units so the user need not do so. There
longdesc are other features that should make LaTeX easy for introductory
longdesc physics students.
-docfiles size=228
+docfiles size=252
texmf-dist/doc/latex/mandi/README details="Readme"
texmf-dist/doc/latex/mandi/mandi.pdf details="Package documentation"
texmf-dist/doc/latex/mandi/vdemo.py
-srcfiles size=59
+srcfiles size=58
texmf-dist/source/latex/mandi/mandi.dtx
texmf-dist/source/latex/mandi/mandi.ins
-runfiles size=17
+runfiles size=18
texmf-dist/tex/latex/mandi/mandi.sty
catalogue-ctan /macros/latex/contrib/mandi
-catalogue-date 2013-04-10 20:30:37 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
-catalogue-version 2.1.0
+catalogue-version 2.2.0
name manfnt
category Package
@@ -101781,7 +112327,7 @@ runfiles size=13
texmf-dist/fonts/type1/hoekwater/manfnt/manfnt.pfb
texmf-dist/tex/latex/manfnt/manfnt.sty
catalogue-ctan /macros/latex/contrib/manfnt
-catalogue-date 2012-05-01 11:32:27 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
name manuscript
@@ -101825,7 +112371,7 @@ catalogue-version 1.0c
name marginfix
category Package
-revision 24320
+revision 31598
shortdesc Patch \marginpar to avoid overfull margins.
longdesc Authors using LaTeX to typeset books with significant margin
longdesc material often run into the problem of long notes running off
@@ -101837,18 +112383,18 @@ longdesc short textual notes, and standard marginpars cannot be mixed
longdesc with sidebars. This package implements a solution to make
longdesc marginpars "just work" by keeping a list of floating inserts
longdesc and arranging them intelligently in the output routine.
-docfiles size=59
+docfiles size=66
texmf-dist/doc/latex/marginfix/README details="Readme"
texmf-dist/doc/latex/marginfix/marginfix.pdf details="Package documentation"
-srcfiles size=10
+srcfiles size=17
texmf-dist/source/latex/marginfix/marginfix.dtx
texmf-dist/source/latex/marginfix/marginfix.ins
-runfiles size=2
+runfiles size=4
texmf-dist/tex/latex/marginfix/marginfix.sty
catalogue-ctan /macros/latex/contrib/marginfix
-catalogue-date 2012-04-30 16:16:20 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
-catalogue-version 0.9.1
+catalogue-version 1.1
name marginnote
category Package
@@ -101907,7 +112453,7 @@ runfiles size=51
texmf-dist/tex/latex/marvosym/marvosym.sty
texmf-dist/tex/latex/marvosym/umvs.fd
catalogue-ctan /fonts/marvosym
-catalogue-date 2012-04-08 13:55:52 +0200
+catalogue-date 2014-05-14 00:24:01 +0200
catalogue-license ofl
catalogue-version 2.2a
@@ -101928,7 +112474,7 @@ srcfiles size=7
runfiles size=2
texmf-dist/tex/latex/matc3/matc3.sty
catalogue-ctan /macros/latex/contrib/matc3
-catalogue-date 2013-04-09 15:55:17 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.0.1
@@ -101950,14 +112496,14 @@ srcfiles size=7
runfiles size=2
texmf-dist/tex/latex/matc3mem/matc3mem.cls
catalogue-ctan /macros/latex/contrib/matc3mem
-catalogue-date 2013-04-14 10:19:50 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.0.2
name match_parens
category Package
-revision 26313
-shortdesc Easily detect mismatched parens.
+revision 33682
+shortdesc Find mismatches of parentheses, braces, (angle) brackets, in texts.
longdesc Mismatches of parentheses, braces, (angle) brackets, especially
longdesc in TeX sources which may be rich in those, may be difficult to
longdesc trace. This little script helps you by writing your text to
@@ -101965,49 +112511,15 @@ longdesc standard output, after adding a left margin to your text, which
longdesc will normally be almost empty, but will clearly show any
longdesc mismatches.
depend match_parens.ARCH
-docfiles size=62
- texmf-dist/doc/support/match_parens/Object.html
+docfiles size=10
texmf-dist/doc/support/match_parens/README details="Readme"
- texmf-dist/doc/support/match_parens/add.png
- texmf-dist/doc/support/match_parens/brick.png
- texmf-dist/doc/support/match_parens/brick_link.png
- texmf-dist/doc/support/match_parens/bug.png
- texmf-dist/doc/support/match_parens/bullet_black.png
- texmf-dist/doc/support/match_parens/bullet_toggle_minus.png
- texmf-dist/doc/support/match_parens/bullet_toggle_plus.png
- texmf-dist/doc/support/match_parens/created.rid
- texmf-dist/doc/support/match_parens/darkfish.js
- texmf-dist/doc/support/match_parens/date.png
- texmf-dist/doc/support/match_parens/delete.png
- texmf-dist/doc/support/match_parens/find.png
- texmf-dist/doc/support/match_parens/index.html
- texmf-dist/doc/support/match_parens/jquery.js
- texmf-dist/doc/support/match_parens/loadingAnimation.gif
- texmf-dist/doc/support/match_parens/macFFBgHack.png
- texmf-dist/doc/support/match_parens/navigation.js
- texmf-dist/doc/support/match_parens/package.png
- texmf-dist/doc/support/match_parens/page_green.png
- texmf-dist/doc/support/match_parens/page_white_text.png
- texmf-dist/doc/support/match_parens/page_white_width.png
- texmf-dist/doc/support/match_parens/plugin.png
- texmf-dist/doc/support/match_parens/rdoc.css
- texmf-dist/doc/support/match_parens/ruby.png
- texmf-dist/doc/support/match_parens/search.js
- texmf-dist/doc/support/match_parens/search_index.js
- texmf-dist/doc/support/match_parens/searcher.js
- texmf-dist/doc/support/match_parens/table_of_contents.html
- texmf-dist/doc/support/match_parens/tag_blue.png
- texmf-dist/doc/support/match_parens/tag_green.png
- texmf-dist/doc/support/match_parens/transparent.png
- texmf-dist/doc/support/match_parens/wrench.png
- texmf-dist/doc/support/match_parens/wrench_orange.png
- texmf-dist/doc/support/match_parens/zoom.png
+ texmf-dist/doc/support/match_parens/match_parens.pdf details="Package documentation"
runfiles size=1
texmf-dist/scripts/match_parens/match_parens
catalogue-ctan /support/match_parens
-catalogue-date 2012-04-05 17:28:29 +0200
+catalogue-date 2014-04-27 12:24:51 +0200
catalogue-license gpl
-catalogue-version 1.4
+catalogue-version 1.41
name match_parens.alpha-linux
category Package
@@ -102093,13 +112605,6 @@ shortdesc i386-solaris files of match_parens
binfiles arch=i386-solaris size=1
bin/i386-solaris/match_parens
-name match_parens.mips-irix
-category Package
-revision 29949
-shortdesc mips-irix files of match_parens
-binfiles arch=mips-irix size=1
- bin/mips-irix/match_parens
-
name match_parens.mipsel-linux
category Package
revision 29946
@@ -102135,6 +112640,13 @@ shortdesc win32 files of match_parens
binfiles arch=win32 size=1
bin/win32/match_parens.exe
+name match_parens.x86_64-cygwin
+category Package
+revision 33557
+shortdesc x86_64-cygwin files of match_parens
+binfiles arch=x86_64-cygwin size=1
+ bin/x86_64-cygwin/match_parens
+
name match_parens.x86_64-darwin
category Package
revision 23500
@@ -102681,7 +113193,7 @@ docfiles size=515
texmf-dist/doc/latex/math-e/exareport.cls
texmf-dist/doc/latex/math-e/exasymbol.cls
catalogue-ctan /info/examples/Math-E
-catalogue-date 2012-07-06 13:09:55 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
name mathabx
@@ -102693,7 +113205,8 @@ longdesc mathb and mathx. They are defined by Metafont code and should
longdesc be of reasonable quality (bitmap output). Things change from
longdesc time to time, so there is no claim of stability (encoding,
longdesc metrics, design). The package includes Plain TeX and LaTeX
-longdesc support macros.
+longdesc support macros. A version of the fonts, in Adobe Type 1 format,
+longdesc is also available.
docfiles size=193
texmf-dist/doc/fonts/mathabx/README details="Readme"
texmf-dist/doc/fonts/mathabx/mathtest.pdf details="Package documentation, including font lists"
@@ -102783,7 +113296,7 @@ runfiles size=215
texmf-dist/tex/generic/mathabx/mathabx.sty
texmf-dist/tex/generic/mathabx/mathabx.tex
catalogue-ctan /fonts/mathabx
-catalogue-date 2012-04-10 20:26:14 +0200
+catalogue-date 2014-05-14 16:12:10 +0200
catalogue-license lppl
name mathabx-type1
@@ -102823,7 +113336,7 @@ runfiles size=500
texmf-dist/fonts/type1/public/mathabx-type1/mathx8.pfb
texmf-dist/fonts/type1/public/mathabx-type1/mathx9.pfb
catalogue-ctan /fonts/ps-type1/mathabx
-catalogue-date 2012-04-10 20:26:14 +0200
+catalogue-date 2014-05-14 16:12:10 +0200
catalogue-license lppl
name mathalfa
@@ -102841,14 +113354,14 @@ docfiles size=104
runfiles size=6
texmf-dist/tex/latex/mathalfa/mathalfa.sty
catalogue-ctan /macros/latex/contrib/mathalfa
-catalogue-date 2012-07-16 01:16:42 +0200
+catalogue-date 2014-03-14 11:26:43 +0100
catalogue-license lppl1.3
catalogue-version 1.07
name mathastext
category Package
-revision 28920
-shortdesc Use the text font in simple mathematics.
+revision 32415
+shortdesc Use the text font in maths mode.
longdesc The package uses a text font (usually the document's text font)
longdesc for the letters of the Latin alphabet needed when typesetting
longdesc mathematics. (Optionally, other characters in the font may also
@@ -102858,23 +113371,27 @@ longdesc little worry that no specially designed accompanying maths
longdesc fonts are available. The package also offers a simple mechanism
longdesc for using many different choices of (text hence, now, maths)
longdesc font in the same document. Of course, using one font for two
-longdesc purposes helps produce smaller PDF files.
-docfiles size=92
+longdesc purposes helps produce smaller PDF files. The package, running
+longdesc under LuaTeX, requires the TeX live 2013 distribution (or
+longdesc later).
+docfiles size=115
texmf-dist/doc/latex/mathastext/README details="Readme"
texmf-dist/doc/latex/mathastext/mathastext.pdf details="Package documentation"
- texmf-dist/doc/latex/mathastext/testmathastextalphabets.tex
- texmf-dist/doc/latex/mathastext/testmathastextlinux.tex
- texmf-dist/doc/latex/mathastext/testmathastextmacos.tex
- texmf-dist/doc/latex/mathastext/testmathastextmathversions.tex
-srcfiles size=66
+ texmf-dist/doc/latex/mathastext/mathastext.tex
+ texmf-dist/doc/latex/mathastext/mathastexttestalphabets.pdf details="Output of test script"
+ texmf-dist/doc/latex/mathastext/mathastexttestalphabets.tex
+ texmf-dist/doc/latex/mathastext/mathastexttestmathversions.tex
+ texmf-dist/doc/latex/mathastext/mathastexttestunicodelinux.tex
+ texmf-dist/doc/latex/mathastext/mathastexttestunicodemacos.tex
+srcfiles size=73
texmf-dist/source/latex/mathastext/mathastext.dtx
texmf-dist/source/latex/mathastext/mathastext.ins
runfiles size=20
texmf-dist/tex/latex/mathastext/mathastext.sty
catalogue-ctan /macros/latex/contrib/mathastext
-catalogue-date 2013-01-21 13:03:31 +0100
+catalogue-date 2014-05-24 20:26:51 +0200
catalogue-license lppl1.3
-catalogue-version 1.2f
+catalogue-version 1.3d
name mathcomp
category Package
@@ -102896,7 +113413,7 @@ catalogue-version 0.1f
name mathdesign
category Package
-revision 24173
+revision 31639
shortdesc Mathematical fonts to fit with particular text fonts.
longdesc The Math Design project offers free mathematical fonts that
longdesc match with existing text fonts. To date, three free font
@@ -102908,608 +113425,1195 @@ longdesc some extra. Both roman and bold versions of these symbols can
longdesc be used. Moreover you can choose between three greek fonts (two
longdesc of them created by the Greek Font Society).
execute addMap mdbch.map
+execute addMap mdgreek.map
+execute addMap mdici.map
+execute addMap mdpgd.map
+execute addMap mdpus.map
execute addMap mdput.map
execute addMap mdugm.map
-docfiles size=928
- texmf-dist/doc/fonts/mathdesign/MD-adobe-utopia-doc.pdf
- texmf-dist/doc/fonts/mathdesign/MD-adobe-utopia-example.pdf
- texmf-dist/doc/fonts/mathdesign/MD-bitstream-charter-doc.pdf
- texmf-dist/doc/fonts/mathdesign/MD-bitstream-charter-example.pdf
- texmf-dist/doc/fonts/mathdesign/MD-urw-garamond-doc.pdf
- texmf-dist/doc/fonts/mathdesign/MD-urw-garamond-example.pdf
+docfiles size=232
+ texmf-dist/doc/fonts/mathdesign/MD-Adobe-Adobe-Garamond-Pro-example.tex
+ texmf-dist/doc/fonts/mathdesign/MD-Adobe-Utopia-Std-example.tex
+ texmf-dist/doc/fonts/mathdesign/MD-Adobe-Utopia-example.pdf
+ texmf-dist/doc/fonts/mathdesign/MD-Adobe-Utopia-example.tex
+ texmf-dist/doc/fonts/mathdesign/MD-Bitstream-Bitstream-Charter-example.pdf
+ texmf-dist/doc/fonts/mathdesign/MD-Bitstream-Bitstream-Charter-example.tex
+ texmf-dist/doc/fonts/mathdesign/MD-itc-Charter-ITC-Std-example.tex
+ texmf-dist/doc/fonts/mathdesign/MD-urw-GaramondNo8-example.tex
texmf-dist/doc/fonts/mathdesign/README
texmf-dist/doc/fonts/mathdesign/mathdesign-doc.pdf
- 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=1288
+ texmf-dist/doc/fonts/mathdesign/mathdesign-doc.tex
+runfiles size=2805
texmf-dist/dvips/mathdesign/config.mdbch
+ texmf-dist/dvips/mathdesign/config.mdici
+ texmf-dist/dvips/mathdesign/config.mdpgd
+ texmf-dist/dvips/mathdesign/config.mdpus
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/enc/dvips/mathdesign/a_2dncez.enc
+ texmf-dist/fonts/enc/dvips/mathdesign/a_2rwgaw.enc
+ texmf-dist/fonts/enc/dvips/mathdesign/a_42s2zl.enc
+ texmf-dist/fonts/enc/dvips/mathdesign/a_45o73x.enc
+ texmf-dist/fonts/enc/dvips/mathdesign/a_4b5i6w.enc
+ texmf-dist/fonts/enc/dvips/mathdesign/a_57soyv.enc
+ texmf-dist/fonts/enc/dvips/mathdesign/a_csqf63.enc
+ texmf-dist/fonts/enc/dvips/mathdesign/a_e65dz6.enc
+ texmf-dist/fonts/enc/dvips/mathdesign/a_g2masa.enc
+ texmf-dist/fonts/enc/dvips/mathdesign/a_g47ck7.enc
+ texmf-dist/fonts/enc/dvips/mathdesign/a_ipzj2o.enc
+ texmf-dist/fonts/enc/dvips/mathdesign/a_kld4uc.enc
+ texmf-dist/fonts/enc/dvips/mathdesign/a_mdpn2k.enc
+ texmf-dist/fonts/enc/dvips/mathdesign/a_n2elaj.enc
+ texmf-dist/fonts/enc/dvips/mathdesign/a_oxfbe4.enc
+ texmf-dist/fonts/enc/dvips/mathdesign/a_py5znv.enc
+ texmf-dist/fonts/enc/dvips/mathdesign/a_qnfjtt.enc
+ texmf-dist/fonts/enc/dvips/mathdesign/a_qzg4u4.enc
+ texmf-dist/fonts/enc/dvips/mathdesign/a_r2nxhw.enc
+ texmf-dist/fonts/enc/dvips/mathdesign/a_rl4tn2.enc
+ texmf-dist/fonts/enc/dvips/mathdesign/a_rxz3ga.enc
+ texmf-dist/fonts/enc/dvips/mathdesign/a_telfo7.enc
+ texmf-dist/fonts/enc/dvips/mathdesign/a_uwwzqd.enc
+ texmf-dist/fonts/enc/dvips/mathdesign/a_yezm6g.enc
+ texmf-dist/fonts/enc/dvips/mathdesign/md8x.enc
texmf-dist/fonts/map/dvips/mathdesign/mdbch.map
+ texmf-dist/fonts/map/dvips/mathdesign/mdgreek.map
+ texmf-dist/fonts/map/dvips/mathdesign/mdici.map
+ texmf-dist/fonts/map/dvips/mathdesign/mdpgd.map
+ texmf-dist/fonts/map/dvips/mathdesign/mdpus.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/fonts/tfm/public/mathdesign/mdbch/bchb8a.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdbch/bchbc8a.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdbch/bchbc8y.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdbch/bchbi8a.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdbch/bchr8a.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdbch/bchrc8a.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdbch/bchrc8y.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdbch/bchri8a.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdbch/md-chb7m.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdbch/md-chb7t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdbch/md-chb7v.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdbch/md-chb7y.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdbch/md-chb8c.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdbch/md-chb8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdbch/md-chb8y.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdbch/md-chbc8y.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdbch/md-chbi7m.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdbch/md-chbi7t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdbch/md-chbi8c.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdbch/md-chbi8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdbch/md-chbi8y.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdbch/md-chbma.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdbch/md-chbmb.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdbch/md-chbo7t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdbch/md-chbo8c.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdbch/md-chbo8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdbch/md-chbo8y.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdbch/md-chboc8y.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdbch/md-chr7m.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdbch/md-chr7t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdbch/md-chr7v.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdbch/md-chr7y.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdbch/md-chr8c.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdbch/md-chr8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdbch/md-chr8y.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdbch/md-chrc8y.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdbch/md-chree.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdbch/md-chri7m.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdbch/md-chri7t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdbch/md-chri8c.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdbch/md-chri8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdbch/md-chri8y.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdbch/md-chrma.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdbch/md-chrmb.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdbch/md-chro7t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdbch/md-chro8c.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdbch/md-chro8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdbch/md-chro8y.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdbch/md-chroc8y.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdbch/mdbchb7m.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdbch/mdbchb7t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdbch/mdbchb7v.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdbch/mdbchb7y.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdbch/mdbchb8c.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdbch/mdbchb8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdbch/mdbchbc8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdbch/mdbchbfc8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdbch/mdbchbi7m.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdbch/mdbchbi7t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdbch/mdbchbi8c.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdbch/mdbchbi8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdbch/mdbchbifc8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdbch/mdbchbma.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdbch/mdbchbmb.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdbch/mdbchbo7t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdbch/mdbchbo8c.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdbch/mdbchbo8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdbch/mdbchbofc8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdbch/mdbchr7m.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdbch/mdbchr7t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdbch/mdbchr7v.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdbch/mdbchr7y.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdbch/mdbchr8c.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdbch/mdbchr8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdbch/mdbchrc8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdbch/mdbchrfc8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdbch/mdbchri7m.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdbch/mdbchri7t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdbch/mdbchri8c.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdbch/mdbchri8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdbch/mdbchrifc8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdbch/mdbchrma.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdbch/mdbchrmb.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdbch/mdbchro7t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdbch/mdbchro8c.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdbch/mdbchro8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdbch/mdbchrofc8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdgreek/md-grbb7m.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdgreek/md-grbbi7m.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdgreek/md-grbr7m.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdgreek/md-grbri7m.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdgreek/md-grdb7m.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdgreek/md-grdbi7m.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdgreek/md-grdr7m.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdgreek/md-grdri7m.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdgreek/mdgrbCb7m.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdgreek/mdgrbCbi7m.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdgreek/mdgrbCr7m.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdgreek/mdgrbCri7m.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdgreek/mdgrbb7m.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdgreek/mdgrbbi7m.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdgreek/mdgrbr7m.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdgreek/mdgrbri7m.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdgreek/mdgrdCb7m.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdgreek/mdgrdCbi7m.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdgreek/mdgrdCri7m.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdgreek/mdgrdb7m.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdgreek/mdgrdbi7m.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdgreek/mdgrdr7m.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdgreek/mdgrdrC7m.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdgreek/mdgrdri7m.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/md-cib7m.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/md-cib7t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/md-cib7v.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/md-cib7y.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/md-cib8c.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/md-cib8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/md-cibee.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/md-cibi7m.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/md-cibi7t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/md-cibi8c.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/md-cibi8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/md-cibma.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/md-cibmb.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/md-cir7m.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/md-cir7t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/md-cir7v.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/md-cir7y.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/md-cir8c.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/md-cir8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/md-ciree.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/md-ciri7m.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/md-ciri7t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/md-ciri8c.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/md-ciri8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/md-cirma.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/md-cirmb.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/mdicib7m.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/mdicib7t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/mdicib7v.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/mdicib7y.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/mdicib8c.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/mdicib8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/mdicibc8c.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/mdicibc8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/mdicibfc8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/mdicibi7m.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/mdicibi7t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/mdicibi8c.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/mdicibi8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/mdicibic8c.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/mdicibic8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/mdicibifc8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/mdicibma.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/mdicibmb.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/mdicic8c.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/mdicic8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/mdicicc8c.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/mdicicc8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/mdicicfc8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/mdicici8c.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/mdicici8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/mdicicic8c.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/mdicicic8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/mdicicifc8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/mdicir7m.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/mdicir7t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/mdicir7v.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/mdicir7y.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/mdicir8c.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/mdicir8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/mdicirc8c.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/mdicirc8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/mdicirfc8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/mdiciri7m.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/mdiciri7t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/mdiciri8c.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/mdiciri8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/mdiciric8c.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/mdiciric8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/mdicirifc8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/mdicirma.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/mdicirmb.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/mdwcib7m.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/mdwcib7y.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/mdwcib8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/mdwcibc8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/mdwcibi7m.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/mdwcibi7y.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/mdwcibi8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/mdwcibic8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/mdwcic7m.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/mdwcic7y.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/mdwcic8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/mdwcicc8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/mdwcici7m.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/mdwcici7y.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/mdwcici8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/mdwcicic8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/mdwcir7m.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/mdwcir7y.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/mdwcir8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/mdwcirc8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/mdwciri7m.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/mdwciri7y.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/mdwciri8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/mdwciric8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/mdxcib7t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/mdxcib7y.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/mdxcib8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/mdxcibc8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/mdxcibi7t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/mdxcibi7y.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/mdxcibi8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/mdxcibic8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/mdxcic7t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/mdxcic7y.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/mdxcic8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/mdxcicc8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/mdxcici7t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/mdxcici7y.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/mdxcici8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/mdxcicic8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/mdxcir7t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/mdxcir7y.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/mdxcir8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/mdxcirc8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/mdxciri7t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/mdxciri7y.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/mdxciri8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdici/mdxciric8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/md-gdr7m.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/md-gdr7t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/md-gdr7v.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/md-gdr7y.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/md-gdr8c.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/md-gdr8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/md-gdree.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/md-gdri7m.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/md-gdri7t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/md-gdri8c.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/md-gdri8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/md-gdrma.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/md-gdrmb.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/md-gds7m.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/md-gds7t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/md-gds7v.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/md-gds7y.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/md-gds8c.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/md-gds8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/md-gdsi7m.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/md-gdsi7t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/md-gdsi8c.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/md-gdsi8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/md-gdsma.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/md-gdsmb.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/mdpgdb8c.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/mdpgdb8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/mdpgdbc8c.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/mdpgdbc8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/mdpgdbfc8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/mdpgdbi8c.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/mdpgdbi8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/mdpgdbic8c.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/mdpgdbic8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/mdpgdbifc8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/mdpgdr7m.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/mdpgdr7t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/mdpgdr7v.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/mdpgdr7y.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/mdpgdr8c.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/mdpgdr8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/mdpgdrc8c.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/mdpgdrc8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/mdpgdrfc8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/mdpgdri7m.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/mdpgdri7t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/mdpgdri8c.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/mdpgdri8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/mdpgdric8c.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/mdpgdric8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/mdpgdrifc8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/mdpgdrma.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/mdpgdrmb.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/mdpgds7m.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/mdpgds7t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/mdpgds7v.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/mdpgds7y.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/mdpgds8c.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/mdpgds8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/mdpgdsc8c.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/mdpgdsc8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/mdpgdsfc8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/mdpgdsi7m.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/mdpgdsi7t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/mdpgdsi8c.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/mdpgdsi8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/mdpgdsic8c.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/mdpgdsic8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/mdpgdsifc8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/mdpgdsma.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/mdpgdsmb.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/mdwgdb7m.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/mdwgdb7y.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/mdwgdb8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/mdwgdbc8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/mdwgdbi7m.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/mdwgdbi7y.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/mdwgdbi8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/mdwgdbic8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/mdwgdr7m.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/mdwgdr7y.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/mdwgdr8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/mdwgdrc8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/mdwgdri7m.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/mdwgdri7y.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/mdwgdri8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/mdwgdric8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/mdwgds7m.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/mdwgds7y.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/mdwgds8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/mdwgdsc8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/mdwgdsi7m.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/mdwgdsi7y.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/mdwgdsi8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/mdwgdsic8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/mdxgdb7t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/mdxgdb7y.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/mdxgdb8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/mdxgdbc8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/mdxgdbi7t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/mdxgdbi7y.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/mdxgdbi8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/mdxgdbic8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/mdxgdr7t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/mdxgdr7y.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/mdxgdr8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/mdxgdrc8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/mdxgdri7t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/mdxgdri7y.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/mdxgdri8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/mdxgdric8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/mdxgds7t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/mdxgds7y.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/mdxgds8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/mdxgdsc8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/mdxgdsi7t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/mdxgdsi7y.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/mdxgdsi8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpgd/mdxgdsic8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/md-usr7m.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/md-usr7t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/md-usr7t5.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/md-usr7t6.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/md-usr7t7.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/md-usr7t8.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/md-usr7t9.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/md-usr7v.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/md-usr7y.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/md-usr8c.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/md-usr8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/md-usree.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/md-usri7m.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/md-usri7t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/md-usri7t5.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/md-usri7t6.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/md-usri7t7.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/md-usri7t8.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/md-usri7t9.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/md-usri8c.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/md-usri8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/md-usrma.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/md-usrmb.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/md-uss7m.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/md-uss7t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/md-uss7v.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/md-uss7y.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/md-uss8c.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/md-uss8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/md-ussi7m.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/md-ussi7t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/md-ussi8c.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/md-ussi8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/md-ussma.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/md-ussmb.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/mdpusb8c.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/mdpusb8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/mdpusbc8c.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/mdpusbc8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/mdpusbfc8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/mdpusbi8c.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/mdpusbi8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/mdpusbic8c.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/mdpusbic8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/mdpusbifc8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/mdpusr7m.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/mdpusr7t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/mdpusr7v.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/mdpusr7y.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/mdpusr8c.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/mdpusr8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/mdpusrc8c.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/mdpusrc8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/mdpusrfc8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/mdpusri7m.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/mdpusri7t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/mdpusri8c.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/mdpusri8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/mdpusric8c.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/mdpusric8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/mdpusrifc8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/mdpusrma.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/mdpusrmb.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/mdpuss7m.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/mdpuss7t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/mdpuss7v.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/mdpuss7y.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/mdpuss8c.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/mdpuss8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/mdpussc8c.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/mdpussc8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/mdpussfc8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/mdpussi7m.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/mdpussi7t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/mdpussi8c.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/mdpussi8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/mdpussic8c.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/mdpussic8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/mdpussifc8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/mdpussma.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/mdpussmb.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/mdwusb7m.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/mdwusb7y.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/mdwusb8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/mdwusbc8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/mdwusbi7m.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/mdwusbi7y.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/mdwusbi8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/mdwusbic8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/mdwusr7m.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/mdwusr7y.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/mdwusr8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/mdwusrc8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/mdwusri7m.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/mdwusri7y.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/mdwusri8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/mdwusric8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/mdwuss7m.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/mdwuss7y.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/mdwuss8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/mdwussc8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/mdwussi7m.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/mdwussi7y.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/mdwussi8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/mdwussic8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/mdxusb7t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/mdxusb7y.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/mdxusb8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/mdxusbc8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/mdxusbi7t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/mdxusbi7y.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/mdxusbi8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/mdxusbic8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/mdxusr7t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/mdxusr7y.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/mdxusr8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/mdxusrc8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/mdxusri7t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/mdxusri7y.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/mdxusri8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/mdxusric8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/mdxuss7t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/mdxuss7y.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/mdxuss8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/mdxussc8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/mdxussi7t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/mdxussi7y.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/mdxussi8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdpus/mdxussic8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdput/md-utb7m.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdput/md-utb7t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdput/md-utb7v.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdput/md-utb7y.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdput/md-utb8c.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdput/md-utb8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdput/md-utb8y.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdput/md-utbee.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdput/md-utbi7m.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdput/md-utbi7t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdput/md-utbi8c.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdput/md-utbi8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdput/md-utbi8y.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdput/md-utbma.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdput/md-utbmb.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdput/md-utbo7t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdput/md-utbo8c.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdput/md-utbo8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdput/md-utbo8y.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdput/md-utr7m.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdput/md-utr7t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdput/md-utr7v.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdput/md-utr7y.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdput/md-utr8c.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdput/md-utr8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdput/md-utr8y.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdput/md-utree.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdput/md-utri7m.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdput/md-utri7t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdput/md-utri8c.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdput/md-utri8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdput/md-utri8y.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdput/md-utrma.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdput/md-utrmb.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdput/md-utro7t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdput/md-utro8c.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdput/md-utro8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdput/md-utro8y.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdput/mdputb7m.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdput/mdputb7t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdput/mdputb7v.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdput/mdputb7y.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdput/mdputb8c.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdput/mdputb8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdput/mdputbc8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdput/mdputbfc8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdput/mdputbi7m.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdput/mdputbi7t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdput/mdputbi8c.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdput/mdputbi8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdput/mdputbifc8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdput/mdputbma.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdput/mdputbmb.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdput/mdputbo7t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdput/mdputbo8c.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdput/mdputbo8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdput/mdputbofc8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdput/mdputr7m.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdput/mdputr7t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdput/mdputr7v.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdput/mdputr7y.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdput/mdputr8c.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdput/mdputr8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdput/mdputrc8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdput/mdputrfc8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdput/mdputri7m.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdput/mdputri7t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdput/mdputri8c.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdput/mdputri8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdput/mdputrifc8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdput/mdputrma.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdput/mdputrmb.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdput/mdputro7t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdput/mdputro8c.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdput/mdputro8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdput/mdputrofc8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdput/putb8a.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdput/putb8x.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdput/putbi8a.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdput/putr8a.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdput/putr8x.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdput/putri8a.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdugm/md-gmm7m.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdugm/md-gmm7t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdugm/md-gmm7v.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdugm/md-gmm7y.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdugm/md-gmm8c.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdugm/md-gmm8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdugm/md-gmm8y.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdugm/md-gmmi7m.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdugm/md-gmmi7t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdugm/md-gmmi8c.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdugm/md-gmmi8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdugm/md-gmmi8y.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdugm/md-gmmma.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdugm/md-gmmmb.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdugm/md-gmmo7t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdugm/md-gmmo8c.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdugm/md-gmmo8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdugm/md-gmmo8y.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdugm/md-gmr7m.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdugm/md-gmr7t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdugm/md-gmr7v.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdugm/md-gmr7y.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdugm/md-gmr8c.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdugm/md-gmr8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdugm/md-gmr8y.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdugm/md-gmree.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdugm/md-gmri7m.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdugm/md-gmri7t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdugm/md-gmri8c.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdugm/md-gmri8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdugm/md-gmri8y.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdugm/md-gmrma.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdugm/md-gmrmb.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdugm/md-gmro7t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdugm/md-gmro8c.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdugm/md-gmro8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdugm/md-gmro8y.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdugm/mdugmm7m.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdugm/mdugmm7t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdugm/mdugmm7v.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdugm/mdugmm7y.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdugm/mdugmm8c.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdugm/mdugmm8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdugm/mdugmmfc8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdugm/mdugmmi7m.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdugm/mdugmmi7t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdugm/mdugmmi8c.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdugm/mdugmmi8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdugm/mdugmmifc8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdugm/mdugmmma.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdugm/mdugmmmb.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdugm/mdugmmo7t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdugm/mdugmmo8c.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdugm/mdugmmo8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdugm/mdugmmofc8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdugm/mdugmr7m.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdugm/mdugmr7t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdugm/mdugmr7v.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdugm/mdugmr7y.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdugm/mdugmr8c.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdugm/mdugmr8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdugm/mdugmrfc8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdugm/mdugmri7m.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdugm/mdugmri7t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdugm/mdugmri8c.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdugm/mdugmri8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdugm/mdugmrifc8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdugm/mdugmrma.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdugm/mdugmrmb.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdugm/mdugmro7t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdugm/mdugmro8c.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdugm/mdugmro8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdugm/mdugmrofc8t.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdugm/ugmm8a.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdugm/ugmmi8a.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdugm/ugmr8a.tfm
+ texmf-dist/fonts/tfm/public/mathdesign/mdugm/ugmri8a.tfm
+ texmf-dist/fonts/type1/public/mathdesign/mdbch/md-chb7m.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdbch/md-chb7t.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdbch/md-chb7v.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdbch/md-chb7y.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdbch/md-chb8c.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdbch/md-chb8t.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdbch/md-chbi7m.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdbch/md-chbi7t.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdbch/md-chbi8c.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdbch/md-chbi8t.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdbch/md-chbma.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdbch/md-chbmb.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdbch/md-chr7m.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdbch/md-chr7t.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdbch/md-chr7v.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdbch/md-chr7y.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdbch/md-chr8c.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdbch/md-chr8t.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdbch/md-chree.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdbch/md-chri7m.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdbch/md-chri7t.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdbch/md-chri8c.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdbch/md-chri8t.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdbch/md-chrma.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdbch/md-chrmb.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdici/UtopiaStd-Regular.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdici/md-cib7m.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdici/md-cib7t.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdici/md-cib7v.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdici/md-cib7y.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdici/md-cib8c.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdici/md-cib8t.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdici/md-cibee.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdici/md-cibi7m.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdici/md-cibi7t.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdici/md-cibi8c.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdici/md-cibi8t.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdici/md-cibma.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdici/md-cibmb.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdici/md-cir7m.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdici/md-cir7t.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdici/md-cir7v.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdici/md-cir7y.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdici/md-cir8c.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdici/md-cir8t.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdici/md-ciree.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdici/md-ciri7m.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdici/md-ciri7t.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdici/md-ciri8c.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdici/md-ciri8t.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdici/md-cirma.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdici/md-cirmb.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdpgd/md-gdr7m.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdpgd/md-gdr7t.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdpgd/md-gdr7v.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdpgd/md-gdr7y.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdpgd/md-gdr8c.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdpgd/md-gdr8t.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdpgd/md-gdree.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdpgd/md-gdri7m.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdpgd/md-gdri7t.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdpgd/md-gdri8c.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdpgd/md-gdri8t.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdpgd/md-gdrma.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdpgd/md-gdrmb.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdpgd/md-gds7m.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdpgd/md-gds7t.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdpgd/md-gds7v.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdpgd/md-gds7y.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdpgd/md-gds8c.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdpgd/md-gds8t.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdpgd/md-gdsi7m.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdpgd/md-gdsi7t.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdpgd/md-gdsi8c.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdpgd/md-gdsi8t.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdpgd/md-gdsma.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdpgd/md-gdsmb.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdpgd/md-utrma.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdpus/md-usr7m.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdpus/md-usr7t.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdpus/md-usr7t5.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdpus/md-usr7t6.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdpus/md-usr7t7.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdpus/md-usr7t8.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdpus/md-usr7t9.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdpus/md-usr7v.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdpus/md-usr7y.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdpus/md-usr8c.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdpus/md-usr8t.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdpus/md-usree.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdpus/md-usri7m.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdpus/md-usri7t.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdpus/md-usri7t5.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdpus/md-usri7t6.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdpus/md-usri7t7.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdpus/md-usri7t8.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdpus/md-usri7t9.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdpus/md-usri8c.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdpus/md-usri8t.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdpus/md-usrma.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdpus/md-usrmb.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdpus/md-uss7m.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdpus/md-uss7t.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdpus/md-uss7v.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdpus/md-uss7y.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdpus/md-uss8c.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdpus/md-uss8t.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdpus/md-ussi7m.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdpus/md-ussi7t.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdpus/md-ussi8c.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdpus/md-ussi8t.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdpus/md-ussma.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdpus/md-ussmb.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdput/md-utb7m.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdput/md-utb7t.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdput/md-utb7v.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdput/md-utb7y.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdput/md-utb8c.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdput/md-utb8t.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdput/md-utbee.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdput/md-utbi7m.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdput/md-utbi7t.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdput/md-utbi8c.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdput/md-utbi8t.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdput/md-utbma.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdput/md-utbmb.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdput/md-utr7m.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdput/md-utr7t.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdput/md-utr7v.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdput/md-utr7y.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdput/md-utr8c.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdput/md-utr8t.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdput/md-utree.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdput/md-utri7m.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdput/md-utri7t.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdput/md-utri8c.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdput/md-utri8t.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdput/md-utrma.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdput/md-utrmb.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdugm/md-gmm7m.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdugm/md-gmm7t.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdugm/md-gmm7v.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdugm/md-gmm7y.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdugm/md-gmm8c.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdugm/md-gmm8t.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdugm/md-gmmi7m.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdugm/md-gmmi7t.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdugm/md-gmmi8c.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdugm/md-gmmi8t.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdugm/md-gmmma.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdugm/md-gmmmb.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdugm/md-gmr7m.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdugm/md-gmr7t.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdugm/md-gmr7v.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdugm/md-gmr7y.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdugm/md-gmr8c.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdugm/md-gmr8t.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdugm/md-gmree.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdugm/md-gmri7m.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdugm/md-gmri7t.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdugm/md-gmri8c.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdugm/md-gmri8t.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdugm/md-gmrma.pfb
+ texmf-dist/fonts/type1/public/mathdesign/mdugm/md-gmrmb.pfb
+ texmf-dist/fonts/vf/public/mathdesign/mdbch/mdbchb7m.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdbch/mdbchb7t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdbch/mdbchb7v.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdbch/mdbchb7y.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdbch/mdbchb8c.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdbch/mdbchb8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdbch/mdbchbc8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdbch/mdbchbfc8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdbch/mdbchbi7m.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdbch/mdbchbi7t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdbch/mdbchbi8c.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdbch/mdbchbi8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdbch/mdbchbifc8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdbch/mdbchbma.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdbch/mdbchbmb.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdbch/mdbchbo7t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdbch/mdbchbo8c.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdbch/mdbchbo8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdbch/mdbchbofc8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdbch/mdbchr7m.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdbch/mdbchr7t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdbch/mdbchr7v.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdbch/mdbchr7y.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdbch/mdbchr8c.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdbch/mdbchr8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdbch/mdbchrc8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdbch/mdbchrfc8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdbch/mdbchri7m.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdbch/mdbchri7t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdbch/mdbchri8c.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdbch/mdbchri8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdbch/mdbchrifc8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdbch/mdbchrma.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdbch/mdbchrmb.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdbch/mdbchro7t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdbch/mdbchro8c.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdbch/mdbchro8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdbch/mdbchrofc8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdgreek/mdgrbCb7m.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdgreek/mdgrbCbi7m.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdgreek/mdgrbCr7m.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdgreek/mdgrbCri7m.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdgreek/mdgrbb7m.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdgreek/mdgrbbi7m.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdgreek/mdgrbr7m.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdgreek/mdgrbri7m.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdgreek/mdgrdCb7m.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdgreek/mdgrdCbi7m.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdgreek/mdgrdCri7m.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdgreek/mdgrdb7m.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdgreek/mdgrdbi7m.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdgreek/mdgrdr7m.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdgreek/mdgrdrC7m.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdgreek/mdgrdri7m.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdici/mdicib7m.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdici/mdicib7t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdici/mdicib7v.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdici/mdicib7y.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdici/mdicib8c.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdici/mdicib8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdici/mdicibc8c.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdici/mdicibc8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdici/mdicibfc8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdici/mdicibi7m.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdici/mdicibi7t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdici/mdicibi8c.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdici/mdicibi8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdici/mdicibic8c.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdici/mdicibic8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdici/mdicibifc8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdici/mdicibiu7m.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdici/mdicibma.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdici/mdicibmb.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdici/mdicibui7m.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdici/mdicic8c.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdici/mdicic8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdici/mdicicc8c.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdici/mdicicc8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdici/mdicicfc8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdici/mdicici8c.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdici/mdicici8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdici/mdicicic8c.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdici/mdicicic8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdici/mdicicifc8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdici/mdicir7m.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdici/mdicir7t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdici/mdicir7v.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdici/mdicir7y.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdici/mdicir8c.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdici/mdicir8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdici/mdicirc8c.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdici/mdicirc8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdici/mdicirfc8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdici/mdiciri7m.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdici/mdiciri7t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdici/mdiciri8c.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdici/mdiciri8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdici/mdiciric8c.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdici/mdiciric8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdici/mdicirifc8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdici/mdiciriu7m.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdici/mdicirma.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdici/mdicirmb.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdici/mdicirui7m.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdici/mdxcib7y.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdici/mdxcib8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdici/mdxcibc8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdici/mdxcibi7y.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdici/mdxcibi8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdici/mdxcibic8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdici/mdxcic7y.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdici/mdxcic8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdici/mdxcicc8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdici/mdxcici7y.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdici/mdxcici8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdici/mdxcicic8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdici/mdxcir7y.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdici/mdxcir8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdici/mdxcirc8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdici/mdxciri7y.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdici/mdxciri8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdici/mdxciric8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpgd/mdpgdb8c.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpgd/mdpgdb8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpgd/mdpgdbc8c.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpgd/mdpgdbc8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpgd/mdpgdbfc8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpgd/mdpgdbi8c.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpgd/mdpgdbi8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpgd/mdpgdbic8c.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpgd/mdpgdbic8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpgd/mdpgdbifc8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpgd/mdpgdr7m.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpgd/mdpgdr7t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpgd/mdpgdr7v.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpgd/mdpgdr7y.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpgd/mdpgdr8c.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpgd/mdpgdr8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpgd/mdpgdrc8c.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpgd/mdpgdrc8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpgd/mdpgdrfc8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpgd/mdpgdri7m.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpgd/mdpgdri7t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpgd/mdpgdri8c.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpgd/mdpgdri8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpgd/mdpgdric8c.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpgd/mdpgdric8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpgd/mdpgdrifc8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpgd/mdpgdrma.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpgd/mdpgdrmb.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpgd/mdpgds7m.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpgd/mdpgds7t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpgd/mdpgds7v.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpgd/mdpgds7y.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpgd/mdpgds8c.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpgd/mdpgds8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpgd/mdpgdsc8c.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpgd/mdpgdsc8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpgd/mdpgdsfc8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpgd/mdpgdsi7m.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpgd/mdpgdsi7t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpgd/mdpgdsi8c.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpgd/mdpgdsi8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpgd/mdpgdsic8c.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpgd/mdpgdsic8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpgd/mdpgdsifc8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpgd/mdpgdsma.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpgd/mdpgdsmb.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpgd/mdxgdb7y.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpgd/mdxgdb8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpgd/mdxgdbc8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpgd/mdxgdbi7y.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpgd/mdxgdbi8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpgd/mdxgdbic8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpgd/mdxgdr7y.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpgd/mdxgdr8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpgd/mdxgdrc8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpgd/mdxgdri7y.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpgd/mdxgdri8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpgd/mdxgdric8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpgd/mdxgds7y.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpgd/mdxgds8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpgd/mdxgdsc8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpgd/mdxgdsi7y.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpgd/mdxgdsi8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpgd/mdxgdsic8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpus/mdpusb8c.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpus/mdpusb8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpus/mdpusbc8c.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpus/mdpusbc8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpus/mdpusbfc8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpus/mdpusbi8c.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpus/mdpusbi8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpus/mdpusbic8c.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpus/mdpusbic8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpus/mdpusbifc8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpus/mdpusr7m.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpus/mdpusr7t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpus/mdpusr7v.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpus/mdpusr7y.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpus/mdpusr8c.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpus/mdpusr8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpus/mdpusrc8c.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpus/mdpusrc8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpus/mdpusrfc8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpus/mdpusri7m.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpus/mdpusri7t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpus/mdpusri8c.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpus/mdpusri8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpus/mdpusric8c.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpus/mdpusric8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpus/mdpusrifc8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpus/mdpusrma.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpus/mdpusrmb.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpus/mdpuss7m.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpus/mdpuss7t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpus/mdpuss7v.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpus/mdpuss7y.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpus/mdpuss8c.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpus/mdpuss8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpus/mdpussc8c.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpus/mdpussc8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpus/mdpussfc8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpus/mdpussi7m.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpus/mdpussi7t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpus/mdpussi8c.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpus/mdpussi8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpus/mdpussic8c.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpus/mdpussic8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpus/mdpussifc8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpus/mdpussma.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpus/mdpussmb.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpus/mdxusb7y.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpus/mdxusb8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpus/mdxusbc8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpus/mdxusbi7y.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpus/mdxusbi8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpus/mdxusbic8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpus/mdxusr7y.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpus/mdxusr8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpus/mdxusrc8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpus/mdxusri7y.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpus/mdxusri8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpus/mdxusric8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpus/mdxuss7y.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpus/mdxuss8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpus/mdxussc8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpus/mdxussi7y.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpus/mdxussi8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdpus/mdxussic8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdput/mdputb7m.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdput/mdputb7t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdput/mdputb7v.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdput/mdputb7y.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdput/mdputb8c.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdput/mdputb8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdput/mdputbc8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdput/mdputbfc8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdput/mdputbi7m.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdput/mdputbi7t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdput/mdputbi8c.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdput/mdputbi8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdput/mdputbifc8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdput/mdputbma.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdput/mdputbmb.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdput/mdputbo7t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdput/mdputbo8c.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdput/mdputbo8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdput/mdputbofc8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdput/mdputr7m.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdput/mdputr7t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdput/mdputr7v.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdput/mdputr7y.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdput/mdputr8c.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdput/mdputr8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdput/mdputrc8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdput/mdputrfc8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdput/mdputri7m.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdput/mdputri7t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdput/mdputri8c.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdput/mdputri8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdput/mdputrifc8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdput/mdputrma.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdput/mdputrmb.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdput/mdputro7t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdput/mdputro8c.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdput/mdputro8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdput/mdputrofc8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdugm/mdugmm7m.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdugm/mdugmm7t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdugm/mdugmm7v.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdugm/mdugmm7y.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdugm/mdugmm8c.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdugm/mdugmm8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdugm/mdugmmfc8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdugm/mdugmmi7m.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdugm/mdugmmi7t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdugm/mdugmmi8c.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdugm/mdugmmi8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdugm/mdugmmifc8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdugm/mdugmmma.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdugm/mdugmmmb.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdugm/mdugmmo7t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdugm/mdugmmo8c.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdugm/mdugmmo8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdugm/mdugmmofc8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdugm/mdugmr7m.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdugm/mdugmr7t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdugm/mdugmr7v.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdugm/mdugmr7y.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdugm/mdugmr8c.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdugm/mdugmr8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdugm/mdugmrfc8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdugm/mdugmri7m.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdugm/mdugmri7t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdugm/mdugmri8c.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdugm/mdugmri8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdugm/mdugmrifc8t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdugm/mdugmrma.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdugm/mdugmrmb.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdugm/mdugmro7t.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdugm/mdugmro8c.vf
+ texmf-dist/fonts/vf/public/mathdesign/mdugm/mdugmro8t.vf
+ texmf-dist/fonts/vf/public/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
@@ -103518,6 +114622,36 @@ runfiles size=1288
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/mdici/mdamdici.fd
+ texmf-dist/tex/latex/mathdesign/mdici/mdbmdici.fd
+ texmf-dist/tex/latex/mathdesign/mdici/mdici.cfg
+ texmf-dist/tex/latex/mathdesign/mdici/mdici.sty
+ texmf-dist/tex/latex/mathdesign/mdici/omlmdici.fd
+ texmf-dist/tex/latex/mathdesign/mdici/omsmdici.fd
+ texmf-dist/tex/latex/mathdesign/mdici/omxmdici.fd
+ texmf-dist/tex/latex/mathdesign/mdici/ot1mdici.fd
+ texmf-dist/tex/latex/mathdesign/mdici/t1mdici.fd
+ texmf-dist/tex/latex/mathdesign/mdici/ts1mdici.fd
+ texmf-dist/tex/latex/mathdesign/mdpgd/mdamdpgd.fd
+ texmf-dist/tex/latex/mathdesign/mdpgd/mdbmdpgd.fd
+ texmf-dist/tex/latex/mathdesign/mdpgd/mdpgd.cfg
+ texmf-dist/tex/latex/mathdesign/mdpgd/mdpgd.sty
+ texmf-dist/tex/latex/mathdesign/mdpgd/omlmdpgd.fd
+ texmf-dist/tex/latex/mathdesign/mdpgd/omsmdpgd.fd
+ texmf-dist/tex/latex/mathdesign/mdpgd/omxmdpgd.fd
+ texmf-dist/tex/latex/mathdesign/mdpgd/ot1mdpgd.fd
+ texmf-dist/tex/latex/mathdesign/mdpgd/t1mdpgd.fd
+ texmf-dist/tex/latex/mathdesign/mdpgd/ts1mdpgd.fd
+ texmf-dist/tex/latex/mathdesign/mdpus/mdamdpus.fd
+ texmf-dist/tex/latex/mathdesign/mdpus/mdbmdpus.fd
+ texmf-dist/tex/latex/mathdesign/mdpus/mdpus.cfg
+ texmf-dist/tex/latex/mathdesign/mdpus/mdpus.sty
+ texmf-dist/tex/latex/mathdesign/mdpus/omlmdpus.fd
+ texmf-dist/tex/latex/mathdesign/mdpus/omsmdpus.fd
+ texmf-dist/tex/latex/mathdesign/mdpus/omxmdpus.fd
+ texmf-dist/tex/latex/mathdesign/mdpus/ot1mdpus.fd
+ texmf-dist/tex/latex/mathdesign/mdpus/t1mdpus.fd
+ texmf-dist/tex/latex/mathdesign/mdpus/ts1mdpus.fd
texmf-dist/tex/latex/mathdesign/mdput/mdamdput.fd
texmf-dist/tex/latex/mathdesign/mdput/mdbmdput.fd
texmf-dist/tex/latex/mathdesign/mdput/mdput.cfg
@@ -103527,7 +114661,6 @@ runfiles size=1288
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
@@ -103541,10 +114674,14 @@ runfiles size=1288
texmf-dist/tex/latex/mathdesign/mdugm/ot1mdugm.fd
texmf-dist/tex/latex/mathdesign/mdugm/t1mdugm.fd
texmf-dist/tex/latex/mathdesign/mdugm/ts1mdugm.fd
+ texmf-dist/tex/latex/mathdesign/omlmdgrb.fd
+ texmf-dist/tex/latex/mathdesign/omlmdgrbc.fd
+ texmf-dist/tex/latex/mathdesign/omlmdgrd.fd
+ texmf-dist/tex/latex/mathdesign/omlmdgrdc.fd
catalogue-ctan /fonts/mathdesign
-catalogue-date 2013-02-01 11:51:49 +0100
+catalogue-date 2014-05-14 16:12:10 +0200
catalogue-license gpl
-catalogue-version 2.25
+catalogue-version 2.31
name mathdots
category Package
@@ -103593,68 +114730,10 @@ srcfiles size=5
runfiles size=1
texmf-dist/tex/latex/mathexam/mathexam.sty
catalogue-ctan /macros/latex/contrib/mathexam
-catalogue-date 2012-07-06 13:09:55 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.00
-name mathmode
-category Package
-revision 20742
-catalogue voss-mathmode
-shortdesc A comprehensive review of mathematics in (La)TeX.
-longdesc The review includes: Standard LaTeX mathematics mode; AMSmath;
-longdesc TeX and mathematics; Other packages; Tuning math typesetting;
-longdesc Mathematics fonts; Special symbols; Examples; and Lists,
-longdesc bibliography and index.
-docfiles size=1624
- texmf-dist/doc/latex/mathmode/Changes
- texmf-dist/doc/latex/mathmode/Mathmode.bib
- texmf-dist/doc/latex/mathmode/Mathmode.ist
- texmf-dist/doc/latex/mathmode/Mathmode.ltx
- texmf-dist/doc/latex/mathmode/Mathmode.pdf details="The document itself"
- texmf-dist/doc/latex/mathmode/Mathmode.tex
- texmf-dist/doc/latex/mathmode/README details="Readme (build details)"
- texmf-dist/doc/latex/mathmode/images/EuScript.eps
- texmf-dist/doc/latex/mathmode/images/EuScript.pdf
- texmf-dist/doc/latex/mathmode/images/amsalign.eps
- texmf-dist/doc/latex/mathmode/images/amsalign.pdf
- texmf-dist/doc/latex/mathmode/images/cm-crop.eps
- texmf-dist/doc/latex/mathmode/images/cm-crop.pdf
- texmf-dist/doc/latex/mathmode/images/cmbright-crop.eps
- texmf-dist/doc/latex/mathmode/images/cmbright-crop.pdf
- texmf-dist/doc/latex/mathmode/images/colArray.eps
- texmf-dist/doc/latex/mathmode/images/colArray.pdf
- texmf-dist/doc/latex/mathmode/images/exscale.eps
- texmf-dist/doc/latex/mathmode/images/exscale.pdf
- texmf-dist/doc/latex/mathmode/images/family.eps
- texmf-dist/doc/latex/mathmode/images/family.pdf
- texmf-dist/doc/latex/mathmode/images/family0.eps
- texmf-dist/doc/latex/mathmode/images/family0.pdf
- texmf-dist/doc/latex/mathmode/images/family1.eps
- texmf-dist/doc/latex/mathmode/images/family1.pdf
- texmf-dist/doc/latex/mathmode/images/lm-crop.eps
- texmf-dist/doc/latex/mathmode/images/lm-crop.pdf
- texmf-dist/doc/latex/mathmode/images/minionpro-crop.eps
- texmf-dist/doc/latex/mathmode/images/minionpro-crop.pdf
- texmf-dist/doc/latex/mathmode/images/node.eps
- texmf-dist/doc/latex/mathmode/images/node.pdf
- texmf-dist/doc/latex/mathmode/images/pamath-crop.eps
- texmf-dist/doc/latex/mathmode/images/pamath-crop.pdf
- texmf-dist/doc/latex/mathmode/images/pazo-crop.eps
- texmf-dist/doc/latex/mathmode/images/pazo-crop.pdf
- texmf-dist/doc/latex/mathmode/images/styles.eps
- texmf-dist/doc/latex/mathmode/images/styles.pdf
- texmf-dist/doc/latex/mathmode/images/test-crop.pdf
- texmf-dist/doc/latex/mathmode/images/test.pdf
- texmf-dist/doc/latex/mathmode/images/test.tex
- texmf-dist/doc/latex/mathmode/runLaTeX
- texmf-dist/doc/latex/mathmode/runPDFLaTeX
- texmf-dist/doc/latex/mathmode/runVTeX
-catalogue-ctan /info/math/voss/mathmode
-catalogue-date 2012-09-15 14:37:35 +0200
-catalogue-license lppl
-catalogue-version 2.47
-
name mathpazo
category Package
revision 15878
@@ -103780,7 +114859,7 @@ runfiles size=41
texmf-dist/fonts/vf/public/mathpazo/zplmr7v.vf
texmf-dist/fonts/vf/public/mathpazo/zplmr7y.vf
catalogue-ctan /fonts/mathpazo
-catalogue-date 2012-02-14 16:20:27 +0100
+catalogue-date 2014-05-14 18:47:06 +0200
catalogue-license gpl
catalogue-version 1.003
@@ -103801,13 +114880,13 @@ docfiles size=94
runfiles size=11
texmf-dist/tex/xelatex/mathspec/mathspec.sty
catalogue-ctan /macros/xetex/latex/mathspec
-catalogue-date 2012-05-21 15:40:40 +0200
+catalogue-date 2014-05-14 18:47:06 +0200
catalogue-license lppl
catalogue-version 0.2
name mathspic
category Package
-revision 29845
+revision 31957
shortdesc A Perl filter program for use with PiCTeX.
longdesc MathsPIC(Perl) is a development of the earlier MathsPIC(DOS)
longdesc program, now implemented as a Perl script, being much more
@@ -103823,7 +114902,7 @@ longdesc and maths (advance, multiply, and divide)--in short--it takes
longdesc the pain out of PiCTeX. Both the original DOS version and the
longdesc new Perl version are available.
depend mathspic.ARCH
-docfiles size=1295
+docfiles size=1303
texmf-dist/doc/latex/mathspic/HELP.txt
texmf-dist/doc/latex/mathspic/MATHSPIC.BAT
texmf-dist/doc/latex/mathspic/README.txt
@@ -103831,12 +114910,13 @@ docfiles size=1295
texmf-dist/doc/latex/mathspic/mathsPICfigures.zip
texmf-dist/doc/latex/mathspic/mathsPICmanual.pdf
texmf-dist/doc/latex/mathspic/mathsPICmanual.zip
- texmf-dist/doc/latex/mathspic/mathspic.1
texmf-dist/doc/latex/mathspic/mathspic.lib
texmf-dist/doc/latex/mathspic/mathspic.sh
texmf-dist/doc/latex/mathspic/sourcecode113.html
texmf-dist/doc/latex/mathspic/sourcecode113.nw
texmf-dist/doc/latex/mathspic/sourcecode113.pdf
+ texmf-dist/doc/man/man1/mathspic.1
+ texmf-dist/doc/man/man1/mathspic.man1.pdf
runfiles size=33
texmf-dist/scripts/mathspic/mathspic.pl
texmf-dist/tex/latex/mathspic/mathspic.sty
@@ -103929,13 +115009,6 @@ shortdesc i386-solaris files of mathspic
binfiles arch=i386-solaris size=1
bin/i386-solaris/mathspic
-name mathspic.mips-irix
-category Package
-revision 29949
-shortdesc mips-irix files of mathspic
-binfiles arch=mips-irix size=1
- bin/mips-irix/mathspic
-
name mathspic.mipsel-linux
category Package
revision 29946
@@ -103971,6 +115044,13 @@ shortdesc win32 files of mathspic
binfiles arch=win32 size=1
bin/win32/mathspic.exe
+name mathspic.x86_64-cygwin
+category Package
+revision 33557
+shortdesc x86_64-cygwin files of mathspic
+binfiles arch=x86_64-cygwin size=1
+ bin/x86_64-cygwin/mathspic
+
name mathspic.x86_64-darwin
category Package
revision 23661
@@ -104043,22 +115123,22 @@ catalogue-license lppl
name mbenotes
category Package
-revision 27777
+revision 31813
shortdesc Notes in tables or images.
longdesc The package defines a command \tabnote, which stores notes for
longdesc later processing by the command \thetabnotes, and a
longdesc corresponding \imgnote for images. The package is derived from
longdesc mechanisms in the package endnotes.
-docfiles size=211
+docfiles size=87
texmf-dist/doc/latex/mbenotes/README details="Readme"
- texmf-dist/doc/latex/mbenotes/mbe.ps
texmf-dist/doc/latex/mbenotes/mbenotes.pdf details="Package documentation"
texmf-dist/doc/latex/mbenotes/mbenotes.tex
-runfiles size=13
+runfiles size=10
texmf-dist/tex/latex/mbenotes/mbenotes.sty
catalogue-ctan /macros/latex/contrib/mbenotes
-catalogue-date 2012-09-22 16:17:18 +0200
+catalogue-date 2014-04-07 01:03:43 +0200
catalogue-license lppl1.2
+catalogue-version 2
name mcaption
category Package
@@ -104128,14 +115208,14 @@ catalogue-version 1.6
name mciteplus
category Package
-revision 15878
+revision 31648
shortdesc Enhanced multiple citations.
longdesc The mciteplus LaTeX package is an enhanced reimplementation of
longdesc Thorsten Ohl's mcite package which provides support for the
longdesc grouping of multiple citations together as is often done in
longdesc physics journals. An extensive set of features provide for
longdesc other applications such as reference sublisting.
-docfiles size=149
+docfiles size=138
texmf-dist/doc/latex/mciteplus/README details="Readme"
texmf-dist/doc/latex/mciteplus/changelog.txt
texmf-dist/doc/latex/mciteplus/mciteplus_code.txt details="Details for modifying .bst code"
@@ -104148,21 +115228,21 @@ runfiles size=70
texmf-dist/bibtex/bst/mciteplus/apsrmpM.bst
texmf-dist/tex/latex/mciteplus/mciteplus.sty
catalogue-ctan /macros/latex/contrib/mciteplus
-catalogue-date 2012-05-10 16:56:05 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
-catalogue-version 1.1
+catalogue-version 1.2
name mdframed
category Package
-revision 29319
+revision 31075
shortdesc Framed environments that can split at page boundaries.
longdesc The package develops the facilities of framed in providing
longdesc breakable framed and coloured boxes. The user may instruct the
longdesc package to perform its operations using default LaTeX commands,
longdesc PStricks or TikZ.
-docfiles size=448
- texmf-dist/doc/latex/mdframed/README details="Readme"
- texmf-dist/doc/latex/mdframed/donald-duck.jpg
+docfiles size=470
+ texmf-dist/doc/latex/mdframed/README.txt
+ texmf-dist/doc/latex/mdframed/ctan-lion.png
texmf-dist/doc/latex/mdframed/mdframed-example-default.pdf
texmf-dist/doc/latex/mdframed/mdframed-example-default.tex
texmf-dist/doc/latex/mdframed/mdframed-example-pstricks.pdf
@@ -104172,12 +115252,12 @@ docfiles size=448
texmf-dist/doc/latex/mdframed/mdframed-example-tikz.pdf
texmf-dist/doc/latex/mdframed/mdframed-example-tikz.tex
texmf-dist/doc/latex/mdframed/mdframed.pdf details="Package documentation"
-srcfiles size=78
+srcfiles size=71
texmf-dist/source/latex/mdframed/Makefile
texmf-dist/source/latex/mdframed/mdframed.dtx
texmf-dist/source/latex/mdframed/mdframed.ins
texmf-dist/source/latex/mdframed/mdframedmake.bat
-runfiles size=57
+runfiles size=54
texmf-dist/tex/latex/mdframed/ltxmdf.cls
texmf-dist/tex/latex/mdframed/md-frame-0.mdf
texmf-dist/tex/latex/mdframed/md-frame-1.mdf
@@ -104185,9 +115265,9 @@ runfiles size=57
texmf-dist/tex/latex/mdframed/md-frame-3.mdf
texmf-dist/tex/latex/mdframed/mdframed.sty
catalogue-ctan /macros/latex/contrib/mdframed
-catalogue-date 2013-03-14 21:55:57 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
-catalogue-version 1.8
+catalogue-version 1.9b
name mdputu
category Package
@@ -104218,7 +115298,7 @@ runfiles size=29
texmf-dist/tex/latex/mdputu/ot1mdputu.fd
texmf-dist/tex/latex/mdputu/t1mdputu.fd
catalogue-ctan /fonts/mdputu
-catalogue-date 2012-10-04 12:39:52 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license other-free
catalogue-version 1.2
@@ -104337,7 +115417,7 @@ runfiles size=469
texmf-dist/fonts/type1/public/mdsymbol/MdSymbolF-Semibold.pfb
texmf-dist/tex/latex/mdsymbol/mdsymbol.sty
catalogue-ctan /fonts/mdsymbol
-catalogue-date 2012-11-29 15:59:01 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license ofl
catalogue-version 0.5
@@ -104345,13 +115425,13 @@ name mdwtools
category Package
revision 15878
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 'do after' command; - improved footnote
-longdesc support; - mathenv for various alignment in maths; - list
-longdesc handling; - mdwmath which adds some minor changes to LaTeX
-longdesc maths; - a rewrite of LaTeX's tabular and array environments; -
-longdesc verbatim handling; and - syntax diagrams.
+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 'do after' command; improved footnote support;
+longdesc mathenv for various alignment in maths; list handling; mdwmath
+longdesc which adds some minor changes to LaTeX maths; a rewrite of
+longdesc LaTeX's tabular and array environments; verbatim handling; and
+longdesc syntax diagrams.
docfiles size=514
texmf-dist/doc/latex/mdwtools/COPYING
texmf-dist/doc/latex/mdwtools/README details="Bundle readme"
@@ -104393,13 +115473,13 @@ runfiles size=31
texmf-dist/tex/latex/mdwtools/sverb.sty
texmf-dist/tex/latex/mdwtools/syntax.sty
catalogue-ctan /macros/latex/contrib/mdwtools
-catalogue-date 2012-05-28 12:27:21 +0200
+catalogue-date 2014-01-08 17:29:10 +0100
catalogue-license gpl
catalogue-version 1.05.4
name media9
category Package
-revision 29530
+revision 33290
shortdesc Multimedia inclusion package with Adobe Reader-9/X compatibility.
longdesc The package provides an interface to embed interactive Flash
longdesc (SWF) and 3D objects (Adobe U3D & PRC), as well as video and
@@ -104411,13 +115491,12 @@ longdesc Player supports the efficient H.264 codec for video
longdesc compression. The package is based on the RichMedia Annotation,
longdesc an Adobe addition to the PDF specification. It replaces the now
longdesc obsolete movie15 package.
-docfiles size=1041
+docfiles size=1050
texmf-dist/doc/latex/media9/ChangeLog
texmf-dist/doc/latex/media9/README details="Readme"
texmf-dist/doc/latex/media9/files/3dsystem.fig
texmf-dist/doc/latex/media9/files/3dsystem.pdf
texmf-dist/doc/latex/media9/files/3dsystem.tex
- texmf-dist/doc/latex/media9/files/bird.mp3
texmf-dist/doc/latex/media9/files/boutona.pdf
texmf-dist/doc/latex/media9/files/boutonb.pdf
texmf-dist/doc/latex/media9/files/boutonc.pdf
@@ -104426,49 +115505,59 @@ docfiles size=1041
texmf-dist/doc/latex/media9/files/boutonf.pdf
texmf-dist/doc/latex/media9/files/cube.asy
texmf-dist/doc/latex/media9/files/cube.mp4
+ texmf-dist/doc/latex/media9/files/cubeposter.png
texmf-dist/doc/latex/media9/files/dice.u3d
texmf-dist/doc/latex/media9/files/dice.vws
texmf-dist/doc/latex/media9/files/dice.wrl
texmf-dist/doc/latex/media9/files/epix.asy
texmf-dist/doc/latex/media9/files/epix.prc
+ texmf-dist/doc/latex/media9/files/epixposter.pdf
texmf-dist/doc/latex/media9/files/mailto.png
texmf-dist/doc/latex/media9/files/malte.js
texmf-dist/doc/latex/media9/files/malte.u3d
texmf-dist/doc/latex/media9/files/players/APlayer.mxml
+ texmf-dist/doc/latex/media9/files/players/APlayer9.mxml
texmf-dist/doc/latex/media9/files/players/BSD-License
texmf-dist/doc/latex/media9/files/players/SMPfixes.patch
texmf-dist/doc/latex/media9/files/players/StrobeMediaPlayback-license
texmf-dist/doc/latex/media9/files/players/VPlayer.mxml
+ texmf-dist/doc/latex/media9/files/players/VPlayer9.mxml
texmf-dist/doc/latex/media9/files/random.mp4
texmf-dist/doc/latex/media9/media9.pdf
texmf-dist/doc/latex/media9/media9.tex
-runfiles size=293
+runfiles size=419
texmf-dist/tex/latex/media9/javascript/3Dmenu.js
texmf-dist/tex/latex/media9/javascript/3Dspintool.js
texmf-dist/tex/latex/media9/javascript/animation.js
texmf-dist/tex/latex/media9/javascript/asylabels.js
texmf-dist/tex/latex/media9/media9.sty
texmf-dist/tex/latex/media9/players/APlayer.swf
+ texmf-dist/tex/latex/media9/players/APlayer9.swf
texmf-dist/tex/latex/media9/players/StrobeMediaPlayback.swf
texmf-dist/tex/latex/media9/players/VPlayer.swf
+ texmf-dist/tex/latex/media9/players/VPlayer9.swf
catalogue-ctan /macros/latex/contrib/media9
-catalogue-date 2013-03-28 18:13:03 +0100
+catalogue-date 2014-03-25 20:14:30 +0100
catalogue-license lppl1.3
+catalogue-version 0.43
name meetingmins
category Package
-revision 27806
+revision 31878
shortdesc Format written minutes of meetings.
longdesc The class allows formatting of meeting minutes using \section
longdesc commands (which provide hierarchical structure). An agenda can
longdesc also be produced for distribution prior to the meeting, with
longdesc user-selected portions suppressed from printing.
-docfiles size=116
+docfiles size=199
texmf-dist/doc/latex/meetingmins/README details="Readme"
texmf-dist/doc/latex/meetingmins/meetingmins.pdf details="Package documentation"
+ texmf-dist/doc/latex/meetingmins/samples/agenda.pdf
texmf-dist/doc/latex/meetingmins/samples/agenda.tex
+ texmf-dist/doc/latex/meetingmins/samples/chair.pdf
texmf-dist/doc/latex/meetingmins/samples/chair.tex
texmf-dist/doc/latex/meetingmins/samples/department.min
+ texmf-dist/doc/latex/meetingmins/samples/minutes.pdf
texmf-dist/doc/latex/meetingmins/samples/minutes.tex
srcfiles size=8
texmf-dist/source/latex/meetingmins/meetingmins.dtx
@@ -104476,13 +115565,13 @@ srcfiles size=8
runfiles size=2
texmf-dist/tex/latex/meetingmins/meetingmins.cls
catalogue-ctan /macros/latex/contrib/meetingmins
-catalogue-date 2012-09-24 22:36:26 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
-catalogue-version 1.5
+catalogue-version 1.6
name memdesign
category Package
-revision 30138
+revision 34157
shortdesc Notes on book design
longdesc "A Few Notes on Book Design" provides an introduction to the
longdesc business of book design. It is an extended version of what used
@@ -104490,13 +115579,13 @@ longdesc to be the first part of the memoir users' manual. Please note
longdesc that the compiled copy, supplied in the package, uses
longdesc commercial fonts; the README file contains instructions on how
longdesc to compile the document without these fonts.
-docfiles size=493
+docfiles size=494
texmf-dist/doc/fonts/memdesign/README details="Readme"
texmf-dist/doc/fonts/memdesign/memdesign.pdf details="The document itself"
texmf-dist/doc/fonts/memdesign/memdesign.tex
texmf-dist/doc/fonts/memdesign/memetc.bib
catalogue-ctan /info/memdesign
-catalogue-date 2013-04-27 01:17:44 +0200
+catalogue-date 2014-05-20 19:24:27 +0200
catalogue-license lppl1.3
name memexsupp
@@ -104514,13 +115603,13 @@ docfiles size=35
runfiles size=1
texmf-dist/tex/latex/memexsupp/memexsupp.sty
catalogue-ctan /macros/latex/contrib/memexsupp
-catalogue-date 2012-11-12 15:26:58 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 0.1
name memoir
category Package
-revision 30639
+revision 31044
shortdesc Typeset fiction, non-fiction and mathematical books.
longdesc The memoir class is for typesetting poetry, fiction, non-
longdesc fiction, and mathematical works. Permissible document 'base'
@@ -104575,9 +115664,9 @@ runfiles size=118
texmf-dist/tex/latex/memoir/memoir.cls
texmf-dist/tex/latex/memoir/mempatch.sty
catalogue-ctan /macros/latex/contrib/memoir
-catalogue-date 2013-05-22 17:25:30 +0200
+catalogue-date 2013-10-30 13:49:16 +0100
catalogue-license lppl
-catalogue-version 3.7
+catalogue-version 3.7b
name memory
category Package
@@ -104594,7 +115683,7 @@ srcfiles size=3
runfiles size=1
texmf-dist/tex/latex/memory/memory.sty
catalogue-ctan /macros/latex/contrib/memory
-catalogue-date 2013-05-27 13:53:30 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.2
@@ -104615,7 +115704,7 @@ srcfiles size=14
runfiles size=4
texmf-dist/tex/latex/mentis/mentis.cls
catalogue-ctan /macros/latex/contrib/mentis
-catalogue-date 2012-04-11 12:29:24 +0200
+catalogue-date 2013-10-30 13:49:16 +0100
catalogue-license lppl
catalogue-version 1.5
@@ -104640,15 +115729,15 @@ catalogue-version 0.994
name menukeys
category Package
-revision 30786
+revision 33151
shortdesc Format menu sequences, paths and keystrokes from lists.
longdesc The package allows easy input and formatting of menu sequences,
longdesc using menus set with commands such as \menu{Extras > Settings >
longdesc General}, paths using a command like
-longdesc \path{macros/latex/contrib/menukeys} and short cuts such aas
+longdesc \path{macros/latex/contrib/menukeys} and short cuts such as
longdesc \keys{\ctrl + C}. The output is highly configurable by
longdesc providing different styles and colour themes.
-docfiles size=126
+docfiles size=127
texmf-dist/doc/latex/menukeys/README details="Readme"
texmf-dist/doc/latex/menukeys/menukeys.pdf details="Package documentation"
srcfiles size=18
@@ -104657,12 +115746,249 @@ srcfiles size=18
runfiles size=7
texmf-dist/tex/latex/menukeys/menukeys.sty
catalogue-ctan /macros/latex/contrib/menukeys
-catalogue-date 2013-05-28 19:52:13 +0200
+catalogue-date 2014-03-10 08:48:40 +0100
catalogue-license lppl1.2
+catalogue-version 1.3
+
+name merriweather
+category Package
+revision 32161
+shortdesc Merriweather and MerriweatherSans fonts, with LaTeX support.
+longdesc Merriweather features a very large x height, slightly condensed
+longdesc letterforms, a mild diagonal stress, sturdy serifs and open
+longdesc forms. The Sans family closely harmonizes with the weights and
+longdesc styles of the serif family. There are four weights and italics
+longdesc for each.
+execute addMap merriweather.map
+docfiles size=37
+ texmf-dist/doc/fonts/merriweather/OFL.txt
+ texmf-dist/doc/fonts/merriweather/README details="Readme"
+ texmf-dist/doc/fonts/merriweather/merriweather-samples.pdf
+ texmf-dist/doc/fonts/merriweather/merriweather-samples.tex
+runfiles size=644
+ texmf-dist/fonts/enc/dvips/merriweather/mwth_5n6vkx.enc
+ texmf-dist/fonts/enc/dvips/merriweather/mwth_aynzzm.enc
+ texmf-dist/fonts/enc/dvips/merriweather/mwth_fmhdb5.enc
+ texmf-dist/fonts/enc/dvips/merriweather/mwth_ioeeie.enc
+ texmf-dist/fonts/enc/dvips/merriweather/mwth_oaf34p.enc
+ texmf-dist/fonts/enc/dvips/merriweather/mwth_oehznb.enc
+ texmf-dist/fonts/enc/dvips/merriweather/mwth_oorhm5.enc
+ texmf-dist/fonts/enc/dvips/merriweather/mwth_pyutxj.enc
+ texmf-dist/fonts/enc/dvips/merriweather/mwth_r5mufr.enc
+ texmf-dist/fonts/enc/dvips/merriweather/mwth_rheu2i.enc
+ texmf-dist/fonts/enc/dvips/merriweather/mwth_t226xz.enc
+ texmf-dist/fonts/enc/dvips/merriweather/mwth_v4a7hp.enc
+ texmf-dist/fonts/enc/dvips/merriweather/mwth_z4e4wk.enc
+ texmf-dist/fonts/map/dvips/merriweather/merriweather.map
+ texmf-dist/fonts/tfm/sorkin/merriweather/Merriweather-Bold-osf-ly1--base.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/Merriweather-Bold-osf-ly1.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/Merriweather-Bold-osf-ot1.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/Merriweather-Bold-osf-t1--base.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/Merriweather-Bold-osf-t1.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/Merriweather-Bold-osf-ts1--base.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/Merriweather-Bold-osf-ts1.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/Merriweather-BoldItalic-osf-ly1--base.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/Merriweather-BoldItalic-osf-ly1.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/Merriweather-BoldItalic-osf-ot1.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/Merriweather-BoldItalic-osf-t1--base.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/Merriweather-BoldItalic-osf-t1.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/Merriweather-BoldItalic-osf-ts1--base.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/Merriweather-BoldItalic-osf-ts1.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/Merriweather-Heavy-osf-ly1--base.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/Merriweather-Heavy-osf-ly1.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/Merriweather-Heavy-osf-ot1.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/Merriweather-Heavy-osf-t1--base.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/Merriweather-Heavy-osf-t1.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/Merriweather-Heavy-osf-ts1--base.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/Merriweather-Heavy-osf-ts1.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/Merriweather-HeavyItalic-osf-ly1--base.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/Merriweather-HeavyItalic-osf-ly1.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/Merriweather-HeavyItalic-osf-ot1.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/Merriweather-HeavyItalic-osf-t1--base.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/Merriweather-HeavyItalic-osf-t1.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/Merriweather-HeavyItalic-osf-ts1--base.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/Merriweather-HeavyItalic-osf-ts1.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/Merriweather-Italic-osf-ly1--base.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/Merriweather-Italic-osf-ly1.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/Merriweather-Italic-osf-ot1.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/Merriweather-Italic-osf-t1--base.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/Merriweather-Italic-osf-t1.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/Merriweather-Italic-osf-ts1--base.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/Merriweather-Italic-osf-ts1.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/Merriweather-Light-osf-ly1--base.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/Merriweather-Light-osf-ly1.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/Merriweather-Light-osf-ot1.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/Merriweather-Light-osf-t1--base.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/Merriweather-Light-osf-t1.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/Merriweather-Light-osf-ts1--base.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/Merriweather-Light-osf-ts1.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/Merriweather-LightItalic-osf-ly1--base.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/Merriweather-LightItalic-osf-ly1.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/Merriweather-LightItalic-osf-ot1.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/Merriweather-LightItalic-osf-t1--base.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/Merriweather-LightItalic-osf-t1.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/Merriweather-LightItalic-osf-ts1--base.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/Merriweather-LightItalic-osf-ts1.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/Merriweather-osf-ly1--base.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/Merriweather-osf-ly1.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/Merriweather-osf-ot1.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/Merriweather-osf-t1--base.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/Merriweather-osf-t1.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/Merriweather-osf-ts1--base.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/Merriweather-osf-ts1.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/MerriweatherSans-Bold-osf-ly1--base.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/MerriweatherSans-Bold-osf-ly1.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/MerriweatherSans-Bold-osf-ot1.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/MerriweatherSans-Bold-osf-t1--base.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/MerriweatherSans-Bold-osf-t1.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/MerriweatherSans-Bold-osf-ts1--base.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/MerriweatherSans-Bold-osf-ts1.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/MerriweatherSans-BoldItalic-osf-ly1--base.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/MerriweatherSans-BoldItalic-osf-ly1.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/MerriweatherSans-BoldItalic-osf-ot1.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/MerriweatherSans-BoldItalic-osf-t1--base.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/MerriweatherSans-BoldItalic-osf-t1.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/MerriweatherSans-BoldItalic-osf-ts1--base.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/MerriweatherSans-BoldItalic-osf-ts1.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/MerriweatherSans-ExtraBldItalic-osf-ly1--base.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/MerriweatherSans-ExtraBldItalic-osf-ly1.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/MerriweatherSans-ExtraBldItalic-osf-ot1.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/MerriweatherSans-ExtraBldItalic-osf-t1--base.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/MerriweatherSans-ExtraBldItalic-osf-t1.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/MerriweatherSans-ExtraBldItalic-osf-ts1--base.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/MerriweatherSans-ExtraBldItalic-osf-ts1.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/MerriweatherSans-ExtraBold-osf-ly1--base.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/MerriweatherSans-ExtraBold-osf-ly1.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/MerriweatherSans-ExtraBold-osf-ot1.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/MerriweatherSans-ExtraBold-osf-t1--base.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/MerriweatherSans-ExtraBold-osf-t1.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/MerriweatherSans-ExtraBold-osf-ts1--base.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/MerriweatherSans-ExtraBold-osf-ts1.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/MerriweatherSans-Italic-osf-ly1--base.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/MerriweatherSans-Italic-osf-ly1.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/MerriweatherSans-Italic-osf-ot1.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/MerriweatherSans-Italic-osf-t1--base.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/MerriweatherSans-Italic-osf-t1.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/MerriweatherSans-Italic-osf-ts1--base.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/MerriweatherSans-Italic-osf-ts1.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/MerriweatherSans-Light-osf-ly1--base.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/MerriweatherSans-Light-osf-ly1.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/MerriweatherSans-Light-osf-ot1.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/MerriweatherSans-Light-osf-t1--base.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/MerriweatherSans-Light-osf-t1.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/MerriweatherSans-Light-osf-ts1--base.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/MerriweatherSans-Light-osf-ts1.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/MerriweatherSans-LightItalic-osf-ly1--base.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/MerriweatherSans-LightItalic-osf-ly1.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/MerriweatherSans-LightItalic-osf-ot1.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/MerriweatherSans-LightItalic-osf-t1--base.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/MerriweatherSans-LightItalic-osf-t1.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/MerriweatherSans-LightItalic-osf-ts1--base.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/MerriweatherSans-LightItalic-osf-ts1.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/MerriweatherSans-Regular-osf-ly1--base.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/MerriweatherSans-Regular-osf-ly1.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/MerriweatherSans-Regular-osf-ot1.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/MerriweatherSans-Regular-osf-t1--base.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/MerriweatherSans-Regular-osf-t1.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/MerriweatherSans-Regular-osf-ts1--base.tfm
+ texmf-dist/fonts/tfm/sorkin/merriweather/MerriweatherSans-Regular-osf-ts1.tfm
+ texmf-dist/fonts/truetype/sorkin/merriweather/Merriweather-Bold.ttf
+ texmf-dist/fonts/truetype/sorkin/merriweather/Merriweather-BoldItalic.ttf
+ texmf-dist/fonts/truetype/sorkin/merriweather/Merriweather-Heavy.ttf
+ texmf-dist/fonts/truetype/sorkin/merriweather/Merriweather-HeavyItalic.ttf
+ texmf-dist/fonts/truetype/sorkin/merriweather/Merriweather-Italic.ttf
+ texmf-dist/fonts/truetype/sorkin/merriweather/Merriweather-Light.ttf
+ texmf-dist/fonts/truetype/sorkin/merriweather/Merriweather-LightItalic.ttf
+ texmf-dist/fonts/truetype/sorkin/merriweather/Merriweather.ttf
+ texmf-dist/fonts/truetype/sorkin/merriweather/MerriweatherSans-Bold.ttf
+ texmf-dist/fonts/truetype/sorkin/merriweather/MerriweatherSans-BoldItalic.ttf
+ texmf-dist/fonts/truetype/sorkin/merriweather/MerriweatherSans-ExtraBold.ttf
+ texmf-dist/fonts/truetype/sorkin/merriweather/MerriweatherSans-ExtraBoldItalic.ttf
+ texmf-dist/fonts/truetype/sorkin/merriweather/MerriweatherSans-Italic.ttf
+ texmf-dist/fonts/truetype/sorkin/merriweather/MerriweatherSans-Light.ttf
+ texmf-dist/fonts/truetype/sorkin/merriweather/MerriweatherSans-LightItalic.ttf
+ texmf-dist/fonts/truetype/sorkin/merriweather/MerriweatherSans-Regular.ttf
+ texmf-dist/fonts/type1/sorkin/merriweather/Merriweather-Bold.pfb
+ texmf-dist/fonts/type1/sorkin/merriweather/Merriweather-BoldItalic.pfb
+ texmf-dist/fonts/type1/sorkin/merriweather/Merriweather-Heavy.pfb
+ texmf-dist/fonts/type1/sorkin/merriweather/Merriweather-HeavyItalic.pfb
+ texmf-dist/fonts/type1/sorkin/merriweather/Merriweather-Italic.pfb
+ texmf-dist/fonts/type1/sorkin/merriweather/Merriweather-Light.pfb
+ texmf-dist/fonts/type1/sorkin/merriweather/Merriweather-LightItalic.pfb
+ texmf-dist/fonts/type1/sorkin/merriweather/Merriweather.pfb
+ texmf-dist/fonts/type1/sorkin/merriweather/MerriweatherSans-Bold.pfb
+ texmf-dist/fonts/type1/sorkin/merriweather/MerriweatherSans-BoldItalic.pfb
+ texmf-dist/fonts/type1/sorkin/merriweather/MerriweatherSans-ExtraBold.pfb
+ texmf-dist/fonts/type1/sorkin/merriweather/MerriweatherSans-ExtraBoldItalic.pfb
+ texmf-dist/fonts/type1/sorkin/merriweather/MerriweatherSans-Italic.pfb
+ texmf-dist/fonts/type1/sorkin/merriweather/MerriweatherSans-Light.pfb
+ texmf-dist/fonts/type1/sorkin/merriweather/MerriweatherSans-LightItalic.pfb
+ texmf-dist/fonts/type1/sorkin/merriweather/MerriweatherSans-Regular.pfb
+ texmf-dist/fonts/vf/sorkin/merriweather/Merriweather-Bold-osf-ly1.vf
+ texmf-dist/fonts/vf/sorkin/merriweather/Merriweather-Bold-osf-t1.vf
+ texmf-dist/fonts/vf/sorkin/merriweather/Merriweather-Bold-osf-ts1.vf
+ texmf-dist/fonts/vf/sorkin/merriweather/Merriweather-BoldItalic-osf-ly1.vf
+ texmf-dist/fonts/vf/sorkin/merriweather/Merriweather-BoldItalic-osf-t1.vf
+ texmf-dist/fonts/vf/sorkin/merriweather/Merriweather-BoldItalic-osf-ts1.vf
+ texmf-dist/fonts/vf/sorkin/merriweather/Merriweather-Heavy-osf-ly1.vf
+ texmf-dist/fonts/vf/sorkin/merriweather/Merriweather-Heavy-osf-t1.vf
+ texmf-dist/fonts/vf/sorkin/merriweather/Merriweather-Heavy-osf-ts1.vf
+ texmf-dist/fonts/vf/sorkin/merriweather/Merriweather-HeavyItalic-osf-ly1.vf
+ texmf-dist/fonts/vf/sorkin/merriweather/Merriweather-HeavyItalic-osf-t1.vf
+ texmf-dist/fonts/vf/sorkin/merriweather/Merriweather-HeavyItalic-osf-ts1.vf
+ texmf-dist/fonts/vf/sorkin/merriweather/Merriweather-Italic-osf-ly1.vf
+ texmf-dist/fonts/vf/sorkin/merriweather/Merriweather-Italic-osf-t1.vf
+ texmf-dist/fonts/vf/sorkin/merriweather/Merriweather-Italic-osf-ts1.vf
+ texmf-dist/fonts/vf/sorkin/merriweather/Merriweather-Light-osf-ly1.vf
+ texmf-dist/fonts/vf/sorkin/merriweather/Merriweather-Light-osf-t1.vf
+ texmf-dist/fonts/vf/sorkin/merriweather/Merriweather-Light-osf-ts1.vf
+ texmf-dist/fonts/vf/sorkin/merriweather/Merriweather-LightItalic-osf-ly1.vf
+ texmf-dist/fonts/vf/sorkin/merriweather/Merriweather-LightItalic-osf-t1.vf
+ texmf-dist/fonts/vf/sorkin/merriweather/Merriweather-LightItalic-osf-ts1.vf
+ texmf-dist/fonts/vf/sorkin/merriweather/Merriweather-osf-ly1.vf
+ texmf-dist/fonts/vf/sorkin/merriweather/Merriweather-osf-t1.vf
+ texmf-dist/fonts/vf/sorkin/merriweather/Merriweather-osf-ts1.vf
+ texmf-dist/fonts/vf/sorkin/merriweather/MerriweatherSans-Bold-osf-ly1.vf
+ texmf-dist/fonts/vf/sorkin/merriweather/MerriweatherSans-Bold-osf-t1.vf
+ texmf-dist/fonts/vf/sorkin/merriweather/MerriweatherSans-Bold-osf-ts1.vf
+ texmf-dist/fonts/vf/sorkin/merriweather/MerriweatherSans-BoldItalic-osf-ly1.vf
+ texmf-dist/fonts/vf/sorkin/merriweather/MerriweatherSans-BoldItalic-osf-t1.vf
+ texmf-dist/fonts/vf/sorkin/merriweather/MerriweatherSans-BoldItalic-osf-ts1.vf
+ texmf-dist/fonts/vf/sorkin/merriweather/MerriweatherSans-ExtraBldItalic-osf-ly1.vf
+ texmf-dist/fonts/vf/sorkin/merriweather/MerriweatherSans-ExtraBldItalic-osf-t1.vf
+ texmf-dist/fonts/vf/sorkin/merriweather/MerriweatherSans-ExtraBldItalic-osf-ts1.vf
+ texmf-dist/fonts/vf/sorkin/merriweather/MerriweatherSans-ExtraBold-osf-ly1.vf
+ texmf-dist/fonts/vf/sorkin/merriweather/MerriweatherSans-ExtraBold-osf-t1.vf
+ texmf-dist/fonts/vf/sorkin/merriweather/MerriweatherSans-ExtraBold-osf-ts1.vf
+ texmf-dist/fonts/vf/sorkin/merriweather/MerriweatherSans-Italic-osf-ly1.vf
+ texmf-dist/fonts/vf/sorkin/merriweather/MerriweatherSans-Italic-osf-t1.vf
+ texmf-dist/fonts/vf/sorkin/merriweather/MerriweatherSans-Italic-osf-ts1.vf
+ texmf-dist/fonts/vf/sorkin/merriweather/MerriweatherSans-Light-osf-ly1.vf
+ texmf-dist/fonts/vf/sorkin/merriweather/MerriweatherSans-Light-osf-t1.vf
+ texmf-dist/fonts/vf/sorkin/merriweather/MerriweatherSans-Light-osf-ts1.vf
+ texmf-dist/fonts/vf/sorkin/merriweather/MerriweatherSans-LightItalic-osf-ly1.vf
+ texmf-dist/fonts/vf/sorkin/merriweather/MerriweatherSans-LightItalic-osf-t1.vf
+ texmf-dist/fonts/vf/sorkin/merriweather/MerriweatherSans-LightItalic-osf-ts1.vf
+ texmf-dist/fonts/vf/sorkin/merriweather/MerriweatherSans-Regular-osf-ly1.vf
+ texmf-dist/fonts/vf/sorkin/merriweather/MerriweatherSans-Regular-osf-t1.vf
+ texmf-dist/fonts/vf/sorkin/merriweather/MerriweatherSans-Regular-osf-ts1.vf
+ texmf-dist/tex/latex/merriweather/LY1Merriweather-OsF.fd
+ texmf-dist/tex/latex/merriweather/LY1MerriweatherSans-OsF.fd
+ texmf-dist/tex/latex/merriweather/Merriweather.sty
+ texmf-dist/tex/latex/merriweather/OT1Merriweather-OsF.fd
+ texmf-dist/tex/latex/merriweather/OT1MerriweatherSans-OsF.fd
+ texmf-dist/tex/latex/merriweather/T1Merriweather-OsF.fd
+ texmf-dist/tex/latex/merriweather/T1MerriweatherSans-OsF.fd
+ texmf-dist/tex/latex/merriweather/TS1Merriweather-OsF.fd
+ texmf-dist/tex/latex/merriweather/TS1MerriweatherSans-OsF.fd
+ texmf-dist/tex/latex/merriweather/merriweather.sty
+catalogue-ctan /fonts/merriweather
+catalogue-date 2014-02-26 23:03:13 +0100
+catalogue-license ofl
name metafont
category Package
-revision 29764
+revision 33736
shortdesc A system for specifying fonts.
longdesc The program takes a semi-algorithmic specification of a font,
longdesc and produces a bitmap font (whose properties are defined by a
@@ -104702,9 +116028,9 @@ runfiles size=46
texmf-dist/metafont/misc/waits.mf
texmf-dist/metafont/misc/ztest.mf
catalogue-ctan /systems/knuth/dist/mf
-catalogue-date 2012-08-30 22:47:45 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license knuth
-catalogue-version 2.718281
+catalogue-version 2.7182818
name metafont-beginners
category Package
@@ -104723,25 +116049,25 @@ catalogue-license pd
name metafont.alpha-linux
category Package
-revision 29891
+revision 33553
shortdesc alpha-linux files of metafont
-binfiles arch=alpha-linux size=207
+binfiles arch=alpha-linux size=205
bin/alpha-linux/inimf
bin/alpha-linux/mf
bin/alpha-linux/mf-nowin
name metafont.amd64-freebsd
category Package
-revision 29874
+revision 33488
shortdesc amd64-freebsd files of metafont
-binfiles arch=amd64-freebsd size=165
+binfiles arch=amd64-freebsd size=164
bin/amd64-freebsd/inimf
bin/amd64-freebsd/mf
bin/amd64-freebsd/mf-nowin
name metafont.amd64-kfreebsd
category Package
-revision 30810
+revision 34100
shortdesc amd64-kfreebsd files of metafont
binfiles arch=amd64-kfreebsd size=166
bin/amd64-kfreebsd/inimf
@@ -104750,7 +116076,7 @@ binfiles arch=amd64-kfreebsd size=166
name metafont.amd64-netbsd
category Package
-revision 30660
+revision 33726
shortdesc amd64-netbsd files of metafont
binfiles arch=amd64-netbsd size=166
bin/amd64-netbsd/inimf
@@ -104759,7 +116085,7 @@ binfiles arch=amd64-netbsd size=166
name metafont.armel-linux
category Package
-revision 29888
+revision 33916
shortdesc armel-linux files of metafont
binfiles arch=armel-linux size=154
bin/armel-linux/inimf
@@ -104768,25 +116094,25 @@ binfiles arch=armel-linux size=154
name metafont.armhf-linux
category Package
-revision 30443
+revision 34125
shortdesc armhf-linux files of metafont
-binfiles arch=armhf-linux size=151
+binfiles arch=armhf-linux size=150
bin/armhf-linux/inimf
bin/armhf-linux/mf
bin/armhf-linux/mf-nowin
name metafont.i386-cygwin
category Package
-revision 30526
+revision 34161
shortdesc i386-cygwin files of metafont
-binfiles arch=i386-cygwin size=150
+binfiles arch=i386-cygwin size=168
bin/i386-cygwin/inimf
bin/i386-cygwin/mf-nowin.exe
bin/i386-cygwin/mf.exe
name metafont.i386-freebsd
category Package
-revision 29874
+revision 33488
shortdesc i386-freebsd files of metafont
binfiles arch=i386-freebsd size=155
bin/i386-freebsd/inimf
@@ -104795,7 +116121,7 @@ binfiles arch=i386-freebsd size=155
name metafont.i386-kfreebsd
category Package
-revision 30810
+revision 34100
shortdesc i386-kfreebsd files of metafont
binfiles arch=i386-kfreebsd size=164
bin/i386-kfreebsd/inimf
@@ -104804,16 +116130,16 @@ binfiles arch=i386-kfreebsd size=164
name metafont.i386-linux
category Package
-revision 30088
+revision 33479
shortdesc i386-linux files of metafont
-binfiles arch=i386-linux size=166
+binfiles arch=i386-linux size=176
bin/i386-linux/inimf
bin/i386-linux/mf
bin/i386-linux/mf-nowin
name metafont.i386-netbsd
category Package
-revision 30191
+revision 33562
shortdesc i386-netbsd files of metafont
binfiles arch=i386-netbsd size=148
bin/i386-netbsd/inimf
@@ -104822,70 +116148,70 @@ binfiles arch=i386-netbsd size=148
name metafont.i386-solaris
category Package
-revision 30112
+revision 34203
shortdesc i386-solaris files of metafont
-binfiles arch=i386-solaris size=206
+binfiles arch=i386-solaris size=204
bin/i386-solaris/inimf
bin/i386-solaris/mf
bin/i386-solaris/mf-nowin
-name metafont.mips-irix
-category Package
-revision 30131
-shortdesc mips-irix files of metafont
-binfiles arch=mips-irix size=338
- bin/mips-irix/inimf
- bin/mips-irix/mf
- bin/mips-irix/mf-nowin
-
name metafont.mipsel-linux
category Package
-revision 29995
+revision 34099
shortdesc mipsel-linux files of metafont
-binfiles arch=mipsel-linux size=212
+binfiles arch=mipsel-linux size=180
bin/mipsel-linux/inimf
bin/mipsel-linux/mf
bin/mipsel-linux/mf-nowin
name metafont.powerpc-linux
category Package
-revision 30114
+revision 34101
shortdesc powerpc-linux files of metafont
-binfiles arch=powerpc-linux size=178
+binfiles arch=powerpc-linux size=168
bin/powerpc-linux/inimf
bin/powerpc-linux/mf
bin/powerpc-linux/mf-nowin
name metafont.sparc-solaris
category Package
-revision 29877
+revision 33871
shortdesc sparc-solaris files of metafont
-binfiles arch=sparc-solaris size=178
+binfiles arch=sparc-solaris size=177
bin/sparc-solaris/inimf
bin/sparc-solaris/mf
bin/sparc-solaris/mf-nowin
name metafont.universal-darwin
category Package
-revision 30764
+revision 34201
shortdesc universal-darwin files of metafont
-binfiles arch=universal-darwin size=342
+binfiles arch=universal-darwin size=341
bin/universal-darwin/inimf
bin/universal-darwin/mf
bin/universal-darwin/mf-nowin
name metafont.win32
category Package
-revision 29816
+revision 33897
shortdesc win32 files of metafont
-binfiles arch=win32 size=108
+binfiles arch=win32 size=136
bin/win32/inimf.exe
bin/win32/mf-nowin.exe
bin/win32/mf.exe
+name metafont.x86_64-cygwin
+category Package
+revision 34161
+shortdesc x86_64-cygwin files of metafont
+binfiles arch=x86_64-cygwin size=167
+ bin/x86_64-cygwin/inimf
+ bin/x86_64-cygwin/mf-nowin.exe
+ bin/x86_64-cygwin/mf.exe
+
name metafont.x86_64-darwin
category Package
-revision 29879
+revision 34201
shortdesc x86_64-darwin files of metafont
binfiles arch=x86_64-darwin size=182
bin/x86_64-darwin/inimf
@@ -104894,7 +116220,7 @@ binfiles arch=x86_64-darwin size=182
name metafont.x86_64-linux
category Package
-revision 30204
+revision 33723
shortdesc x86_64-linux files of metafont
binfiles arch=x86_64-linux size=168
bin/x86_64-linux/inimf
@@ -104903,9 +116229,9 @@ binfiles arch=x86_64-linux size=168
name metafont.x86_64-solaris
category Package
-revision 30112
+revision 34203
shortdesc x86_64-solaris files of metafont
-binfiles arch=x86_64-solaris size=240
+binfiles arch=x86_64-solaris size=238
bin/x86_64-solaris/inimf
bin/x86_64-solaris/mf
bin/x86_64-solaris/mf-nowin
@@ -104935,7 +116261,7 @@ docfiles size=24
runfiles size=5
texmf-dist/metapost/metago/metago.mp
catalogue-ctan /graphics/metapost/contrib/macros/metago
-catalogue-date 2012-05-23 16:10:32 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 0.9
@@ -104957,7 +116283,7 @@ srcfiles size=7
runfiles size=2
texmf-dist/tex/latex/metalogo/metalogo.sty
catalogue-ctan /macros/latex/contrib/metalogo
-catalogue-date 2012-05-23 16:10:32 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 0.12
@@ -105031,7 +116357,7 @@ catalogue-version 0.91
name metapost
category Package
-revision 29764
+revision 34194
shortdesc A development of Metafont for creating graphics.
longdesc MetaPost uses a language based on that of Metafont to produce
longdesc precise technical illustrations. Its output is scalable
@@ -105039,7 +116365,7 @@ longdesc PostScript or SVG, rather than the bitmaps Metafont creates.
depend kpathsea
depend metapost.ARCH
execute addMap troff-updmap.map
-docfiles size=768
+docfiles size=792
texmf-dist/doc/man/man1/dvitomp.1
texmf-dist/doc/man/man1/dvitomp.man1.pdf
texmf-dist/doc/man/man1/mpost.1
@@ -105080,6 +116406,7 @@ docfiles size=768
texmf-dist/doc/metapost/base/source-manual/mpgraph.tex
texmf-dist/doc/metapost/base/source-manual/mplibapi.tex
texmf-dist/doc/metapost/base/source-manual/mpman-app-legacy.tex
+ texmf-dist/doc/metapost/base/source-manual/mpman-app-numbersystems.tex
texmf-dist/doc/metapost/base/source-manual/mpman-app-optab.tex
texmf-dist/doc/metapost/base/source-manual/mpman-app-refman.tex
texmf-dist/doc/metapost/base/source-manual/mpman-charts.mp
@@ -105199,9 +116526,9 @@ runfiles size=110
texmf-dist/tex/generic/metapost/mproof.tex
texmf-dist/tex/generic/metapost/mpsproof.tex
catalogue-ctan /graphics/metapost/base
-catalogue-date 2012-07-10 12:03:05 +0200
+catalogue-date 2013-06-20 18:08:19 +0200
catalogue-license lgpl
-catalogue-version 1.212
+catalogue-version 1.803
name metapost-examples
category Package
@@ -105225,190 +116552,190 @@ catalogue-license other-free
name metapost.alpha-linux
category Package
-revision 30799
+revision 33714
shortdesc alpha-linux files of metapost
-binfiles arch=alpha-linux size=506
+binfiles arch=alpha-linux size=540
bin/alpha-linux/dvitomp
bin/alpha-linux/mfplain
bin/alpha-linux/mpost
name metapost.amd64-freebsd
category Package
-revision 30648
+revision 33718
shortdesc amd64-freebsd files of metapost
-binfiles arch=amd64-freebsd size=419
+binfiles arch=amd64-freebsd size=448
bin/amd64-freebsd/dvitomp
bin/amd64-freebsd/mfplain
bin/amd64-freebsd/mpost
name metapost.amd64-kfreebsd
category Package
-revision 30655
+revision 33864
shortdesc amd64-kfreebsd files of metapost
-binfiles arch=amd64-kfreebsd size=444
+binfiles arch=amd64-kfreebsd size=476
bin/amd64-kfreebsd/dvitomp
bin/amd64-kfreebsd/mfplain
bin/amd64-kfreebsd/mpost
name metapost.amd64-netbsd
category Package
-revision 30660
+revision 33726
shortdesc amd64-netbsd files of metapost
-binfiles arch=amd64-netbsd size=436
+binfiles arch=amd64-netbsd size=468
bin/amd64-netbsd/dvitomp
bin/amd64-netbsd/mfplain
bin/amd64-netbsd/mpost
name metapost.armel-linux
category Package
-revision 30774
+revision 33916
shortdesc armel-linux files of metapost
-binfiles arch=armel-linux size=425
+binfiles arch=armel-linux size=454
bin/armel-linux/dvitomp
bin/armel-linux/mfplain
bin/armel-linux/mpost
name metapost.armhf-linux
category Package
-revision 30657
+revision 34125
shortdesc armhf-linux files of metapost
-binfiles arch=armhf-linux size=356
+binfiles arch=armhf-linux size=381
bin/armhf-linux/dvitomp
bin/armhf-linux/mfplain
bin/armhf-linux/mpost
name metapost.i386-cygwin
category Package
-revision 30730
+revision 34161
shortdesc i386-cygwin files of metapost
-binfiles arch=i386-cygwin size=424
+binfiles arch=i386-cygwin size=503
bin/i386-cygwin/dvitomp
bin/i386-cygwin/mfplain
bin/i386-cygwin/mpost.exe
name metapost.i386-freebsd
category Package
-revision 30648
+revision 33718
shortdesc i386-freebsd files of metapost
-binfiles arch=i386-freebsd size=405
+binfiles arch=i386-freebsd size=433
bin/i386-freebsd/dvitomp
bin/i386-freebsd/mfplain
bin/i386-freebsd/mpost
name metapost.i386-kfreebsd
category Package
-revision 30655
+revision 33864
shortdesc i386-kfreebsd files of metapost
-binfiles arch=i386-kfreebsd size=467
+binfiles arch=i386-kfreebsd size=499
bin/i386-kfreebsd/dvitomp
bin/i386-kfreebsd/mfplain
bin/i386-kfreebsd/mpost
name metapost.i386-linux
category Package
-revision 30634
+revision 33655
shortdesc i386-linux files of metapost
-binfiles arch=i386-linux size=1583
+binfiles arch=i386-linux size=528
bin/i386-linux/dvitomp
bin/i386-linux/mfplain
bin/i386-linux/mpost
name metapost.i386-netbsd
category Package
-revision 30767
+revision 33797
shortdesc i386-netbsd files of metapost
-binfiles arch=i386-netbsd size=403
+binfiles arch=i386-netbsd size=431
bin/i386-netbsd/dvitomp
bin/i386-netbsd/mfplain
bin/i386-netbsd/mpost
name metapost.i386-solaris
category Package
-revision 30809
+revision 34203
shortdesc i386-solaris files of metapost
-binfiles arch=i386-solaris size=828
+binfiles arch=i386-solaris size=906
bin/i386-solaris/dvitomp
bin/i386-solaris/mfplain
bin/i386-solaris/mpost
-name metapost.mips-irix
-category Package
-revision 29949
-shortdesc mips-irix files of metapost
-binfiles arch=mips-irix size=186
- bin/mips-irix/dvitomp
- bin/mips-irix/mfplain
- bin/mips-irix/mpost
-
name metapost.mipsel-linux
category Package
-revision 30802
+revision 33811
shortdesc mipsel-linux files of metapost
-binfiles arch=mipsel-linux size=538
+binfiles arch=mipsel-linux size=507
bin/mipsel-linux/dvitomp
bin/mipsel-linux/mfplain
bin/mipsel-linux/mpost
name metapost.powerpc-linux
category Package
-revision 30656
+revision 33889
shortdesc powerpc-linux files of metapost
-binfiles arch=powerpc-linux size=473
+binfiles arch=powerpc-linux size=457
bin/powerpc-linux/dvitomp
bin/powerpc-linux/mfplain
bin/powerpc-linux/mpost
name metapost.sparc-solaris
category Package
-revision 30731
+revision 33871
shortdesc sparc-solaris files of metapost
-binfiles arch=sparc-solaris size=439
+binfiles arch=sparc-solaris size=467
bin/sparc-solaris/dvitomp
bin/sparc-solaris/mfplain
bin/sparc-solaris/mpost
name metapost.universal-darwin
category Package
-revision 30764
+revision 34201
shortdesc universal-darwin files of metapost
-binfiles arch=universal-darwin size=856
+binfiles arch=universal-darwin size=915
bin/universal-darwin/dvitomp
bin/universal-darwin/mfplain
bin/universal-darwin/mpost
name metapost.win32
category Package
-revision 30631
+revision 34142
shortdesc win32 files of metapost
-binfiles arch=win32 size=398
+binfiles arch=win32 size=424
bin/win32/dvitomp.exe
bin/win32/mfplain.exe
bin/win32/mpost.dll
bin/win32/mpost.exe
+name metapost.x86_64-cygwin
+category Package
+revision 34161
+shortdesc x86_64-cygwin files of metapost
+binfiles arch=x86_64-cygwin size=483
+ bin/x86_64-cygwin/dvitomp
+ bin/x86_64-cygwin/mfplain
+ bin/x86_64-cygwin/mpost.exe
+
name metapost.x86_64-darwin
category Package
-revision 30654
+revision 34201
shortdesc x86_64-darwin files of metapost
-binfiles arch=x86_64-darwin size=458
+binfiles arch=x86_64-darwin size=489
bin/x86_64-darwin/dvitomp
bin/x86_64-darwin/mfplain
bin/x86_64-darwin/mpost
name metapost.x86_64-linux
category Package
-revision 30751
+revision 33723
shortdesc x86_64-linux files of metapost
-binfiles arch=x86_64-linux size=428
+binfiles arch=x86_64-linux size=478
bin/x86_64-linux/dvitomp
bin/x86_64-linux/mfplain
bin/x86_64-linux/mpost
name metapost.x86_64-solaris
category Package
-revision 30809
+revision 34203
shortdesc x86_64-solaris files of metapost
-binfiles arch=x86_64-solaris size=980
+binfiles arch=x86_64-solaris size=1092
bin/x86_64-solaris/dvitomp
bin/x86_64-solaris/mfplain
bin/x86_64-solaris/mpost
@@ -105544,7 +116871,7 @@ runfiles size=54
texmf-dist/metapost/metauml/util_positioning.mp
texmf-dist/metapost/metauml/util_shade.mp
catalogue-ctan /graphics/metapost/contrib/macros/metauml
-catalogue-date 2012-07-06 17:29:31 +0200
+catalogue-date 2013-10-11 11:29:19 +0200
catalogue-license gpl
catalogue-version 0.2.5
@@ -105566,7 +116893,7 @@ srcfiles size=9
runfiles size=3
texmf-dist/tex/latex/method/method.sty
catalogue-ctan /macros/latex/contrib/method
-catalogue-date 2012-04-21 20:20:06 +0200
+catalogue-date 2013-10-03 14:20:59 +0200
catalogue-license lppl
catalogue-version 2.0b
@@ -105604,10 +116931,33 @@ srcfiles size=31
runfiles size=15
texmf-dist/tex/latex/metre/metre.sty
catalogue-ctan /macros/latex/contrib/metre
-catalogue-date 2012-07-06 17:29:31 +0200
+catalogue-date 2013-09-09 19:04:00 +0200
catalogue-license lppl
catalogue-version 1.0
+name metrix
+category Package
+revision 31425
+shortdesc Typeset metric marks for Latin text.
+longdesc The package may be used to type the prosodics/metrics of
+longdesc (latin) verse; it provides macros to typeset the symbols
+longdesc standing alone, and in combination with symbols, giving
+longdesc automatic alignment. The package requires tikz (including the
+longdesc calc library, and the xparse package (thus also requiring the
+longdesc experimental LaTeX 3 environment).
+docfiles size=123
+ texmf-dist/doc/latex/metrix/README details="Readme"
+ texmf-dist/doc/latex/metrix/metrix.pdf details="Package documentation"
+srcfiles size=19
+ texmf-dist/source/latex/metrix/metrix.dtx
+ texmf-dist/source/latex/metrix/metrix.ins
+runfiles size=6
+ texmf-dist/tex/latex/metrix/metrix.sty
+catalogue-ctan /macros/latex/contrib/metrix
+catalogue-date 2014-02-26 23:03:13 +0100
+catalogue-license lppl1.3
+catalogue-version 1.0
+
name mex
category Package
revision 22650
@@ -105756,15 +117106,6 @@ binfiles arch=i386-solaris size=3
bin/i386-solaris/pdfmex
bin/i386-solaris/utf8mex
-name mex.mips-irix
-category Package
-revision 29975
-shortdesc mips-irix files of mex
-binfiles arch=mips-irix size=3
- bin/mips-irix/mex
- bin/mips-irix/pdfmex
- bin/mips-irix/utf8mex
-
name mex.mipsel-linux
category Package
revision 29946
@@ -105803,13 +117144,22 @@ binfiles arch=universal-darwin size=3
name mex.win32
category Package
-revision 8086
+revision 33512
shortdesc win32 files of mex
binfiles arch=win32 size=3
bin/win32/mex.exe
bin/win32/pdfmex.exe
bin/win32/utf8mex.exe
+name mex.x86_64-cygwin
+category Package
+revision 33557
+shortdesc x86_64-cygwin files of mex
+binfiles arch=x86_64-cygwin size=3
+ bin/x86_64-cygwin/mex
+ bin/x86_64-cygwin/pdfmex
+ bin/x86_64-cygwin/utf8mex
+
name mex.x86_64-darwin
category Package
revision 18441
@@ -105839,7 +117189,7 @@ binfiles arch=x86_64-solaris size=3
name mf2pt1
category Package
-revision 29725
+revision 33802
shortdesc Produce PostScript Type 1 fonts from Metafont source.
longdesc mf2pt1 facilitates producing PostScript Type 1 fonts from a
longdesc Metafont source file. It is not, as the name may imply, an
@@ -105850,7 +117200,7 @@ longdesc Type 1 output with more accurate control points than can be
longdesc reverse-engineered by TeXtrace, mftrace, and other programs
longdesc which convert bitmaps to outline fonts.
depend mf2pt1.ARCH
-docfiles size=73
+docfiles size=78
texmf-dist/doc/info/mf2pt1.info
texmf-dist/doc/support/mf2pt1/ChangeLog
texmf-dist/doc/support/mf2pt1/README details="Readme"
@@ -105860,9 +117210,9 @@ runfiles size=14
texmf-dist/metapost/mf2pt1/mf2pt1.mp
texmf-dist/scripts/mf2pt1/mf2pt1.pl
catalogue-ctan /support/mf2pt1
-catalogue-date 2012-08-25 10:58:21 +0200
+catalogue-date 2014-05-02 06:53:00 +0200
catalogue-license lppl
-catalogue-version 2.5
+catalogue-version 2.5a
name mf2pt1.alpha-linux
category Package
@@ -105948,13 +117298,6 @@ shortdesc i386-solaris files of mf2pt1
binfiles arch=i386-solaris size=1
bin/i386-solaris/mf2pt1
-name mf2pt1.mips-irix
-category Package
-revision 29949
-shortdesc mips-irix files of mf2pt1
-binfiles arch=mips-irix size=1
- bin/mips-irix/mf2pt1
-
name mf2pt1.mipsel-linux
category Package
revision 29946
@@ -105990,6 +117333,13 @@ shortdesc win32 files of mf2pt1
binfiles arch=win32 size=1
bin/win32/mf2pt1.exe
+name mf2pt1.x86_64-cygwin
+category Package
+revision 33557
+shortdesc x86_64-cygwin files of mf2pt1
+binfiles arch=x86_64-cygwin size=1
+ bin/x86_64-cygwin/mf2pt1
+
name mf2pt1.x86_64-darwin
category Package
revision 23406
@@ -106013,7 +117363,7 @@ binfiles arch=x86_64-solaris size=1
name mflogo
category Package
-revision 17487
+revision 32865
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
@@ -106027,7 +117377,7 @@ srcfiles size=9
texmf-dist/source/latex/mflogo/README
texmf-dist/source/latex/mflogo/mflogo.dtx
texmf-dist/source/latex/mflogo/mflogo.ins
-runfiles size=39
+runfiles size=37
texmf-dist/fonts/afm/hoekwater/mflogo/logo10.afm
texmf-dist/fonts/afm/hoekwater/mflogo/logo8.afm
texmf-dist/fonts/afm/hoekwater/mflogo/logo9.afm
@@ -106043,10 +117393,8 @@ runfiles size=39
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
@@ -106177,7 +117525,7 @@ runfiles size=3
texmf-dist/tex/latex/mfpic4ode/mfpic4ode.sty
texmf-dist/tex/latex/mfpic4ode/mfpic4ode.tex
catalogue-ctan /macros/latex/contrib/mfpic4ode
-catalogue-date 2012-06-24 11:08:44 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 0.4
@@ -106205,7 +117553,7 @@ catalogue-version 1.0a
name mfware
category TLCore
-revision 29764
+revision 33736
shortdesc Supporting tools for use with Metafont.
longdesc A collection of programs (as web source) for processing the
longdesc output of Metafont.
@@ -106223,20 +117571,19 @@ docfiles size=19
texmf-dist/doc/man/man1/pktogf.man1.pdf
texmf-dist/doc/man/man1/pktype.1
texmf-dist/doc/man/man1/pktype.man1.pdf
-runfiles size=7
+runfiles size=6
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
catalogue-ctan /systems/knuth/dist/mfware
-catalogue-date 2012-06-24 11:08:44 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license knuth
name mfware.alpha-linux
category TLCore
-revision 29891
+revision 33553
shortdesc alpha-linux files of mfware
binfiles arch=alpha-linux size=202
bin/alpha-linux/gftodvi
@@ -106248,7 +117595,7 @@ binfiles arch=alpha-linux size=202
name mfware.amd64-freebsd
category TLCore
-revision 29874
+revision 33488
shortdesc amd64-freebsd files of mfware
binfiles arch=amd64-freebsd size=150
bin/amd64-freebsd/gftodvi
@@ -106260,7 +117607,7 @@ binfiles arch=amd64-freebsd size=150
name mfware.amd64-kfreebsd
category TLCore
-revision 30655
+revision 33864
shortdesc amd64-kfreebsd files of mfware
binfiles arch=amd64-kfreebsd size=139
bin/amd64-kfreebsd/gftodvi
@@ -106272,7 +117619,7 @@ binfiles arch=amd64-kfreebsd size=139
name mfware.amd64-netbsd
category TLCore
-revision 30660
+revision 33726
shortdesc amd64-netbsd files of mfware
binfiles arch=amd64-netbsd size=146
bin/amd64-netbsd/gftodvi
@@ -106284,7 +117631,7 @@ binfiles arch=amd64-netbsd size=146
name mfware.armel-linux
category TLCore
-revision 29888
+revision 33916
shortdesc armel-linux files of mfware
binfiles arch=armel-linux size=125
bin/armel-linux/gftodvi
@@ -106296,7 +117643,7 @@ binfiles arch=armel-linux size=125
name mfware.armhf-linux
category TLCore
-revision 30443
+revision 34125
shortdesc armhf-linux files of mfware
binfiles arch=armhf-linux size=120
bin/armhf-linux/gftodvi
@@ -106308,9 +117655,9 @@ binfiles arch=armhf-linux size=120
name mfware.i386-cygwin
category TLCore
-revision 30526
+revision 34161
shortdesc i386-cygwin files of mfware
-binfiles arch=i386-cygwin size=133
+binfiles arch=i386-cygwin size=155
bin/i386-cygwin/gftodvi.exe
bin/i386-cygwin/gftopk.exe
bin/i386-cygwin/gftype.exe
@@ -106320,7 +117667,7 @@ binfiles arch=i386-cygwin size=133
name mfware.i386-freebsd
category TLCore
-revision 29874
+revision 33488
shortdesc i386-freebsd files of mfware
binfiles arch=i386-freebsd size=143
bin/i386-freebsd/gftodvi
@@ -106332,7 +117679,7 @@ binfiles arch=i386-freebsd size=143
name mfware.i386-kfreebsd
category TLCore
-revision 30440
+revision 33864
shortdesc i386-kfreebsd files of mfware
binfiles arch=i386-kfreebsd size=138
bin/i386-kfreebsd/gftodvi
@@ -106344,9 +117691,9 @@ binfiles arch=i386-kfreebsd size=138
name mfware.i386-linux
category TLCore
-revision 30088
+revision 33479
shortdesc i386-linux files of mfware
-binfiles arch=i386-linux size=139
+binfiles arch=i386-linux size=147
bin/i386-linux/gftodvi
bin/i386-linux/gftopk
bin/i386-linux/gftype
@@ -106356,7 +117703,7 @@ binfiles arch=i386-linux size=139
name mfware.i386-netbsd
category TLCore
-revision 30191
+revision 33562
shortdesc i386-netbsd files of mfware
binfiles arch=i386-netbsd size=131
bin/i386-netbsd/gftodvi
@@ -106368,9 +117715,9 @@ binfiles arch=i386-netbsd size=131
name mfware.i386-solaris
category TLCore
-revision 30112
+revision 34203
shortdesc i386-solaris files of mfware
-binfiles arch=i386-solaris size=171
+binfiles arch=i386-solaris size=167
bin/i386-solaris/gftodvi
bin/i386-solaris/gftopk
bin/i386-solaris/gftype
@@ -106378,23 +117725,11 @@ binfiles arch=i386-solaris size=171
bin/i386-solaris/pktogf
bin/i386-solaris/pktype
-name mfware.mips-irix
-category TLCore
-revision 30131
-shortdesc mips-irix files of mfware
-binfiles arch=mips-irix size=319
- bin/mips-irix/gftodvi
- bin/mips-irix/gftopk
- bin/mips-irix/gftype
- bin/mips-irix/mft
- bin/mips-irix/pktogf
- bin/mips-irix/pktype
-
name mfware.mipsel-linux
category TLCore
-revision 29995
+revision 33811
shortdesc mipsel-linux files of mfware
-binfiles arch=mipsel-linux size=175
+binfiles arch=mipsel-linux size=141
bin/mipsel-linux/gftodvi
bin/mipsel-linux/gftopk
bin/mipsel-linux/gftype
@@ -106404,9 +117739,9 @@ binfiles arch=mipsel-linux size=175
name mfware.powerpc-linux
category TLCore
-revision 30114
+revision 33889
shortdesc powerpc-linux files of mfware
-binfiles arch=powerpc-linux size=143
+binfiles arch=powerpc-linux size=135
bin/powerpc-linux/gftodvi
bin/powerpc-linux/gftopk
bin/powerpc-linux/gftype
@@ -106416,9 +117751,9 @@ binfiles arch=powerpc-linux size=143
name mfware.sparc-solaris
category TLCore
-revision 29877
+revision 33871
shortdesc sparc-solaris files of mfware
-binfiles arch=sparc-solaris size=156
+binfiles arch=sparc-solaris size=153
bin/sparc-solaris/gftodvi
bin/sparc-solaris/gftopk
bin/sparc-solaris/gftype
@@ -106428,7 +117763,7 @@ binfiles arch=sparc-solaris size=156
name mfware.universal-darwin
category TLCore
-revision 30764
+revision 34201
shortdesc universal-darwin files of mfware
binfiles arch=universal-darwin size=298
bin/universal-darwin/gftodvi
@@ -106440,9 +117775,9 @@ binfiles arch=universal-darwin size=298
name mfware.win32
category TLCore
-revision 29816
+revision 33897
shortdesc win32 files of mfware
-binfiles arch=win32 size=37
+binfiles arch=win32 size=45
bin/win32/gftodvi.exe
bin/win32/gftopk.exe
bin/win32/gftype.exe
@@ -106450,9 +117785,21 @@ binfiles arch=win32 size=37
bin/win32/pktogf.exe
bin/win32/pktype.exe
+name mfware.x86_64-cygwin
+category TLCore
+revision 34161
+shortdesc x86_64-cygwin files of mfware
+binfiles arch=x86_64-cygwin size=147
+ bin/x86_64-cygwin/gftodvi.exe
+ bin/x86_64-cygwin/gftopk.exe
+ bin/x86_64-cygwin/gftype.exe
+ bin/x86_64-cygwin/mft.exe
+ bin/x86_64-cygwin/pktogf.exe
+ bin/x86_64-cygwin/pktype.exe
+
name mfware.x86_64-darwin
category TLCore
-revision 29879
+revision 34201
shortdesc x86_64-darwin files of mfware
binfiles arch=x86_64-darwin size=159
bin/x86_64-darwin/gftodvi
@@ -106464,7 +117811,7 @@ binfiles arch=x86_64-darwin size=159
name mfware.x86_64-linux
category TLCore
-revision 30204
+revision 33723
shortdesc x86_64-linux files of mfware
binfiles arch=x86_64-linux size=139
bin/x86_64-linux/gftodvi
@@ -106476,9 +117823,9 @@ binfiles arch=x86_64-linux size=139
name mfware.x86_64-solaris
category TLCore
-revision 30112
+revision 34203
shortdesc x86_64-solaris files of mfware
-binfiles arch=x86_64-solaris size=198
+binfiles arch=x86_64-solaris size=193
bin/x86_64-solaris/gftodvi
bin/x86_64-solaris/gftopk
bin/x86_64-solaris/gftype
@@ -106488,14 +117835,14 @@ binfiles arch=x86_64-solaris size=198
name mh
category Package
-revision 29420
+revision 34240
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: breqn, empheq,
-longdesc flexisym, mathstyle and mathtools, mhsetup, The empheq package
+longdesc flexisym, mathstyle, mathtools and mhsetup, The empheq package
longdesc is a visual markup extension of amsmath. Empheq allows
longdesc sophisticated boxing and other marking of multi-line maths
longdesc displays, and fixes problems with the way that the ntheorem
@@ -106509,7 +117856,7 @@ longdesc including permitting automatic line-breaking within displayed
longdesc equations. (Breqn uses the mathstyle package to keep track of
longdesc the current maths typesetting style, something that raw TeX
longdesc hides from the programmer.)
-docfiles size=517
+docfiles size=520
texmf-dist/doc/latex/mh/README details="Readme"
texmf-dist/doc/latex/mh/breqn-technotes.pdf details="Technical notes -- breqn"
texmf-dist/doc/latex/mh/breqn.pdf details="Package documentation -- breqn"
@@ -106518,7 +117865,7 @@ docfiles size=517
texmf-dist/doc/latex/mh/mathstyle.pdf details="Package documentation -- mathstyle"
texmf-dist/doc/latex/mh/mathtools.pdf details="Package documentation -- mathtools"
texmf-dist/doc/latex/mh/mhsetup.pdf details="Package documentation -- mhsetup"
-srcfiles size=170
+srcfiles size=172
texmf-dist/source/latex/mh/breqn-technotes.tex
texmf-dist/source/latex/mh/breqn.dtx
texmf-dist/source/latex/mh/empheq.dtx
@@ -106538,31 +117885,34 @@ runfiles size=64
texmf-dist/tex/latex/mh/mhsetup.sty
texmf-dist/tex/latex/mh/msabm.sym
catalogue-ctan /macros/latex/contrib/mh
-catalogue-date 2013-03-17 00:29:52 +0100
+catalogue-date 2014-05-21 17:07:52 +0200
catalogue-license lppl1.3
name mhchem
category Package
-revision 23334
+revision 33314
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=74
- texmf-dist/doc/latex/mhchem/legal.txt
+longdesc The bundle provides three packages: The mhchem package provides
+longdesc commands for typesetting chemical molecular formulae and
+longdesc equations. The hpstatement package provides commands for the
+longdesc official hazard statements and precautionary statements (H and
+longdesc P statements) that are used to label chemicals. The rsphrase
+longdesc package provides commands for the official Risk and Safety (R
+longdesc and S) Phrases that are used to label chemicals. The package
+longdesc requires the expl3 bundle.
+docfiles size=69
+ texmf-dist/doc/latex/mhchem/README details="Readme"
+ texmf-dist/doc/latex/mhchem/lppl-1-3c.txt
+ texmf-dist/doc/latex/mhchem/manifest.txt
texmf-dist/doc/latex/mhchem/mhchem.pdf details="Package documentation"
-runfiles size=55
+ texmf-dist/doc/latex/mhchem/mhchem.tex
+runfiles size=69
+ texmf-dist/tex/latex/mhchem/hpstatement.sty
texmf-dist/tex/latex/mhchem/mhchem.sty
texmf-dist/tex/latex/mhchem/rsphrase.sty
catalogue-ctan /macros/latex/contrib/mhchem
-catalogue-date 2011-09-27 20:18:06 +0200
-catalogue-license lppl
-catalogue-version 3.11
+catalogue-date 2014-03-28 07:32:42 +0100
+catalogue-license lppl1.3
name mhequ
category Package
@@ -106644,7 +117994,7 @@ runfiles size=102
texmf-dist/tex/latex/microtype/mt-ugm.cfg
texmf-dist/tex/latex/microtype/mt-zpeu.cfg
catalogue-ctan /macros/latex/contrib/microtype
-catalogue-date 2013-05-26 21:18:14 +0200
+catalogue-date 2013-09-30 14:43:32 +0200
catalogue-license lppl
catalogue-version 2.5a
@@ -106656,7 +118006,7 @@ docfiles size=451
texmf-dist/doc/latex/microtype-de/microtype-DE.dtx
texmf-dist/doc/latex/microtype-de/microtype-DE.pdf details="The document itself"
catalogue-ctan /info/translations/microtype/de
-catalogue-date 2012-02-22 12:31:25 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 2.4
@@ -106664,12 +118014,12 @@ name midnight
category Package
revision 15878
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.
+longdesc Included are: quire: making booklets, etc.; gloss: vertically
+longdesc align words in consecutive sentences; loop: a looping
+longdesc construct; dolines: 'meta'-macros to separate arguments by
+longdesc newlines; labels: address labels and bulk mail letters;
+longdesc styledef: selectively input part of a file; and border: borders
+longdesc around boxes.
docfiles size=122
texmf-dist/doc/generic/midnight/README details="Package Readme"
texmf-dist/doc/generic/midnight/border.doc
@@ -106689,7 +118039,7 @@ runfiles size=17
texmf-dist/tex/generic/midnight/quire.tex
texmf-dist/tex/generic/midnight/styledef.tex
catalogue-ctan /macros/generic/midnight
-catalogue-date 2012-05-28 15:41:52 +0200
+catalogue-date 2014-01-08 17:29:10 +0100
catalogue-license other-free
name midpage
@@ -106782,13 +118132,13 @@ catalogue-version 1.2
name minibox
category Package
-revision 30083
+revision 30914
shortdesc A simple type of box for LaTeX.
longdesc This small package provides a convenient input syntax for boxes
longdesc that don't break their text over lines automatically, but do
longdesc allow manual line breaks. The boxes shrink to the natural width
longdesc of the longest line they contain.
-docfiles size=42
+docfiles size=70
texmf-dist/doc/latex/minibox/README details="Readme"
texmf-dist/doc/latex/minibox/minibox.pdf details="Package documentation"
srcfiles size=3
@@ -106797,13 +118147,13 @@ srcfiles size=3
runfiles size=1
texmf-dist/tex/latex/minibox/minibox.sty
catalogue-ctan /macros/latex/contrib/minibox
-catalogue-date 2013-04-21 12:55:17 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
-catalogue-version 0.2
+catalogue-version 0.2a
name minifp
category Package
-revision 29037
+revision 32559
shortdesc Fixed-point real computations to 8 decimals.
longdesc The package provides basic arithmetic operations to 8 decimal
longdesc places for plain TeX or LaTeX. Results are exact when they fit
@@ -106813,21 +118163,21 @@ longdesc sqrt, exp, powers and angles. These are also exact when
longdesc theoretically possible and are otherwise accurate to at least 7
longdesc decimal places. In addition, the package provides a stack-based
longdesc programing environment.
-docfiles size=112
+docfiles size=116
texmf-dist/doc/generic/minifp/README details="Readme"
texmf-dist/doc/generic/minifp/minifp.pdf
texmf-dist/doc/generic/minifp/test1.tex
texmf-dist/doc/generic/minifp/test2.tex
-srcfiles size=40
+srcfiles size=42
texmf-dist/source/generic/minifp/minifp.dtx
texmf-dist/source/generic/minifp/minifp.ins
-runfiles size=12
+runfiles size=13
texmf-dist/tex/generic/minifp/mfpextra.tex
texmf-dist/tex/generic/minifp/minifp.sty
catalogue-ctan /macros/generic/minifp
-catalogue-date 2013-02-06 11:22:03 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
-catalogue-version 0.92
+catalogue-version 0.96
name minipage-marginpar
category Package
@@ -107694,6 +119044,29 @@ catalogue-date 2012-12-03 16:53:09 +0100
catalogue-license lppl
catalogue-version 60
+name minorrevision
+category Package
+revision 32165
+shortdesc Quote and refer to a manuscript for minor revisions.
+longdesc The package supports those who publish articles in peer-
+longdesc reviewed journals. In the final stages of the review process,
+longdesc the authors typically have to provide an additional document
+longdesc (such as a letter to the editors), in which they provide a list
+longdesc of modifications that they made to the manuscript. The package
+longdesc automatically provides line numbers and quotations from the
+longdesc manuscript, for this letter. The package loads the package
+longdesc lineno, so (in effect) shares lineno's incompatibilities.
+docfiles size=44
+ texmf-dist/doc/latex/minorrevision/README details="Readme"
+ texmf-dist/doc/latex/minorrevision/minorrevision.pdf details="Package documentation"
+ texmf-dist/doc/latex/minorrevision/minorrevision.tex
+runfiles size=1
+ texmf-dist/tex/latex/minorrevision/minorrevision.sty
+catalogue-ctan /macros/latex/contrib/minorrevision
+catalogue-date 2014-02-26 23:03:13 +0100
+catalogue-license lppl1.2
+catalogue-version 1.1
+
name minted
category Package
revision 24002
@@ -107712,23 +119085,593 @@ srcfiles size=12
runfiles size=3
texmf-dist/tex/latex/minted/minted.sty
catalogue-ctan /macros/latex/contrib/minted
-catalogue-date 2012-06-24 14:49:23 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.7
+name mintspirit
+category Package
+revision 32069
+shortdesc LaTeX support for MintSpirit font families.
+longdesc The package provides LaTeX, pdfLaTeX, XeLaTeX and LuaLaTeX
+longdesc support for the MintSpirit and MintSpiritNo2 families of fonts,
+longdesc designed by Hirwen Harendal. MintSpirit was originally designed
+longdesc for use as a system font on a Linux Mint system. The No. 2
+longdesc variant provides more conventional shapes for some glyphs.
+execute addMap mintspirit.map
+docfiles size=84
+ texmf-dist/doc/fonts/mintspirit/MintSpirit-Cat.pdf
+ texmf-dist/doc/fonts/mintspirit/OFL.txt
+ texmf-dist/doc/fonts/mintspirit/README details="Readme"
+ texmf-dist/doc/fonts/mintspirit/mintspirit-samples.pdf
+ texmf-dist/doc/fonts/mintspirit/mintspirit-samples.tex
+ texmf-dist/doc/fonts/mintspirit/mintspirit2-samples.pdf
+ texmf-dist/doc/fonts/mintspirit/mintspirit2-samples.tex
+runfiles size=1255
+ texmf-dist/fonts/enc/dvips/mintspirit/mntsprt2_24uybq.enc
+ texmf-dist/fonts/enc/dvips/mintspirit/mntsprt2_2dxuba.enc
+ texmf-dist/fonts/enc/dvips/mintspirit/mntsprt2_3vy5j3.enc
+ texmf-dist/fonts/enc/dvips/mintspirit/mntsprt2_5cazkt.enc
+ texmf-dist/fonts/enc/dvips/mintspirit/mntsprt2_63vcua.enc
+ texmf-dist/fonts/enc/dvips/mintspirit/mntsprt2_6x4rw3.enc
+ texmf-dist/fonts/enc/dvips/mintspirit/mntsprt2_7ayy44.enc
+ texmf-dist/fonts/enc/dvips/mintspirit/mntsprt2_7u5374.enc
+ texmf-dist/fonts/enc/dvips/mintspirit/mntsprt2_amdskp.enc
+ texmf-dist/fonts/enc/dvips/mintspirit/mntsprt2_biiinc.enc
+ texmf-dist/fonts/enc/dvips/mintspirit/mntsprt2_bkoczj.enc
+ texmf-dist/fonts/enc/dvips/mintspirit/mntsprt2_dnk3mn.enc
+ texmf-dist/fonts/enc/dvips/mintspirit/mntsprt2_eex3ia.enc
+ texmf-dist/fonts/enc/dvips/mintspirit/mntsprt2_eqihrw.enc
+ texmf-dist/fonts/enc/dvips/mintspirit/mntsprt2_eqrkmo.enc
+ texmf-dist/fonts/enc/dvips/mintspirit/mntsprt2_fizmng.enc
+ texmf-dist/fonts/enc/dvips/mintspirit/mntsprt2_fm3wlu.enc
+ texmf-dist/fonts/enc/dvips/mintspirit/mntsprt2_j4bodc.enc
+ texmf-dist/fonts/enc/dvips/mintspirit/mntsprt2_k4fv75.enc
+ texmf-dist/fonts/enc/dvips/mintspirit/mntsprt2_l3e5vj.enc
+ texmf-dist/fonts/enc/dvips/mintspirit/mntsprt2_lm7mhw.enc
+ texmf-dist/fonts/enc/dvips/mintspirit/mntsprt2_lwraz3.enc
+ texmf-dist/fonts/enc/dvips/mintspirit/mntsprt2_me5dp6.enc
+ texmf-dist/fonts/enc/dvips/mintspirit/mntsprt2_oe76kg.enc
+ texmf-dist/fonts/enc/dvips/mintspirit/mntsprt2_ref42g.enc
+ texmf-dist/fonts/enc/dvips/mintspirit/mntsprt2_s7rd6p.enc
+ texmf-dist/fonts/enc/dvips/mintspirit/mntsprt2_taixll.enc
+ texmf-dist/fonts/enc/dvips/mintspirit/mntsprt2_tmtdfz.enc
+ texmf-dist/fonts/enc/dvips/mintspirit/mntsprt2_ywkmiw.enc
+ texmf-dist/fonts/enc/dvips/mintspirit/mntsprt_2isll4.enc
+ texmf-dist/fonts/enc/dvips/mintspirit/mntsprt_3sm7wd.enc
+ texmf-dist/fonts/enc/dvips/mintspirit/mntsprt_3y5hmb.enc
+ texmf-dist/fonts/enc/dvips/mintspirit/mntsprt_5lbatd.enc
+ texmf-dist/fonts/enc/dvips/mintspirit/mntsprt_5yvi6n.enc
+ texmf-dist/fonts/enc/dvips/mintspirit/mntsprt_675dmr.enc
+ texmf-dist/fonts/enc/dvips/mintspirit/mntsprt_7enqs3.enc
+ texmf-dist/fonts/enc/dvips/mintspirit/mntsprt_bjjcsi.enc
+ texmf-dist/fonts/enc/dvips/mintspirit/mntsprt_f4utek.enc
+ texmf-dist/fonts/enc/dvips/mintspirit/mntsprt_gcdgcc.enc
+ texmf-dist/fonts/enc/dvips/mintspirit/mntsprt_gdx47l.enc
+ texmf-dist/fonts/enc/dvips/mintspirit/mntsprt_girsvq.enc
+ texmf-dist/fonts/enc/dvips/mintspirit/mntsprt_gr6qqq.enc
+ texmf-dist/fonts/enc/dvips/mintspirit/mntsprt_imdxi4.enc
+ texmf-dist/fonts/enc/dvips/mintspirit/mntsprt_lvhuc6.enc
+ texmf-dist/fonts/enc/dvips/mintspirit/mntsprt_lzc2o4.enc
+ texmf-dist/fonts/enc/dvips/mintspirit/mntsprt_oj7rfe.enc
+ texmf-dist/fonts/enc/dvips/mintspirit/mntsprt_opresw.enc
+ texmf-dist/fonts/enc/dvips/mintspirit/mntsprt_pulfbi.enc
+ texmf-dist/fonts/enc/dvips/mintspirit/mntsprt_swumq4.enc
+ texmf-dist/fonts/enc/dvips/mintspirit/mntsprt_v6lq4b.enc
+ texmf-dist/fonts/enc/dvips/mintspirit/mntsprt_wk34ig.enc
+ texmf-dist/fonts/enc/dvips/mintspirit/mntsprt_y4xqha.enc
+ texmf-dist/fonts/enc/dvips/mintspirit/mntsprt_zt2pqo.enc
+ texmf-dist/fonts/map/dvips/mintspirit/mintspirit.map
+ texmf-dist/fonts/opentype/arkandis/mintspirit/MintSpirit-Bold.otf
+ texmf-dist/fonts/opentype/arkandis/mintspirit/MintSpirit-BoldItalic.otf
+ texmf-dist/fonts/opentype/arkandis/mintspirit/MintSpirit-Italic.otf
+ texmf-dist/fonts/opentype/arkandis/mintspirit/MintSpirit-Regular.otf
+ texmf-dist/fonts/opentype/arkandis/mintspirit/MintSpiritNo2-Bold.otf
+ texmf-dist/fonts/opentype/arkandis/mintspirit/MintSpiritNo2-BoldItalic.otf
+ texmf-dist/fonts/opentype/arkandis/mintspirit/MintSpiritNo2-Italic.otf
+ texmf-dist/fonts/opentype/arkandis/mintspirit/MintSpiritNo2-Regular.otf
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-inf-ly1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-inf-ly1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-inf-ot1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-inf-t1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-inf-t1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-lf-ly1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-lf-ot1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-lf-t1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-lf-ts1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-osf-ly1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-osf-ly1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-osf-ot1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-osf-t1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-osf-t1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-osf-ts1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-osf-ts1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-sup-ly1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-sup-ly1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-sup-ot1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-sup-t1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-sup-t1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-tlf-ly1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-tlf-ly1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-tlf-ot1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-tlf-t1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-tlf-t1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-tlf-ts1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-tlf-ts1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-tosf-ly1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-tosf-ly1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-tosf-ot1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-tosf-t1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-tosf-t1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-tosf-ts1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Bold-tosf-ts1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-inf-ly1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-inf-ly1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-inf-ot1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-inf-t1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-inf-t1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-lf-ly1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-lf-ot1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-lf-t1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-lf-ts1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-osf-ly1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-osf-ly1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-osf-ot1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-osf-t1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-osf-t1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-osf-ts1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-osf-ts1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-sup-ly1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-sup-ly1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-sup-ot1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-sup-t1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-sup-t1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-tlf-ly1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-tlf-ly1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-tlf-ot1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-tlf-t1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-tlf-t1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-tlf-ts1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-tlf-ts1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-tosf-ly1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-tosf-ly1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-tosf-ot1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-tosf-t1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-tosf-t1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-tosf-ts1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-BoldItalic-tosf-ts1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-inf-ly1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-inf-ly1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-inf-ot1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-inf-t1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-inf-t1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-lf-ly1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-lf-ot1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-lf-t1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-lf-ts1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-osf-ly1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-osf-ly1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-osf-ot1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-osf-t1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-osf-t1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-osf-ts1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-osf-ts1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-sup-ly1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-sup-ly1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-sup-ot1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-sup-t1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-sup-t1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-tlf-ly1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-tlf-ly1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-tlf-ot1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-tlf-t1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-tlf-t1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-tlf-ts1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-tlf-ts1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-tosf-ly1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-tosf-ly1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-tosf-ot1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-tosf-t1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-tosf-t1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-tosf-ts1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Italic-tosf-ts1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-inf-ly1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-inf-ly1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-inf-ot1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-inf-t1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-inf-t1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-lf-ly1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-lf-ot1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-lf-t1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-lf-ts1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-osf-ly1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-osf-ly1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-osf-ot1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-osf-t1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-osf-t1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-osf-ts1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-osf-ts1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-sup-ly1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-sup-ly1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-sup-ot1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-sup-t1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-sup-t1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-tlf-ly1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-tlf-ly1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-tlf-ot1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-tlf-t1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-tlf-t1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-tlf-ts1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-tlf-ts1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-tosf-ly1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-tosf-ly1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-tosf-ot1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-tosf-t1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-tosf-t1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-tosf-ts1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpirit-Regular-tosf-ts1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-inf-ly1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-inf-ly1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-inf-ot1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-inf-t1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-inf-t1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-lf-ly1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-lf-ot1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-lf-t1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-lf-ts1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-osf-ly1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-osf-ly1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-osf-ot1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-osf-t1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-osf-t1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-osf-ts1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-osf-ts1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-sup-ly1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-sup-ly1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-sup-ot1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-sup-t1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-sup-t1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-tlf-ly1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-tlf-ly1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-tlf-ot1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-tlf-t1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-tlf-t1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-tlf-ts1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-tlf-ts1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-tosf-ly1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-tosf-ly1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-tosf-ot1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-tosf-t1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-tosf-t1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-tosf-ts1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Bold-tosf-ts1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-inf-ly1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-inf-ly1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-inf-ot1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-inf-t1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-inf-t1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-lf-ly1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-lf-ot1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-lf-t1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-lf-ts1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-osf-ly1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-osf-ly1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-osf-ot1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-osf-t1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-osf-t1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-osf-ts1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-osf-ts1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-sup-ly1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-sup-ly1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-sup-ot1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-sup-t1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-sup-t1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-tlf-ly1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-tlf-ly1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-tlf-ot1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-tlf-t1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-tlf-t1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-tlf-ts1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-tlf-ts1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-tosf-ly1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-tosf-ly1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-tosf-ot1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-tosf-t1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-tosf-t1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-tosf-ts1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-BoldItalic-tosf-ts1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-inf-ly1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-inf-ly1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-inf-ot1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-inf-t1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-inf-t1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-lf-ly1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-lf-ot1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-lf-t1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-lf-ts1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-osf-ly1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-osf-ly1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-osf-ot1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-osf-t1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-osf-t1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-osf-ts1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-osf-ts1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-sup-ly1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-sup-ly1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-sup-ot1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-sup-t1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-sup-t1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-tlf-ly1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-tlf-ly1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-tlf-ot1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-tlf-t1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-tlf-t1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-tlf-ts1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-tlf-ts1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-tosf-ly1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-tosf-ly1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-tosf-ot1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-tosf-t1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-tosf-t1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-tosf-ts1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Italic-tosf-ts1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-inf-ly1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-inf-ly1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-inf-ot1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-inf-t1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-inf-t1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-lf-ly1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-lf-ot1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-lf-t1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-lf-ts1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-osf-ly1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-osf-ly1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-osf-ot1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-osf-t1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-osf-t1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-osf-ts1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-osf-ts1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-sup-ly1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-sup-ly1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-sup-ot1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-sup-t1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-sup-t1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-tlf-ly1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-tlf-ly1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-tlf-ot1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-tlf-t1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-tlf-t1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-tlf-ts1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-tlf-ts1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-tosf-ly1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-tosf-ly1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-tosf-ot1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-tosf-t1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-tosf-t1.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-tosf-ts1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/mintspirit/MintSpiritNo2-Regular-tosf-ts1.tfm
+ texmf-dist/fonts/type1/arkandis/mintspirit/MintSpirit-Bold.pfb
+ texmf-dist/fonts/type1/arkandis/mintspirit/MintSpirit-BoldItalic.pfb
+ texmf-dist/fonts/type1/arkandis/mintspirit/MintSpirit-Italic.pfb
+ texmf-dist/fonts/type1/arkandis/mintspirit/MintSpirit-Regular.pfb
+ texmf-dist/fonts/type1/arkandis/mintspirit/MintSpiritNo2-Bold.pfb
+ texmf-dist/fonts/type1/arkandis/mintspirit/MintSpiritNo2-BoldItalic.pfb
+ texmf-dist/fonts/type1/arkandis/mintspirit/MintSpiritNo2-Italic.pfb
+ texmf-dist/fonts/type1/arkandis/mintspirit/MintSpiritNo2-Regular.pfb
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpirit-Bold-inf-ly1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpirit-Bold-inf-t1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpirit-Bold-lf-ly1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpirit-Bold-lf-t1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpirit-Bold-lf-ts1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpirit-Bold-osf-ly1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpirit-Bold-osf-t1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpirit-Bold-osf-ts1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpirit-Bold-sup-ly1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpirit-Bold-sup-t1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpirit-Bold-tlf-ly1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpirit-Bold-tlf-t1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpirit-Bold-tlf-ts1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpirit-Bold-tosf-ly1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpirit-Bold-tosf-t1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpirit-Bold-tosf-ts1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpirit-BoldItalic-inf-ly1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpirit-BoldItalic-inf-t1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpirit-BoldItalic-lf-ly1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpirit-BoldItalic-lf-t1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpirit-BoldItalic-lf-ts1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpirit-BoldItalic-osf-ly1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpirit-BoldItalic-osf-t1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpirit-BoldItalic-osf-ts1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpirit-BoldItalic-sup-ly1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpirit-BoldItalic-sup-t1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpirit-BoldItalic-tlf-ly1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpirit-BoldItalic-tlf-t1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpirit-BoldItalic-tlf-ts1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpirit-BoldItalic-tosf-ly1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpirit-BoldItalic-tosf-t1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpirit-BoldItalic-tosf-ts1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpirit-Italic-inf-ly1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpirit-Italic-inf-t1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpirit-Italic-lf-ly1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpirit-Italic-lf-t1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpirit-Italic-lf-ts1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpirit-Italic-osf-ly1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpirit-Italic-osf-t1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpirit-Italic-osf-ts1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpirit-Italic-sup-ly1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpirit-Italic-sup-t1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpirit-Italic-tlf-ly1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpirit-Italic-tlf-t1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpirit-Italic-tlf-ts1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpirit-Italic-tosf-ly1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpirit-Italic-tosf-t1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpirit-Italic-tosf-ts1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpirit-Regular-inf-ly1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpirit-Regular-inf-t1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpirit-Regular-lf-ly1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpirit-Regular-lf-t1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpirit-Regular-lf-ts1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpirit-Regular-osf-ly1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpirit-Regular-osf-t1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpirit-Regular-osf-ts1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpirit-Regular-sup-ly1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpirit-Regular-sup-t1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpirit-Regular-tlf-ly1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpirit-Regular-tlf-t1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpirit-Regular-tlf-ts1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpirit-Regular-tosf-ly1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpirit-Regular-tosf-t1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpirit-Regular-tosf-ts1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Bold-inf-ly1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Bold-inf-t1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Bold-lf-ly1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Bold-lf-t1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Bold-lf-ts1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Bold-osf-ly1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Bold-osf-t1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Bold-osf-ts1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Bold-sup-ly1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Bold-sup-t1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Bold-tlf-ly1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Bold-tlf-t1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Bold-tlf-ts1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Bold-tosf-ly1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Bold-tosf-t1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Bold-tosf-ts1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpiritNo2-BoldItalic-inf-ly1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpiritNo2-BoldItalic-inf-t1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpiritNo2-BoldItalic-lf-ly1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpiritNo2-BoldItalic-lf-t1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpiritNo2-BoldItalic-lf-ts1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpiritNo2-BoldItalic-osf-ly1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpiritNo2-BoldItalic-osf-t1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpiritNo2-BoldItalic-osf-ts1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpiritNo2-BoldItalic-sup-ly1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpiritNo2-BoldItalic-sup-t1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpiritNo2-BoldItalic-tlf-ly1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpiritNo2-BoldItalic-tlf-t1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpiritNo2-BoldItalic-tlf-ts1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpiritNo2-BoldItalic-tosf-ly1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpiritNo2-BoldItalic-tosf-t1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpiritNo2-BoldItalic-tosf-ts1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Italic-inf-ly1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Italic-inf-t1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Italic-lf-ly1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Italic-lf-t1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Italic-lf-ts1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Italic-osf-ly1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Italic-osf-t1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Italic-osf-ts1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Italic-sup-ly1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Italic-sup-t1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Italic-tlf-ly1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Italic-tlf-t1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Italic-tlf-ts1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Italic-tosf-ly1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Italic-tosf-t1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Italic-tosf-ts1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Regular-inf-ly1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Regular-inf-t1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Regular-lf-ly1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Regular-lf-t1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Regular-lf-ts1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Regular-osf-ly1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Regular-osf-t1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Regular-osf-ts1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Regular-sup-ly1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Regular-sup-t1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Regular-tlf-ly1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Regular-tlf-t1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Regular-tlf-ts1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Regular-tosf-ly1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Regular-tosf-t1.vf
+ texmf-dist/fonts/vf/arkandis/mintspirit/MintSpiritNo2-Regular-tosf-ts1.vf
+ texmf-dist/tex/latex/mintspirit/LY1MintSpirit-Inf.fd
+ texmf-dist/tex/latex/mintspirit/LY1MintSpirit-LF.fd
+ texmf-dist/tex/latex/mintspirit/LY1MintSpirit-OsF.fd
+ texmf-dist/tex/latex/mintspirit/LY1MintSpirit-Sup.fd
+ texmf-dist/tex/latex/mintspirit/LY1MintSpirit-TLF.fd
+ texmf-dist/tex/latex/mintspirit/LY1MintSpirit-TOsF.fd
+ texmf-dist/tex/latex/mintspirit/LY1MintSpiritNoTwo-Inf.fd
+ texmf-dist/tex/latex/mintspirit/LY1MintSpiritNoTwo-LF.fd
+ texmf-dist/tex/latex/mintspirit/LY1MintSpiritNoTwo-OsF.fd
+ texmf-dist/tex/latex/mintspirit/LY1MintSpiritNoTwo-Sup.fd
+ texmf-dist/tex/latex/mintspirit/LY1MintSpiritNoTwo-TLF.fd
+ texmf-dist/tex/latex/mintspirit/LY1MintSpiritNoTwo-TOsF.fd
+ texmf-dist/tex/latex/mintspirit/OT1MintSpirit-Inf.fd
+ texmf-dist/tex/latex/mintspirit/OT1MintSpirit-LF.fd
+ texmf-dist/tex/latex/mintspirit/OT1MintSpirit-OsF.fd
+ texmf-dist/tex/latex/mintspirit/OT1MintSpirit-Sup.fd
+ texmf-dist/tex/latex/mintspirit/OT1MintSpirit-TLF.fd
+ texmf-dist/tex/latex/mintspirit/OT1MintSpirit-TOsF.fd
+ texmf-dist/tex/latex/mintspirit/OT1MintSpiritNoTwo-Inf.fd
+ texmf-dist/tex/latex/mintspirit/OT1MintSpiritNoTwo-LF.fd
+ texmf-dist/tex/latex/mintspirit/OT1MintSpiritNoTwo-OsF.fd
+ texmf-dist/tex/latex/mintspirit/OT1MintSpiritNoTwo-Sup.fd
+ texmf-dist/tex/latex/mintspirit/OT1MintSpiritNoTwo-TLF.fd
+ texmf-dist/tex/latex/mintspirit/OT1MintSpiritNoTwo-TOsF.fd
+ texmf-dist/tex/latex/mintspirit/T1MintSpirit-Inf.fd
+ texmf-dist/tex/latex/mintspirit/T1MintSpirit-LF.fd
+ texmf-dist/tex/latex/mintspirit/T1MintSpirit-OsF.fd
+ texmf-dist/tex/latex/mintspirit/T1MintSpirit-Sup.fd
+ texmf-dist/tex/latex/mintspirit/T1MintSpirit-TLF.fd
+ texmf-dist/tex/latex/mintspirit/T1MintSpirit-TOsF.fd
+ texmf-dist/tex/latex/mintspirit/T1MintSpiritNoTwo-Inf.fd
+ texmf-dist/tex/latex/mintspirit/T1MintSpiritNoTwo-LF.fd
+ texmf-dist/tex/latex/mintspirit/T1MintSpiritNoTwo-OsF.fd
+ texmf-dist/tex/latex/mintspirit/T1MintSpiritNoTwo-Sup.fd
+ texmf-dist/tex/latex/mintspirit/T1MintSpiritNoTwo-TLF.fd
+ texmf-dist/tex/latex/mintspirit/T1MintSpiritNoTwo-TOsF.fd
+ texmf-dist/tex/latex/mintspirit/TS1MintSpirit-LF.fd
+ texmf-dist/tex/latex/mintspirit/TS1MintSpirit-OsF.fd
+ texmf-dist/tex/latex/mintspirit/TS1MintSpirit-TLF.fd
+ texmf-dist/tex/latex/mintspirit/TS1MintSpirit-TOsF.fd
+ texmf-dist/tex/latex/mintspirit/TS1MintSpiritNoTwo-LF.fd
+ texmf-dist/tex/latex/mintspirit/TS1MintSpiritNoTwo-OsF.fd
+ texmf-dist/tex/latex/mintspirit/TS1MintSpiritNoTwo-TLF.fd
+ texmf-dist/tex/latex/mintspirit/TS1MintSpiritNoTwo-TOsF.fd
+ texmf-dist/tex/latex/mintspirit/mintspirit.sty
+ texmf-dist/tex/latex/mintspirit/mintspirit2.sty
+catalogue-ctan /fonts/mintspirit
+catalogue-date 2014-02-26 23:03:13 +0100
+catalogue-license ofl
+
name minutes
category Package
revision 16350
shortdesc Typeset the 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: support
-longdesc for the calendar package); - Different versions ('secret
-longdesc parts'); and - Macros for votes and decisions (list of
-longdesc decisions). Support for minutes in German, Dutch and English is
-longdesc provided.
+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: support
+longdesc for the calendar package); Different versions ('secret parts');
+longdesc and Macros for votes and decisions (list of decisions). Support
+longdesc for minutes in German, Dutch and English is provided.
docfiles size=91
texmf-dist/doc/latex/minutes/MinStyGd.tex
texmf-dist/doc/latex/minutes/Overview.tex
@@ -107745,77 +119688,10 @@ srcfiles size=24
runfiles size=9
texmf-dist/tex/latex/minutes/minutes.sty
catalogue-ctan /macros/latex/contrib/minutes
-catalogue-date 2012-03-03 18:55:43 +0100
+catalogue-date 2014-01-08 12:40:39 +0100
catalogue-license lppl
catalogue-version 1.8d
-name misc
-category Package
-revision 24955
-runfiles size=98
- 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/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/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/fonts/tfm/public/misc/slantlj4.tfm
- texmf-dist/fonts/tfm/public/misc/slantlj6.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/bibnames.sty
- 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/tugboat.def
- texmf-dist/tex/plain/misc/xepsf.tex
-
-name misc209
-category Package
-revision 18001
-runfiles size=12
- 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/multind.sty
- texmf-dist/tex/latex/misc209/portland.sty
- texmf-dist/tex/latex/misc209/psboxit.sty
-
name mkgrkindex
category Package
revision 26313
@@ -107835,7 +119711,7 @@ runfiles size=4
texmf-dist/makeindex/mkgrkindex/uppercase-headers.ist
texmf-dist/scripts/mkgrkindex/mkgrkindex
catalogue-ctan /language/greek/mkgrkindex
-catalogue-date 2012-07-13 12:20:40 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license other-free
catalogue-version 2.0
@@ -107923,13 +119799,6 @@ shortdesc i386-solaris files of mkgrkindex
binfiles arch=i386-solaris size=1
bin/i386-solaris/mkgrkindex
-name mkgrkindex.mips-irix
-category Package
-revision 29949
-shortdesc mips-irix files of mkgrkindex
-binfiles arch=mips-irix size=1
- bin/mips-irix/mkgrkindex
-
name mkgrkindex.mipsel-linux
category Package
revision 29946
@@ -107965,6 +119834,13 @@ shortdesc win32 files of mkgrkindex
binfiles arch=win32 size=1
bin/win32/mkgrkindex.exe
+name mkgrkindex.x86_64-cygwin
+category Package
+revision 33557
+shortdesc x86_64-cygwin files of mkgrkindex
+binfiles arch=x86_64-cygwin size=1
+ bin/x86_64-cygwin/mkgrkindex
+
name mkgrkindex.x86_64-darwin
category Package
revision 18441
@@ -108104,13 +119980,6 @@ shortdesc i386-solaris files of mkjobtexmf
binfiles arch=i386-solaris size=1
bin/i386-solaris/mkjobtexmf
-name mkjobtexmf.mips-irix
-category Package
-revision 29949
-shortdesc mips-irix files of mkjobtexmf
-binfiles arch=mips-irix size=1
- bin/mips-irix/mkjobtexmf
-
name mkjobtexmf.mipsel-linux
category Package
revision 29946
@@ -108146,6 +120015,13 @@ shortdesc win32 files of mkjobtexmf
binfiles arch=win32 size=1
bin/win32/mkjobtexmf.exe
+name mkjobtexmf.x86_64-cygwin
+category Package
+revision 33557
+shortdesc x86_64-cygwin files of mkjobtexmf
+binfiles arch=x86_64-cygwin size=1
+ bin/x86_64-cygwin/mkjobtexmf
+
name mkjobtexmf.x86_64-darwin
category Package
revision 18441
@@ -108189,6 +120065,176 @@ catalogue-date 2012-07-16 22:11:02 +0200
catalogue-license lppl
catalogue-version 1.2
+name mkpic
+category Package
+revision 33700
+shortdesc Perl interface to mfpic.
+longdesc mkpic provides an easy interface for making small pictures with
+longdesc mfpic. To this end you create an input file consisting of
+longdesc commands, one per line, with space separated parameters (or you
+longdesc modify the DATA section of the mkpic script, which is used if
+longdesc you run it without an input file). For an extensive description
+longdesc see the file mkpicdoc.pdf, which is part of the distribution.
+depend mkpic.ARCH
+docfiles size=57
+ texmf-dist/doc/support/mkpic/README details="Readme"
+ texmf-dist/doc/support/mkpic/mkpic.pdf details="Package manual page"
+ texmf-dist/doc/support/mkpic/mkpicdoc.pdf details="Package documentation"
+ texmf-dist/doc/support/mkpic/mkpicdoc.tex
+runfiles size=7
+ texmf-dist/scripts/mkpic/mkpic
+catalogue-ctan /support/mkpic
+catalogue-date 2014-04-30 20:39:22 +0200
+catalogue-license gpl
+catalogue-version 1.02
+
+name mkpic.alpha-linux
+category Package
+revision 33688
+shortdesc alpha-linux files of mkpic
+binfiles arch=alpha-linux size=1
+ bin/alpha-linux/mkpic
+
+name mkpic.amd64-freebsd
+category Package
+revision 33688
+shortdesc amd64-freebsd files of mkpic
+binfiles arch=amd64-freebsd size=1
+ bin/amd64-freebsd/mkpic
+
+name mkpic.amd64-kfreebsd
+category Package
+revision 33688
+shortdesc amd64-kfreebsd files of mkpic
+binfiles arch=amd64-kfreebsd size=1
+ bin/amd64-kfreebsd/mkpic
+
+name mkpic.amd64-netbsd
+category Package
+revision 33688
+shortdesc amd64-netbsd files of mkpic
+binfiles arch=amd64-netbsd size=1
+ bin/amd64-netbsd/mkpic
+
+name mkpic.armel-linux
+category Package
+revision 33688
+shortdesc armel-linux files of mkpic
+binfiles arch=armel-linux size=1
+ bin/armel-linux/mkpic
+
+name mkpic.armhf-linux
+category Package
+revision 33688
+shortdesc armhf-linux files of mkpic
+binfiles arch=armhf-linux size=1
+ bin/armhf-linux/mkpic
+
+name mkpic.i386-cygwin
+category Package
+revision 33688
+shortdesc i386-cygwin files of mkpic
+binfiles arch=i386-cygwin size=1
+ bin/i386-cygwin/mkpic
+
+name mkpic.i386-freebsd
+category Package
+revision 33688
+shortdesc i386-freebsd files of mkpic
+binfiles arch=i386-freebsd size=1
+ bin/i386-freebsd/mkpic
+
+name mkpic.i386-kfreebsd
+category Package
+revision 33688
+shortdesc i386-kfreebsd files of mkpic
+binfiles arch=i386-kfreebsd size=1
+ bin/i386-kfreebsd/mkpic
+
+name mkpic.i386-linux
+category Package
+revision 33688
+shortdesc i386-linux files of mkpic
+binfiles arch=i386-linux size=1
+ bin/i386-linux/mkpic
+
+name mkpic.i386-netbsd
+category Package
+revision 33688
+shortdesc i386-netbsd files of mkpic
+binfiles arch=i386-netbsd size=1
+ bin/i386-netbsd/mkpic
+
+name mkpic.i386-solaris
+category Package
+revision 33688
+shortdesc i386-solaris files of mkpic
+binfiles arch=i386-solaris size=1
+ bin/i386-solaris/mkpic
+
+name mkpic.mipsel-linux
+category Package
+revision 33688
+shortdesc mipsel-linux files of mkpic
+binfiles arch=mipsel-linux size=1
+ bin/mipsel-linux/mkpic
+
+name mkpic.powerpc-linux
+category Package
+revision 33688
+shortdesc powerpc-linux files of mkpic
+binfiles arch=powerpc-linux size=1
+ bin/powerpc-linux/mkpic
+
+name mkpic.sparc-solaris
+category Package
+revision 33688
+shortdesc sparc-solaris files of mkpic
+binfiles arch=sparc-solaris size=1
+ bin/sparc-solaris/mkpic
+
+name mkpic.universal-darwin
+category Package
+revision 33688
+shortdesc universal-darwin files of mkpic
+binfiles arch=universal-darwin size=1
+ bin/universal-darwin/mkpic
+
+name mkpic.win32
+category Package
+revision 33688
+shortdesc win32 files of mkpic
+binfiles arch=win32 size=1
+ bin/win32/mkpic.exe
+
+name mkpic.x86_64-cygwin
+category Package
+revision 33688
+shortdesc x86_64-cygwin files of mkpic
+binfiles arch=x86_64-cygwin size=1
+ bin/x86_64-cygwin/mkpic
+
+name mkpic.x86_64-darwin
+category Package
+revision 33688
+shortdesc x86_64-darwin files of mkpic
+binfiles arch=x86_64-darwin size=1
+ bin/x86_64-darwin/mkpic
+
+name mkpic.x86_64-linux
+category Package
+revision 33688
+shortdesc x86_64-linux files of mkpic
+binfiles arch=x86_64-linux size=1
+ bin/x86_64-linux/mkpic
+
+name mkpic.x86_64-solaris
+category Package
+revision 33688
+shortdesc x86_64-solaris files of mkpic
+binfiles arch=x86_64-solaris size=1
+ bin/x86_64-solaris/mkpic
+
name mla-paper
category Package
revision 20885
@@ -108223,7 +120269,7 @@ runfiles size=4
texmf-dist/tex/latex/mlist/mlist.cfg
texmf-dist/tex/latex/mlist/mlist.sty
catalogue-ctan /macros/latex/contrib/mlist
-catalogue-date 2012-07-16 22:11:02 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 0.6a
@@ -108352,14 +120398,6 @@ binfiles arch=i386-solaris size=2
bin/i386-solaris/mllatex
bin/i386-solaris/mltex
-name mltex.mips-irix
-category Package
-revision 29975
-shortdesc mips-irix files of mltex
-binfiles arch=mips-irix size=2
- bin/mips-irix/mllatex
- bin/mips-irix/mltex
-
name mltex.mipsel-linux
category Package
revision 29946
@@ -108394,12 +120432,20 @@ binfiles arch=universal-darwin size=2
name mltex.win32
category Package
-revision 8086
+revision 33512
shortdesc win32 files of mltex
binfiles arch=win32 size=2
bin/win32/mllatex.exe
bin/win32/mltex.exe
+name mltex.x86_64-cygwin
+category Package
+revision 33557
+shortdesc x86_64-cygwin files of mltex
+binfiles arch=x86_64-cygwin size=2
+ bin/x86_64-cygwin/mllatex
+ bin/x86_64-cygwin/mltex
+
name mltex.x86_64-darwin
category Package
revision 18441
@@ -108481,7 +120527,7 @@ runfiles size=74
texmf-dist/tex/latex/mmap/upzd-m.cmap
texmf-dist/tex/latex/mmap/upzd.cmap
catalogue-ctan /macros/latex/contrib/mmap
-catalogue-date 2012-11-14 17:56:09 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.03
@@ -108501,7 +120547,7 @@ srcfiles size=5
runfiles size=2
texmf-dist/tex/latex/mnotes/mnotes.sty
catalogue-ctan /macros/latex/contrib/mnotes
-catalogue-date 2013-04-23 08:47:58 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 0.6
@@ -108790,7 +120836,7 @@ runfiles size=1656
texmf-dist/fonts/type1/public/mnsymbol/MnSymbol9.pfb
texmf-dist/tex/latex/mnsymbol/MnSymbol.sty
catalogue-ctan /fonts/mnsymbol
-catalogue-date 2012-02-15 11:49:42 +0100
+catalogue-date 2014-05-15 23:25:03 +0200
catalogue-license pd
catalogue-version 1.4
@@ -108862,13 +120908,13 @@ srcfiles size=5
runfiles size=2
texmf-dist/tex/latex/moderntimeline/moderntimeline.sty
catalogue-ctan /macros/latex/contrib/moderntimeline
-catalogue-date 2012-01-17 10:30:09 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 0.6
name modiagram
category Package
-revision 30169
+revision 34010
shortdesc Drawing molecular orbital diagrams.
longdesc The package provides an environment MOdiagram and some
longdesc commands, to create molecular orbital diagrams using TikZ. For
@@ -108877,16 +120923,16 @@ longdesc \begin{MOdiagram} \atom{left}{ 1s = {0;up} } \atom{right}{ 1s =
longdesc {0;up} } \molecule{ 1sMO = {1;pair, } } \end{MOdiagram} The
longdesc package also needs the l3kernel and l3packages bundles from the
longdesc LaTeX 3 experimental distribution.
-docfiles size=174
+docfiles size=168
texmf-dist/doc/latex/modiagram/README details="Readme"
texmf-dist/doc/latex/modiagram/modiagram_en.pdf details="Package documentation (English)" language="en"
texmf-dist/doc/latex/modiagram/modiagram_en.tex
runfiles size=20
texmf-dist/tex/latex/modiagram/modiagram.sty
catalogue-ctan /macros/latex/contrib/modiagram
-catalogue-date 2013-04-28 23:24:16 +0200
+catalogue-date 2014-05-13 19:18:34 +0200
catalogue-license lppl1.3
-catalogue-version 0.2c
+catalogue-version 0.2d
name modref
category Package
@@ -108907,7 +120953,7 @@ srcfiles size=15
runfiles size=2
texmf-dist/tex/latex/modref/modref.sty
catalogue-ctan /macros/latex/contrib/modref
-catalogue-date 2011-12-24 16:20:07 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.0
@@ -108963,7 +121009,7 @@ runfiles size=6
texmf-dist/tex/latex/mongolian-babel/mongolian.ldf
texmf-dist/tex/latex/mongolian-babel/mongolian.sty
catalogue-ctan /language/mongolian/babel
-catalogue-date 2012-07-07 22:27:26 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.2
@@ -108986,7 +121032,7 @@ runfiles size=4
texmf-dist/tex/latex/monofill/monofill.RLS
texmf-dist/tex/latex/monofill/monofill.sty
catalogue-ctan /macros/latex/contrib/monofill
-catalogue-date 2012-10-31 16:32:17 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 0.2
@@ -109352,24 +121398,24 @@ name moreenum
category Package
revision 24479
shortdesc More enumeration options.
-longdesc The package provides the following new enumerate styles: -
-longdesc \greek for lowercase Greek letters; - \Greek for uppercase
-longdesc Greek letters; - \enumHex for uppercase hexadecimal
-longdesc enumeration; - \enumhex for lowercase hexadecimal enumeration;
-longdesc - \enumbinary for binary enumeration; - \enumoctal for octal
-longdesc enumeration; - \levelnth for "1st", "2nd", "3rd" etc., with the
-longdesc "nth"s on the baseline; - raisenth for "1st", "2nd", "3rd"
-longdesc etc., with the "nth"s raised; - \nthwords for "first",
-longdesc "second", "third" etc.; - \Nthwords for "First", "Second",
-longdesc "Third" etc.; - \NTHWORDS for "FIRST", "SECOND", "THIRD" etc.;
-longdesc - \nwords for "one", "two", "three" etc.; - \Nwords for "One",
-longdesc "Two", "Three" etc.; and - \NWORDS for "ONE", "TWO", "THREE"
-longdesc etc. Each of these works with enumitem's "starred variant"
-longdesc feature. So \begin{enumerate}[label=\enumhex*] will output a
-longdesc hex enumerated list. Enumitem provides a start=0 option for
-longdesc starting your enumerations at 0. The package requires amsmath,
-longdesc alphalph, enumitem (of course), binhex and nth, all of which
-longdesc are widely available.
+longdesc The package provides the following new enumerate styles: \greek
+longdesc for lowercase Greek letters; \Greek for uppercase Greek
+longdesc letters; \enumHex for uppercase hexadecimal enumeration;
+longdesc \enumhex for lowercase hexadecimal enumeration; \enumbinary for
+longdesc binary enumeration; \enumoctal for octal enumeration; \levelnth
+longdesc for "1st", "2nd", "3rd" etc., with the "nth"s on the baseline;
+longdesc raisenth for "1st", "2nd", "3rd" etc., with the "nth"s raised;
+longdesc \nthwords for "first", "second", "third" etc.; \Nthwords for
+longdesc "First", "Second", "Third" etc.; \NTHWORDS for "FIRST",
+longdesc "SECOND", "THIRD" etc.; \nwords for "one", "two", "three" etc.;
+longdesc \Nwords for "One", "Two", "Three" etc.; and \NWORDS for "ONE",
+longdesc "TWO", "THREE" etc. Each of these works with enumitem's
+longdesc "starred variant" feature. So
+longdesc \begin{enumerate}[label=\enumhex*] will output a hex enumerated
+longdesc list. Enumitem provides a start=0 option for starting your
+longdesc enumerations at 0. The package requires amsmath, alphalph,
+longdesc enumitem (of course), binhex and nth, all of which are widely
+longdesc available.
docfiles size=56
texmf-dist/doc/latex/moreenum/README details="Readme"
texmf-dist/doc/latex/moreenum/moreenum-doc.pdf details="Package documentation"
@@ -109377,7 +121423,7 @@ docfiles size=56
runfiles size=2
texmf-dist/tex/latex/moreenum/moreenum.sty
catalogue-ctan /macros/latex/contrib/moreenum
-catalogue-date 2012-07-07 22:27:26 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.03
@@ -109412,11 +121458,11 @@ name morehype
category Package
revision 28921
shortdesc Hypertext tools for use with LaTeX.
-longdesc The bundle provides three packages: - texlinks: shorthand
-longdesc macros for TeX-related external hyperlinks with hyperref, the
-longdesc blog package in the present bundle, etc; - hypertoc: adjust the
+longdesc The bundle provides three packages: texlinks: shorthand macros
+longdesc for TeX-related external hyperlinks with hyperref, the blog
+longdesc package in the present bundle, etc; hypertoc: adjust the
longdesc presentation of coloured frames in hyperref tables of contents
-longdesc (article class only); - blog: fast generation of simple HTML by
+longdesc (article class only); blog: fast generation of simple HTML by
longdesc expanding LaTeX macros, using the fifinddo package.
docfiles size=683
texmf-dist/doc/latex/morehype/README details="Readme"
@@ -109461,7 +121507,7 @@ runfiles size=62
texmf-dist/tex/latex/morehype/texblog.fdf
texmf-dist/tex/latex/morehype/texlinks.sty
catalogue-ctan /macros/latex/contrib/morehype
-catalogue-date 2013-01-23 12:31:43 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
name moresize
@@ -109537,7 +121583,7 @@ runfiles size=6
texmf-dist/tex/latex/morewrites/morewrites.sty
texmf-dist/tex/latex/morewrites/primargs.sty
catalogue-ctan /macros/latex/contrib/morewrites
-catalogue-date 2013-01-08 14:50:28 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 0.2e
@@ -109545,13 +121591,13 @@ name movie15
category Package
revision 26473
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. The package is now superseded by
-longdesc media9
+longdesc The package provides an interface to embed movies, sounds and
+longdesc 3D objects into PDF documents for use with LaTeX as well as
+longdesc pdfLaTeX. The package defines a command \includemovie with PDF-
+longdesc 1.5 compatibility. Option 'autoplay' causes the media clip to
+longdesc be started right after the page has loaded. This is useful for
+longdesc side by side movie clips to be played back synchronously. The
+longdesc package is now superseded by media9
docfiles size=196
texmf-dist/doc/latex/movie15/README details="README file"
texmf-dist/doc/latex/movie15/files/3dsystem.fig
@@ -109572,7 +121618,7 @@ docfiles size=196
runfiles size=39
texmf-dist/tex/latex/movie15/movie15.sty
catalogue-ctan /macros/latex/contrib/movie15
-catalogue-date 2013-02-06 01:17:26 +0100
+catalogue-date 2014-01-08 12:40:39 +0100
catalogue-license lppl
name mp3d
@@ -109624,7 +121670,7 @@ runfiles size=26
texmf-dist/metapost/mp3d/3dutil.mp
texmf-dist/metapost/mp3d/animpoly.mp
catalogue-ctan /graphics/metapost/contrib/macros/mp3d
-catalogue-date 2012-05-25 16:08:07 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.34
@@ -109712,7 +121758,7 @@ runfiles size=9
texmf-dist/metapost/mpcolornames/mpcolornames-spec-xcolor-sty.mp
texmf-dist/metapost/mpcolornames/mpcolornames.mp
catalogue-ctan /graphics/metapost/contrib/macros/mpcolornames
-catalogue-date 2012-07-17 13:35:08 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 0.20
@@ -109736,7 +121782,7 @@ srcfiles size=10
runfiles size=4
texmf-dist/tex/latex/mpgraphics/mpgraphics.sty
catalogue-ctan /macros/latex/contrib/mpgraphics
-catalogue-date 2013-04-08 09:07:09 +0200
+catalogue-date 2014-04-29 06:13:54 +0200
catalogue-license lppl1.3
catalogue-version 0.3
@@ -109762,13 +121808,13 @@ docfiles size=338
texmf-dist/doc/metapost/mpman-ru/mpman-ru.tex
texmf-dist/doc/metapost/mpman-ru/mpman.ist
catalogue-ctan /info/metapost/doc/russian/mpman-ru
-catalogue-date 2012-07-17 16:43:33 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license other-free
catalogue-version 1.004
name mptopdf
category Package
-revision 29751
+revision 34192
shortdesc mpost to PDF, native MetaPost graphics inclusion
longdesc The mptopdf script does standalone conversion from mpost to
longdesc PDF, using the supp-* and syst-* files. They also allow native
@@ -109780,7 +121826,7 @@ longdesc users who do not install the rest of ConTeXt. This can be
longdesc found on CTAN in macros/pdftex/graphics.
depend mptopdf.ARCH
execute AddFormat name=mptopdf engine=pdftex options="-translate-file=cp227.tcx mptopdf.tex"
-docfiles size=4
+docfiles size=3
texmf-dist/doc/context/scripts/mkii/mptopdf.man
texmf-dist/doc/man/man1/mptopdf.1
texmf-dist/doc/man/man1/mptopdf.man1.pdf
@@ -109877,13 +121923,6 @@ shortdesc i386-solaris files of mptopdf
binfiles arch=i386-solaris size=1
bin/i386-solaris/mptopdf
-name mptopdf.mips-irix
-category Package
-revision 29949
-shortdesc mips-irix files of mptopdf
-binfiles arch=mips-irix size=1
- bin/mips-irix/mptopdf
-
name mptopdf.mipsel-linux
category Package
revision 29946
@@ -109919,6 +121958,13 @@ shortdesc win32 files of mptopdf
binfiles arch=win32 size=1
bin/win32/mptopdf.exe
+name mptopdf.x86_64-cygwin
+category Package
+revision 33557
+shortdesc x86_64-cygwin files of mptopdf
+binfiles arch=x86_64-cygwin size=1
+ bin/x86_64-cygwin/mptopdf
+
name mptopdf.x86_64-darwin
category Package
revision 18674
@@ -109945,13 +121991,12 @@ category Package
revision 29849
shortdesc Various LaTeX packages by Martin Schroder.
longdesc A bundle of LaTeX packages by Martin Schroder; the collection
-longdesc comprises: - count1to, make use of fixed TeX counters; -
-longdesc everysel, set commands to execute every time a font is
-longdesc selected; - everyshi, set commands to execute whenever a page
-longdesc is shipped out; - multitoc, typeset the table of contents in
-longdesc multiple columns; - prelim2e, mark typeset pages as
-longdesc preliminary; and - ragged2e, typeset ragged text and allow
-longdesc hyphenation.
+longdesc comprises: count1to, make use of fixed TeX counters; everysel,
+longdesc set commands to execute every time a font is selected;
+longdesc everyshi, set commands to execute whenever a page is shipped
+longdesc out; multitoc, typeset the table of contents in multiple
+longdesc columns; prelim2e, mark typeset pages as preliminary; and
+longdesc ragged2e, typeset ragged text and allow hyphenation.
docfiles size=629
texmf-dist/doc/latex/ms/count1to.pdf
texmf-dist/doc/latex/ms/everysel.pdf
@@ -109990,7 +122035,7 @@ runfiles size=12
texmf-dist/tex/latex/ms/prelim2e.sty
texmf-dist/tex/latex/ms/ragged2e.sty
catalogue-ctan /macros/latex/contrib/ms
-catalogue-date 2012-05-24 17:58:39 +0200
+catalogue-date 2014-01-08 12:40:39 +0100
catalogue-license lppl
name msc
@@ -110100,7 +122145,7 @@ runfiles size=5
texmf-dist/tex/latex/msu-thesis/gb4e-compat.tex
texmf-dist/tex/latex/msu-thesis/msu-thesis.cls
catalogue-ctan /macros/latex/contrib/msu-thesis
-catalogue-date 2013-02-13 18:21:18 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 2.3
@@ -110198,7 +122243,7 @@ catalogue-version 1.4
name multibibliography
category Package
-revision 30520
+revision 30939
shortdesc Multiple versions of a bibliography, with different sort orders.
longdesc Conventional standards for bibliography styles impose a forced
longdesc choice between index and name/year citations, and corresponding
@@ -110211,7 +122256,7 @@ depend multibibliography.ARCH
docfiles size=131
texmf-dist/doc/latex/multibibliography/Makefile
texmf-dist/doc/latex/multibibliography/README details="Readme"
- texmf-dist/doc/latex/multibibliography/figure.PDF
+ texmf-dist/doc/latex/multibibliography/figure.pdf
texmf-dist/doc/latex/multibibliography/multibibliography.bib
texmf-dist/doc/latex/multibibliography/multibibliography.pdf details="Package documentation"
texmf-dist/doc/latex/multibibliography/tug-paper.pdf details="TUGboat paper"
@@ -110225,9 +122270,9 @@ runfiles size=10
texmf-dist/scripts/multibibliography/multibibliography.pl
texmf-dist/tex/latex/multibibliography/multibibliography.sty
catalogue-ctan /macros/latex/contrib/multibibliography
-catalogue-date 2013-05-29 15:55:24 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
-catalogue-version 1.02
+catalogue-version 1.03
name multibibliography.alpha-linux
category Package
@@ -110313,13 +122358,6 @@ shortdesc i386-solaris files of multibibliography
binfiles arch=i386-solaris size=1
bin/i386-solaris/multibibliography
-name multibibliography.mips-irix
-category Package
-revision 30534
-shortdesc mips-irix files of multibibliography
-binfiles arch=mips-irix size=1
- bin/mips-irix/multibibliography
-
name multibibliography.mipsel-linux
category Package
revision 30534
@@ -110355,6 +122393,13 @@ shortdesc win32 files of multibibliography
binfiles arch=win32 size=1
bin/win32/multibibliography.exe
+name multibibliography.x86_64-cygwin
+category Package
+revision 33557
+shortdesc x86_64-cygwin files of multibibliography
+binfiles arch=x86_64-cygwin size=1
+ bin/x86_64-cygwin/multibibliography
+
name multibibliography.x86_64-darwin
category Package
revision 30534
@@ -110436,7 +122481,7 @@ srcfiles size=6
runfiles size=2
texmf-dist/tex/latex/multienv/multienv.sty
catalogue-ctan /macros/latex/contrib/multienv
-catalogue-date 2012-07-09 13:08:44 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.0
@@ -110460,14 +122505,14 @@ srcfiles size=4
runfiles size=1
texmf-dist/tex/latex/multiexpand/multiexpand.sty
catalogue-ctan /macros/latex/contrib/multiexpand
-catalogue-date 2013-01-10 10:21:24 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.1
name multiobjective
category Package
revision 15878
-shortdesc Symbols for multibojective optimisation etc.
+shortdesc Symbols for multiobjective optimisation etc.
longdesc The package provides a series of operators commonly used in
longdesc papers related to multiobjective optimisation, multiobjective
longdesc evolutionary algorithms, multicriteria decision making and
@@ -110481,7 +122526,7 @@ srcfiles size=3
runfiles size=1
texmf-dist/tex/latex/multiobjective/multiobjective.sty
catalogue-ctan /macros/latex/contrib/multiobjective
-catalogue-date 2012-07-17 16:43:33 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.0
@@ -110540,13 +122585,13 @@ docfiles size=57
runfiles size=3
texmf-dist/tex/latex/musixguit/musixguit.sty
catalogue-ctan /macros/latex/contrib/musixguit
-catalogue-date 2012-04-17 20:39:06 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.2.2
name musixtex
category Package
-revision 29752
+revision 32402
shortdesc Sophisticated music typesetting
longdesc MusiXTeX provides a set of macros, based on the earlier
longdesc MusicTeX, for typesetting music with TeX. To produce optimal
@@ -110562,7 +122607,7 @@ longdesc are universally acknowledged to be challenging to use directly:
longdesc the pmx preprocessor compiles a simpler input language to
longdesc MusixTeX macros..
depend musixtex.ARCH
-docfiles size=1035
+docfiles size=1034
texmf-dist/doc/generic/musixtex/ChangeLog-115.txt
texmf-dist/doc/generic/musixtex/ChangeLog-T114.txt
texmf-dist/doc/generic/musixtex/ChangeLog-musixdoc-115.txt
@@ -110590,7 +122635,6 @@ docfiles size=1035
texmf-dist/doc/generic/musixtex/examples/aveverum.tex
texmf-dist/doc/generic/musixtex/examples/changecontext.tex
texmf-dist/doc/generic/musixtex/examples/chanson.tex
- texmf-dist/doc/generic/musixtex/examples/coulhack.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
@@ -110733,9 +122777,9 @@ runfiles size=128
texmf-dist/tex/latex/musixtex/musixltx.tex
texmf-dist/tex/latex/musixtex/musixtex.sty
catalogue-ctan /macros/musixtex
-catalogue-date 2013-01-26 20:44:01 +0100
+catalogue-date 2013-12-13 00:08:29 +0100
catalogue-license gpl
-catalogue-version 1.15 (2013-01-21)
+catalogue-version 1.15 (2013-12-12)
name musixtex-fonts
category Package
@@ -110988,7 +123032,7 @@ runfiles size=1407
texmf-dist/fonts/type1/public/musixtex-fonts/xslz20d.pfb
texmf-dist/fonts/type1/public/musixtex-fonts/xtie20.pfb
catalogue-ctan /fonts/musixtex-fonts
-catalogue-date 2013-01-24 16:57:55 +0100
+catalogue-date 2014-05-15 23:25:03 +0200
catalogue-license gpl
name musixtex.alpha-linux
@@ -111087,14 +123131,6 @@ binfiles arch=i386-solaris size=2
bin/i386-solaris/musixflx
bin/i386-solaris/musixtex
-name musixtex.mips-irix
-category Package
-revision 29949
-shortdesc mips-irix files of musixtex
-binfiles arch=mips-irix size=2
- bin/mips-irix/musixflx
- bin/mips-irix/musixtex
-
name musixtex.mipsel-linux
category Package
revision 29946
@@ -111135,6 +123171,14 @@ binfiles arch=win32 size=2
bin/win32/musixflx.exe
bin/win32/musixtex.exe
+name musixtex.x86_64-cygwin
+category Package
+revision 33557
+shortdesc x86_64-cygwin files of musixtex
+binfiles arch=x86_64-cygwin size=2
+ bin/x86_64-cygwin/musixflx
+ bin/x86_64-cygwin/musixtex
+
name musixtex.x86_64-darwin
category Package
revision 22187
@@ -111177,7 +123221,7 @@ srcfiles size=14
runfiles size=3
texmf-dist/tex/latex/musuos/musuos.cls
catalogue-ctan /macros/latex/contrib/musuos
-catalogue-date 2011-12-18 14:52:40 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.1d
@@ -111216,7 +123260,7 @@ srcfiles size=3
runfiles size=1
texmf-dist/tex/latex/mversion/mVersion.sty
catalogue-ctan /macros/latex/contrib/mversion
-catalogue-date 2013-03-13 13:37:29 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.2
catalogue-version 1.0.1
@@ -111254,7 +123298,7 @@ runfiles size=41
texmf-dist/tex/latex/mwcls/mwbk12.clo
texmf-dist/tex/latex/mwcls/mwrep.cls
catalogue-ctan /macros/latex/contrib/mwcls
-catalogue-date 2011-11-20 17:08:37 +0100
+catalogue-date 2013-10-30 13:56:38 +0100
catalogue-license lppl
catalogue-version 0.74
@@ -111360,10 +123404,29 @@ runfiles size=443
texmf-dist/tex/latex/mwe/example-image.tex
texmf-dist/tex/latex/mwe/mwe.sty
catalogue-ctan /macros/latex/contrib/mwe
-catalogue-date 2012-05-15 15:44:48 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 0.3
+name mweights
+category Package
+revision 31268
+shortdesc Support for multiple-weight font packages.
+longdesc Many font families available for use with LaTeX are available
+longdesc at multiple weights. Many Type 1-oriented support packages for
+longdesc such fonts re-define the standard \mddefault or \bfdefault
+longdesc macros. This can create difficulties if the weight desired for
+longdesc one font family isn't available for another font family, or if
+longdesc it differs from the weight desired for another font family. The
+longdesc package provides a solution to these difficulties.
+docfiles size=1
+ texmf-dist/doc/latex/mweights/README details="Readme"
+runfiles size=1
+ texmf-dist/tex/latex/mweights/mweights.sty
+catalogue-ctan /macros/latex/contrib/mweights
+catalogue-date 2014-02-26 23:03:13 +0100
+catalogue-license lppl
+
name mxedruli
category Package
revision 30021
@@ -111439,7 +123502,7 @@ docfiles size=442
runfiles size=15
texmf-dist/tex/latex/mychemistry/mychemistry.sty
catalogue-ctan /macros/latex/contrib/mychemistry
-catalogue-date 2012-12-21 20:05:59 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.99b
@@ -111480,7 +123543,7 @@ runfiles size=11
texmf-dist/tex/latex/mycv/mycv_style.sty
texmf-dist/tex/latex/mycv/mycv_version.def
catalogue-ctan /macros/latex/contrib/mycv
-catalogue-date 2012-05-21 10:58:59 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.5.6
@@ -111504,7 +123567,7 @@ srcfiles size=13
runfiles size=4
texmf-dist/tex/latex/mylatexformat/mylatexformat.ltx
catalogue-ctan /macros/latex/contrib/mylatexformat
-catalogue-date 2012-04-17 20:39:06 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 3.4
@@ -111537,7 +123600,7 @@ catalogue-version 0.7
name nameauth
category Package
-revision 29632
+revision 31746
shortdesc Name authority mechanism for consistency in body text and index.
longdesc Publications, that reference many names, require editors and
longdesc proofreaders to track those names in the text and index. The
@@ -111555,9 +123618,9 @@ srcfiles size=31
runfiles size=8
texmf-dist/tex/latex/nameauth/nameauth.sty
catalogue-ctan /macros/latex/contrib/nameauth
-catalogue-date 2013-04-03 11:32:41 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
-catalogue-version 1.7
+catalogue-version 1.8
name namespc
category Package
@@ -113325,7 +125388,7 @@ runfiles size=9476
texmf-dist/tex/latex/nanumtype1/ts1nanumgt.fd
texmf-dist/tex/latex/nanumtype1/ts1nanummj.fd
catalogue-ctan /fonts/nanumtype1
-catalogue-date 2013-04-05 11:53:55 +0200
+catalogue-date 2014-05-17 10:22:20 +0200
catalogue-license ofl
catalogue-version 3.0
@@ -113364,6 +125427,25 @@ catalogue-date 2012-01-14 11:58:21 +0100
catalogue-license lppl
catalogue-version 8.31b
+name natded
+category Package
+revision 32693
+shortdesc Typeset natural deduction proofs.
+longdesc The package provides commands to typeset proofs in the style
+longdesc used by Jaskowski, or that of Kalish and Montague.
+docfiles size=92
+ texmf-dist/doc/latex/natded/README.md
+ texmf-dist/doc/latex/natded/extended_doc.pdf details="Extended documentation"
+ texmf-dist/doc/latex/natded/extended_doc.tex
+ texmf-dist/doc/latex/natded/natded.pdf details="Package documentation"
+ texmf-dist/doc/latex/natded/natded.tex
+runfiles size=4
+ texmf-dist/tex/latex/natded/natded.sty
+catalogue-ctan /macros/latex/contrib/natded
+catalogue-date 2014-02-26 23:03:13 +0100
+catalogue-license lppl1.3
+catalogue-version 0.1
+
name nath
category Package
revision 15878
@@ -113411,11 +125493,11 @@ revision 29067
shortdesc PDF features across formats and engines.
longdesc Navigator implements PDF features for all formats (with some
longdesc limitations in ConTeXt) with PDFTeX, LuaTeX and XeTeX (i.e.
-longdesc xdvipdfmx). Features include: - Customizable outlines (i.e.
-longdesc bookmarks); - Anchors; - Links and actions (e.g. JavaScript or
-longdesc user-defined PDF actions); - File embedding (not in ConTeXt); -
+longdesc xdvipdfmx). Features include: Customizable outlines (i.e.
+longdesc bookmarks); Anchors; Links and actions (e.g. JavaScript or
+longdesc user-defined PDF actions); File embedding (not in ConTeXt);
longdesc Document information and PDF viewer's display (not in ConTeXt);
-longdesc and - Commands to create and use raw PDF objects. Navigator
+longdesc and Commands to create and use raw PDF objects. Navigator
longdesc requires texapi and yax, both version at least 1.03.
docfiles size=42
texmf-dist/doc/generic/navigator/README details="Readme"
@@ -113426,7 +125508,7 @@ runfiles size=8
texmf-dist/tex/generic/navigator/navigator.tex
texmf-dist/tex/generic/navigator/t-navigator.tex
catalogue-ctan /macros/generic/navigator
-catalogue-date 2012-11-14 17:56:09 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.0
@@ -113484,22 +125566,21 @@ revision 15878
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: - executing commands after a package is
-longdesc loaded; - watermarks; - counter manipulation (dynamic counters,
-longdesc changing counter numbering with another counter); -
-longdesc improvements to the description environment; - hyphenation of
-longdesc compound words; - new levels of footnotes; - space-filling
-longdesc patterns; - "poor man's" Black Board Bold symbols; - alignment
-longdesc of the content of a box; - use comma as decimal separator; -
-longdesc boxes with their own crop marks; - page cropmarks; -
-longdesc improvements to fancy headers; - float "styles", mini floats,
-longdesc side floats; - manually marked footnotes; - extension of
-longdesc amsmath; - control of paragraph skip; - an envelope to the
-longdesc graphicx package; - dashed and multiple rules; - alternative
+longdesc includes tools for: executing commands after a package is
+longdesc loaded; watermarks; counter manipulation (dynamic counters,
+longdesc changing counter numbering with another counter); improvements
+longdesc to the description environment; hyphenation of compound words;
+longdesc new levels of footnotes; space-filling patterns; "poor man's"
+longdesc Black Board Bold symbols; alignment of the content of a box;
+longdesc use comma as decimal separator; boxes with their own crop
+longdesc marks; page cropmarks; improvements to fancy headers; float
+longdesc "styles", mini floats, side floats; manually marked footnotes;
+longdesc extension of amsmath; control of paragraph skip; an envelope to
+longdesc the 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; -
-longdesc centred page layouts; and - an un-numbered top-level section.
+longdesc entries; generalised text-stretching; generation of new
+longdesc theorem-like environments; control of the text area; centred
+longdesc page layouts; and un-numbered top-level section.
docfiles size=729
texmf-dist/doc/latex/ncctools/README details="Readme"
texmf-dist/doc/latex/ncctools/README.source
@@ -113586,13 +125667,13 @@ runfiles size=43
texmf-dist/tex/latex/ncctools/topsection.sty
texmf-dist/tex/latex/ncctools/watermark.sty
catalogue-ctan /macros/latex/contrib/ncctools
-catalogue-date 2012-07-18 17:52:41 +0200
+catalogue-date 2013-12-16 18:11:57 +0100
catalogue-license lppl
catalogue-version 3.5
name ncntrsbk
category Package
-revision 28614
+revision 31835
catalogue urw-base35
shortdesc URW "Base 35" font pack for LaTeX.
longdesc A set of fonts for use as "drop-in" replacements for Adobe's
@@ -113606,6 +125687,7 @@ longdesc Symbol); - URW Bookman; - URW Chancery L Medium Italic
longdesc (substituting for Adobe's Zapf Chancery); - URW Gothic L Book
longdesc (substituting for Adobe's Avant Garde); and - URW Palladio L
longdesc (substituting for Adobe's Palatino).
+execute addMap unc.map
runfiles size=305
texmf-dist/dvips/ncntrsbk/config.unc
texmf-dist/fonts/afm/adobe/ncntrsbk/pncb8a.afm
@@ -113824,6 +125906,25 @@ catalogue-ctan /macros/latex/contrib/nestquot
catalogue-date 2012-08-13 12:34:19 +0200
catalogue-license other-free
+name neuralnetwork
+category Package
+revision 31500
+shortdesc Graph-drawing for neural networks.
+longdesc The package provides facilities for graph-drawing, with
+longdesc facilities designed for neural network diagrams.
+docfiles size=163
+ texmf-dist/doc/latex/neuralnetwork/examples/neural-networks-ebook.pdf details="Sample of a book using the package"
+ texmf-dist/doc/latex/neuralnetwork/examples/neuralnetwork.pdf
+ texmf-dist/doc/latex/neuralnetwork/examples/neuralnetwork.tex
+ texmf-dist/doc/latex/neuralnetwork/examples/xor.pdf
+ texmf-dist/doc/latex/neuralnetwork/examples/xor.tex
+runfiles size=3
+ texmf-dist/tex/latex/neuralnetwork/neuralnetwork.sty
+catalogue-ctan /graphics/pgf/contrib/neuralnetwork
+catalogue-date 2014-02-26 23:03:13 +0100
+catalogue-license gpl
+catalogue-version 1.0
+
name newcommand
category Package
revision 18704
@@ -113855,7 +125956,7 @@ docfiles size=2
runfiles size=2
texmf-dist/tex/latex/newenviron/newenviron.sty
catalogue-ctan /macros/latex/contrib/newenviron
-catalogue-date 2013-03-13 15:44:34 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.0
@@ -113957,24 +126058,24 @@ catalogue-version 9.4
name newpx
category Package
-revision 30742
+revision 33379
shortdesc Alternative uses of the PX fonts, with improved metrics.
-longdesc This package, based on pxfonts, provides many fixes and
-longdesc enhancements to that package, splitting it in two parts -
-longdesc newpxtext and newpxmath - which may be run independently of one
+longdesc The package, based on pxfonts, provides many fixes and
+longdesc enhancements to that package, and splits it in two parts
+longdesc (newpxtext and newpxmath) which may be run independently of one
longdesc another. It provides scaling, improved metrics, and other
longdesc options. For proper operation, the packages require that the
-longdesc packages newtxmath and pxfonts be installed and their map files
+longdesc packages newtxmath and txfonts be installed and their map files
longdesc enabled.
execute addMap newpx.map
-docfiles size=49
+docfiles size=54
texmf-dist/doc/fonts/newpx/MANIFEST-newpx.txt
texmf-dist/doc/fonts/newpx/README details="Readme"
texmf-dist/doc/fonts/newpx/newpxdoc.pdf
texmf-dist/doc/fonts/newpx/newpxdoc.tex
texmf-dist/doc/fonts/newpx/newpxeg-crop.pdf
texmf-dist/doc/fonts/newpx/pxfontseg-crop.pdf
-runfiles size=583
+runfiles size=578
texmf-dist/fonts/enc/dvips/newpx/a_3p3as7.enc
texmf-dist/fonts/enc/dvips/newpx/a_4dmj3j.enc
texmf-dist/fonts/enc/dvips/newpx/a_6lauhs.enc
@@ -114161,9 +126262,8 @@ runfiles size=583
texmf-dist/fonts/tfm/public/newpx/TS1-TeXGyrePagellaX-Regular-sups-kern-liga-smcp.tfm
texmf-dist/fonts/tfm/public/newpx/TS1-TeXGyrePagellaX-Regular-sups-kern-liga.tfm
texmf-dist/fonts/tfm/public/newpx/zplb-x.tfm
- texmf-dist/fonts/tfm/public/newpx/zplbex.tfm
texmf-dist/fonts/tfm/public/newpx/zplbexa.tfm
- texmf-dist/fonts/tfm/public/newpx/zplbexv.tfm
+ texmf-dist/fonts/tfm/public/newpx/zplbexx.tfm
texmf-dist/fonts/tfm/public/newpx/zplbmi.tfm
texmf-dist/fonts/tfm/public/newpx/zplbmi1.tfm
texmf-dist/fonts/tfm/public/newpx/zplbmia.tfm
@@ -114171,9 +126271,8 @@ runfiles size=583
texmf-dist/fonts/tfm/public/newpx/zplbsya.tfm
texmf-dist/fonts/tfm/public/newpx/zplbsyb.tfm
texmf-dist/fonts/tfm/public/newpx/zplbsyc.tfm
- texmf-dist/fonts/tfm/public/newpx/zplex.tfm
texmf-dist/fonts/tfm/public/newpx/zplexa.tfm
- texmf-dist/fonts/tfm/public/newpx/zplexv.tfm
+ texmf-dist/fonts/tfm/public/newpx/zplexx.tfm
texmf-dist/fonts/tfm/public/newpx/zplmi.tfm
texmf-dist/fonts/tfm/public/newpx/zplmi1.tfm
texmf-dist/fonts/tfm/public/newpx/zplmia.tfm
@@ -114240,9 +126339,8 @@ runfiles size=583
texmf-dist/fonts/vf/public/newpx/TS1-TeXGyrePagellaX-Regular-pnum-kern-liga.vf
texmf-dist/fonts/vf/public/newpx/TS1-TeXGyrePagellaX-Regular-sups-kern-liga-smcp.vf
texmf-dist/fonts/vf/public/newpx/TS1-TeXGyrePagellaX-Regular-sups-kern-liga.vf
- texmf-dist/fonts/vf/public/newpx/zplbex.vf
texmf-dist/fonts/vf/public/newpx/zplbexa.vf
- texmf-dist/fonts/vf/public/newpx/zplbexv.vf
+ texmf-dist/fonts/vf/public/newpx/zplbexx.vf
texmf-dist/fonts/vf/public/newpx/zplbmi.vf
texmf-dist/fonts/vf/public/newpx/zplbmi1.vf
texmf-dist/fonts/vf/public/newpx/zplbmia.vf
@@ -114250,9 +126348,8 @@ runfiles size=583
texmf-dist/fonts/vf/public/newpx/zplbsya.vf
texmf-dist/fonts/vf/public/newpx/zplbsyb.vf
texmf-dist/fonts/vf/public/newpx/zplbsyc.vf
- texmf-dist/fonts/vf/public/newpx/zplex.vf
texmf-dist/fonts/vf/public/newpx/zplexa.vf
- texmf-dist/fonts/vf/public/newpx/zplexv.vf
+ texmf-dist/fonts/vf/public/newpx/zplexx.vf
texmf-dist/fonts/vf/public/newpx/zplmi.vf
texmf-dist/fonts/vf/public/newpx/zplmi1.vf
texmf-dist/fonts/vf/public/newpx/zplmia.vf
@@ -114270,8 +126367,6 @@ runfiles size=583
texmf-dist/tex/latex/newpx/newpxtext.sty
texmf-dist/tex/latex/newpx/omlnpxmi.fd
texmf-dist/tex/latex/newpx/omsnpxsy.fd
- texmf-dist/tex/latex/newpx/omxnpxex.fd
- texmf-dist/tex/latex/newpx/omxnpxexv.fd
texmf-dist/tex/latex/newpx/ot1npxss.fd
texmf-dist/tex/latex/newpx/ot1npxtt.fd
texmf-dist/tex/latex/newpx/ot1zpl1.fd
@@ -114298,9 +126393,9 @@ runfiles size=583
texmf-dist/tex/latex/newpx/unpxsyc.fd
texmf-dist/tex/latex/newpx/unpxtt.fd
catalogue-ctan /fonts/newpx
-catalogue-date 2013-05-27 20:07:27 +0200
+catalogue-date 2014-04-05 09:51:45 +0200
catalogue-license lppl
-catalogue-version 1.01
+catalogue-version 1.122
name newsletr
category Package
@@ -114343,13 +126438,13 @@ srcfiles size=5
runfiles size=1
texmf-dist/tex/latex/newspaper/newspaper.sty
catalogue-ctan /macros/latex/contrib/newspaper
-catalogue-date 2012-07-17 17:50:51 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.0
name newtx
category Package
-revision 30690
+revision 33731
shortdesc Alternative uses of the TX fonts, with improved metrics.
longdesc The bundle splits txfonts.sty (from the TX fonts distribution)
longdesc into two independent packages, ntxtext.sty and ntxmath.sty,
@@ -114362,10 +126457,12 @@ longdesc Ntxmath can also use the maths italic font provided with the
longdesc garamondx package, thus offering a garamond-alike text-with-
longdesc maths combination.
execute addMap newtx.map
-docfiles size=167
+docfiles size=180
texmf-dist/doc/fonts/newtx/README details="Readme"
texmf-dist/doc/fonts/newtx/implementation.pdf
texmf-dist/doc/fonts/newtx/implementation.tex
+ texmf-dist/doc/fonts/newtx/mathnotes.pdf
+ texmf-dist/doc/fonts/newtx/mathnotes.tex
texmf-dist/doc/fonts/newtx/newtxdoc.pdf
texmf-dist/doc/fonts/newtx/newtxdoc.tex
texmf-dist/doc/fonts/newtx/sample-lib-crop.pdf
@@ -114374,13 +126471,14 @@ docfiles size=167
texmf-dist/doc/fonts/newtx/sample-ntx-crop.pdf
texmf-dist/doc/fonts/newtx/sample-ptmx-crop.pdf
texmf-dist/doc/fonts/newtx/sample-tx-crop.pdf
-runfiles size=1239
+runfiles size=1044
texmf-dist/fonts/enc/dvips/newtx/alt-mn-greek.enc
texmf-dist/fonts/enc/dvips/newtx/libcaps.enc
texmf-dist/fonts/enc/dvips/newtx/libertinealt.enc
texmf-dist/fonts/enc/dvips/newtx/ntx-ly1-sc.enc
texmf-dist/fonts/enc/dvips/newtx/ntx-ot1-sc.enc
texmf-dist/fonts/enc/dvips/newtx/ntx-t1-sc.enc
+ texmf-dist/fonts/enc/dvips/newtx/ntxmiaalt.enc
texmf-dist/fonts/enc/dvips/newtx/sups.enc
texmf-dist/fonts/map/dvips/newtx/newtx.map
texmf-dist/fonts/map/dvips/newtx/zmn.map
@@ -114393,6 +126491,18 @@ runfiles size=1239
texmf-dist/fonts/tfm/public/newtx/LibertineZI-5nu.tfm
texmf-dist/fonts/tfm/public/newtx/LibertineZI-7nu.tfm
texmf-dist/fonts/tfm/public/newtx/LibertineZI-nu.tfm
+ texmf-dist/fonts/tfm/public/newtx/MinLibBol-ly1.tfm
+ texmf-dist/fonts/tfm/public/newtx/MinLibBol-ot1.tfm
+ texmf-dist/fonts/tfm/public/newtx/MinLibBol-t1.tfm
+ texmf-dist/fonts/tfm/public/newtx/MinLibBolIta-ly1.tfm
+ texmf-dist/fonts/tfm/public/newtx/MinLibBolIta-ot1.tfm
+ texmf-dist/fonts/tfm/public/newtx/MinLibBolIta-t1.tfm
+ texmf-dist/fonts/tfm/public/newtx/MinLibIta-ly1.tfm
+ texmf-dist/fonts/tfm/public/newtx/MinLibIta-ot1.tfm
+ texmf-dist/fonts/tfm/public/newtx/MinLibIta-t1.tfm
+ texmf-dist/fonts/tfm/public/newtx/MinLibReg-ly1.tfm
+ texmf-dist/fonts/tfm/public/newtx/MinLibReg-ot1.tfm
+ texmf-dist/fonts/tfm/public/newtx/MinLibReg-t1.tfm
texmf-dist/fonts/tfm/public/newtx/fxlri-5alt.tfm
texmf-dist/fonts/tfm/public/newtx/fxlri-5letters.tfm
texmf-dist/fonts/tfm/public/newtx/fxlri-7alt.tfm
@@ -114410,11 +126520,10 @@ runfiles size=1239
texmf-dist/fonts/tfm/public/newtx/ly1-ntxrc-osf.tfm
texmf-dist/fonts/tfm/public/newtx/ly1-ntxric-osf.tfm
texmf-dist/fonts/tfm/public/newtx/ly1-ntxric.tfm
- texmf-dist/fonts/tfm/public/newtx/ntxbex.tfm
texmf-dist/fonts/tfm/public/newtx/ntxbexa.tfm
texmf-dist/fonts/tfm/public/newtx/ntxbexb.tfm
texmf-dist/fonts/tfm/public/newtx/ntxbexmods.tfm
- texmf-dist/fonts/tfm/public/newtx/ntxbexv.tfm
+ texmf-dist/fonts/tfm/public/newtx/ntxbexx.tfm
texmf-dist/fonts/tfm/public/newtx/ntxbmi.tfm
texmf-dist/fonts/tfm/public/newtx/ntxbmi1.tfm
texmf-dist/fonts/tfm/public/newtx/ntxbmi15.tfm
@@ -114431,11 +126540,10 @@ runfiles size=1239
texmf-dist/fonts/tfm/public/newtx/ntxbsya.tfm
texmf-dist/fonts/tfm/public/newtx/ntxbsyb.tfm
texmf-dist/fonts/tfm/public/newtx/ntxbsyc.tfm
- texmf-dist/fonts/tfm/public/newtx/ntxex.tfm
texmf-dist/fonts/tfm/public/newtx/ntxexa.tfm
texmf-dist/fonts/tfm/public/newtx/ntxexb.tfm
texmf-dist/fonts/tfm/public/newtx/ntxexmods.tfm
- texmf-dist/fonts/tfm/public/newtx/ntxexv.tfm
+ texmf-dist/fonts/tfm/public/newtx/ntxexx.tfm
texmf-dist/fonts/tfm/public/newtx/ntxmi.tfm
texmf-dist/fonts/tfm/public/newtx/ntxmi1.tfm
texmf-dist/fonts/tfm/public/newtx/ntxmi15.tfm
@@ -114449,8 +126557,22 @@ runfiles size=1239
texmf-dist/fonts/tfm/public/newtx/ntxsy7.tfm
texmf-dist/fonts/tfm/public/newtx/ntxsya.tfm
texmf-dist/fonts/tfm/public/newtx/ntxsyb.tfm
+ texmf-dist/fonts/tfm/public/newtx/ntxsybalt.tfm
texmf-dist/fonts/tfm/public/newtx/ntxsyc.tfm
+ texmf-dist/fonts/tfm/public/newtx/ntxsyralt.tfm
texmf-dist/fonts/tfm/public/newtx/nxlbmi.tfm
+ texmf-dist/fonts/tfm/public/newtx/nxlbmi0.tfm
+ texmf-dist/fonts/tfm/public/newtx/nxlbmi01.tfm
+ texmf-dist/fonts/tfm/public/newtx/nxlbmi015.tfm
+ texmf-dist/fonts/tfm/public/newtx/nxlbmi017.tfm
+ texmf-dist/fonts/tfm/public/newtx/nxlbmi02.tfm
+ texmf-dist/fonts/tfm/public/newtx/nxlbmi025.tfm
+ texmf-dist/fonts/tfm/public/newtx/nxlbmi027.tfm
+ texmf-dist/fonts/tfm/public/newtx/nxlbmi03.tfm
+ texmf-dist/fonts/tfm/public/newtx/nxlbmi035.tfm
+ texmf-dist/fonts/tfm/public/newtx/nxlbmi037.tfm
+ texmf-dist/fonts/tfm/public/newtx/nxlbmi05.tfm
+ texmf-dist/fonts/tfm/public/newtx/nxlbmi07.tfm
texmf-dist/fonts/tfm/public/newtx/nxlbmi1.tfm
texmf-dist/fonts/tfm/public/newtx/nxlbmi15.tfm
texmf-dist/fonts/tfm/public/newtx/nxlbmi17.tfm
@@ -114466,6 +126588,18 @@ runfiles size=1239
texmf-dist/fonts/tfm/public/newtx/nxlbsy5.tfm
texmf-dist/fonts/tfm/public/newtx/nxlbsy7.tfm
texmf-dist/fonts/tfm/public/newtx/nxlmi.tfm
+ texmf-dist/fonts/tfm/public/newtx/nxlmi0.tfm
+ texmf-dist/fonts/tfm/public/newtx/nxlmi01.tfm
+ texmf-dist/fonts/tfm/public/newtx/nxlmi015.tfm
+ texmf-dist/fonts/tfm/public/newtx/nxlmi017.tfm
+ texmf-dist/fonts/tfm/public/newtx/nxlmi02.tfm
+ texmf-dist/fonts/tfm/public/newtx/nxlmi025.tfm
+ texmf-dist/fonts/tfm/public/newtx/nxlmi027.tfm
+ texmf-dist/fonts/tfm/public/newtx/nxlmi03.tfm
+ texmf-dist/fonts/tfm/public/newtx/nxlmi035.tfm
+ texmf-dist/fonts/tfm/public/newtx/nxlmi037.tfm
+ texmf-dist/fonts/tfm/public/newtx/nxlmi05.tfm
+ texmf-dist/fonts/tfm/public/newtx/nxlmi07.tfm
texmf-dist/fonts/tfm/public/newtx/nxlmi1.tfm
texmf-dist/fonts/tfm/public/newtx/nxlmi15.tfm
texmf-dist/fonts/tfm/public/newtx/nxlmi17.tfm
@@ -114503,11 +126637,13 @@ runfiles size=1239
texmf-dist/fonts/tfm/public/newtx/rntxmi5.tfm
texmf-dist/fonts/tfm/public/newtx/rntxmi7.tfm
texmf-dist/fonts/tfm/public/newtx/rtxbmi-rev.tfm
+ texmf-dist/fonts/tfm/public/newtx/rtxbmi-ut.tfm
texmf-dist/fonts/tfm/public/newtx/rtxbmi5-rev.tfm
texmf-dist/fonts/tfm/public/newtx/rtxbmi5.tfm
texmf-dist/fonts/tfm/public/newtx/rtxbmi7-rev.tfm
texmf-dist/fonts/tfm/public/newtx/rtxbmi7.tfm
texmf-dist/fonts/tfm/public/newtx/rtxbmio.tfm
+ texmf-dist/fonts/tfm/public/newtx/rtxmi-ut.tfm
texmf-dist/fonts/tfm/public/newtx/rtxmi5.tfm
texmf-dist/fonts/tfm/public/newtx/rtxmi7.tfm
texmf-dist/fonts/tfm/public/newtx/rtxmio.tfm
@@ -114543,6 +126679,8 @@ runfiles size=1239
texmf-dist/fonts/tfm/public/newtx/tyxslj.tfm
texmf-dist/fonts/tfm/public/newtx/zmn-vw-b.tfm
texmf-dist/fonts/tfm/public/newtx/zmn-vw-r.tfm
+ texmf-dist/fonts/tfm/public/newtx/zutbmi.tfm
+ texmf-dist/fonts/tfm/public/newtx/zutmi.tfm
texmf-dist/fonts/tfm/public/newtx/zxlr-5nums.tfm
texmf-dist/fonts/tfm/public/newtx/zxlr-7nums.tfm
texmf-dist/fonts/tfm/public/newtx/zxlr-8r.tfm
@@ -114560,6 +126698,10 @@ runfiles size=1239
texmf-dist/fonts/type1/public/newtx/LibertineZI-5nu.pfb
texmf-dist/fonts/type1/public/newtx/LibertineZI-7nu.pfb
texmf-dist/fonts/type1/public/newtx/LibertineZI-nu.pfb
+ texmf-dist/fonts/type1/public/newtx/MinLibBol.pfb
+ texmf-dist/fonts/type1/public/newtx/MinLibBolIta.pfb
+ texmf-dist/fonts/type1/public/newtx/MinLibIta.pfb
+ texmf-dist/fonts/type1/public/newtx/MinLibReg.pfb
texmf-dist/fonts/type1/public/newtx/fxlri-5letters.pfb
texmf-dist/fonts/type1/public/newtx/fxlri-7letters.pfb
texmf-dist/fonts/type1/public/newtx/fxlri-vw.pfb
@@ -114578,6 +126720,8 @@ runfiles size=1239
texmf-dist/fonts/type1/public/newtx/ntxexb.pfb
texmf-dist/fonts/type1/public/newtx/ntxexmods.pfb
texmf-dist/fonts/type1/public/newtx/ntxsups.pfb
+ texmf-dist/fonts/type1/public/newtx/ntxsybalt.pfb
+ texmf-dist/fonts/type1/public/newtx/ntxsyralt.pfb
texmf-dist/fonts/type1/public/newtx/rntxbmi.pfb
texmf-dist/fonts/type1/public/newtx/rntxbmi5.pfb
texmf-dist/fonts/type1/public/newtx/rntxbmi7.pfb
@@ -114605,9 +126749,8 @@ runfiles size=1239
texmf-dist/fonts/type1/public/newtx/zxlri.pfb
texmf-dist/fonts/type1/public/newtx/zxlz.pfb
texmf-dist/fonts/type1/public/newtx/zxlzi.pfb
- texmf-dist/fonts/vf/public/newtx/ntxbex.vf
texmf-dist/fonts/vf/public/newtx/ntxbexa.vf
- texmf-dist/fonts/vf/public/newtx/ntxbexv.vf
+ texmf-dist/fonts/vf/public/newtx/ntxbexx.vf
texmf-dist/fonts/vf/public/newtx/ntxbmi.vf
texmf-dist/fonts/vf/public/newtx/ntxbmi1.vf
texmf-dist/fonts/vf/public/newtx/ntxbmi15.vf
@@ -114622,9 +126765,8 @@ runfiles size=1239
texmf-dist/fonts/vf/public/newtx/ntxbsya.vf
texmf-dist/fonts/vf/public/newtx/ntxbsyb.vf
texmf-dist/fonts/vf/public/newtx/ntxbsyc.vf
- texmf-dist/fonts/vf/public/newtx/ntxex.vf
texmf-dist/fonts/vf/public/newtx/ntxexa.vf
- texmf-dist/fonts/vf/public/newtx/ntxexv.vf
+ texmf-dist/fonts/vf/public/newtx/ntxexx.vf
texmf-dist/fonts/vf/public/newtx/ntxmi.vf
texmf-dist/fonts/vf/public/newtx/ntxmi1.vf
texmf-dist/fonts/vf/public/newtx/ntxmi15.vf
@@ -114639,6 +126781,18 @@ runfiles size=1239
texmf-dist/fonts/vf/public/newtx/ntxsyb.vf
texmf-dist/fonts/vf/public/newtx/ntxsyc.vf
texmf-dist/fonts/vf/public/newtx/nxlbmi.vf
+ texmf-dist/fonts/vf/public/newtx/nxlbmi0.vf
+ texmf-dist/fonts/vf/public/newtx/nxlbmi01.vf
+ texmf-dist/fonts/vf/public/newtx/nxlbmi015.vf
+ texmf-dist/fonts/vf/public/newtx/nxlbmi017.vf
+ texmf-dist/fonts/vf/public/newtx/nxlbmi02.vf
+ texmf-dist/fonts/vf/public/newtx/nxlbmi025.vf
+ texmf-dist/fonts/vf/public/newtx/nxlbmi027.vf
+ texmf-dist/fonts/vf/public/newtx/nxlbmi03.vf
+ texmf-dist/fonts/vf/public/newtx/nxlbmi035.vf
+ texmf-dist/fonts/vf/public/newtx/nxlbmi037.vf
+ texmf-dist/fonts/vf/public/newtx/nxlbmi05.vf
+ texmf-dist/fonts/vf/public/newtx/nxlbmi07.vf
texmf-dist/fonts/vf/public/newtx/nxlbmi1.vf
texmf-dist/fonts/vf/public/newtx/nxlbmi15.vf
texmf-dist/fonts/vf/public/newtx/nxlbmi17.vf
@@ -114654,6 +126808,18 @@ runfiles size=1239
texmf-dist/fonts/vf/public/newtx/nxlbsy5.vf
texmf-dist/fonts/vf/public/newtx/nxlbsy7.vf
texmf-dist/fonts/vf/public/newtx/nxlmi.vf
+ texmf-dist/fonts/vf/public/newtx/nxlmi0.vf
+ texmf-dist/fonts/vf/public/newtx/nxlmi01.vf
+ texmf-dist/fonts/vf/public/newtx/nxlmi015.vf
+ texmf-dist/fonts/vf/public/newtx/nxlmi017.vf
+ texmf-dist/fonts/vf/public/newtx/nxlmi02.vf
+ texmf-dist/fonts/vf/public/newtx/nxlmi025.vf
+ texmf-dist/fonts/vf/public/newtx/nxlmi027.vf
+ texmf-dist/fonts/vf/public/newtx/nxlmi03.vf
+ texmf-dist/fonts/vf/public/newtx/nxlmi035.vf
+ texmf-dist/fonts/vf/public/newtx/nxlmi037.vf
+ texmf-dist/fonts/vf/public/newtx/nxlmi05.vf
+ texmf-dist/fonts/vf/public/newtx/nxlmi07.vf
texmf-dist/fonts/vf/public/newtx/nxlmi1.vf
texmf-dist/fonts/vf/public/newtx/nxlmi15.vf
texmf-dist/fonts/vf/public/newtx/nxlmi17.vf
@@ -114686,6 +126852,9 @@ runfiles size=1239
texmf-dist/fonts/vf/public/newtx/tyxij.vf
texmf-dist/fonts/vf/public/newtx/tyxrj.vf
texmf-dist/fonts/vf/public/newtx/tyxslj.vf
+ texmf-dist/fonts/vf/public/newtx/zutbmi.vf
+ texmf-dist/fonts/vf/public/newtx/zutmi.vf
+ texmf-dist/tex/latex/newtx/ly1minlibertine.fd
texmf-dist/tex/latex/newtx/ly1ntxr.fd
texmf-dist/tex/latex/newtx/ly1ntxr1.fd
texmf-dist/tex/latex/newtx/ly1ntxrj.fd
@@ -114696,10 +126865,11 @@ runfiles size=1239
texmf-dist/tex/latex/newtx/newtxtext.sty
texmf-dist/tex/latex/newtx/omlntxmi.fd
texmf-dist/tex/latex/newtx/omlnxlmi.fd
+ texmf-dist/tex/latex/newtx/omlzbvmi.fd
texmf-dist/tex/latex/newtx/omlzmnmi.fd
+ texmf-dist/tex/latex/newtx/omlzutmi.fd
texmf-dist/tex/latex/newtx/omsntxsy.fd
- texmf-dist/tex/latex/newtx/omxntxex.fd
- texmf-dist/tex/latex/newtx/omxntxexv.fd
+ texmf-dist/tex/latex/newtx/ot1minlibertine.fd
texmf-dist/tex/latex/newtx/ot1ntxr.fd
texmf-dist/tex/latex/newtx/ot1ntxr1.fd
texmf-dist/tex/latex/newtx/ot1ntxrj.fd
@@ -114707,6 +126877,7 @@ runfiles size=1239
texmf-dist/tex/latex/newtx/ot1ntxss.fd
texmf-dist/tex/latex/newtx/ot1ntxtt.fd
texmf-dist/tex/latex/newtx/t1fxl1.fd
+ texmf-dist/tex/latex/newtx/t1minlibertine.fd
texmf-dist/tex/latex/newtx/t1ntxr.fd
texmf-dist/tex/latex/newtx/t1ntxr1.fd
texmf-dist/tex/latex/newtx/t1ntxrj.fd
@@ -114727,9 +126898,65 @@ runfiles size=1239
texmf-dist/tex/latex/newtx/untxtt.fd
texmf-dist/tex/latex/newtx/uzmnmia.fd
catalogue-ctan /fonts/newtx
-catalogue-date 2013-05-27 20:07:27 +0200
+catalogue-date 2014-05-17 00:56:42 +0200
catalogue-license lppl
-catalogue-version 1.11
+catalogue-version 1.27
+
+name newtxtt
+category Package
+revision 33819
+shortdesc Enhancement of typewriter fonts from newtx.
+longdesc The package provides enhanced fonts with LaTeX support files
+longdesc providing access to the typewriter fonts from newtx. Regular
+longdesc and bold weights, slanted variants and a choice of four
+longdesc different styles for zero.
+execute addMap newtxtt.map
+docfiles size=18
+ texmf-dist/doc/fonts/newtxtt/README details="Readme"
+ texmf-dist/doc/fonts/newtxtt/newtxtt-doc.pdf
+ texmf-dist/doc/fonts/newtxtt/newtxtt-doc.tex
+runfiles size=75
+ texmf-dist/fonts/enc/dvips/newtxtt/txttAec.enc
+ texmf-dist/fonts/enc/dvips/newtxtt/txttBec.enc
+ texmf-dist/fonts/enc/dvips/newtxtt/txttCec.enc
+ texmf-dist/fonts/enc/dvips/newtxtt/txttDec.enc
+ texmf-dist/fonts/map/dvips/newtxtt/newtxtt.map
+ texmf-dist/fonts/tfm/public/newtxtt/newtxbtta.tfm
+ texmf-dist/fonts/tfm/public/newtxtt/newtxbttb.tfm
+ texmf-dist/fonts/tfm/public/newtxtt/newtxbttc.tfm
+ texmf-dist/fonts/tfm/public/newtxtt/newtxbttd.tfm
+ texmf-dist/fonts/tfm/public/newtxtt/newtxbttsca.tfm
+ texmf-dist/fonts/tfm/public/newtxtt/newtxbttscb.tfm
+ texmf-dist/fonts/tfm/public/newtxtt/newtxbttscc.tfm
+ texmf-dist/fonts/tfm/public/newtxtt/newtxbttscd.tfm
+ texmf-dist/fonts/tfm/public/newtxtt/newtxbttsla.tfm
+ texmf-dist/fonts/tfm/public/newtxtt/newtxbttslb.tfm
+ texmf-dist/fonts/tfm/public/newtxtt/newtxbttslc.tfm
+ texmf-dist/fonts/tfm/public/newtxtt/newtxbttsld.tfm
+ texmf-dist/fonts/tfm/public/newtxtt/newtxtt.tfm
+ texmf-dist/fonts/tfm/public/newtxtt/newtxtta.tfm
+ texmf-dist/fonts/tfm/public/newtxtt/newtxttb.tfm
+ texmf-dist/fonts/tfm/public/newtxtt/newtxttc.tfm
+ texmf-dist/fonts/tfm/public/newtxtt/newtxttd.tfm
+ texmf-dist/fonts/tfm/public/newtxtt/newtxttsca.tfm
+ texmf-dist/fonts/tfm/public/newtxtt/newtxttscb.tfm
+ texmf-dist/fonts/tfm/public/newtxtt/newtxttscc.tfm
+ texmf-dist/fonts/tfm/public/newtxtt/newtxttscd.tfm
+ texmf-dist/fonts/tfm/public/newtxtt/newtxttsla.tfm
+ texmf-dist/fonts/tfm/public/newtxtt/newtxttslb.tfm
+ texmf-dist/fonts/tfm/public/newtxtt/newtxttslc.tfm
+ texmf-dist/fonts/tfm/public/newtxtt/newtxttsld.tfm
+ texmf-dist/fonts/type1/public/newtxtt/newtxbtt.pfb
+ texmf-dist/fonts/type1/public/newtxtt/newtxbttsc.pfb
+ texmf-dist/fonts/type1/public/newtxtt/newtxtt.pfb
+ texmf-dist/fonts/type1/public/newtxtt/newtxttsc.pfb
+ texmf-dist/tex/latex/newtxtt/newtxtt.sty
+ texmf-dist/tex/latex/newtxtt/t1newtxtt.fd
+ texmf-dist/tex/latex/newtxtt/ts1newtxtt.fd
+catalogue-ctan /fonts/newtxtt
+catalogue-date 2014-05-06 15:51:33 +0200
+catalogue-license gpl3
+catalogue-version 1.00
name newunicodechar
category Package
@@ -114750,7 +126977,7 @@ srcfiles size=6
runfiles size=2
texmf-dist/tex/latex/newunicodechar/newunicodechar.sty
catalogue-ctan /macros/latex/contrib/newunicodechar
-catalogue-date 2012-11-13 18:34:11 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.1
@@ -114799,7 +127026,7 @@ srcfiles size=7
runfiles size=2
texmf-dist/tex/latex/newverbs/newverbs.sty
catalogue-ctan /macros/latex/contrib/newverbs
-catalogue-date 2012-06-06 18:53:06 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.3a
@@ -114833,7 +127060,7 @@ docfiles size=41
runfiles size=6
texmf-dist/tex/latex/nfssext-cfr/nfssext-cfr.sty
catalogue-ctan /macros/latex/contrib/nfssext-cfr
-catalogue-date 2012-07-17 17:50:51 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.2
@@ -114860,7 +127087,7 @@ runfiles size=5
texmf-dist/tex/latex/nicefilelist/nicefilelist.RLS
texmf-dist/tex/latex/nicefilelist/nicefilelist.sty
catalogue-ctan /macros/latex/contrib/nicefilelist
-catalogue-date 2012-12-13 11:39:24 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 0.7a
@@ -114901,16 +127128,16 @@ shortdesc Minimal markup for simple text (Wikipedia style) and documentation.
longdesc The bundle offers "minimal" markup syntax for various simple
longdesc kinds of text. The user will typically involve little more than
longdesc is printed, and will still get LaTeX quality. The bundle
-longdesc provides four packages: - wiki addresses general texts, marked
-longdesc up in the simple style used on Wikipedia; - niceverb is yet
-longdesc another means of documenting LaTeX packages: it offers syntax-
-longdesc aware typesetting of meta-variables (macro arguments) and for
+longdesc provides four packages: wiki addresses general texts, marked up
+longdesc in the simple style used on Wikipedia; niceverb is yet another
+longdesc means of documenting LaTeX packages: it offers syntax-aware
+longdesc typesetting of meta-variables (macro arguments) and for
longdesc referring to commands (and their syntax) in footnotes, section
-longdesc titles etc.; - fifinddo aims to parse plain text or (La)TeX
-longdesc files using TeX, and to write the results to an external file;
-longdesc the package is used by another member of the bundle: - makedoc,
-longdesc which provides the means to produce typeset documentation
-longdesc direct from package files.
+longdesc titles etc.; fifinddo aims to parse plain text or (La)TeX files
+longdesc using TeX, and to write the results to an external file; the
+longdesc package is used by another member of the bundle: makedoc, which
+longdesc provides the means to produce typeset documentation direct from
+longdesc package files.
docfiles size=719
texmf-dist/doc/latex/nicetext/ANNOUNCE.txt
texmf-dist/doc/latex/nicetext/CHANGE.LOG
@@ -114967,7 +127194,7 @@ runfiles size=56
texmf-dist/tex/latex/nicetext/run/u8atablg.fdf
texmf-dist/tex/latex/nicetext/wiki.sty
catalogue-ctan /macros/latex/contrib/nicetext
-catalogue-date 2012-12-02 13:05:20 +0100
+catalogue-date 2013-12-16 18:11:57 +0100
catalogue-license lppl
catalogue-version 0.65
@@ -115020,13 +127247,13 @@ runfiles size=68
texmf-dist/metapost/nkarta/nkarta.mp
texmf-dist/metapost/nkarta/nkchars.mp
catalogue-ctan /fonts/nkarta
-catalogue-date 2012-05-15 17:33:34 +0200
+catalogue-date 2014-05-17 00:56:42 +0200
catalogue-license pd
catalogue-version 0.2
name nlctdoc
category Package
-revision 27116
+revision 32705
shortdesc Package documentation class.
longdesc The class provides support for the documentation of the
longdesc author's packages, using koma-script. This class is provided
@@ -115037,9 +127264,9 @@ docfiles size=1
runfiles size=11
texmf-dist/tex/latex/nlctdoc/nlctdoc.cls
catalogue-ctan /macros/latex/contrib/nlctdoc
-catalogue-date 2012-07-20 01:08:10 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
-catalogue-version 1.02
+catalogue-version 1.04
name noconflict
category Package
@@ -115054,10 +127281,31 @@ docfiles size=1
runfiles size=1
texmf-dist/tex/latex/noconflict/noconflict.sty
catalogue-ctan /macros/latex/contrib/noconflict
-catalogue-date 2013-04-27 00:34:43 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.0
+name noindentafter
+category Package
+revision 31341
+shortdesc Tool to prevent paragraph indentation after environments/macros.
+longdesc The package, as the name suggests, supplies tools to
+longdesc automatically suppress indentations in following paragraphs,
+longdesc specifically those following a particular macro or environment.
+docfiles size=63
+ texmf-dist/doc/latex/noindentafter/README details="Readme"
+ texmf-dist/doc/latex/noindentafter/dry.sty
+ texmf-dist/doc/latex/noindentafter/noindentafter.pdf details="Package documentation"
+ texmf-dist/doc/latex/noindentafter/noindentafter.tex
+ texmf-dist/doc/latex/noindentafter/packagedoc.cls
+ texmf-dist/doc/latex/noindentafter/with.sty
+runfiles size=2
+ texmf-dist/tex/latex/noindentafter/noindentafter.sty
+catalogue-ctan /macros/latex/contrib/noindentafter
+catalogue-date 2014-02-26 23:03:13 +0100
+catalogue-license lppl
+catalogue-version 0.0.1
+
name noitcrul
category Package
revision 15878
@@ -115188,7 +127436,7 @@ srcfiles size=7
runfiles size=1
texmf-dist/tex/latex/nonumonpart/nonumonpart.sty
catalogue-ctan /macros/latex/contrib/nonumonpart
-catalogue-date 2012-06-09 11:52:18 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.2
catalogue-version 1
@@ -115257,7 +127505,7 @@ runfiles size=10
texmf-dist/tex/latex/nostarch/nostarch.cls
texmf-dist/tex/latex/nostarch/nshyper.sty
catalogue-ctan /macros/latex/contrib/nostarch
-catalogue-date 2012-06-09 12:09:52 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.3
@@ -115302,7 +127550,7 @@ catalogue-version v1.0.1
name notes2bib
category Package
-revision 28205
+revision 31162
shortdesc Integrating notes into the bibliography.
longdesc The package defines a new type of note, bibnote, which will
longdesc always be added to the bibliography. The package allows
@@ -115318,15 +127566,14 @@ longdesc LaTeX 3 support from the l3kernel and l3packages bundles.
docfiles size=50
texmf-dist/doc/latex/notes2bib/README details="Readme"
texmf-dist/doc/latex/notes2bib/notes2bib.pdf details="Package documentation"
-srcfiles size=16
+srcfiles size=15
texmf-dist/source/latex/notes2bib/notes2bib.dtx
- texmf-dist/source/latex/notes2bib/notes2bib.ins
runfiles size=5
texmf-dist/tex/latex/notes2bib/notes2bib.sty
catalogue-ctan /macros/latex/contrib/notes2bib
-catalogue-date 2012-11-07 12:34:14 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
-catalogue-version 2.0j
+catalogue-version 2.0k
name notoccite
category Package
@@ -115365,6 +127612,23 @@ catalogue-date 2012-06-09 12:09:52 +0200
catalogue-license lppl1.3
catalogue-version 1.0
+name nox
+category Package
+revision 30991
+shortdesc Adaptable tables.
+longdesc The package allows data, text (including (La)TeX commands or
+longdesc environments) to be formatted into a array which may be split.
+docfiles size=47
+ texmf-dist/doc/latex/nox/README details="Readme (German)" language="de"
+ texmf-dist/doc/latex/nox/nox.pdf details="Package documentation (German)" language="de"
+ texmf-dist/doc/latex/nox/nox.tex
+runfiles size=4
+ texmf-dist/tex/latex/nox/nox.sty
+catalogue-ctan /macros/latex/contrib/nox
+catalogue-date 2014-02-26 23:03:13 +0100
+catalogue-license lppl
+catalogue-version 1.0
+
name nrc
category Package
revision 29027
@@ -115448,11 +127712,11 @@ category Package
revision 27609
shortdesc Enhanced theorem environment.
longdesc The package offers enhancements for theorem-like environments:
-longdesc - easier control of layout; proper placement of endmarks even
+longdesc easier control of layout; proper placement of endmarks even
longdesc when the environment ends with \end{enumerate} or
longdesc \end{displaymath} (including support for amsmath displayed-
-longdesc equation environments); and - support for making a list of
-longdesc theorems like \listoffigures.
+longdesc equation environments); and support for making a list of
+longdesc theorems, analagous to \listoffigures.
docfiles size=118
texmf-dist/doc/latex/ntheorem/README details="Readme"
texmf-dist/doc/latex/ntheorem/ntheorem.pdf details="Package documentation (English)" language="en"
@@ -115464,7 +127728,7 @@ runfiles size=12
texmf-dist/tex/latex/ntheorem/ntheorem.std
texmf-dist/tex/latex/ntheorem/ntheorem.sty
catalogue-ctan /macros/latex/contrib/ntheorem
-catalogue-date 2013-03-23 12:49:48 +0100
+catalogue-date 2014-01-13 13:29:15 +0100
catalogue-license lppl
catalogue-version 1.33
@@ -115496,7 +127760,7 @@ docfiles size=145
texmf-dist/doc/latex/ntheorem-vn/test.pdf
texmf-dist/doc/latex/ntheorem-vn/test.tex
catalogue-ctan /info/translations/ntheorem/vn
-catalogue-date 2012-06-24 15:32:36 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.203
@@ -115516,32 +127780,32 @@ docfiles size=23
runfiles size=3
texmf-dist/tex/latex/nuc/nuc.sty
catalogue-ctan /macros/latex/contrib/nuc
-catalogue-date 2012-07-17 22:02:06 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 0.1
name numberedblock
category Package
-revision 29447
+revision 33109
shortdesc Print a block of code, with unique index number.
longdesc The package has been created for the convenience of the report
longdesc writer; it provides the means to number, and label, code-block
longdesc snippets in your document. In this way, you can (unambiguously)
longdesc refer to each snippet elsewhere in your document.
-docfiles size=11
+docfiles size=21
texmf-dist/doc/latex/numberedblock/README details="Readme"
texmf-dist/doc/latex/numberedblock/testnumberedblock.pdf details="Demonstration of use"
texmf-dist/doc/latex/numberedblock/testnumberedblock.tex
-runfiles size=1
+runfiles size=2
texmf-dist/tex/latex/numberedblock/numberedblock.sty
catalogue-ctan /macros/latex/contrib/numberedblock
-catalogue-date 2013-03-23 12:52:27 +0100
-catalogue-license pd
-catalogue-version 1.01
+catalogue-date 2014-03-06 18:55:44 +0100
+catalogue-license lppl1.3
+catalogue-version 1.10
name numericplots
category Package
-revision 30103
+revision 31729
shortdesc Plot numeric data (including Matlab export) using PSTricks.
longdesc Plotting numeric data is a task which has often to be done for
longdesc scientific papers. LaTeX itself provides no facilities for
@@ -115549,7 +127813,7 @@ longdesc drawing more than the simplest plots from supplied data. The
longdesc package will process user input, and uses PSTricks to plot the
longdesc results. The package provides Matlab functions to transform
longdesc Matlab results to plottable data.
-docfiles size=372
+docfiles size=373
texmf-dist/doc/latex/numericplots/License.txt
texmf-dist/doc/latex/numericplots/NumericPlots.pdf
texmf-dist/doc/latex/numericplots/README details="Readme"
@@ -115594,6 +127858,7 @@ docfiles size=372
texmf-dist/doc/latex/numericplots/src/examples/furtherEx_TickLabels.tex
texmf-dist/doc/latex/numericplots/src/examples/multiplots_exampleI.tex
texmf-dist/doc/latex/numericplots/src/examples/multiplots_exampleII.tex
+ texmf-dist/doc/latex/numericplots/src/examples/multiplots_exampleIII.tex
texmf-dist/doc/latex/numericplots/src/fig_NoiseData_ClosedLine.eps
texmf-dist/doc/latex/numericplots/src/fig_NoiseData_OpenLine.eps
texmf-dist/doc/latex/numericplots/src/history.tex
@@ -115607,9 +127872,9 @@ runfiles size=16
texmf-dist/tex/latex/numericplots/NumericPlots_macros.tex
texmf-dist/tex/latex/numericplots/NumericPlots_styles.tex
catalogue-ctan /graphics/pstricks/contrib/numericplots
-catalogue-date 2013-04-25 12:06:29 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license gpl3
-catalogue-version 2.0.1
+catalogue-version 2.0.2
name numname
category Package
@@ -115626,7 +127891,7 @@ docfiles size=30
runfiles size=5
texmf-dist/tex/latex/numname/numname.sty
catalogue-ctan /macros/latex/contrib/numname
-catalogue-date 2012-07-17 22:02:06 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
name numprint
@@ -115673,107 +127938,104 @@ catalogue-version 1.39
name oberdiek
category Package
-revision 30469
+revision 33322
shortdesc A bundle of packages submitted by Heiko Oberdiek.
-longdesc The bundle comprises packages to provide: - accsupp: better
-longdesc accessibility support for PDF files; - aliascnt: 'alias
-longdesc counters'; - alphalph: multiple-alphabetic counting
+longdesc The bundle comprises packages to provide: accsupp: better
+longdesc accessibility support for PDF files; aliascnt: 'alias
+longdesc counters'; alphalph: multiple-alphabetic counting
longdesc (a...z,aa...zz,... -- up to the full extent of a TeX counter);
-longdesc - askinclude: replaces \includeonly by an interactive user
-longdesc interface; - atbegshi: a modern reimplementation of package
-longdesc everyshi; - atenddvi: provides \AtEndDvi command; -
-longdesc attachfile2: attach files to PDF files; - atveryend: hooks the
-longdesc very end of a document; - auxhook: stick stuff at the start of
-longdesc the .aux file; - bigintcalc: expandable arithmetic operations
-longdesc with big integers that can exceed TeX's number limits; -
-longdesc bitset: defines and implements the data type bit set, a vector
-longdesc of bits; - bmpsize: get bitmap size and resolution data; -
-longdesc bookmark: alternative bookmark (outline) organization for
-longdesc package hyperref; - catchfile: collects the contents of a file
-longdesc and puts it in a macro; - centernot: a horizontally-centred
-longdesc \not symbol; - chemarr: extensible chemists' reaction arrows; -
-longdesc classlist: record information about document class(es) used; -
-longdesc colonequals: poor man's mathematical relation symbols; -
-longdesc dvipscol: dvips colour stack management; - embedfile: embed
-longdesc files in PDF documents; - engord: define counter-printing
-longdesc operations producing English ordinals; - eolgrab: collect
-longdesc arguments delimited by end of line; - epstopdf: conversion with
-longdesc epstopdf on the fly; - etexcmds: adds a prefix to eTeX's
-longdesc commands, to avoid conflicts with existing macros; - flags:
-longdesc setting and clearing flags in bit fields and converting the bit
-longdesc field into a decimal number; - gettitlestring: clean up the
-longdesc string containing the title of a section, etc.; - grfext:
-longdesc macros for adding and reordering the list of graphics file
-longdesc extensions recognised by the graphics package; - grffile:
-longdesc extend file name processing in the graphics bundle; - hosub:
-longdesc build collections of packages; - holtxdoc: extra documentation
-longdesc macros; - hologo: bookmark-enabled logos; - hopatch: safely
-longdesc apply package patches; - hycolor: implements the color option
-longdesc stuff that is used by packages hyperref and bookmark; -
-longdesc hypbmsec: bookmarks in sectioning commands; - hypcap: anjusting
-longdesc anchors of captions; - hypdestopt: optimising hyperref's pdftex
-longdesc driver destinations; - hypdoc: hyper-references in the LaTeX
-longdesc standard doc package; - hypgotoe: experimental package for
-longdesc links to embedded files; - hyphsubst: substitute hyphenation
-longdesc patterns; - ifdraft: switch for option draft; - iflang:
-longdesc provides expandable checks for the current language; -
-longdesc ifluatex: looks for LuaTeX regardless of its mode and provides
-longdesc the switch \ifluatex; - ifpdf: provides the ifpdf switch; -
-longdesc ifvtex: provides the \ifvtex switch; - infwarerr: provides a
-longdesc complete set of macros for informations, warnings and error
-longdesc messages with support for plain TeX; - inputenx: enhanced
-longdesc handling of input encoding; - intcalc: provides expandable
-longdesc arithmetic operations with integers; - kvdefinekeys: define
-longdesc key-value keys in the same manner as keyval; - kvoptions: use
-longdesc package options in key value format ; - kvsetkeys: a variant of
-longdesc the \setkeys command; - letltxmacro: Let assignment for LaTeX
-longdesc macros; - listingsutf8: (partially) extends the listings
-longdesc package to UTF-8 encoding; - ltxcmds: exports some utility
-longdesc macros from the LaTeX kernel into a separate namespace and also
-longdesc provides them for other formats such as plain-TeX; - luacolor:
-longdesc implements colour support based on LuaTeX's node attributes; -
-longdesc luatex: utilises new and extended features and resources that
-longdesc LuaTeX provides; - magicnum: allows to access magic numbers by
-longdesc a hierarchical name system; - makerobust: make a command
-longdesc robust; - pagegrid: prints a page grid in the background; -
-longdesc pagesel: select pages of a document for output; - pdfcolfoot:
-longdesc using pdftex's color stack for footnotes; - pdfcol: macros for
-longdesc setting and maintaining new color stacks; - pdfcolmk: PDFTeX
-longdesc COLour MarK -- fake a PDFTeX colour stack using marks (not
-longdesc needed for PDFTeX 1.40.0 and later); - pdfcolparallel: fixes
-longdesc colour problems in package parallel; - pdfcolparcolumns: fixes
-longdesc colour problems in package parcolumns; - pdfcrypt: setting PDF
-longdesc encryption; - pdfescape: pdfTeX's escape features using TeX or
-longdesc e-TeX; - pdflscape: landscape pages in PDF; - pdfrender:
-longdesc control PDF rendering modes; - pdftexcmds: provide PDFTeX
-longdesc primitives missing in LuaTeX; - picture: dimens for picture
-longdesc macros; - pmboxdraw: poor man's box drawing characters; -
+longdesc askinclude: replaces \includeonly by an interactive user
+longdesc interface; atbegshi: a modern reimplementation of package
+longdesc everyshi; atenddvi: provides \AtEndDvi command; attachfile2:
+longdesc attach files to PDF files; atveryend: hooks the very end of a
+longdesc document; auxhook: stick stuff at the start of the .aux file;
+longdesc bigintcalc: expandable arithmetic operations with big integers
+longdesc that can exceed TeX's number limits; bitset: defines and
+longdesc implements the data type bit set, a vector of bits; bmpsize:
+longdesc get bitmap size and resolution data; bookmark: alternative
+longdesc bookmark (outline) organization for package hyperref;
+longdesc catchfile: collects the contents of a file and puts it in a
+longdesc macro; centernot: a horizontally-centred \not symbol; chemarr:
+longdesc extensible chemists' reaction arrows; classlist: record
+longdesc information about document class(es) used; colonequals: poor
+longdesc man's mathematical relation symbols; dvipscol: dvips colour
+longdesc stack management; embedfile: embed files in PDF documents;
+longdesc engord: define counter-printing operations producing English
+longdesc ordinals; eolgrab: collect arguments delimited by end of line;
+longdesc epstopdf: conversion with epstopdf on the fly; etexcmds: adds a
+longdesc prefix to eTeX's commands, to avoid conflicts with existing
+longdesc macros; flags: setting and clearing flags in bit fields and
+longdesc converting the bit field into a decimal number; gettitlestring:
+longdesc clean up the string containing the title of a section, etc.;
+longdesc grfext: macros for adding and reordering the list of graphics
+longdesc file extensions recognised by the graphics package; grffile:
+longdesc extend file name processing in the graphics bundle; hosub:
+longdesc build collections of packages; holtxdoc: extra documentation
+longdesc macros; hologo: bookmark-enabled logos; hopatch: safely apply
+longdesc package patches; hycolor: implements the color option stuff
+longdesc that is used by packages hyperref and bookmark; hypbmsec:
+longdesc bookmarks in sectioning commands; hypcap: anjusting anchors of
+longdesc captions; hypdestopt: optimising hyperref's pdftex driver
+longdesc destinations; hypdoc: hyper-references in the LaTeX standard
+longdesc doc package; hypgotoe: experimental package for links to
+longdesc embedded files; hyphsubst: substitute hyphenation patterns;
+longdesc ifdraft: switch for option draft; iflang: provides expandable
+longdesc checks for the current language; ifluatex: looks for LuaTeX
+longdesc regardless of its mode and provides the switch \ifluatex;
+longdesc ifpdf: provides the \ifpdf switch; ifvtex: provides the \ifvtex
+longdesc switch; infwarerr: provides a complete set of macros for
+longdesc informations, warnings and error messages with support for
+longdesc plain TeX; inputenx: enhanced handling of input encoding;
+longdesc intcalc: provides expandable arithmetic operations with
+longdesc integers; kvdefinekeys: define key-value keys in the same
+longdesc manner as keyval; kvoptions: use package options in key value
+longdesc format ; kvsetkeys: a variant of the \setkeys command;
+longdesc letltxmacro: Let assignment for LaTeX macros; listingsutf8:
+longdesc (partially) extends the listings package to UTF-8 encoding;
+longdesc ltxcmds: exports some utility macros from the LaTeX kernel into
+longdesc a separate namespace and also provides them for other formats
+longdesc such as plain-TeX; luacolor: implements colour support based on
+longdesc LuaTeX's node attributes; luatex: utilises new and extended
+longdesc features and resources that LuaTeX provides; magicnum: allows
+longdesc to access magic numbers by a hierarchical name system;
+longdesc makerobust: make a command robust; pagegrid: prints a page grid
+longdesc in the background; pagesel: select pages of a document for
+longdesc output; pdfcolfoot: using pdftex's color stack for footnotes;
+longdesc pdfcol: macros for setting and maintaining new color stacks;
+longdesc pdfcolmk: PDFTeX COLour MarK -- fake a PDFTeX colour stack
+longdesc using marks (not needed for PDFTeX 1.40.0 and later);
+longdesc pdfcolparallel: fixes colour problems in package parallel;
+longdesc pdfcolparcolumns: fixes colour problems in package parcolumns;
+longdesc pdfcrypt: setting PDF encryption; pdfescape: pdfTeX's escape
+longdesc features using TeX or e-TeX; pdflscape: landscape pages in PDF;
+longdesc pdfrender: control PDF rendering modes; pdftexcmds: provide
+longdesc PDFTeX primitives missing in LuaTeX; picture: dimens for
+longdesc picture macros; pmboxdraw: poor man's box drawing characters;
longdesc protecteddef: define a command that protected against
-longdesc expansion; - refcount: using the numeric values of references;
-longdesc - rerunfilecheck: checksum based rerun checks on auxiliary
-longdesc files; - resizegather: automatically resize overly large
-longdesc equations; - rotchiffre: performs simple rotation cyphers; -
-longdesc scrindex: redefines environment 'theindex' of package 'index',
-longdesc if a class from KOMA-Script is loaded; - selinput: select the
-longdesc input encoding by specifying pairs of input characters and
-longdesc their glyph names; - setouterhbox: set \hbox in outer
-longdesc horizontal mode; - settobox: getting box sizes; - soulutf8:
-longdesc extends package soul and adds some support for UTF-8; -
-longdesc stackrel: extensions of the \stackrel command; - stampinclude:
-longdesc selects the files for \include by inspecting the timestamp of
-longdesc the .aux file(s); - stringenc: provides \StringEncodingConvert
-longdesc for converting a string between different encodings; -
-longdesc tabularht: tabulars with height specification; - tabularkv: key
-longdesc value interface for tabular parameters; - telprint: print
-longdesc German telephone numbers; - thepdfnumber: canonical numbers for
-longdesc use in PDF files and elsewhere; - transparent: using a color
-longdesc stack for transparency with pdftex; - twoopt: commands with two
-longdesc optional arguments; - uniquecounter: provides unlimited unique
-longdesc counter; - zref: a proposed new reference system. Each of the
-longdesc packages is represented by two files, a .dtx (documented
-longdesc source) and a PDF file; the .ins file necessary for
-longdesc installation is extracted by running the .dtx file with Plain
-longdesc TeX.
+longdesc expansion; refcount: using the numeric values of references;
+longdesc rerunfilecheck: checksum based rerun checks on auxiliary files;
+longdesc resizegather: automatically resize overly large equations;
+longdesc rotchiffre: performs simple rotation cyphers; scrindex:
+longdesc redefines environment 'theindex' of package 'index', if a class
+longdesc from KOMA-Script is loaded; selinput: select the input encoding
+longdesc by specifying pairs of input characters and their glyph names;
+longdesc setouterhbox: set \hbox in outer horizontal mode; settobox:
+longdesc getting box sizes; soulutf8: extends package soul and adds some
+longdesc support for UTF-8; stackrel: extensions of the \stackrel
+longdesc command; stampinclude: selects the files for \include by
+longdesc inspecting the timestamp of the .aux file(s); stringenc:
+longdesc provides \StringEncodingConvert for converting a string between
+longdesc different encodings; tabularht: tabulars with height
+longdesc specification; tabularkv: key value interface for tabular
+longdesc parameters; telprint: print German telephone numbers;
+longdesc thepdfnumber: canonical numbers for use in PDF files and
+longdesc elsewhere; transparent: using a color stack for transparency
+longdesc with pdftex; twoopt: commands with two optional arguments;
+longdesc uniquecounter: provides unlimited unique counter; zref: a
+longdesc proposed new reference system. Each of the packages is
+longdesc represented by two files, a .dtx (documented source) and a PDF
+longdesc file; the .ins file necessary for installation is extracted by
+longdesc running the .dtx file with Plain TeX.
docfiles size=4923
texmf-dist/doc/latex/oberdiek/accsupp-example1.tex
texmf-dist/doc/latex/oberdiek/accsupp-example2.tex
@@ -116525,7 +128787,7 @@ runfiles size=703
texmf-dist/tex/latex/oberdiek/zref-xr.sty
texmf-dist/tex/latex/oberdiek/zref.sty
catalogue-ctan /macros/latex/contrib/oberdiek
-catalogue-date 2012-05-04 16:11:29 +0200
+catalogue-date 2013-11-22 17:11:31 +0100
catalogue-license lppl
name objectz
@@ -116551,6 +128813,75 @@ catalogue-ctan /macros/latex/contrib/objectz
catalogue-date 2012-03-30 15:19:52 +0200
catalogue-license lppl
+name obnov
+category Package
+revision 33355
+shortdesc Obyknovennaya Novaya fonts.
+longdesc The Obyknovennaya Novaya (Ordinary New Face) typeface was
+longdesc widely used in the USSR for scientific and technical
+longdesc publications, as well as textbooks. The fonts are encoded to
+longdesc KOI8-R (which is a long-established Russian font encoding,
+longdesc rather than a TeX/LaTeX encoding). To use the fonts, the user
+longdesc needs Cyrillic font support.
+docfiles size=347
+ texmf-dist/doc/fonts/obnov/README details="Readme"
+ texmf-dist/doc/fonts/obnov/example_obn.pdf details="Font samples"
+ texmf-dist/doc/fonts/obnov/example_obn.tex
+runfiles size=680
+ texmf-dist/fonts/source/public/obnov/obn10.mf
+ texmf-dist/fonts/source/public/obnov/obn12.mf
+ texmf-dist/fonts/source/public/obnov/obn17.mf
+ texmf-dist/fonts/source/public/obnov/obn7.mf
+ texmf-dist/fonts/source/public/obnov/obn_lcyw_code.mf
+ texmf-dist/fonts/source/public/obnov/obnb10.mf
+ texmf-dist/fonts/source/public/obnov/obnb12.mf
+ texmf-dist/fonts/source/public/obnov/obnb17.mf
+ texmf-dist/fonts/source/public/obnov/obnb7.mf
+ texmf-dist/fonts/source/public/obnov/obnit10.mf
+ texmf-dist/fonts/source/public/obnov/obnit12.mf
+ texmf-dist/fonts/source/public/obnov/obnit17.mf
+ texmf-dist/fonts/source/public/obnov/obnit7.mf
+ texmf-dist/fonts/source/public/obnov/obnitb10.mf
+ texmf-dist/fonts/source/public/obnov/obnitb12.mf
+ texmf-dist/fonts/source/public/obnov/obnitb17.mf
+ texmf-dist/fonts/source/public/obnov/obnsc10.mf
+ texmf-dist/fonts/source/public/obnov/obnsc12.mf
+ texmf-dist/fonts/source/public/obnov/obnsc17.mf
+ texmf-dist/fonts/source/public/obnov/obnsc7.mf
+ texmf-dist/fonts/source/public/obnov/obnsl10.mf
+ texmf-dist/fonts/source/public/obnov/obnsl12.mf
+ texmf-dist/fonts/source/public/obnov/obnsl17.mf
+ texmf-dist/fonts/source/public/obnov/obnsl7.mf
+ texmf-dist/fonts/tfm/public/obnov/obn10.tfm
+ texmf-dist/fonts/tfm/public/obnov/obn12.tfm
+ texmf-dist/fonts/tfm/public/obnov/obn17.tfm
+ texmf-dist/fonts/tfm/public/obnov/obn7.tfm
+ texmf-dist/fonts/tfm/public/obnov/obnb10.tfm
+ texmf-dist/fonts/tfm/public/obnov/obnb12.tfm
+ texmf-dist/fonts/tfm/public/obnov/obnb17.tfm
+ texmf-dist/fonts/tfm/public/obnov/obnb7.tfm
+ texmf-dist/fonts/tfm/public/obnov/obnit10.tfm
+ texmf-dist/fonts/tfm/public/obnov/obnit12.tfm
+ texmf-dist/fonts/tfm/public/obnov/obnit17.tfm
+ texmf-dist/fonts/tfm/public/obnov/obnit7.tfm
+ texmf-dist/fonts/tfm/public/obnov/obnitb10.tfm
+ texmf-dist/fonts/tfm/public/obnov/obnitb12.tfm
+ texmf-dist/fonts/tfm/public/obnov/obnitb17.tfm
+ texmf-dist/fonts/tfm/public/obnov/obnsc10.tfm
+ texmf-dist/fonts/tfm/public/obnov/obnsc12.tfm
+ texmf-dist/fonts/tfm/public/obnov/obnsc17.tfm
+ texmf-dist/fonts/tfm/public/obnov/obnsc7.tfm
+ texmf-dist/fonts/tfm/public/obnov/obnsl10.tfm
+ texmf-dist/fonts/tfm/public/obnov/obnsl12.tfm
+ texmf-dist/fonts/tfm/public/obnov/obnsl17.tfm
+ texmf-dist/fonts/tfm/public/obnov/obnsl7.tfm
+ texmf-dist/tex/latex/obnov/lcyw.cmap
+ texmf-dist/tex/latex/obnov/lcywobn.fd
+catalogue-ctan /fonts/obnov
+catalogue-date 2014-05-17 10:36:54 +0200
+catalogue-license lppl
+catalogue-version 0.11
+
name ocg-p
category Package
revision 28803
@@ -116558,7 +128889,7 @@ shortdesc PDF OCG support in LaTeX.
longdesc The package provides OCG (Optional Content Groups) support
longdesc within a PDF document, replacing the ocg.sty distributed with
longdesc asymptote. Nested OCGs are supported. The package may be used
-longdesc with PFDLatex and XeLaTeX.
+longdesc with PDFLatex and XeLaTeX.
docfiles size=187
texmf-dist/doc/latex/ocg-p/README details="Readme"
texmf-dist/doc/latex/ocg-p/examples/ocg-p_example_1.pdf
@@ -116574,7 +128905,7 @@ docfiles size=187
runfiles size=4
texmf-dist/tex/latex/ocg-p/ocg-p.sty
catalogue-ctan /macros/latex/contrib/ocg-p
-catalogue-date 2013-01-11 11:30:29 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 0.4
@@ -116678,7 +129009,7 @@ runfiles size=28
texmf-dist/fonts/tfm/public/ocr-b/ocrb8.tfm
texmf-dist/fonts/tfm/public/ocr-b/ocrb9.tfm
catalogue-ctan /fonts/ocr-b
-catalogue-date 2012-06-15 16:14:02 +0200
+catalogue-date 2014-05-17 10:36:54 +0200
catalogue-license other-free
name ocr-b-outline
@@ -116715,7 +129046,7 @@ runfiles size=103
texmf-dist/fonts/type1/public/ocr-b-outline/ocrb8.pfb
texmf-dist/fonts/type1/public/ocr-b-outline/ocrb9.pfb
catalogue-ctan /fonts/ocr-b-outline
-catalogue-date 2012-06-15 16:14:02 +0200
+catalogue-date 2014-05-17 10:36:54 +0200
catalogue-license other-free
name ocr-latex
@@ -116769,20 +129100,20 @@ runfiles size=11
texmf-dist/tex/latex/octavo/oct12.clo
texmf-dist/tex/latex/octavo/octavo.cls
catalogue-ctan /macros/latex/contrib/octavo
-catalogue-date 2012-02-25 11:15:03 +0100
+catalogue-date 2013-10-30 13:49:16 +0100
catalogue-license lppl
catalogue-version 1.2
name odsfile
category Package
-revision 27395
+revision 32742
shortdesc Read OpenDocument Spreadsheet documents as LaTeX tables.
longdesc The distribution includes a package and a lua library that can
longdesc together read OpenDocument spreadsheet documents as LaTeX
longdesc tables. Cells in the tables may be processed by LaTeX macros,
longdesc so that (for example) the package may be used for drawing some
longdesc plots. The package uses lua's zip library.
-docfiles size=52
+docfiles size=53
texmf-dist/doc/lualatex/odsfile/README details="Readme"
texmf-dist/doc/lualatex/odsfile/odsfile.pdf details="Package documentation"
texmf-dist/doc/lualatex/odsfile/odsfile.tex
@@ -116791,7 +129122,7 @@ runfiles size=4
texmf-dist/tex/lualatex/odsfile/odsfile.lua
texmf-dist/tex/lualatex/odsfile/odsfile.sty
catalogue-ctan /macros/luatex/latex/odsfile
-catalogue-date 2012-08-14 16:24:07 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 0.2
@@ -116801,16 +129132,16 @@ revision 16991
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 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. - Support
-longdesc for many font encodings. - Printing of catalogues of fonts and
+longdesc user can specify only exact long names in documents. Support
+longdesc for many font encodings. Printing of catalogues of fonts and
longdesc test samples of font families; the interactive macro \showfonts
-longdesc shows all font families you have installed via OFS. - The user
+longdesc shows all font families you have installed via OFS. The user
longdesc interface is the same for Plain TeX and for LaTeX, but the
longdesc implementation differs: the LaTeX variant of OFS uses NFSS, but
longdesc the Plain variant implements its own font management (which may
-longdesc even be better than NFSS) - Support for math fonts including TX
+longdesc even be better than NFSS) Support for math fonts including TX
longdesc fonts.
docfiles size=265
texmf-dist/doc/generic/ofs/changes.txt
@@ -116856,7 +129187,7 @@ runfiles size=93
texmf-dist/tex/generic/ofs/pantyk.tex
texmf-dist/tex/generic/ofs/txfn.tex
catalogue-ctan /macros/generic/ofs
-catalogue-date 2012-07-06 22:53:14 +0200
+catalogue-date 2014-05-23 15:55:46 +0200
catalogue-license knuth
name ogham
@@ -116875,7 +129206,7 @@ runfiles size=3
texmf-dist/fonts/source/public/ogham/ogham.mf
texmf-dist/fonts/tfm/public/ogham/ogham.tfm
catalogue-ctan /fonts/ogham
-catalogue-date 2011-12-20 11:10:50 +0100
+catalogue-date 2014-05-17 10:36:54 +0200
catalogue-license pd
name oinuit
@@ -117046,7 +129377,7 @@ runfiles size=112
texmf-dist/fonts/tfm/public/oldlatin/oltt9.tfm
texmf-dist/fonts/tfm/public/oldlatin/olvtt10.tfm
catalogue-ctan /fonts/gothic/oldlatin
-catalogue-date 2012-06-16 10:52:26 +0200
+catalogue-date 2014-05-17 15:44:21 +0200
catalogue-license lppl
catalogue-version 1.00
@@ -117094,7 +129425,7 @@ runfiles size=137
texmf-dist/fonts/opentype/public/oldstandard/OldStandard-Italic.otf
texmf-dist/fonts/opentype/public/oldstandard/OldStandard-Regular.otf
catalogue-ctan /fonts/oldstandard
-catalogue-date 2012-11-14 11:47:31 +0100
+catalogue-date 2014-05-17 15:44:21 +0200
catalogue-license ofl
catalogue-version 2.0.2
@@ -117119,7 +129450,7 @@ catalogue-version 0.2
name omega
category Package
-revision 15878
+revision 33046
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
@@ -117132,7 +129463,7 @@ docfiles size=138
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=1519
+runfiles size=1523
texmf-dist/dvips/omega/config.omega
texmf-dist/dvips/omega/omega.cfg
texmf-dist/fonts/afm/public/omega/omsea1.afm
@@ -117298,6 +129629,8 @@ runfiles size=1519
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/misc/ebcdic.ocp
+ texmf-dist/omega/ocp/misc/id.ocp
texmf-dist/omega/ocp/omega/7arb2uni.ocp
texmf-dist/omega/ocp/omega/7ber2uni.ocp
texmf-dist/omega/ocp/omega/7cyr2uni.ocp
@@ -117403,6 +129736,8 @@ runfiles size=1519
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/misc/ebcdic.otp
+ texmf-dist/omega/otp/misc/id.otp
texmf-dist/omega/otp/omega/7arb2uni.otp
texmf-dist/omega/otp/omega/7ber2uni.otp
texmf-dist/omega/otp/omega/7cyr2uni.otp
@@ -117484,12 +129819,11 @@ catalogue-license gpl
name omegaware
category TLCore
-revision 29764
+revision 33736
depend omegaware.ARCH
-docfiles size=33
+docfiles size=27
texmf-dist/doc/man/man1/odvicopy.1
texmf-dist/doc/man/man1/odvicopy.man1.pdf
- texmf-dist/doc/man/man1/odvips.man1.pdf
texmf-dist/doc/man/man1/odvitype.1
texmf-dist/doc/man/man1/odvitype.man1.pdf
texmf-dist/doc/man/man1/ofm2opl.1
@@ -117509,9 +129843,9 @@ docfiles size=33
name omegaware.alpha-linux
category TLCore
-revision 29891
+revision 34095
shortdesc alpha-linux files of omegaware
-binfiles arch=alpha-linux size=227
+binfiles arch=alpha-linux size=353
bin/alpha-linux/odvicopy
bin/alpha-linux/odvitype
bin/alpha-linux/ofm2opl
@@ -117522,12 +129856,15 @@ binfiles arch=alpha-linux size=227
bin/alpha-linux/outocp
bin/alpha-linux/ovf2ovp
bin/alpha-linux/ovp2ovf
+ bin/alpha-linux/wofm2opl
+ bin/alpha-linux/wopl2ofm
+ bin/alpha-linux/wovf2ovp
name omegaware.amd64-freebsd
category TLCore
-revision 29874
+revision 33857
shortdesc amd64-freebsd files of omegaware
-binfiles arch=amd64-freebsd size=178
+binfiles arch=amd64-freebsd size=289
bin/amd64-freebsd/odvicopy
bin/amd64-freebsd/odvitype
bin/amd64-freebsd/ofm2opl
@@ -117538,12 +129875,15 @@ binfiles arch=amd64-freebsd size=178
bin/amd64-freebsd/outocp
bin/amd64-freebsd/ovf2ovp
bin/amd64-freebsd/ovp2ovf
+ bin/amd64-freebsd/wofm2opl
+ bin/amd64-freebsd/wopl2ofm
+ bin/amd64-freebsd/wovf2ovp
name omegaware.amd64-kfreebsd
category TLCore
-revision 30655
+revision 34100
shortdesc amd64-kfreebsd files of omegaware
-binfiles arch=amd64-kfreebsd size=171
+binfiles arch=amd64-kfreebsd size=259
bin/amd64-kfreebsd/odvicopy
bin/amd64-kfreebsd/odvitype
bin/amd64-kfreebsd/ofm2opl
@@ -117554,12 +129894,15 @@ binfiles arch=amd64-kfreebsd size=171
bin/amd64-kfreebsd/outocp
bin/amd64-kfreebsd/ovf2ovp
bin/amd64-kfreebsd/ovp2ovf
+ bin/amd64-kfreebsd/wofm2opl
+ bin/amd64-kfreebsd/wopl2ofm
+ bin/amd64-kfreebsd/wovf2ovp
name omegaware.amd64-netbsd
category TLCore
-revision 30660
+revision 34102
shortdesc amd64-netbsd files of omegaware
-binfiles arch=amd64-netbsd size=174
+binfiles arch=amd64-netbsd size=274
bin/amd64-netbsd/odvicopy
bin/amd64-netbsd/odvitype
bin/amd64-netbsd/ofm2opl
@@ -117570,12 +129913,15 @@ binfiles arch=amd64-netbsd size=174
bin/amd64-netbsd/outocp
bin/amd64-netbsd/ovf2ovp
bin/amd64-netbsd/ovp2ovf
+ bin/amd64-netbsd/wofm2opl
+ bin/amd64-netbsd/wopl2ofm
+ bin/amd64-netbsd/wovf2ovp
name omegaware.armel-linux
category TLCore
-revision 29888
+revision 33916
shortdesc armel-linux files of omegaware
-binfiles arch=armel-linux size=152
+binfiles arch=armel-linux size=238
bin/armel-linux/odvicopy
bin/armel-linux/odvitype
bin/armel-linux/ofm2opl
@@ -117586,12 +129932,15 @@ binfiles arch=armel-linux size=152
bin/armel-linux/outocp
bin/armel-linux/ovf2ovp
bin/armel-linux/ovp2ovf
+ bin/armel-linux/wofm2opl
+ bin/armel-linux/wopl2ofm
+ bin/armel-linux/wovf2ovp
name omegaware.armhf-linux
category TLCore
-revision 30443
+revision 34125
shortdesc armhf-linux files of omegaware
-binfiles arch=armhf-linux size=144
+binfiles arch=armhf-linux size=227
bin/armhf-linux/odvicopy
bin/armhf-linux/odvitype
bin/armhf-linux/ofm2opl
@@ -117602,12 +129951,15 @@ binfiles arch=armhf-linux size=144
bin/armhf-linux/outocp
bin/armhf-linux/ovf2ovp
bin/armhf-linux/ovp2ovf
+ bin/armhf-linux/wofm2opl
+ bin/armhf-linux/wopl2ofm
+ bin/armhf-linux/wovf2ovp
name omegaware.i386-cygwin
category TLCore
-revision 30526
+revision 34161
shortdesc i386-cygwin files of omegaware
-binfiles arch=i386-cygwin size=157
+binfiles arch=i386-cygwin size=281
bin/i386-cygwin/odvicopy.exe
bin/i386-cygwin/odvitype.exe
bin/i386-cygwin/ofm2opl
@@ -117618,12 +129970,15 @@ binfiles arch=i386-cygwin size=157
bin/i386-cygwin/outocp.exe
bin/i386-cygwin/ovf2ovp
bin/i386-cygwin/ovp2ovf
+ bin/i386-cygwin/wofm2opl.exe
+ bin/i386-cygwin/wopl2ofm.exe
+ bin/i386-cygwin/wovf2ovp.exe
name omegaware.i386-freebsd
category TLCore
-revision 29874
+revision 33857
shortdesc i386-freebsd files of omegaware
-binfiles arch=i386-freebsd size=166
+binfiles arch=i386-freebsd size=276
bin/i386-freebsd/odvicopy
bin/i386-freebsd/odvitype
bin/i386-freebsd/ofm2opl
@@ -117634,12 +129989,15 @@ binfiles arch=i386-freebsd size=166
bin/i386-freebsd/outocp
bin/i386-freebsd/ovf2ovp
bin/i386-freebsd/ovp2ovf
+ bin/i386-freebsd/wofm2opl
+ bin/i386-freebsd/wopl2ofm
+ bin/i386-freebsd/wovf2ovp
name omegaware.i386-kfreebsd
category TLCore
-revision 30440
+revision 34100
shortdesc i386-kfreebsd files of omegaware
-binfiles arch=i386-kfreebsd size=168
+binfiles arch=i386-kfreebsd size=261
bin/i386-kfreebsd/odvicopy
bin/i386-kfreebsd/odvitype
bin/i386-kfreebsd/ofm2opl
@@ -117650,12 +130008,15 @@ binfiles arch=i386-kfreebsd size=168
bin/i386-kfreebsd/outocp
bin/i386-kfreebsd/ovf2ovp
bin/i386-kfreebsd/ovp2ovf
+ bin/i386-kfreebsd/wofm2opl
+ bin/i386-kfreebsd/wopl2ofm
+ bin/i386-kfreebsd/wovf2ovp
name omegaware.i386-linux
category TLCore
-revision 30088
+revision 34086
shortdesc i386-linux files of omegaware
-binfiles arch=i386-linux size=170
+binfiles arch=i386-linux size=275
bin/i386-linux/odvicopy
bin/i386-linux/odvitype
bin/i386-linux/ofm2opl
@@ -117666,12 +130027,15 @@ binfiles arch=i386-linux size=170
bin/i386-linux/outocp
bin/i386-linux/ovf2ovp
bin/i386-linux/ovp2ovf
+ bin/i386-linux/wofm2opl
+ bin/i386-linux/wopl2ofm
+ bin/i386-linux/wovf2ovp
name omegaware.i386-netbsd
category TLCore
-revision 30191
+revision 34102
shortdesc i386-netbsd files of omegaware
-binfiles arch=i386-netbsd size=154
+binfiles arch=i386-netbsd size=251
bin/i386-netbsd/odvicopy
bin/i386-netbsd/odvitype
bin/i386-netbsd/ofm2opl
@@ -117682,12 +130046,15 @@ binfiles arch=i386-netbsd size=154
bin/i386-netbsd/outocp
bin/i386-netbsd/ovf2ovp
bin/i386-netbsd/ovp2ovf
+ bin/i386-netbsd/wofm2opl
+ bin/i386-netbsd/wopl2ofm
+ bin/i386-netbsd/wovf2ovp
name omegaware.i386-solaris
category TLCore
-revision 30112
+revision 34203
shortdesc i386-solaris files of omegaware
-binfiles arch=i386-solaris size=202
+binfiles arch=i386-solaris size=324
bin/i386-solaris/odvicopy
bin/i386-solaris/odvitype
bin/i386-solaris/ofm2opl
@@ -117698,28 +130065,15 @@ binfiles arch=i386-solaris size=202
bin/i386-solaris/outocp
bin/i386-solaris/ovf2ovp
bin/i386-solaris/ovp2ovf
-
-name omegaware.mips-irix
-category TLCore
-revision 30131
-shortdesc mips-irix files of omegaware
-binfiles arch=mips-irix size=367
- bin/mips-irix/odvicopy
- 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
+ bin/i386-solaris/wofm2opl
+ bin/i386-solaris/wopl2ofm
+ bin/i386-solaris/wovf2ovp
name omegaware.mipsel-linux
category TLCore
-revision 29995
+revision 33873
shortdesc mipsel-linux files of omegaware
-binfiles arch=mipsel-linux size=217
+binfiles arch=mipsel-linux size=271
bin/mipsel-linux/odvicopy
bin/mipsel-linux/odvitype
bin/mipsel-linux/ofm2opl
@@ -117730,12 +130084,15 @@ binfiles arch=mipsel-linux size=217
bin/mipsel-linux/outocp
bin/mipsel-linux/ovf2ovp
bin/mipsel-linux/ovp2ovf
+ bin/mipsel-linux/wofm2opl
+ bin/mipsel-linux/wopl2ofm
+ bin/mipsel-linux/wovf2ovp
name omegaware.powerpc-linux
category TLCore
-revision 30114
+revision 34101
shortdesc powerpc-linux files of omegaware
-binfiles arch=powerpc-linux size=176
+binfiles arch=powerpc-linux size=255
bin/powerpc-linux/odvicopy
bin/powerpc-linux/odvitype
bin/powerpc-linux/ofm2opl
@@ -117746,12 +130103,15 @@ binfiles arch=powerpc-linux size=176
bin/powerpc-linux/outocp
bin/powerpc-linux/ovf2ovp
bin/powerpc-linux/ovp2ovf
+ bin/powerpc-linux/wofm2opl
+ bin/powerpc-linux/wopl2ofm
+ bin/powerpc-linux/wovf2ovp
name omegaware.sparc-solaris
category TLCore
-revision 29877
+revision 33871
shortdesc sparc-solaris files of omegaware
-binfiles arch=sparc-solaris size=188
+binfiles arch=sparc-solaris size=295
bin/sparc-solaris/odvicopy
bin/sparc-solaris/odvitype
bin/sparc-solaris/ofm2opl
@@ -117762,12 +130122,15 @@ binfiles arch=sparc-solaris size=188
bin/sparc-solaris/outocp
bin/sparc-solaris/ovf2ovp
bin/sparc-solaris/ovp2ovf
+ bin/sparc-solaris/wofm2opl
+ bin/sparc-solaris/wopl2ofm
+ bin/sparc-solaris/wovf2ovp
name omegaware.universal-darwin
category TLCore
-revision 30764
+revision 34201
shortdesc universal-darwin files of omegaware
-binfiles arch=universal-darwin size=355
+binfiles arch=universal-darwin size=550
bin/universal-darwin/odvicopy
bin/universal-darwin/odvitype
bin/universal-darwin/ofm2opl
@@ -117778,12 +130141,15 @@ binfiles arch=universal-darwin size=355
bin/universal-darwin/outocp
bin/universal-darwin/ovf2ovp
bin/universal-darwin/ovp2ovf
+ bin/universal-darwin/wofm2opl
+ bin/universal-darwin/wopl2ofm
+ bin/universal-darwin/wovf2ovp
name omegaware.win32
category TLCore
-revision 30673
+revision 33897
shortdesc win32 files of omegaware
-binfiles arch=win32 size=64
+binfiles arch=win32 size=185
bin/win32/odvicopy.exe
bin/win32/odvitype.exe
bin/win32/ofm2opl.exe
@@ -117794,12 +130160,34 @@ binfiles arch=win32 size=64
bin/win32/outocp.exe
bin/win32/ovf2ovp.exe
bin/win32/ovp2ovf.exe
+ bin/win32/wofm2opl.exe
+ bin/win32/wopl2ofm.exe
+ bin/win32/wovf2ovp.exe
+
+name omegaware.x86_64-cygwin
+category TLCore
+revision 34161
+shortdesc x86_64-cygwin files of omegaware
+binfiles arch=x86_64-cygwin size=267
+ bin/x86_64-cygwin/odvicopy.exe
+ bin/x86_64-cygwin/odvitype.exe
+ bin/x86_64-cygwin/ofm2opl
+ bin/x86_64-cygwin/omfonts.exe
+ bin/x86_64-cygwin/opl2ofm
+ bin/x86_64-cygwin/otangle.exe
+ bin/x86_64-cygwin/otp2ocp.exe
+ bin/x86_64-cygwin/outocp.exe
+ bin/x86_64-cygwin/ovf2ovp
+ bin/x86_64-cygwin/ovp2ovf
+ bin/x86_64-cygwin/wofm2opl.exe
+ bin/x86_64-cygwin/wopl2ofm.exe
+ bin/x86_64-cygwin/wovf2ovp.exe
name omegaware.x86_64-darwin
category TLCore
-revision 29879
+revision 34201
shortdesc x86_64-darwin files of omegaware
-binfiles arch=x86_64-darwin size=197
+binfiles arch=x86_64-darwin size=299
bin/x86_64-darwin/odvicopy
bin/x86_64-darwin/odvitype
bin/x86_64-darwin/ofm2opl
@@ -117810,12 +130198,15 @@ binfiles arch=x86_64-darwin size=197
bin/x86_64-darwin/outocp
bin/x86_64-darwin/ovf2ovp
bin/x86_64-darwin/ovp2ovf
+ bin/x86_64-darwin/wofm2opl
+ bin/x86_64-darwin/wopl2ofm
+ bin/x86_64-darwin/wovf2ovp
name omegaware.x86_64-linux
category TLCore
-revision 30204
+revision 33845
shortdesc x86_64-linux files of omegaware
-binfiles arch=x86_64-linux size=169
+binfiles arch=x86_64-linux size=258
bin/x86_64-linux/odvicopy
bin/x86_64-linux/odvitype
bin/x86_64-linux/ofm2opl
@@ -117826,12 +130217,15 @@ binfiles arch=x86_64-linux size=169
bin/x86_64-linux/outocp
bin/x86_64-linux/ovf2ovp
bin/x86_64-linux/ovp2ovf
+ bin/x86_64-linux/wofm2opl
+ bin/x86_64-linux/wopl2ofm
+ bin/x86_64-linux/wovf2ovp
name omegaware.x86_64-solaris
category TLCore
-revision 30112
+revision 34203
shortdesc x86_64-solaris files of omegaware
-binfiles arch=x86_64-solaris size=236
+binfiles arch=x86_64-solaris size=358
bin/x86_64-solaris/odvicopy
bin/x86_64-solaris/odvitype
bin/x86_64-solaris/ofm2opl
@@ -117842,6 +130236,9 @@ binfiles arch=x86_64-solaris size=236
bin/x86_64-solaris/outocp
bin/x86_64-solaris/ovf2ovp
bin/x86_64-solaris/ovp2ovf
+ bin/x86_64-solaris/wofm2opl
+ bin/x86_64-solaris/wopl2ofm
+ bin/x86_64-solaris/wovf2ovp
name onlyamsmath
category Package
@@ -117886,7 +130283,7 @@ docfiles size=60
runfiles size=2
texmf-dist/tex/latex/onrannual/onrannual.cls
catalogue-ctan /macros/latex/contrib/onrannual
-catalogue-date 2012-06-16 14:32:26 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.1
@@ -118754,7 +131151,7 @@ runfiles size=3539
texmf-dist/tex/latex/opensans/x2fos.fd
texmf-dist/tex/latex/opensans/x2fosj.fd
catalogue-ctan /fonts/opensans
-catalogue-date 2012-06-16 14:32:26 +0200
+catalogue-date 2014-05-17 15:44:21 +0200
catalogue-license lppl1.3
catalogue-version 1.2
@@ -118820,7 +131217,7 @@ srcfiles size=5
runfiles size=2
texmf-dist/tex/latex/ordinalpt/ordinalpt.sty
catalogue-ctan /macros/latex/contrib/ordinalpt
-catalogue-date 2012-06-16 20:33:23 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 2.1
@@ -118847,12 +131244,12 @@ runfiles size=21
texmf-dist/fonts/tfm/public/orkhun/orhant20.tfm
texmf-dist/fonts/tfm/public/orkhun/orhant25.tfm
catalogue-ctan /fonts/orkhun
-catalogue-date 2012-06-16 20:33:23 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
name oscola
category Package
-revision 30736
+revision 34207
shortdesc BibLaTeX style for the Oxford Standard for the Citation of Legal Authorities.
longdesc The package provides a set of style files for use with Biblatex
longdesc (v 2+) and Biber (v 1+) to produce citations and bibliographies
@@ -118871,9 +131268,9 @@ runfiles size=38
texmf-dist/tex/latex/oscola/oscola.bbx
texmf-dist/tex/latex/oscola/oscola.cbx
catalogue-ctan /macros/latex/contrib/biblatex-contrib/oscola
-catalogue-date 2013-05-24 20:35:56 +0200
+catalogue-date 2014-05-22 17:35:02 +0200
catalogue-license lppl1.3
-catalogue-version 1
+catalogue-version 1.4
name ot-tableau
category Package
@@ -118891,7 +131288,7 @@ docfiles size=31
runfiles size=1
texmf-dist/tex/latex/ot-tableau/ot-tableau.sty
catalogue-ctan /macros/latex/contrib/ot-tableau
-catalogue-date 2012-06-09 18:05:07 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
name othello
@@ -118934,7 +131331,7 @@ runfiles size=41
texmf-dist/fonts/tfm/public/othello/ot1whi20.tfm
texmf-dist/tex/latex/othello/othello.sty
catalogue-ctan /macros/latex/contrib/othello
-catalogue-date 2012-06-09 18:05:07 +0200
+catalogue-date 2014-05-22 01:06:35 +0200
catalogue-license gpl
name othelloboard
@@ -118955,7 +131352,7 @@ docfiles size=76
runfiles size=18
texmf-dist/tex/latex/othelloboard/othelloboard.sty
catalogue-ctan /macros/latex/contrib/othelloboard
-catalogue-date 2011-08-19 08:35:26 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.2
@@ -119144,7 +131541,7 @@ runfiles size=23
texmf-dist/tex/latex/pacioli/pacioli.sty
texmf-dist/tex/latex/pacioli/t1cpc.fd
catalogue-ctan /fonts/pacioli
-catalogue-date 2012-05-29 16:53:42 +0200
+catalogue-date 2014-05-22 01:06:35 +0200
catalogue-license lppl
name pagecolor
@@ -119170,7 +131567,7 @@ srcfiles size=12
runfiles size=2
texmf-dist/tex/latex/pagecolor/pagecolor.sty
catalogue-ctan /macros/latex/contrib/pagecolor
-catalogue-date 2012-05-29 16:53:42 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.0e
@@ -119190,7 +131587,7 @@ srcfiles size=3
runfiles size=1
texmf-dist/tex/latex/pagecont/pagecont.sty
catalogue-ctan /macros/latex/contrib/pagecont
-catalogue-date 2012-08-31 01:04:09 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.0
@@ -119229,13 +131626,13 @@ runfiles size=3
texmf-dist/tex/latex/pagerange/pagerange-guide.cfg
texmf-dist/tex/latex/pagerange/pagerange.sty
catalogue-ctan /macros/latex/contrib/pagerange
-catalogue-date 2012-03-13 23:16:04 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 0.5
name pageslts
category Package
-revision 28986
+revision 32720
shortdesc Variants of last page labels.
longdesc The package was designed as an extension of the lastpage
longdesc package -- as well as that package's LastPage label (created
@@ -119246,7 +131643,7 @@ longdesc the labels above do not give the total number of pages, so the
longdesc package also provides labels pagesLTS.<numbering scheme>, where
longdesc the numbering scheme is arabic, roman, etc. The package relies
longdesc on the undolabl package.
-docfiles size=243
+docfiles size=242
texmf-dist/doc/latex/pageslts/README details="Readme"
texmf-dist/doc/latex/pageslts/pageslts-example.pdf details="Package examples"
texmf-dist/doc/latex/pageslts/pageslts-example.tex
@@ -119258,13 +131655,13 @@ srcfiles size=56
runfiles size=12
texmf-dist/tex/latex/pageslts/pageslts.sty
catalogue-ctan /macros/latex/contrib/pageslts
-catalogue-date 2013-01-28 22:45:23 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
-catalogue-version 1.2b
+catalogue-version 1.2c
name palatino
category Package
-revision 28614
+revision 31835
catalogue urw-base35
shortdesc URW "Base 35" font pack for LaTeX.
longdesc A set of fonts for use as "drop-in" replacements for Adobe's
@@ -119278,6 +131675,7 @@ longdesc Symbol); - URW Bookman; - URW Chancery L Medium Italic
longdesc (substituting for Adobe's Zapf Chancery); - URW Gothic L Book
longdesc (substituting for Adobe's Avant Garde); and - URW Palladio L
longdesc (substituting for Adobe's Palatino).
+execute addMap upl.map
runfiles size=388
texmf-dist/dvips/palatino/config.upl
texmf-dist/fonts/afm/adobe/palatino/pplb8a.afm
@@ -119572,7 +131970,7 @@ srcfiles size=15
runfiles size=3
texmf-dist/tex/latex/papermas/papermas.sty
catalogue-ctan /macros/latex/contrib/papermas
-catalogue-date 2012-06-11 12:09:17 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.0h
@@ -119601,44 +131999,48 @@ srcfiles size=16
runfiles size=6
texmf-dist/tex/latex/papertex/papertex.cls
catalogue-ctan /macros/latex/contrib/papertex
-catalogue-date 2012-06-11 12:09:17 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.2b
name paracol
category Package
-revision 30705
+revision 32099
shortdesc Multiple columns with texts "in parallel".
longdesc The package provides yet another multi-column typesetting
longdesc mechanism by which you produce multi-column (e.g., bilingual)
longdesc document switching and sychronizing each corresponding part in
longdesc "parallel".
-docfiles size=49
+docfiles size=81
+ texmf-dist/doc/latex/paracol/README details="Readme"
texmf-dist/doc/latex/paracol/paracol-man.pdf details="Package documentation"
texmf-dist/doc/latex/paracol/paracol-man.tex
-srcfiles size=141
+srcfiles size=255
+ texmf-dist/source/latex/paracol/bgpaint.dtx
texmf-dist/source/latex/paracol/impl.dtx
+ texmf-dist/source/latex/paracol/ltfloat.dtx
texmf-dist/source/latex/paracol/man.dtx
texmf-dist/source/latex/paracol/paracol.dtx
texmf-dist/source/latex/paracol/paracol.ins
+ texmf-dist/source/latex/paracol/probs.dtx
+ texmf-dist/source/latex/paracol/pwfnote.dtx
texmf-dist/source/latex/paracol/ref.dtx
- texmf-dist/source/latex/paracol/scfnote.dtx
-runfiles size=14
+runfiles size=25
texmf-dist/tex/latex/paracol/paracol.sty
catalogue-ctan /macros/latex/contrib/paracol
-catalogue-date 2013-05-28 11:00:31 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
-catalogue-version 1.2
+catalogue-version 1.31
name paralist
category Package
-revision 15878
+revision 30992
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=61
+docfiles size=52
texmf-dist/doc/latex/paralist/README details="Readme"
texmf-dist/doc/latex/paralist/paralist.pdf details="Package documentation"
srcfiles size=17
@@ -119648,9 +132050,9 @@ srcfiles size=17
runfiles size=4
texmf-dist/tex/latex/paralist/paralist.sty
catalogue-ctan /macros/latex/contrib/paralist
-catalogue-date 2012-01-23 15:27:59 +0100
+catalogue-date 2013-06-13 19:52:23 +0200
catalogue-license lppl
-catalogue-version 2.3b
+catalogue-version 2.4
name parallel
category Package
@@ -119679,7 +132081,7 @@ catalogue-license lppl
name paratype
category Package
-revision 30615
+revision 32859
shortdesc LaTeX support for free fonts by ParaType.
longdesc The package offers LaTeX support for the fonts PT Sans, PT
longdesc Serif and PT Mono developed by ParaType for the project "Public
@@ -119702,7 +132104,7 @@ docfiles size=289
texmf-dist/doc/fonts/paratype/paratype-sample.tex
texmf-dist/doc/fonts/paratype/paratype.pdf
texmf-dist/doc/fonts/paratype/paratype.tex
-runfiles size=5296
+runfiles size=5365
texmf-dist/fonts/afm/paratype/ptmono/PTM55F.afm
texmf-dist/fonts/afm/paratype/ptmono/PTM55F.inf
texmf-dist/fonts/afm/paratype/ptmono/PTM75F.afm
@@ -119737,6 +132139,7 @@ runfiles size=5296
texmf-dist/fonts/afm/paratype/ptserif/PTZ56F.inf
texmf-dist/fonts/enc/dvips/paratype/ptmono_il2.enc
texmf-dist/fonts/enc/dvips/paratype/ptmono_ot1.enc
+ texmf-dist/fonts/enc/dvips/paratype/ptmono_ot2.enc
texmf-dist/fonts/enc/dvips/paratype/ptmono_t1.enc
texmf-dist/fonts/enc/dvips/paratype/ptmono_t2a.enc
texmf-dist/fonts/enc/dvips/paratype/ptmono_t2b.enc
@@ -119745,6 +132148,7 @@ runfiles size=5296
texmf-dist/fonts/enc/dvips/paratype/ptmono_x2.enc
texmf-dist/fonts/enc/dvips/paratype/ptsans_il2.enc
texmf-dist/fonts/enc/dvips/paratype/ptsans_ot1.enc
+ texmf-dist/fonts/enc/dvips/paratype/ptsans_ot2.enc
texmf-dist/fonts/enc/dvips/paratype/ptsans_t1.enc
texmf-dist/fonts/enc/dvips/paratype/ptsans_t2a.enc
texmf-dist/fonts/enc/dvips/paratype/ptsans_t2b.enc
@@ -119753,6 +132157,7 @@ runfiles size=5296
texmf-dist/fonts/enc/dvips/paratype/ptsans_x2.enc
texmf-dist/fonts/enc/dvips/paratype/ptserif_il2.enc
texmf-dist/fonts/enc/dvips/paratype/ptserif_ot1.enc
+ texmf-dist/fonts/enc/dvips/paratype/ptserif_ot2.enc
texmf-dist/fonts/enc/dvips/paratype/ptserif_t1.enc
texmf-dist/fonts/enc/dvips/paratype/ptserif_t2a.enc
texmf-dist/fonts/enc/dvips/paratype/ptserif_t2b.enc
@@ -119765,6 +132170,7 @@ runfiles size=5296
texmf-dist/fonts/tfm/paratype/ptmono/PTMono-Bold-tlf-il2.tfm
texmf-dist/fonts/tfm/paratype/ptmono/PTMono-Bold-tlf-ot1--base.tfm
texmf-dist/fonts/tfm/paratype/ptmono/PTMono-Bold-tlf-ot1.tfm
+ texmf-dist/fonts/tfm/paratype/ptmono/PTMono-Bold-tlf-ot2.tfm
texmf-dist/fonts/tfm/paratype/ptmono/PTMono-Bold-tlf-t1--base.tfm
texmf-dist/fonts/tfm/paratype/ptmono/PTMono-Bold-tlf-t1.tfm
texmf-dist/fonts/tfm/paratype/ptmono/PTMono-Bold-tlf-t2a--base.tfm
@@ -119779,6 +132185,7 @@ runfiles size=5296
texmf-dist/fonts/tfm/paratype/ptmono/PTMono-Bold-tlf-x2.tfm
texmf-dist/fonts/tfm/paratype/ptmono/PTMono-BoldSlanted-tlf-il2.tfm
texmf-dist/fonts/tfm/paratype/ptmono/PTMono-BoldSlanted-tlf-ot1.tfm
+ texmf-dist/fonts/tfm/paratype/ptmono/PTMono-BoldSlanted-tlf-ot2.tfm
texmf-dist/fonts/tfm/paratype/ptmono/PTMono-BoldSlanted-tlf-t1--base.tfm
texmf-dist/fonts/tfm/paratype/ptmono/PTMono-BoldSlanted-tlf-t1.tfm
texmf-dist/fonts/tfm/paratype/ptmono/PTMono-BoldSlanted-tlf-t2a--base.tfm
@@ -119795,6 +132202,7 @@ runfiles size=5296
texmf-dist/fonts/tfm/paratype/ptmono/PTMono-Regular-tlf-il2.tfm
texmf-dist/fonts/tfm/paratype/ptmono/PTMono-Regular-tlf-ot1--base.tfm
texmf-dist/fonts/tfm/paratype/ptmono/PTMono-Regular-tlf-ot1.tfm
+ texmf-dist/fonts/tfm/paratype/ptmono/PTMono-Regular-tlf-ot2.tfm
texmf-dist/fonts/tfm/paratype/ptmono/PTMono-Regular-tlf-t1--base.tfm
texmf-dist/fonts/tfm/paratype/ptmono/PTMono-Regular-tlf-t1.tfm
texmf-dist/fonts/tfm/paratype/ptmono/PTMono-Regular-tlf-t2a--base.tfm
@@ -119809,6 +132217,7 @@ runfiles size=5296
texmf-dist/fonts/tfm/paratype/ptmono/PTMono-Regular-tlf-x2.tfm
texmf-dist/fonts/tfm/paratype/ptmono/PTMono-Slanted-tlf-il2.tfm
texmf-dist/fonts/tfm/paratype/ptmono/PTMono-Slanted-tlf-ot1.tfm
+ texmf-dist/fonts/tfm/paratype/ptmono/PTMono-Slanted-tlf-ot2.tfm
texmf-dist/fonts/tfm/paratype/ptmono/PTMono-Slanted-tlf-t1--base.tfm
texmf-dist/fonts/tfm/paratype/ptmono/PTMono-Slanted-tlf-t1.tfm
texmf-dist/fonts/tfm/paratype/ptmono/PTMono-Slanted-tlf-t2a--base.tfm
@@ -119823,6 +132232,7 @@ runfiles size=5296
texmf-dist/fonts/tfm/paratype/ptmono/PTMono-Slanted-tlf-x2.tfm
texmf-dist/fonts/tfm/paratype/ptsans/PTSans-Bold-tlf-il2.tfm
texmf-dist/fonts/tfm/paratype/ptsans/PTSans-Bold-tlf-ot1.tfm
+ texmf-dist/fonts/tfm/paratype/ptsans/PTSans-Bold-tlf-ot2.tfm
texmf-dist/fonts/tfm/paratype/ptsans/PTSans-Bold-tlf-t1--base.tfm
texmf-dist/fonts/tfm/paratype/ptsans/PTSans-Bold-tlf-t1.tfm
texmf-dist/fonts/tfm/paratype/ptsans/PTSans-Bold-tlf-t2a--base.tfm
@@ -119837,6 +132247,7 @@ runfiles size=5296
texmf-dist/fonts/tfm/paratype/ptsans/PTSans-Bold-tlf-x2.tfm
texmf-dist/fonts/tfm/paratype/ptsans/PTSans-BoldItalic-tlf-il2.tfm
texmf-dist/fonts/tfm/paratype/ptsans/PTSans-BoldItalic-tlf-ot1.tfm
+ texmf-dist/fonts/tfm/paratype/ptsans/PTSans-BoldItalic-tlf-ot2.tfm
texmf-dist/fonts/tfm/paratype/ptsans/PTSans-BoldItalic-tlf-t1--base.tfm
texmf-dist/fonts/tfm/paratype/ptsans/PTSans-BoldItalic-tlf-t1.tfm
texmf-dist/fonts/tfm/paratype/ptsans/PTSans-BoldItalic-tlf-t2a--base.tfm
@@ -119851,6 +132262,7 @@ runfiles size=5296
texmf-dist/fonts/tfm/paratype/ptsans/PTSans-BoldItalic-tlf-x2.tfm
texmf-dist/fonts/tfm/paratype/ptsans/PTSans-Caption-tlf-il2.tfm
texmf-dist/fonts/tfm/paratype/ptsans/PTSans-Caption-tlf-ot1.tfm
+ texmf-dist/fonts/tfm/paratype/ptsans/PTSans-Caption-tlf-ot2.tfm
texmf-dist/fonts/tfm/paratype/ptsans/PTSans-Caption-tlf-t1--base.tfm
texmf-dist/fonts/tfm/paratype/ptsans/PTSans-Caption-tlf-t1.tfm
texmf-dist/fonts/tfm/paratype/ptsans/PTSans-Caption-tlf-t2a--base.tfm
@@ -119865,6 +132277,7 @@ runfiles size=5296
texmf-dist/fonts/tfm/paratype/ptsans/PTSans-Caption-tlf-x2.tfm
texmf-dist/fonts/tfm/paratype/ptsans/PTSans-CaptionBold-tlf-il2.tfm
texmf-dist/fonts/tfm/paratype/ptsans/PTSans-CaptionBold-tlf-ot1.tfm
+ texmf-dist/fonts/tfm/paratype/ptsans/PTSans-CaptionBold-tlf-ot2.tfm
texmf-dist/fonts/tfm/paratype/ptsans/PTSans-CaptionBold-tlf-t1--base.tfm
texmf-dist/fonts/tfm/paratype/ptsans/PTSans-CaptionBold-tlf-t1.tfm
texmf-dist/fonts/tfm/paratype/ptsans/PTSans-CaptionBold-tlf-t2a--base.tfm
@@ -119879,6 +132292,7 @@ runfiles size=5296
texmf-dist/fonts/tfm/paratype/ptsans/PTSans-CaptionBold-tlf-x2.tfm
texmf-dist/fonts/tfm/paratype/ptsans/PTSans-CaptionBoldSlanted-tlf-il2.tfm
texmf-dist/fonts/tfm/paratype/ptsans/PTSans-CaptionBoldSlanted-tlf-ot1.tfm
+ texmf-dist/fonts/tfm/paratype/ptsans/PTSans-CaptionBoldSlanted-tlf-ot2.tfm
texmf-dist/fonts/tfm/paratype/ptsans/PTSans-CaptionBoldSlanted-tlf-t1--base.tfm
texmf-dist/fonts/tfm/paratype/ptsans/PTSans-CaptionBoldSlanted-tlf-t1.tfm
texmf-dist/fonts/tfm/paratype/ptsans/PTSans-CaptionBoldSlanted-tlf-t2a--base.tfm
@@ -119893,6 +132307,7 @@ runfiles size=5296
texmf-dist/fonts/tfm/paratype/ptsans/PTSans-CaptionBoldSlanted-tlf-x2.tfm
texmf-dist/fonts/tfm/paratype/ptsans/PTSans-CaptionSlanted-tlf-il2.tfm
texmf-dist/fonts/tfm/paratype/ptsans/PTSans-CaptionSlanted-tlf-ot1.tfm
+ texmf-dist/fonts/tfm/paratype/ptsans/PTSans-CaptionSlanted-tlf-ot2.tfm
texmf-dist/fonts/tfm/paratype/ptsans/PTSans-CaptionSlanted-tlf-t1--base.tfm
texmf-dist/fonts/tfm/paratype/ptsans/PTSans-CaptionSlanted-tlf-t1.tfm
texmf-dist/fonts/tfm/paratype/ptsans/PTSans-CaptionSlanted-tlf-t2a--base.tfm
@@ -119907,6 +132322,7 @@ runfiles size=5296
texmf-dist/fonts/tfm/paratype/ptsans/PTSans-CaptionSlanted-tlf-x2.tfm
texmf-dist/fonts/tfm/paratype/ptsans/PTSans-Italic-tlf-il2.tfm
texmf-dist/fonts/tfm/paratype/ptsans/PTSans-Italic-tlf-ot1.tfm
+ texmf-dist/fonts/tfm/paratype/ptsans/PTSans-Italic-tlf-ot2.tfm
texmf-dist/fonts/tfm/paratype/ptsans/PTSans-Italic-tlf-t1--base.tfm
texmf-dist/fonts/tfm/paratype/ptsans/PTSans-Italic-tlf-t1.tfm
texmf-dist/fonts/tfm/paratype/ptsans/PTSans-Italic-tlf-t2a--base.tfm
@@ -119921,6 +132337,7 @@ runfiles size=5296
texmf-dist/fonts/tfm/paratype/ptsans/PTSans-Italic-tlf-x2.tfm
texmf-dist/fonts/tfm/paratype/ptsans/PTSans-Narrow-tlf-il2.tfm
texmf-dist/fonts/tfm/paratype/ptsans/PTSans-Narrow-tlf-ot1.tfm
+ texmf-dist/fonts/tfm/paratype/ptsans/PTSans-Narrow-tlf-ot2.tfm
texmf-dist/fonts/tfm/paratype/ptsans/PTSans-Narrow-tlf-t1--base.tfm
texmf-dist/fonts/tfm/paratype/ptsans/PTSans-Narrow-tlf-t1.tfm
texmf-dist/fonts/tfm/paratype/ptsans/PTSans-Narrow-tlf-t2a--base.tfm
@@ -119935,6 +132352,7 @@ runfiles size=5296
texmf-dist/fonts/tfm/paratype/ptsans/PTSans-Narrow-tlf-x2.tfm
texmf-dist/fonts/tfm/paratype/ptsans/PTSans-NarrowBold-tlf-il2.tfm
texmf-dist/fonts/tfm/paratype/ptsans/PTSans-NarrowBold-tlf-ot1.tfm
+ texmf-dist/fonts/tfm/paratype/ptsans/PTSans-NarrowBold-tlf-ot2.tfm
texmf-dist/fonts/tfm/paratype/ptsans/PTSans-NarrowBold-tlf-t1--base.tfm
texmf-dist/fonts/tfm/paratype/ptsans/PTSans-NarrowBold-tlf-t1.tfm
texmf-dist/fonts/tfm/paratype/ptsans/PTSans-NarrowBold-tlf-t2a--base.tfm
@@ -119949,6 +132367,7 @@ runfiles size=5296
texmf-dist/fonts/tfm/paratype/ptsans/PTSans-NarrowBold-tlf-x2.tfm
texmf-dist/fonts/tfm/paratype/ptsans/PTSans-NarrowBoldSlanted-tlf-il2.tfm
texmf-dist/fonts/tfm/paratype/ptsans/PTSans-NarrowBoldSlanted-tlf-ot1.tfm
+ texmf-dist/fonts/tfm/paratype/ptsans/PTSans-NarrowBoldSlanted-tlf-ot2.tfm
texmf-dist/fonts/tfm/paratype/ptsans/PTSans-NarrowBoldSlanted-tlf-t1--base.tfm
texmf-dist/fonts/tfm/paratype/ptsans/PTSans-NarrowBoldSlanted-tlf-t1.tfm
texmf-dist/fonts/tfm/paratype/ptsans/PTSans-NarrowBoldSlanted-tlf-t2a--base.tfm
@@ -119963,6 +132382,7 @@ runfiles size=5296
texmf-dist/fonts/tfm/paratype/ptsans/PTSans-NarrowBoldSlanted-tlf-x2.tfm
texmf-dist/fonts/tfm/paratype/ptsans/PTSans-NarrowSlanted-tlf-il2.tfm
texmf-dist/fonts/tfm/paratype/ptsans/PTSans-NarrowSlanted-tlf-ot1.tfm
+ texmf-dist/fonts/tfm/paratype/ptsans/PTSans-NarrowSlanted-tlf-ot2.tfm
texmf-dist/fonts/tfm/paratype/ptsans/PTSans-NarrowSlanted-tlf-t1--base.tfm
texmf-dist/fonts/tfm/paratype/ptsans/PTSans-NarrowSlanted-tlf-t1.tfm
texmf-dist/fonts/tfm/paratype/ptsans/PTSans-NarrowSlanted-tlf-t2a--base.tfm
@@ -119977,6 +132397,7 @@ runfiles size=5296
texmf-dist/fonts/tfm/paratype/ptsans/PTSans-NarrowSlanted-tlf-x2.tfm
texmf-dist/fonts/tfm/paratype/ptsans/PTSans-Regular-tlf-il2.tfm
texmf-dist/fonts/tfm/paratype/ptsans/PTSans-Regular-tlf-ot1.tfm
+ texmf-dist/fonts/tfm/paratype/ptsans/PTSans-Regular-tlf-ot2.tfm
texmf-dist/fonts/tfm/paratype/ptsans/PTSans-Regular-tlf-t1--base.tfm
texmf-dist/fonts/tfm/paratype/ptsans/PTSans-Regular-tlf-t1.tfm
texmf-dist/fonts/tfm/paratype/ptsans/PTSans-Regular-tlf-t2a--base.tfm
@@ -119991,6 +132412,7 @@ runfiles size=5296
texmf-dist/fonts/tfm/paratype/ptsans/PTSans-Regular-tlf-x2.tfm
texmf-dist/fonts/tfm/paratype/ptserif/PTSerif-Bold-tlf-il2.tfm
texmf-dist/fonts/tfm/paratype/ptserif/PTSerif-Bold-tlf-ot1.tfm
+ texmf-dist/fonts/tfm/paratype/ptserif/PTSerif-Bold-tlf-ot2.tfm
texmf-dist/fonts/tfm/paratype/ptserif/PTSerif-Bold-tlf-t1--base.tfm
texmf-dist/fonts/tfm/paratype/ptserif/PTSerif-Bold-tlf-t1.tfm
texmf-dist/fonts/tfm/paratype/ptserif/PTSerif-Bold-tlf-t2a--base.tfm
@@ -120005,6 +132427,7 @@ runfiles size=5296
texmf-dist/fonts/tfm/paratype/ptserif/PTSerif-Bold-tlf-x2.tfm
texmf-dist/fonts/tfm/paratype/ptserif/PTSerif-BoldItalic-tlf-il2.tfm
texmf-dist/fonts/tfm/paratype/ptserif/PTSerif-BoldItalic-tlf-ot1.tfm
+ texmf-dist/fonts/tfm/paratype/ptserif/PTSerif-BoldItalic-tlf-ot2.tfm
texmf-dist/fonts/tfm/paratype/ptserif/PTSerif-BoldItalic-tlf-t1--base.tfm
texmf-dist/fonts/tfm/paratype/ptserif/PTSerif-BoldItalic-tlf-t1.tfm
texmf-dist/fonts/tfm/paratype/ptserif/PTSerif-BoldItalic-tlf-t2a--base.tfm
@@ -120019,6 +132442,7 @@ runfiles size=5296
texmf-dist/fonts/tfm/paratype/ptserif/PTSerif-BoldItalic-tlf-x2.tfm
texmf-dist/fonts/tfm/paratype/ptserif/PTSerif-BoldSlanted-tlf-il2.tfm
texmf-dist/fonts/tfm/paratype/ptserif/PTSerif-BoldSlanted-tlf-ot1.tfm
+ texmf-dist/fonts/tfm/paratype/ptserif/PTSerif-BoldSlanted-tlf-ot2.tfm
texmf-dist/fonts/tfm/paratype/ptserif/PTSerif-BoldSlanted-tlf-t1--base.tfm
texmf-dist/fonts/tfm/paratype/ptserif/PTSerif-BoldSlanted-tlf-t1.tfm
texmf-dist/fonts/tfm/paratype/ptserif/PTSerif-BoldSlanted-tlf-t2a--base.tfm
@@ -120047,6 +132471,7 @@ runfiles size=5296
texmf-dist/fonts/tfm/paratype/ptserif/PTSerif-BoldUprightItalic-tlf-x2.tfm
texmf-dist/fonts/tfm/paratype/ptserif/PTSerif-Caption-tlf-il2.tfm
texmf-dist/fonts/tfm/paratype/ptserif/PTSerif-Caption-tlf-ot1.tfm
+ texmf-dist/fonts/tfm/paratype/ptserif/PTSerif-Caption-tlf-ot2.tfm
texmf-dist/fonts/tfm/paratype/ptserif/PTSerif-Caption-tlf-t1--base.tfm
texmf-dist/fonts/tfm/paratype/ptserif/PTSerif-Caption-tlf-t1.tfm
texmf-dist/fonts/tfm/paratype/ptserif/PTSerif-Caption-tlf-t2a--base.tfm
@@ -120061,6 +132486,7 @@ runfiles size=5296
texmf-dist/fonts/tfm/paratype/ptserif/PTSerif-Caption-tlf-x2.tfm
texmf-dist/fonts/tfm/paratype/ptserif/PTSerif-CaptionItalic-tlf-il2.tfm
texmf-dist/fonts/tfm/paratype/ptserif/PTSerif-CaptionItalic-tlf-ot1.tfm
+ texmf-dist/fonts/tfm/paratype/ptserif/PTSerif-CaptionItalic-tlf-ot2.tfm
texmf-dist/fonts/tfm/paratype/ptserif/PTSerif-CaptionItalic-tlf-t1--base.tfm
texmf-dist/fonts/tfm/paratype/ptserif/PTSerif-CaptionItalic-tlf-t1.tfm
texmf-dist/fonts/tfm/paratype/ptserif/PTSerif-CaptionItalic-tlf-t2a--base.tfm
@@ -120075,6 +132501,7 @@ runfiles size=5296
texmf-dist/fonts/tfm/paratype/ptserif/PTSerif-CaptionItalic-tlf-x2.tfm
texmf-dist/fonts/tfm/paratype/ptserif/PTSerif-CaptionSlanted-tlf-il2.tfm
texmf-dist/fonts/tfm/paratype/ptserif/PTSerif-CaptionSlanted-tlf-ot1.tfm
+ texmf-dist/fonts/tfm/paratype/ptserif/PTSerif-CaptionSlanted-tlf-ot2.tfm
texmf-dist/fonts/tfm/paratype/ptserif/PTSerif-CaptionSlanted-tlf-t1--base.tfm
texmf-dist/fonts/tfm/paratype/ptserif/PTSerif-CaptionSlanted-tlf-t1.tfm
texmf-dist/fonts/tfm/paratype/ptserif/PTSerif-CaptionSlanted-tlf-t2a--base.tfm
@@ -120103,6 +132530,7 @@ runfiles size=5296
texmf-dist/fonts/tfm/paratype/ptserif/PTSerif-CaptionUprightItalic-tlf-x2.tfm
texmf-dist/fonts/tfm/paratype/ptserif/PTSerif-Italic-tlf-il2.tfm
texmf-dist/fonts/tfm/paratype/ptserif/PTSerif-Italic-tlf-ot1.tfm
+ texmf-dist/fonts/tfm/paratype/ptserif/PTSerif-Italic-tlf-ot2.tfm
texmf-dist/fonts/tfm/paratype/ptserif/PTSerif-Italic-tlf-t1--base.tfm
texmf-dist/fonts/tfm/paratype/ptserif/PTSerif-Italic-tlf-t1.tfm
texmf-dist/fonts/tfm/paratype/ptserif/PTSerif-Italic-tlf-t2a--base.tfm
@@ -120117,6 +132545,7 @@ runfiles size=5296
texmf-dist/fonts/tfm/paratype/ptserif/PTSerif-Italic-tlf-x2.tfm
texmf-dist/fonts/tfm/paratype/ptserif/PTSerif-Regular-tlf-il2.tfm
texmf-dist/fonts/tfm/paratype/ptserif/PTSerif-Regular-tlf-ot1.tfm
+ texmf-dist/fonts/tfm/paratype/ptserif/PTSerif-Regular-tlf-ot2.tfm
texmf-dist/fonts/tfm/paratype/ptserif/PTSerif-Regular-tlf-t1--base.tfm
texmf-dist/fonts/tfm/paratype/ptserif/PTSerif-Regular-tlf-t1.tfm
texmf-dist/fonts/tfm/paratype/ptserif/PTSerif-Regular-tlf-t2a--base.tfm
@@ -120131,6 +132560,7 @@ runfiles size=5296
texmf-dist/fonts/tfm/paratype/ptserif/PTSerif-Regular-tlf-x2.tfm
texmf-dist/fonts/tfm/paratype/ptserif/PTSerif-Slanted-tlf-il2.tfm
texmf-dist/fonts/tfm/paratype/ptserif/PTSerif-Slanted-tlf-ot1.tfm
+ texmf-dist/fonts/tfm/paratype/ptserif/PTSerif-Slanted-tlf-ot2.tfm
texmf-dist/fonts/tfm/paratype/ptserif/PTSerif-Slanted-tlf-t1--base.tfm
texmf-dist/fonts/tfm/paratype/ptserif/PTSerif-Slanted-tlf-t1.tfm
texmf-dist/fonts/tfm/paratype/ptserif/PTSerif-Slanted-tlf-t2a--base.tfm
@@ -120389,6 +132819,12 @@ runfiles size=5296
texmf-dist/tex/latex/paratype/OT1PTSansNarrow-TLF.fd
texmf-dist/tex/latex/paratype/OT1PTSerif-TLF.fd
texmf-dist/tex/latex/paratype/OT1PTSerifCaption-TLF.fd
+ texmf-dist/tex/latex/paratype/OT2PTMono-TLF.fd
+ texmf-dist/tex/latex/paratype/OT2PTSans-TLF.fd
+ texmf-dist/tex/latex/paratype/OT2PTSansCaption-TLF.fd
+ texmf-dist/tex/latex/paratype/OT2PTSansNarrow-TLF.fd
+ texmf-dist/tex/latex/paratype/OT2PTSerif-TLF.fd
+ texmf-dist/tex/latex/paratype/OT2PTSerifCaption-TLF.fd
texmf-dist/tex/latex/paratype/PTMono.sty
texmf-dist/tex/latex/paratype/PTSans.sty
texmf-dist/tex/latex/paratype/PTSansCaption.sty
@@ -120433,7 +132869,7 @@ runfiles size=5296
texmf-dist/tex/latex/paratype/X2PTSerifCaption-TLF.fd
texmf-dist/tex/latex/paratype/paratype.sty
catalogue-ctan /fonts/paratype
-catalogue-date 2013-05-21 15:19:45 +0200
+catalogue-date 2014-05-17 21:41:14 +0200
catalogue-license lppl
name paresse
@@ -120479,7 +132915,7 @@ docfiles size=2
runfiles size=2
texmf-dist/tex/latex/parnotes/parnotes.sty
catalogue-ctan /macros/latex/contrib/parnotes
-catalogue-date 2012-01-11 08:56:14 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1
@@ -120518,7 +132954,7 @@ srcfiles size=9
runfiles size=1
texmf-dist/tex/latex/parselines/parselines.sty
catalogue-ctan /macros/latex/contrib/parselines
-catalogue-date 2012-06-09 20:15:34 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.4
@@ -120535,10 +132971,134 @@ docfiles size=44
runfiles size=1
texmf-dist/tex/latex/parskip/parskip.sty
catalogue-ctan /macros/latex/contrib/parskip
-catalogue-date 2012-06-09 20:15:34 +0200
+catalogue-date 2013-09-30 14:43:32 +0200
catalogue-license lppl
catalogue-version 2.0
+name pas-cours
+category Package
+revision 32444
+shortdesc Macros useful in preparing teaching material.
+longdesc Several groups of macros cover different branches of
+longdesc mathematics.
+docfiles size=43
+ texmf-dist/doc/latex/pas-cours/README details="Readme"
+ texmf-dist/doc/latex/pas-cours/README.TEXLIVE
+ texmf-dist/doc/latex/pas-cours/attention.png
+ texmf-dist/doc/latex/pas-cours/coeur.png
+ texmf-dist/doc/latex/pas-cours/macro-patrons.tex
+ texmf-dist/doc/latex/pas-cours/macro-solides.tex
+ texmf-dist/doc/latex/pas-cours/macro-styles.tex
+ texmf-dist/doc/latex/pas-cours/prerequis.png
+runfiles size=1
+ texmf-dist/tex/latex/pas-cours/pas-cours.sty
+catalogue-ctan /macros/latex/contrib/pas-cours
+catalogue-date 2014-02-26 23:03:13 +0100
+catalogue-license lppl
+catalogue-version 1.06
+
+name pas-crosswords
+category Package
+revision 32313
+shortdesc Creating crossword grids, using TikZ.
+longdesc The package produces crossword grids, using a wide variety of
+longdesc colours and decorations of the grids and the text in them. The
+longdesc package uses TikZ for its graphical output.
+docfiles size=45
+ texmf-dist/doc/latex/pas-crosswords/README details="Readme"
+ texmf-dist/doc/latex/pas-crosswords/pas-crosswords.pdf
+ texmf-dist/doc/latex/pas-crosswords/pas-crosswords.tex
+runfiles size=2
+ texmf-dist/tex/latex/pas-crosswords/pas-crosswords.sty
+catalogue-ctan /macros/latex/contrib/pas-crosswords
+catalogue-date 2014-02-26 23:03:13 +0100
+catalogue-license lppl
+catalogue-version 1.03
+
+name pas-cv
+category Package
+revision 32263
+shortdesc Flexible typesetting of Curricula Vitae.
+longdesc The package provides the framework for typesetting a Curriculum
+longdesc Vitae (composed in French), together with a number of "themes"
+longdesc that may be used with the package. (The use of the themes may
+longdesc be seen in the package's examples/ collection.) The author
+longdesc hints that conversion for use with other languages (than
+longdesc French) should be possible.
+docfiles size=390
+ texmf-dist/doc/latex/pas-cv/examples/cv-andromede.pdf
+ texmf-dist/doc/latex/pas-cv/examples/cv-andromede.tex
+ texmf-dist/doc/latex/pas-cv/examples/cv-architecte.pdf
+ texmf-dist/doc/latex/pas-cv/examples/cv-architecte.tex
+ texmf-dist/doc/latex/pas-cv/examples/cv-centaure.pdf
+ texmf-dist/doc/latex/pas-cv/examples/cv-centaure.tex
+ texmf-dist/doc/latex/pas-cv/examples/cv-dynamique.pdf
+ texmf-dist/doc/latex/pas-cv/examples/cv-dynamique.tex
+ texmf-dist/doc/latex/pas-cv/examples/cv-gaia.pdf
+ texmf-dist/doc/latex/pas-cv/examples/cv-gaia.tex
+ texmf-dist/doc/latex/pas-cv/examples/cv-jupiter.pdf
+ texmf-dist/doc/latex/pas-cv/examples/cv-jupiter.tex
+ texmf-dist/doc/latex/pas-cv/examples/cv-mars.pdf
+ texmf-dist/doc/latex/pas-cv/examples/cv-mars.tex
+ texmf-dist/doc/latex/pas-cv/examples/cv-neptune.pdf
+ texmf-dist/doc/latex/pas-cv/examples/cv-neptune.tex
+ texmf-dist/doc/latex/pas-cv/examples/cv-orion.pdf
+ texmf-dist/doc/latex/pas-cv/examples/cv-orion.tex
+ texmf-dist/doc/latex/pas-cv/examples/cv-pegase.pdf
+ texmf-dist/doc/latex/pas-cv/examples/cv-pegase.tex
+ texmf-dist/doc/latex/pas-cv/examples/cv-pluton.pdf
+ texmf-dist/doc/latex/pas-cv/examples/cv-pluton.tex
+ texmf-dist/doc/latex/pas-cv/examples/cv-saturne.pdf
+ texmf-dist/doc/latex/pas-cv/examples/cv-saturne.tex
+ texmf-dist/doc/latex/pas-cv/examples/cv-univers.pdf
+ texmf-dist/doc/latex/pas-cv/examples/cv-univers.tex
+ texmf-dist/doc/latex/pas-cv/examples/cv-uranus.pdf
+ texmf-dist/doc/latex/pas-cv/examples/cv-uranus.tex
+ texmf-dist/doc/latex/pas-cv/examples/cv-venus.pdf
+ texmf-dist/doc/latex/pas-cv/examples/cv-venus.tex
+ texmf-dist/doc/latex/pas-cv/pas-cv.pdf
+ texmf-dist/doc/latex/pas-cv/pas-cv.tex
+ texmf-dist/doc/latex/pas-cv/photo.png
+runfiles size=21
+ texmf-dist/tex/latex/pas-cv/macro-andromede.tex
+ texmf-dist/tex/latex/pas-cv/macro-architecte.tex
+ texmf-dist/tex/latex/pas-cv/macro-centaure.tex
+ texmf-dist/tex/latex/pas-cv/macro-dynamique.tex
+ texmf-dist/tex/latex/pas-cv/macro-gaia.tex
+ texmf-dist/tex/latex/pas-cv/macro-jupiter.tex
+ texmf-dist/tex/latex/pas-cv/macro-mars.tex
+ texmf-dist/tex/latex/pas-cv/macro-neptune.tex
+ texmf-dist/tex/latex/pas-cv/macro-orion.tex
+ texmf-dist/tex/latex/pas-cv/macro-pegase.tex
+ texmf-dist/tex/latex/pas-cv/macro-pluton.tex
+ texmf-dist/tex/latex/pas-cv/macro-saturne.tex
+ texmf-dist/tex/latex/pas-cv/macro-univers.tex
+ texmf-dist/tex/latex/pas-cv/macro-uranus.tex
+ texmf-dist/tex/latex/pas-cv/macro-venus.tex
+ texmf-dist/tex/latex/pas-cv/pas-cv.sty
+catalogue-ctan /macros/latex/contrib/pas-cv
+catalogue-date 2014-02-26 23:03:13 +0100
+catalogue-license lppl
+catalogue-version 2.01
+
+name pas-tableur
+category Package
+revision 33483
+shortdesc Create a spreadsheet layout.
+longdesc The package provides commands for creating a grid of
+longdesc rectangles, and commands for populating locations in the grid.
+longdesc PGF/TikZ is used for placement and population of the cells.
+docfiles size=4
+ texmf-dist/doc/latex/pas-tableur/README details="Readme"
+ texmf-dist/doc/latex/pas-tableur/README.TEXLIVE
+ texmf-dist/doc/latex/pas-tableur/pas-tableur.tex
+runfiles size=3
+ texmf-dist/tex/latex/pas-tableur/pas-tableur.sty
+catalogue-ctan /macros/latex/contrib/pas-tableur
+catalogue-date 2014-04-17 19:41:18 +0200
+catalogue-license lppl
+catalogue-version 1.06
+
name passivetex
category Package
revision 15878
@@ -120602,7 +133162,7 @@ catalogue-version 1.03
name patgen
category TLCore
-revision 29764
+revision 33736
shortdesc Generate hyphenation patterns.
longdesc This is the last version of the program distributed by Knuth;
longdesc it advertises itself as a pattern generator for "the algorithm
@@ -120614,153 +133174,153 @@ docfiles size=5
texmf-dist/doc/man/man1/patgen.1
texmf-dist/doc/man/man1/patgen.man1.pdf
catalogue-ctan /obsolete/systems/knuth/unsupported/texware/patgen.web
-catalogue-date 2012-06-09 20:15:34 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license knuth
catalogue-version 2.3
name patgen.alpha-linux
category TLCore
-revision 29834
+revision 33553
shortdesc alpha-linux files of patgen
binfiles arch=alpha-linux size=14
bin/alpha-linux/patgen
name patgen.amd64-freebsd
category TLCore
-revision 29785
+revision 33488
shortdesc amd64-freebsd files of patgen
binfiles arch=amd64-freebsd size=12
bin/amd64-freebsd/patgen
name patgen.amd64-kfreebsd
category TLCore
-revision 30655
+revision 33864
shortdesc amd64-kfreebsd files of patgen
binfiles arch=amd64-kfreebsd size=10
bin/amd64-kfreebsd/patgen
name patgen.amd64-netbsd
category TLCore
-revision 30660
+revision 33726
shortdesc amd64-netbsd files of patgen
binfiles arch=amd64-netbsd size=11
bin/amd64-netbsd/patgen
name patgen.armel-linux
category TLCore
-revision 29805
+revision 33916
shortdesc armel-linux files of patgen
binfiles arch=armel-linux size=9
bin/armel-linux/patgen
name patgen.armhf-linux
category TLCore
-revision 30443
+revision 34125
shortdesc armhf-linux files of patgen
binfiles arch=armhf-linux size=9
bin/armhf-linux/patgen
name patgen.i386-cygwin
category TLCore
-revision 30526
+revision 34161
shortdesc i386-cygwin files of patgen
-binfiles arch=i386-cygwin size=10
+binfiles arch=i386-cygwin size=12
bin/i386-cygwin/patgen.exe
name patgen.i386-freebsd
category TLCore
-revision 29785
+revision 33488
shortdesc i386-freebsd files of patgen
binfiles arch=i386-freebsd size=11
bin/i386-freebsd/patgen
name patgen.i386-kfreebsd
category TLCore
-revision 30440
+revision 33864
shortdesc i386-kfreebsd files of patgen
binfiles arch=i386-kfreebsd size=9
bin/i386-kfreebsd/patgen
name patgen.i386-linux
category TLCore
-revision 30088
+revision 33479
shortdesc i386-linux files of patgen
-binfiles arch=i386-linux size=9
+binfiles arch=i386-linux size=10
bin/i386-linux/patgen
name patgen.i386-netbsd
category TLCore
-revision 30191
+revision 33562
shortdesc i386-netbsd files of patgen
binfiles arch=i386-netbsd size=10
bin/i386-netbsd/patgen
name patgen.i386-solaris
category TLCore
-revision 30112
+revision 34203
shortdesc i386-solaris files of patgen
binfiles arch=i386-solaris size=13
bin/i386-solaris/patgen
-name patgen.mips-irix
-category TLCore
-revision 30131
-shortdesc mips-irix files of patgen
-binfiles arch=mips-irix size=30
- bin/mips-irix/patgen
-
name patgen.mipsel-linux
category TLCore
-revision 29783
+revision 33811
shortdesc mipsel-linux files of patgen
-binfiles arch=mipsel-linux size=13
+binfiles arch=mipsel-linux size=11
bin/mipsel-linux/patgen
name patgen.powerpc-linux
category TLCore
-revision 29833
+revision 33889
shortdesc powerpc-linux files of patgen
binfiles arch=powerpc-linux size=10
bin/powerpc-linux/patgen
name patgen.sparc-solaris
category TLCore
-revision 29877
+revision 33871
shortdesc sparc-solaris files of patgen
binfiles arch=sparc-solaris size=13
bin/sparc-solaris/patgen
name patgen.universal-darwin
category TLCore
-revision 30764
+revision 34201
shortdesc universal-darwin files of patgen
binfiles arch=universal-darwin size=26
bin/universal-darwin/patgen
name patgen.win32
category TLCore
-revision 29816
+revision 33897
shortdesc win32 files of patgen
-binfiles arch=win32 size=6
+binfiles arch=win32 size=10
bin/win32/patgen.exe
+name patgen.x86_64-cygwin
+category TLCore
+revision 34161
+shortdesc x86_64-cygwin files of patgen
+binfiles arch=x86_64-cygwin size=12
+ bin/x86_64-cygwin/patgen.exe
+
name patgen.x86_64-darwin
category TLCore
-revision 29879
+revision 34201
shortdesc x86_64-darwin files of patgen
binfiles arch=x86_64-darwin size=13
bin/x86_64-darwin/patgen
name patgen.x86_64-linux
category TLCore
-revision 30204
+revision 33723
shortdesc x86_64-linux files of patgen
binfiles arch=x86_64-linux size=10
bin/x86_64-linux/patgen
name patgen.x86_64-solaris
category TLCore
-revision 30112
+revision 34203
shortdesc x86_64-solaris files of patgen
binfiles arch=x86_64-solaris size=15
bin/x86_64-solaris/patgen
@@ -120954,13 +133514,6 @@ shortdesc i386-solaris files of pax
binfiles arch=i386-solaris size=1
bin/i386-solaris/pdfannotextractor
-name pax.mips-irix
-category Package
-revision 29949
-shortdesc mips-irix files of pax
-binfiles arch=mips-irix size=1
- bin/mips-irix/pdfannotextractor
-
name pax.mipsel-linux
category Package
revision 29946
@@ -120996,6 +133549,13 @@ shortdesc win32 files of pax
binfiles arch=win32 size=1
bin/win32/pdfannotextractor.exe
+name pax.x86_64-cygwin
+category Package
+revision 33557
+shortdesc x86_64-cygwin files of pax
+binfiles arch=x86_64-cygwin size=1
+ bin/x86_64-cygwin/pdfannotextractor
+
name pax.x86_64-darwin
category Package
revision 18441
@@ -121101,20 +133661,20 @@ catalogue-version 0.1
name pdf-trans
category Package
-revision 15878
+revision 32809
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=36
+longdesc pdf-trans is a set of macros offering various transformations
+longdesc of TeX boxes (based on plain and pdfeTeX primitives). It was
+longdesc initially inspired by trans.tex, remade to work with pdfTeX.
+docfiles size=37
texmf-dist/doc/generic/pdf-trans/example.pdf details="Examples of use"
texmf-dist/doc/generic/pdf-trans/example.tex
runfiles size=12
texmf-dist/tex/generic/pdf-trans/pdf-trans.tex
catalogue-ctan /macros/generic/pdf-trans
-catalogue-date 2012-05-31 18:08:53 +0200
+catalogue-date 2014-01-28 18:35:23 +0100
catalogue-license pd
-catalogue-version 2.2
+catalogue-version 2.4
name pdf14
category Package
@@ -121137,7 +133697,7 @@ srcfiles size=3
runfiles size=1
texmf-dist/tex/latex/pdf14/pdf14.sty
catalogue-ctan /macros/latex/contrib/pdf14
-catalogue-date 2012-11-14 17:56:09 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 0.1
@@ -121329,14 +133889,6 @@ binfiles arch=i386-solaris size=2
bin/i386-solaris/pdfcrop
bin/i386-solaris/rpdfcrop
-name pdfcrop.mips-irix
-category Package
-revision 29949
-shortdesc mips-irix files of pdfcrop
-binfiles arch=mips-irix size=2
- bin/mips-irix/pdfcrop
- bin/mips-irix/rpdfcrop
-
name pdfcrop.mipsel-linux
category Package
revision 29946
@@ -121377,6 +133929,14 @@ binfiles arch=win32 size=2
bin/win32/pdfcrop.exe
bin/win32/rpdfcrop.exe
+name pdfcrop.x86_64-cygwin
+category Package
+revision 33557
+shortdesc x86_64-cygwin files of pdfcrop
+binfiles arch=x86_64-cygwin size=2
+ bin/x86_64-cygwin/pdfcrop
+ bin/x86_64-cygwin/rpdfcrop
+
name pdfcrop.x86_64-darwin
category Package
revision 18441
@@ -121455,7 +134015,7 @@ runfiles size=21
texmf-dist/scripts/pdfjam/pdfnup
texmf-dist/scripts/pdfjam/pdfpun
catalogue-ctan /support/pdfjam
-catalogue-date 2012-06-17 01:47:14 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license gpl2
catalogue-version 2.02
@@ -121675,24 +134235,6 @@ binfiles arch=i386-solaris size=12
bin/i386-solaris/pdfnup
bin/i386-solaris/pdfpun
-name pdfjam.mips-irix
-category Package
-revision 29949
-shortdesc mips-irix files of pdfjam
-binfiles arch=mips-irix size=12
- bin/mips-irix/pdf180
- bin/mips-irix/pdf270
- bin/mips-irix/pdf90
- bin/mips-irix/pdfbook
- bin/mips-irix/pdfflip
- bin/mips-irix/pdfjam
- bin/mips-irix/pdfjam-pocketmod
- bin/mips-irix/pdfjam-slides3up
- bin/mips-irix/pdfjam-slides6up
- bin/mips-irix/pdfjoin
- bin/mips-irix/pdfnup
- bin/mips-irix/pdfpun
-
name pdfjam.mipsel-linux
category Package
revision 29946
@@ -121765,6 +134307,24 @@ binfiles arch=universal-darwin size=12
bin/universal-darwin/pdfnup
bin/universal-darwin/pdfpun
+name pdfjam.x86_64-cygwin
+category Package
+revision 33557
+shortdesc x86_64-cygwin files of pdfjam
+binfiles arch=x86_64-cygwin size=12
+ bin/x86_64-cygwin/pdf180
+ bin/x86_64-cygwin/pdf270
+ bin/x86_64-cygwin/pdf90
+ bin/x86_64-cygwin/pdfbook
+ bin/x86_64-cygwin/pdfflip
+ bin/x86_64-cygwin/pdfjam
+ bin/x86_64-cygwin/pdfjam-pocketmod
+ bin/x86_64-cygwin/pdfjam-slides3up
+ bin/x86_64-cygwin/pdfjam-slides6up
+ bin/x86_64-cygwin/pdfjoin
+ bin/x86_64-cygwin/pdfnup
+ bin/x86_64-cygwin/pdfpun
+
name pdfjam.x86_64-darwin
category Package
revision 18441
@@ -121843,13 +134403,13 @@ docfiles size=136
runfiles size=2
texmf-dist/tex/latex/pdfmarginpar/pdfmarginpar.sty
catalogue-ctan /macros/latex/contrib/pdfmarginpar
-catalogue-date 2012-11-14 18:06:01 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license gpl
catalogue-version 0.92
name pdfpages
category Package
-revision 27574
+revision 31518
shortdesc Include PDF documents in LaTeX.
longdesc This package simplifies the inclusion of external multi-page
longdesc PDF documents in LaTeX documents. Pages may be freely selected
@@ -121860,7 +134420,7 @@ longdesc package supports pdfTeX (pdflatex) and VTeX. With VTeX it is
longdesc even possible to use this package to insert PostScript files,
longdesc in addition to PDF files.
depend eso-pic
-docfiles size=86
+docfiles size=87
texmf-dist/doc/latex/pdfpages/dummy-l.pdf
texmf-dist/doc/latex/pdfpages/dummy.pdf
texmf-dist/doc/latex/pdfpages/pdf-ex.tex
@@ -121880,9 +134440,9 @@ runfiles size=22
texmf-dist/tex/latex/pdfpages/ppvtex.def
texmf-dist/tex/latex/pdfpages/ppxetex.def
catalogue-ctan /macros/latex/contrib/pdfpages
-catalogue-date 2013-01-29 15:50:53 +0100
+catalogue-date 2013-08-25 17:45:16 +0200
catalogue-license lppl
-catalogue-version 0.4t
+catalogue-version 0.4v
name pdfscreen
category Package
@@ -121979,12 +134539,12 @@ docfiles size=66
runfiles size=3
texmf-dist/tex/latex/pdfsync/pdfsync.sty
catalogue-ctan /macros/latex/contrib/pdfsync
-catalogue-date 2012-07-18 20:44:29 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
name pdftex
category TLCore
-revision 30753
+revision 34215
shortdesc A TeX extension for direct creation of PDF.
longdesc An extension of TeX which can be configured to directly
longdesc generate PDF documents instead of DVI. All current free TeX
@@ -121997,12 +134557,13 @@ depend pdftex.ARCH
execute AddFormat name=pdftex engine=pdftex patterns=language.def options="-translate-file=cp227.tcx *pdfetex.ini"
execute AddFormat name=etex engine=pdftex patterns=language.def options="-translate-file=cp227.tcx *etex.ini"
execute AddFormat name=pdfetex engine=pdftex patterns=language.def options="-translate-file=cp227.tcx *pdfetex.ini"
-docfiles size=1161
+execute addMap dummy-space.map
+docfiles size=1185
texmf-dist/doc/man/man1/pdfetex.1
texmf-dist/doc/man/man1/pdfetex.man1.pdf
texmf-dist/doc/man/man1/pdftex.1
texmf-dist/doc/man/man1/pdftex.man1.pdf
- texmf-dist/doc/pdftex/Announcement-1.40.2
+ texmf-dist/doc/pdftex/01-fake-interword-space/fake-interword-space.tex
texmf-dist/doc/pdftex/NEWS details="Development news"
texmf-dist/doc/pdftex/README details="Readme"
texmf-dist/doc/pdftex/manual/ChangeLog
@@ -122049,14 +134610,18 @@ docfiles size=1161
texmf-dist/doc/pdftex/thanh/ext/mktfm8z
texmf-dist/doc/pdftex/thanh/ext/protcode.tex
texmf-dist/doc/pdftex/thanh/ext/ufntinst.sty
-runfiles size=847
+runfiles size=1125
+ texmf-dist/fonts/map/dvips/dummy-space/dummy-space.map
texmf-dist/fonts/map/pdftex/updmap/pdftex.map
texmf-dist/fonts/map/pdftex/updmap/pdftex_dl14.map
texmf-dist/fonts/map/pdftex/updmap/pdftex_ndl14.map
+ texmf-dist/fonts/tfm/public/pdftex/dummy-space.tfm
+ texmf-dist/fonts/type1/public/pdftex/dummy-space.pfb
texmf-dist/scripts/simpdftex/simpdftex
texmf-dist/tex/generic/config/pdftex-dvi.tex
texmf-dist/tex/generic/config/pdftexconfig.tex
texmf-dist/tex/generic/pdftex/glyphtounicode.tex
+ texmf-dist/tex/generic/pdftex/pdfcolor.tex
catalogue-ctan /systems/pdftex
catalogue-date 2011-11-09 15:33:34 +0100
catalogue-license gpl
@@ -122071,13 +134636,13 @@ longdesc colour and graphics support when running pdf(La)TeX.
runfiles size=14
texmf-dist/tex/latex/pdftex-def/pdftex.def
catalogue-ctan /macros/latex/contrib/pdftex-def/pdftex.def
-catalogue-date 2012-07-18 20:44:29 +0200
+catalogue-date 2013-09-22 01:11:41 +0200
catalogue-license lppl1.3
catalogue-version 0.06d
name pdftex.alpha-linux
category TLCore
-revision 30129
+revision 34190
shortdesc alpha-linux files of pdftex
binfiles arch=alpha-linux size=541
bin/alpha-linux/etex
@@ -122087,7 +134652,7 @@ binfiles arch=alpha-linux size=541
name pdftex.amd64-freebsd
category TLCore
-revision 30100
+revision 34195
shortdesc amd64-freebsd files of pdftex
binfiles arch=amd64-freebsd size=436
bin/amd64-freebsd/etex
@@ -122097,7 +134662,7 @@ binfiles arch=amd64-freebsd size=436
name pdftex.amd64-kfreebsd
category TLCore
-revision 30655
+revision 34198
shortdesc amd64-kfreebsd files of pdftex
binfiles arch=amd64-kfreebsd size=439
bin/amd64-kfreebsd/etex
@@ -122107,7 +134672,7 @@ binfiles arch=amd64-kfreebsd size=439
name pdftex.amd64-netbsd
category TLCore
-revision 30660
+revision 34234
shortdesc amd64-netbsd files of pdftex
binfiles arch=amd64-netbsd size=426
bin/amd64-netbsd/etex
@@ -122117,7 +134682,7 @@ binfiles arch=amd64-netbsd size=426
name pdftex.armel-linux
category TLCore
-revision 30128
+revision 34189
shortdesc armel-linux files of pdftex
binfiles arch=armel-linux size=389
bin/armel-linux/etex
@@ -122127,7 +134692,7 @@ binfiles arch=armel-linux size=389
name pdftex.armhf-linux
category TLCore
-revision 30443
+revision 34202
shortdesc armhf-linux files of pdftex
binfiles arch=armhf-linux size=366
bin/armhf-linux/etex
@@ -122137,9 +134702,9 @@ binfiles arch=armhf-linux size=366
name pdftex.i386-cygwin
category TLCore
-revision 30526
+revision 34225
shortdesc i386-cygwin files of pdftex
-binfiles arch=i386-cygwin size=388
+binfiles arch=i386-cygwin size=417
bin/i386-cygwin/etex
bin/i386-cygwin/pdfetex
bin/i386-cygwin/pdftex.exe
@@ -122147,9 +134712,9 @@ binfiles arch=i386-cygwin size=388
name pdftex.i386-freebsd
category TLCore
-revision 30100
+revision 34195
shortdesc i386-freebsd files of pdftex
-binfiles arch=i386-freebsd size=396
+binfiles arch=i386-freebsd size=397
bin/i386-freebsd/etex
bin/i386-freebsd/pdfetex
bin/i386-freebsd/pdftex
@@ -122157,9 +134722,9 @@ binfiles arch=i386-freebsd size=396
name pdftex.i386-kfreebsd
category TLCore
-revision 30440
+revision 34198
shortdesc i386-kfreebsd files of pdftex
-binfiles arch=i386-kfreebsd size=414
+binfiles arch=i386-kfreebsd size=415
bin/i386-kfreebsd/etex
bin/i386-kfreebsd/pdfetex
bin/i386-kfreebsd/pdftex
@@ -122167,9 +134732,9 @@ binfiles arch=i386-kfreebsd size=414
name pdftex.i386-linux
category TLCore
-revision 30088
+revision 34181
shortdesc i386-linux files of pdftex
-binfiles arch=i386-linux size=417
+binfiles arch=i386-linux size=443
bin/i386-linux/etex
bin/i386-linux/pdfetex
bin/i386-linux/pdftex
@@ -122177,9 +134742,9 @@ binfiles arch=i386-linux size=417
name pdftex.i386-netbsd
category TLCore
-revision 30191
+revision 34234
shortdesc i386-netbsd files of pdftex
-binfiles arch=i386-netbsd size=378
+binfiles arch=i386-netbsd size=379
bin/i386-netbsd/etex
bin/i386-netbsd/pdfetex
bin/i386-netbsd/pdftex
@@ -122187,7 +134752,7 @@ binfiles arch=i386-netbsd size=378
name pdftex.i386-solaris
category TLCore
-revision 30112
+revision 34203
shortdesc i386-solaris files of pdftex
binfiles arch=i386-solaris size=516
bin/i386-solaris/etex
@@ -122195,21 +134760,11 @@ binfiles arch=i386-solaris size=516
bin/i386-solaris/pdftex
bin/i386-solaris/simpdftex
-name pdftex.mips-irix
-category TLCore
-revision 30131
-shortdesc mips-irix files of pdftex
-binfiles arch=mips-irix size=796
- bin/mips-irix/etex
- bin/mips-irix/pdfetex
- bin/mips-irix/pdftex
- bin/mips-irix/simpdftex
-
name pdftex.mipsel-linux
category TLCore
-revision 30435
+revision 34249
shortdesc mipsel-linux files of pdftex
-binfiles arch=mipsel-linux size=550
+binfiles arch=mipsel-linux size=456
bin/mipsel-linux/etex
bin/mipsel-linux/pdfetex
bin/mipsel-linux/pdftex
@@ -122217,9 +134772,9 @@ binfiles arch=mipsel-linux size=550
name pdftex.powerpc-linux
category TLCore
-revision 30114
+revision 34233
shortdesc powerpc-linux files of pdftex
-binfiles arch=powerpc-linux size=460
+binfiles arch=powerpc-linux size=424
bin/powerpc-linux/etex
bin/powerpc-linux/pdfetex
bin/powerpc-linux/pdftex
@@ -122227,9 +134782,9 @@ binfiles arch=powerpc-linux size=460
name pdftex.sparc-solaris
category TLCore
-revision 30096
+revision 34184
shortdesc sparc-solaris files of pdftex
-binfiles arch=sparc-solaris size=474
+binfiles arch=sparc-solaris size=472
bin/sparc-solaris/etex
bin/sparc-solaris/pdfetex
bin/sparc-solaris/pdftex
@@ -122237,7 +134792,7 @@ binfiles arch=sparc-solaris size=474
name pdftex.universal-darwin
category TLCore
-revision 30764
+revision 34201
shortdesc universal-darwin files of pdftex
binfiles arch=universal-darwin size=805
bin/universal-darwin/etex
@@ -122247,19 +134802,29 @@ binfiles arch=universal-darwin size=805
name pdftex.win32
category TLCore
-revision 30060
+revision 34191
shortdesc win32 files of pdftex
-binfiles arch=win32 size=374
+binfiles arch=win32 size=394
bin/win32/etex.exe
bin/win32/pdfetex.exe
bin/win32/pdftex.dll
bin/win32/pdftex.exe
+name pdftex.x86_64-cygwin
+category TLCore
+revision 34225
+shortdesc x86_64-cygwin files of pdftex
+binfiles arch=x86_64-cygwin size=445
+ bin/x86_64-cygwin/etex
+ bin/x86_64-cygwin/pdfetex
+ bin/x86_64-cygwin/pdftex.exe
+ bin/x86_64-cygwin/simpdftex
+
name pdftex.x86_64-darwin
category TLCore
-revision 30115
+revision 34201
shortdesc x86_64-darwin files of pdftex
-binfiles arch=x86_64-darwin size=465
+binfiles arch=x86_64-darwin size=467
bin/x86_64-darwin/etex
bin/x86_64-darwin/pdfetex
bin/x86_64-darwin/pdftex
@@ -122267,9 +134832,9 @@ binfiles arch=x86_64-darwin size=465
name pdftex.x86_64-linux
category TLCore
-revision 30204
+revision 34192
shortdesc x86_64-linux files of pdftex
-binfiles arch=x86_64-linux size=439
+binfiles arch=x86_64-linux size=442
bin/x86_64-linux/etex
bin/x86_64-linux/pdfetex
bin/x86_64-linux/pdftex
@@ -122277,9 +134842,9 @@ binfiles arch=x86_64-linux size=439
name pdftex.x86_64-solaris
category TLCore
-revision 30112
+revision 34203
shortdesc x86_64-solaris files of pdftex
-binfiles arch=x86_64-solaris size=620
+binfiles arch=x86_64-solaris size=622
bin/x86_64-solaris/etex
bin/x86_64-solaris/pdfetex
bin/x86_64-solaris/pdftex
@@ -122287,7 +134852,7 @@ binfiles arch=x86_64-solaris size=620
name pdftools
category TLCore
-revision 29764
+revision 34192
catalogue xpdfopen
shortdesc PDF-related utilities, including PostScript-to-PDF conversion
longdesc The command-line programs pdfopen and pdfclose allow you to
@@ -122309,61 +134874,57 @@ docfiles size=17
runfiles size=1
texmf-dist/scripts/texlive/e2pall.pl
catalogue-ctan /support/xpdfopen
-catalogue-date 2012-09-07 16:54:33 +0200
+catalogue-date 2014-05-24 18:22:24 +0200
catalogue-license pd
-catalogue-version 0.83
+catalogue-version 0.86
name pdftools.alpha-linux
category TLCore
-revision 29834
+revision 34095
shortdesc alpha-linux files of pdftools
-binfiles arch=alpha-linux size=218
+binfiles arch=alpha-linux size=217
bin/alpha-linux/e2pall
bin/alpha-linux/pdfatfi
bin/alpha-linux/pdfclose
bin/alpha-linux/pdfopen
bin/alpha-linux/pdftosrc
- bin/alpha-linux/ps4pdf
name pdftools.amd64-freebsd
category TLCore
-revision 29785
+revision 34091
shortdesc amd64-freebsd files of pdftools
-binfiles arch=amd64-freebsd size=182
+binfiles arch=amd64-freebsd size=181
bin/amd64-freebsd/e2pall
bin/amd64-freebsd/pdfatfi
bin/amd64-freebsd/pdfclose
bin/amd64-freebsd/pdfopen
bin/amd64-freebsd/pdftosrc
- bin/amd64-freebsd/ps4pdf
name pdftools.amd64-kfreebsd
category TLCore
-revision 30655
+revision 34100
shortdesc amd64-kfreebsd files of pdftools
-binfiles arch=amd64-kfreebsd size=181
+binfiles arch=amd64-kfreebsd size=180
bin/amd64-kfreebsd/e2pall
bin/amd64-kfreebsd/pdfatfi
bin/amd64-kfreebsd/pdfclose
bin/amd64-kfreebsd/pdfopen
bin/amd64-kfreebsd/pdftosrc
- bin/amd64-kfreebsd/ps4pdf
name pdftools.amd64-netbsd
category TLCore
-revision 30660
+revision 34102
shortdesc amd64-netbsd files of pdftools
-binfiles arch=amd64-netbsd size=175
+binfiles arch=amd64-netbsd size=174
bin/amd64-netbsd/e2pall
bin/amd64-netbsd/pdfatfi
bin/amd64-netbsd/pdfclose
bin/amd64-netbsd/pdfopen
bin/amd64-netbsd/pdftosrc
- bin/amd64-netbsd/ps4pdf
name pdftools.armel-linux
category TLCore
-revision 29805
+revision 34096
shortdesc armel-linux files of pdftools
binfiles arch=armel-linux size=146
bin/armel-linux/e2pall
@@ -122371,143 +134932,120 @@ binfiles arch=armel-linux size=146
bin/armel-linux/pdfclose
bin/armel-linux/pdfopen
bin/armel-linux/pdftosrc
- bin/armel-linux/ps4pdf
name pdftools.armhf-linux
category TLCore
-revision 30015
+revision 34125
shortdesc armhf-linux files of pdftools
-binfiles arch=armhf-linux size=134
+binfiles arch=armhf-linux size=135
bin/armhf-linux/e2pall
bin/armhf-linux/pdfatfi
bin/armhf-linux/pdfclose
bin/armhf-linux/pdfopen
bin/armhf-linux/pdftosrc
- bin/armhf-linux/ps4pdf
name pdftools.i386-cygwin
category TLCore
-revision 30526
+revision 34161
shortdesc i386-cygwin files of pdftools
-binfiles arch=i386-cygwin size=153
+binfiles arch=i386-cygwin size=160
bin/i386-cygwin/e2pall
bin/i386-cygwin/pdfatfi
bin/i386-cygwin/pdfclose.exe
bin/i386-cygwin/pdfopen.exe
bin/i386-cygwin/pdftosrc.exe
- bin/i386-cygwin/ps4pdf
name pdftools.i386-freebsd
category TLCore
-revision 29785
+revision 34091
shortdesc i386-freebsd files of pdftools
-binfiles arch=i386-freebsd size=154
+binfiles arch=i386-freebsd size=155
bin/i386-freebsd/e2pall
bin/i386-freebsd/pdfatfi
bin/i386-freebsd/pdfclose
bin/i386-freebsd/pdfopen
bin/i386-freebsd/pdftosrc
- bin/i386-freebsd/ps4pdf
name pdftools.i386-kfreebsd
category TLCore
-revision 30440
+revision 34100
shortdesc i386-kfreebsd files of pdftools
-binfiles arch=i386-kfreebsd size=157
+binfiles arch=i386-kfreebsd size=156
bin/i386-kfreebsd/e2pall
bin/i386-kfreebsd/pdfatfi
bin/i386-kfreebsd/pdfclose
bin/i386-kfreebsd/pdfopen
bin/i386-kfreebsd/pdftosrc
- bin/i386-kfreebsd/ps4pdf
name pdftools.i386-linux
category TLCore
-revision 30088
+revision 34086
shortdesc i386-linux files of pdftools
-binfiles arch=i386-linux size=159
+binfiles arch=i386-linux size=168
bin/i386-linux/e2pall
bin/i386-linux/pdfatfi
bin/i386-linux/pdfclose
bin/i386-linux/pdfopen
bin/i386-linux/pdftosrc
- bin/i386-linux/ps4pdf
name pdftools.i386-netbsd
category TLCore
-revision 30191
+revision 34102
shortdesc i386-netbsd files of pdftools
-binfiles arch=i386-netbsd size=151
+binfiles arch=i386-netbsd size=150
bin/i386-netbsd/e2pall
bin/i386-netbsd/pdfatfi
bin/i386-netbsd/pdfclose
bin/i386-netbsd/pdfopen
bin/i386-netbsd/pdftosrc
- bin/i386-netbsd/ps4pdf
name pdftools.i386-solaris
category TLCore
-revision 30112
+revision 34203
shortdesc i386-solaris files of pdftools
-binfiles arch=i386-solaris size=202
+binfiles arch=i386-solaris size=203
bin/i386-solaris/e2pall
bin/i386-solaris/pdfatfi
bin/i386-solaris/pdfclose
bin/i386-solaris/pdfopen
bin/i386-solaris/pdftosrc
- bin/i386-solaris/ps4pdf
-
-name pdftools.mips-irix
-category TLCore
-revision 30131
-shortdesc mips-irix files of pdftools
-binfiles arch=mips-irix size=313
- bin/mips-irix/e2pall
- bin/mips-irix/pdfatfi
- bin/mips-irix/pdfclose
- bin/mips-irix/pdfopen
- bin/mips-irix/pdftosrc
- bin/mips-irix/ps4pdf
name pdftools.mipsel-linux
category TLCore
-revision 29946
+revision 34099
shortdesc mipsel-linux files of pdftools
-binfiles arch=mipsel-linux size=209
+binfiles arch=mipsel-linux size=178
bin/mipsel-linux/e2pall
bin/mipsel-linux/pdfatfi
bin/mipsel-linux/pdfclose
bin/mipsel-linux/pdfopen
bin/mipsel-linux/pdftosrc
- bin/mipsel-linux/ps4pdf
name pdftools.powerpc-linux
category TLCore
-revision 29833
+revision 34101
shortdesc powerpc-linux files of pdftools
-binfiles arch=powerpc-linux size=181
+binfiles arch=powerpc-linux size=165
bin/powerpc-linux/e2pall
bin/powerpc-linux/pdfatfi
bin/powerpc-linux/pdfclose
bin/powerpc-linux/pdfopen
bin/powerpc-linux/pdftosrc
- bin/powerpc-linux/ps4pdf
name pdftools.sparc-solaris
category TLCore
-revision 29877
+revision 34097
shortdesc sparc-solaris files of pdftools
-binfiles arch=sparc-solaris size=195
+binfiles arch=sparc-solaris size=191
bin/sparc-solaris/e2pall
bin/sparc-solaris/pdfatfi
bin/sparc-solaris/pdfclose
bin/sparc-solaris/pdfopen
bin/sparc-solaris/pdftosrc
- bin/sparc-solaris/ps4pdf
name pdftools.universal-darwin
category TLCore
-revision 30764
+revision 34201
shortdesc universal-darwin files of pdftools
binfiles arch=universal-darwin size=291
bin/universal-darwin/e2pall
@@ -122515,25 +135053,33 @@ binfiles arch=universal-darwin size=291
bin/universal-darwin/pdfclose
bin/universal-darwin/pdfopen
bin/universal-darwin/pdftosrc
- bin/universal-darwin/ps4pdf
name pdftools.win32
category TLCore
-revision 29816
+revision 33897
shortdesc win32 files of pdftools
-binfiles arch=win32 size=184
+binfiles arch=win32 size=572
bin/win32/e2pall.exe
bin/win32/pdfatfi.exe
bin/win32/pdfclose.exe
bin/win32/pdfdde.exe
bin/win32/pdfopen.exe
bin/win32/pdftosrc.exe
- bin/win32/ps4pdf.bat
- bin/win32/ps4pdf.exe
+
+name pdftools.x86_64-cygwin
+category TLCore
+revision 34161
+shortdesc x86_64-cygwin files of pdftools
+binfiles arch=x86_64-cygwin size=189
+ bin/x86_64-cygwin/e2pall
+ bin/x86_64-cygwin/pdfatfi
+ bin/x86_64-cygwin/pdfclose.exe
+ bin/x86_64-cygwin/pdfopen.exe
+ bin/x86_64-cygwin/pdftosrc.exe
name pdftools.x86_64-darwin
category TLCore
-revision 29809
+revision 34201
shortdesc x86_64-darwin files of pdftools
binfiles arch=x86_64-darwin size=182
bin/x86_64-darwin/e2pall
@@ -122541,31 +135087,28 @@ binfiles arch=x86_64-darwin size=182
bin/x86_64-darwin/pdfclose
bin/x86_64-darwin/pdfopen
bin/x86_64-darwin/pdftosrc
- bin/x86_64-darwin/ps4pdf
name pdftools.x86_64-linux
category TLCore
-revision 30204
+revision 34079
shortdesc x86_64-linux files of pdftools
-binfiles arch=x86_64-linux size=178
+binfiles arch=x86_64-linux size=181
bin/x86_64-linux/e2pall
bin/x86_64-linux/pdfatfi
bin/x86_64-linux/pdfclose
bin/x86_64-linux/pdfopen
bin/x86_64-linux/pdftosrc
- bin/x86_64-linux/ps4pdf
name pdftools.x86_64-solaris
category TLCore
-revision 30112
+revision 34203
shortdesc x86_64-solaris files of pdftools
-binfiles arch=x86_64-solaris size=247
+binfiles arch=x86_64-solaris size=250
bin/x86_64-solaris/e2pall
bin/x86_64-solaris/pdfatfi
bin/x86_64-solaris/pdfclose
bin/x86_64-solaris/pdfopen
bin/x86_64-solaris/pdftosrc
- bin/x86_64-solaris/ps4pdf
name pdftricks
category Package
@@ -122590,10 +135133,28 @@ docfiles size=107
runfiles size=4
texmf-dist/tex/latex/pdftricks/pdftricks.sty
catalogue-ctan /graphics/pdftricks
-catalogue-date 2012-11-16 10:27:25 +0100
+catalogue-date 2013-12-17 14:12:28 +0100
catalogue-license gpl
catalogue-version 1.16
+name pdftricks2
+category Package
+revision 31016
+shortdesc Use pstricks in pdfTeX.
+longdesc The package provides the means of processing documents (that
+longdesc contain pstricks graphics specifications. The package is
+longdesc inspired by pdftricks
+docfiles size=22
+ texmf-dist/doc/latex/pdftricks2/README details="Readme"
+ texmf-dist/doc/latex/pdftricks2/pdftricks2-doc.pdf details="Package documentation"
+ texmf-dist/doc/latex/pdftricks2/pdftricks2-doc.tex
+runfiles size=6
+ texmf-dist/tex/latex/pdftricks2/pdftricks2.sty
+catalogue-ctan /graphics/pdftricks2
+catalogue-date 2014-02-26 23:03:13 +0100
+catalogue-license gpl2
+catalogue-version 1.01
+
name pdfwin
category Package
revision 15878
@@ -122639,7 +135200,7 @@ runfiles size=6
texmf-dist/tex/latex/pdfx/pdfx-1a.xmp
texmf-dist/tex/latex/pdfx/pdfx.sty
catalogue-ctan /macros/latex/contrib/pdfx
-catalogue-date 2012-11-14 18:06:01 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.3
@@ -122670,7 +135231,7 @@ catalogue-version 0.1
name pedigree-perl
category Package
-revision 26313
+revision 31990
shortdesc Generate TeX pedigree files from CSV files.
longdesc This program generates TeX commands to typeset pedigrees --
longdesc either TeX fragments or full LaTeX files, to be processed by
@@ -122678,7 +135239,9 @@ longdesc the authors' pst-pdgr package. The program has support for
longdesc multilanguage pedigrees (at the present moment the English and
longdesc Russian languages are supported).
depend pedigree-perl.ARCH
-docfiles size=463
+docfiles size=465
+ texmf-dist/doc/man/man1/pedigree.1
+ texmf-dist/doc/man/man1/pedigree.man1.pdf
texmf-dist/doc/support/pedigree-perl/LICENSE
texmf-dist/doc/support/pedigree-perl/Makefile
texmf-dist/doc/support/pedigree-perl/NEWS
@@ -122718,7 +135281,6 @@ docfiles size=463
texmf-dist/doc/support/pedigree-perl/examples/sort2.csv
texmf-dist/doc/support/pedigree-perl/examples/sort3.csv
texmf-dist/doc/support/pedigree-perl/examples/twins.csv
- texmf-dist/doc/support/pedigree-perl/pedigree.1
runfiles size=28
texmf-dist/scripts/pedigree-perl/Pedigree.pm
texmf-dist/scripts/pedigree-perl/Pedigree/AbortionNode.pm
@@ -122820,13 +135382,6 @@ shortdesc i386-solaris files of pedigree-perl
binfiles arch=i386-solaris size=1
bin/i386-solaris/pedigree
-name pedigree-perl.mips-irix
-category Package
-revision 29949
-shortdesc mips-irix files of pedigree-perl
-binfiles arch=mips-irix size=1
- bin/mips-irix/pedigree
-
name pedigree-perl.mipsel-linux
category Package
revision 29946
@@ -122862,6 +135417,13 @@ shortdesc win32 files of pedigree-perl
binfiles arch=win32 size=1
bin/win32/pedigree.exe
+name pedigree-perl.x86_64-cygwin
+category Package
+revision 33557
+shortdesc x86_64-cygwin files of pedigree-perl
+binfiles arch=x86_64-cygwin size=1
+ bin/x86_64-cygwin/pedigree
+
name pedigree-perl.x86_64-darwin
category Package
revision 25962
@@ -122896,9 +135458,32 @@ catalogue-ctan /biblio/bibtex/contrib/perception
catalogue-date 2012-05-31 18:08:53 +0200
catalogue-license lppl
+name perfectcut
+category Package
+revision 32861
+shortdesc Brackets whose size adjusts to the nesting.
+longdesc The package defines the command \perfectcut#1#2 which displays
+longdesc a bracket <#1||#2>. Its effect is to determine the size of the
+longdesc bracket depending on the number of nested \perfectcut
+longdesc (regardless of the contents). The command is intended for use:
+longdesc In proof theory, for term notations of sequent calculus, In
+longdesc computer science, for the modeling of abstract machines. The
+longdesc package also offers a reimplementation of \big, \bigg, etc.,
+longdesc into arbitrary-size variants.
+docfiles size=28
+ texmf-dist/doc/latex/perfectcut/README details="Readme"
+ texmf-dist/doc/latex/perfectcut/perfectcut.pdf details="Package documentation"
+ texmf-dist/doc/latex/perfectcut/perfectcut.tex
+runfiles size=4
+ texmf-dist/tex/latex/perfectcut/perfectcut.sty
+catalogue-ctan /macros/latex/contrib/perfectcut
+catalogue-date 2014-02-26 23:03:13 +0100
+catalogue-license lppl1.3
+catalogue-version 1.9
+
name perltex
category Package
-revision 29752
+revision 32576
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
@@ -123013,13 +135598,6 @@ shortdesc i386-solaris files of perltex
binfiles arch=i386-solaris size=1
bin/i386-solaris/perltex
-name perltex.mips-irix
-category Package
-revision 29949
-shortdesc mips-irix files of perltex
-binfiles arch=mips-irix size=1
- bin/mips-irix/perltex
-
name perltex.mipsel-linux
category Package
revision 29946
@@ -123055,6 +135633,13 @@ shortdesc win32 files of perltex
binfiles arch=win32 size=1
bin/win32/perltex.exe
+name perltex.x86_64-cygwin
+category Package
+revision 33557
+shortdesc x86_64-cygwin files of perltex
+binfiles arch=x86_64-cygwin size=1
+ bin/x86_64-cygwin/perltex
+
name perltex.x86_64-darwin
category Package
revision 18441
@@ -123123,52 +135708,39 @@ runfiles size=54
texmf-dist/bibtex/bst/persian-bib/unsrt-fa.bst
texmf-dist/bibtex/csf/persian-bib/cp1256fa.csf
catalogue-ctan /biblio/bibtex/contrib/persian-bib
-catalogue-date 2011-11-15 11:50:22 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 0.6
name persian-modern
category Package
-revision 30078
+revision 33641
shortdesc The "Persian Modern" family of fonts.
longdesc The Persian Modern family consists of 12 fonts (based on the
longdesc "FarsiTeX Scientific fonts" released into the public domain by
longdesc the FarsiTeX project). The single set of fonts is available in
-longdesc OpenType format (.otf).
+longdesc TrueType format (.ttf).
docfiles size=14
texmf-dist/doc/fonts/persian-modern/OFL-FAQ.txt
texmf-dist/doc/fonts/persian-modern/OFL.txt
texmf-dist/doc/fonts/persian-modern/README details="Readme"
-srcfiles size=3359
- texmf-dist/source/fonts/persian-modern/persian-modern-bold.sfd
- texmf-dist/source/fonts/persian-modern/persian-modern-bolditalic.sfd
- texmf-dist/source/fonts/persian-modern/persian-modern-boldoblique.sfd
- texmf-dist/source/fonts/persian-modern/persian-modern-italic.sfd
- texmf-dist/source/fonts/persian-modern/persian-modern-italicoutline.sfd
- texmf-dist/source/fonts/persian-modern/persian-modern-italicshadow.sfd
- texmf-dist/source/fonts/persian-modern/persian-modern-oblique.sfd
- texmf-dist/source/fonts/persian-modern/persian-modern-obliqueoutline.sfd
- texmf-dist/source/fonts/persian-modern/persian-modern-obliqueshadow.sfd
- texmf-dist/source/fonts/persian-modern/persian-modern-outline.sfd
- texmf-dist/source/fonts/persian-modern/persian-modern-regular.sfd
- texmf-dist/source/fonts/persian-modern/persian-modern-shadow.sfd
-runfiles size=1089
- texmf-dist/fonts/opentype/public/persian-modern/persian-modern-bold.otf
- texmf-dist/fonts/opentype/public/persian-modern/persian-modern-bolditalic.otf
- texmf-dist/fonts/opentype/public/persian-modern/persian-modern-boldoblique.otf
- texmf-dist/fonts/opentype/public/persian-modern/persian-modern-italic.otf
- texmf-dist/fonts/opentype/public/persian-modern/persian-modern-italicoutline.otf
- texmf-dist/fonts/opentype/public/persian-modern/persian-modern-italicshadow.otf
- texmf-dist/fonts/opentype/public/persian-modern/persian-modern-oblique.otf
- texmf-dist/fonts/opentype/public/persian-modern/persian-modern-obliqueoutline.otf
- texmf-dist/fonts/opentype/public/persian-modern/persian-modern-obliqueshadow.otf
- texmf-dist/fonts/opentype/public/persian-modern/persian-modern-outline.otf
- texmf-dist/fonts/opentype/public/persian-modern/persian-modern-regular.otf
- texmf-dist/fonts/opentype/public/persian-modern/persian-modern-shadow.otf
+runfiles size=3156
+ texmf-dist/fonts/truetype/public/persian-modern/persian-modern-bold.ttf
+ texmf-dist/fonts/truetype/public/persian-modern/persian-modern-bolditalic.ttf
+ texmf-dist/fonts/truetype/public/persian-modern/persian-modern-boldoblique.ttf
+ texmf-dist/fonts/truetype/public/persian-modern/persian-modern-italic.ttf
+ texmf-dist/fonts/truetype/public/persian-modern/persian-modern-italicoutline.ttf
+ texmf-dist/fonts/truetype/public/persian-modern/persian-modern-italicshadow.ttf
+ texmf-dist/fonts/truetype/public/persian-modern/persian-modern-oblique.ttf
+ texmf-dist/fonts/truetype/public/persian-modern/persian-modern-obliqueoutline.ttf
+ texmf-dist/fonts/truetype/public/persian-modern/persian-modern-obliqueshadow.ttf
+ texmf-dist/fonts/truetype/public/persian-modern/persian-modern-outline.ttf
+ texmf-dist/fonts/truetype/public/persian-modern/persian-modern-regular.ttf
+ texmf-dist/fonts/truetype/public/persian-modern/persian-modern-shadow.ttf
catalogue-ctan /fonts/persian/persian-modern
-catalogue-date 2013-04-20 21:59:01 +0200
+catalogue-date 2014-04-29 06:13:54 +0200
catalogue-license ofl
-catalogue-version 0.4
+catalogue-version 0.6
name petiteannonce
category Package
@@ -123186,7 +135758,7 @@ docfiles size=75
runfiles size=3
texmf-dist/tex/latex/petiteannonce/petiteannonce.cls
catalogue-ctan /macros/latex/contrib/petiteannonce
-catalogue-date 2012-04-11 15:11:02 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.0001
@@ -123195,10 +135767,10 @@ category Package
revision 24088
shortdesc A set TeX/LaTeX packages for drawing Petri nets.
longdesc Petri-nets is a set of TeX/LaTeX packages about Petri nets and
-longdesc related models. Three packages are available: - the first
-longdesc allows the user to draw Petri-nets in PostScript documents; -
-longdesc the second defines macros related to PBC, M-nets and B(PN)
-longdesc models; and a combination of the previous two.
+longdesc related models. Three packages are available: the first allows
+longdesc the user to draw Petri-nets in PostScript documents; the second
+longdesc defines macros related to PBC, M-nets and B(PN) models; and a
+longdesc third that combines the other two.
docfiles size=71
texmf-dist/doc/generic/petri-nets/COPYING
texmf-dist/doc/generic/petri-nets/ChangeLog
@@ -123215,12 +135787,12 @@ runfiles size=12
texmf-dist/tex/generic/petri-nets/pntext.tex
texmf-dist/tex/generic/petri-nets/pnversion.tex
catalogue-ctan /macros/generic/petri-nets
-catalogue-date 2012-06-13 14:35:03 +0200
+catalogue-date 2013-12-06 01:11:02 +0100
catalogue-license gpl
name pfarrei
category Package
-revision 29796
+revision 31934
shortdesc LaTeX support of pastors' and priests' work.
longdesc In "Die TeXnische Komodie" (issue 1/2013) Christian Justen
longdesc described his use of LaTeX in his work as priest (similar
@@ -123237,15 +135809,15 @@ docfiles size=123
srcfiles size=12
texmf-dist/source/latex/pfarrei/README
texmf-dist/source/latex/pfarrei/pfarrei.dtx
-runfiles size=7
+runfiles size=6
texmf-dist/scripts/pfarrei/a5toa4.tlu
texmf-dist/scripts/pfarrei/pfarrei.tlu
texmf-dist/tex/latex/pfarrei/a5toa4.tex
texmf-dist/tex/latex/pfarrei/pfarrei.sty
catalogue-ctan /macros/latex/contrib/pfarrei
-catalogue-date 2013-04-08 18:29:05 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
-catalogue-version r33
+catalogue-version r36
name pfarrei.alpha-linux
category Package
@@ -123343,14 +135915,6 @@ binfiles arch=i386-solaris size=2
bin/i386-solaris/a5toa4
bin/i386-solaris/pfarrei
-name pfarrei.mips-irix
-category Package
-revision 29949
-shortdesc mips-irix files of pfarrei
-binfiles arch=mips-irix size=2
- bin/mips-irix/a5toa4
- bin/mips-irix/pfarrei
-
name pfarrei.mipsel-linux
category Package
revision 29946
@@ -123391,6 +135955,14 @@ binfiles arch=win32 size=2
bin/win32/a5toa4.exe
bin/win32/pfarrei.exe
+name pfarrei.x86_64-cygwin
+category Package
+revision 33557
+shortdesc x86_64-cygwin files of pfarrei
+binfiles arch=x86_64-cygwin size=2
+ bin/x86_64-cygwin/a5toa4
+ bin/x86_64-cygwin/pfarrei
+
name pfarrei.x86_64-darwin
category Package
revision 29348
@@ -123417,7 +135989,7 @@ binfiles arch=x86_64-solaris size=2
name pgf
category Package
-revision 22614
+revision 33057
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
@@ -123428,13 +136000,12 @@ longdesc PGF works with plain (pdf-)TeX, (pdf-)LaTeX, and ConTeXt.
longdesc Unlike pstricks, it can produce either PostScript or PDF
longdesc output.
depend xkeyval
-docfiles size=2124
+docfiles size=3299
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"
- texmf-dist/doc/generic/pgf/TODO
texmf-dist/doc/generic/pgf/images/brave-gnu-world-logo-mask.bb
texmf-dist/doc/generic/pgf/images/brave-gnu-world-logo-mask.jpg
texmf-dist/doc/generic/pgf/images/brave-gnu-world-logo.25.bb
@@ -123443,6 +136014,7 @@ docfiles size=2124
texmf-dist/doc/generic/pgf/images/brave-gnu-world-logo.bb
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/brave-gnu-world-logo.xbb
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
@@ -123452,7 +136024,7 @@ docfiles size=2124
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/pgfmanual.pdf details="PGF Manual"
+ texmf-dist/doc/generic/pgf/pgfmanual.pdf
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-decorations.tex
@@ -123479,12 +136051,29 @@ docfiles size=2124
texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-dv-formats.tex
texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-dv-introduction.tex
texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-dv-main.tex
+ texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-dv-polar.tex
texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-dv-stylesheets.tex
texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-dv-visualizers.tex
+ texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-gd-algorithm-layer.tex
+ texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-gd-algorithms-in-c.tex
+ texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-gd-binding-layer.tex
+ texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-gd-circular.tex
+ texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-gd-display-layer.tex
+ texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-gd-examples.tex
+ texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-gd-force.tex
+ texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-gd-layered.tex
+ texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-gd-misc.tex
+ texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-gd-ogdf.tex
+ texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-gd-overview.tex
+ texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-gd-phylogenetics.tex
+ texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-gd-trees.tex
+ texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-gd-usage-pgf.tex
+ texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-gd-usage-tikz.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-angles.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
@@ -123502,6 +136091,7 @@ docfiles size=2124
texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-library-folding.tex
texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-library-fpu.tex
texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-library-lsystems.tex
+ texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-library-math.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
@@ -123518,6 +136108,8 @@ docfiles size=2124
texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-library-trees.tex
texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-library-turtle.tex
texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-license.tex
+ texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-main-body.tex
+ texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-main-preamble.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
@@ -123536,11 +136128,14 @@ docfiles size=2124
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-arrows.tex
texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-tikz-coordinates.tex
texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-tikz-decorations.tex
texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-tikz-design.tex
+ texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-tikz-graphs.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-pics.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
@@ -123551,7 +136146,6 @@ docfiles size=2124
texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-tutorial-chains.tex
texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-tutorial-map.tex
texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-tutorial-nodes.tex
- texmf-dist/doc/generic/pgf/text-en/pgfmanual-en-tutorial-nodes.tex.orig
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
@@ -123562,24 +136156,29 @@ docfiles size=2124
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-tan-example.gnuplot
+ texmf-dist/doc/generic/pgf/text-en/plots/pgf-tan-example.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/text-en/texmf.cnf
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-dvipdfmx/en/Makefile
+ texmf-dist/doc/generic/pgf/version-for-dvipdfmx/en/pgfmanual-test.tex
texmf-dist/doc/generic/pgf/version-for-dvipdfmx/en/pgfmanual.tex
texmf-dist/doc/generic/pgf/version-for-dvipdfmx/pgfmanual-dvipdfmx.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-luatex/en/Makefile
+ texmf-dist/doc/generic/pgf/version-for-luatex/en/pgfmanual-test.tex
+ texmf-dist/doc/generic/pgf/version-for-luatex/en/pgfmanual.tex
+ texmf-dist/doc/generic/pgf/version-for-luatex/pgfmanual-luatex.cfg
texmf-dist/doc/generic/pgf/version-for-pdftex/en/Makefile
- texmf-dist/doc/generic/pgf/version-for-pdftex/en/pgfmanual.figlist
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
@@ -123591,32 +136190,72 @@ docfiles size=2124
texmf-dist/doc/generic/pgf/version-for-xetex/en/Makefile
texmf-dist/doc/generic/pgf/version-for-xetex/en/pgfmanual.tex
texmf-dist/doc/generic/pgf/version-for-xetex/pgfmanual-xetex.cfg
- texmf-dist/doc/latex/pgf/README details="Readme"
-srcfiles size=61
- texmf-dist/source/latex/pgf/incoming/GrzegorzMurzynowski/pgfdatabasearrows.pdf
- texmf-dist/source/latex/pgf/incoming/GrzegorzMurzynowski/pgfdatabasearrows.sty
- texmf-dist/source/latex/pgf/incoming/GrzegorzMurzynowski/pgfdatabasearrows.tex
- texmf-dist/source/latex/pgf/incoming/KarlheinzOchs/basics.pdf
- texmf-dist/source/latex/pgf/incoming/KarlheinzOchs/basics.tex
- texmf-dist/source/latex/pgf/incoming/KarlheinzOchs/fir.pdf
- texmf-dist/source/latex/pgf/incoming/KarlheinzOchs/fir.tex
- texmf-dist/source/latex/pgf/incoming/KarlheinzOchs/interconnection.pdf
- texmf-dist/source/latex/pgf/incoming/KarlheinzOchs/interconnection.tex
- texmf-dist/source/latex/pgf/incoming/KarlheinzOchs/macros.sty
- texmf-dist/source/latex/pgf/incoming/KarlheinzOchs/pgflibrarytikzsignalflowarrows.code.tex
- texmf-dist/source/latex/pgf/incoming/KarlheinzOchs/pgflibrarytikzsignalflowblocks.code.tex
- texmf-dist/source/latex/pgf/incoming/KarlheinzOchs/pgflibrarytikzsignalflowdiagram.code.tex
- texmf-dist/source/latex/pgf/incoming/KarlheinzOchs/pgflibrarytikzsignalflowoperators.code.tex
- texmf-dist/source/latex/pgf/incoming/KarlheinzOchs/placement.pdf
- texmf-dist/source/latex/pgf/incoming/KarlheinzOchs/placement.tex
- texmf-dist/source/latex/pgf/incoming/KarlheinzOchs/signalflowdiagram.sty
- texmf-dist/source/latex/pgf/testsuite/external/Makefile
- texmf-dist/source/latex/pgf/testsuite/external/tikzexternaltest.code.tex
- texmf-dist/source/latex/pgf/testsuite/external/tikzexternaltest.sharedpreamble.tex
- texmf-dist/source/latex/pgf/testsuite/external/tikzexternaltest.tex
- texmf-dist/source/latex/pgf/testsuite/external/tikzexternaltestmakefile.tex
- texmf-dist/source/latex/pgf/testsuite/mathtest/pgfmathtestsuite.tex
-runfiles size=782
+srcfiles size=87
+ texmf-dist/source/generic/pgf/c/INSTALL
+ texmf-dist/source/generic/pgf/c/Makefile
+ texmf-dist/source/generic/pgf/c/config/ExampleLocalMakefileConfig.mk
+ texmf-dist/source/generic/pgf/c/config/MakefileConfig.mk
+ texmf-dist/source/generic/pgf/c/graphdrawing/pgf/gd/examples/c/Makefile
+ texmf-dist/source/generic/pgf/c/graphdrawing/pgf/gd/examples/c/SimpleDemoC.c
+ texmf-dist/source/generic/pgf/c/graphdrawing/pgf/gd/examples/c/SimpleDemoCPlusPlus.c++
+ texmf-dist/source/generic/pgf/c/graphdrawing/pgf/gd/interface/c/InterfaceFromC++.c++
+ texmf-dist/source/generic/pgf/c/graphdrawing/pgf/gd/interface/c/InterfaceFromC++.h
+ texmf-dist/source/generic/pgf/c/graphdrawing/pgf/gd/interface/c/InterfaceFromC.c
+ texmf-dist/source/generic/pgf/c/graphdrawing/pgf/gd/interface/c/InterfaceFromC.h
+ texmf-dist/source/generic/pgf/c/graphdrawing/pgf/gd/interface/c/Makefile
+ texmf-dist/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/InterfaceFromOGDF.c++
+ texmf-dist/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/InterfaceFromOGDF.h
+ texmf-dist/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/Makefile
+ texmf-dist/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/SimpleDemoOGDF.c++
+ texmf-dist/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/energybased/FMMMLayout_script.h
+ texmf-dist/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/energybased/FastMultipoleEmbedder_script.h
+ texmf-dist/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/energybased/GEMLayout_script.h
+ texmf-dist/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/energybased/MultilevelLayout_script.h
+ texmf-dist/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/energybased/SpringEmbedderFRExact_script.h
+ texmf-dist/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/energybased/SpringEmbedderFR_script.h
+ texmf-dist/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/energybased/SpringEmbedderKK_script.h
+ texmf-dist/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/energybased/energybased_script.h
+ texmf-dist/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/energybased/multilevelmixer/BarycenterPlacer_script.h
+ texmf-dist/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/energybased/multilevelmixer/CirclePlacer_script.h
+ texmf-dist/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/energybased/multilevelmixer/EdgeCoverMerger_script.h
+ texmf-dist/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/energybased/multilevelmixer/IndependentSetMerger_script.h
+ texmf-dist/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/energybased/multilevelmixer/LocalBiconnectedMerger_script.h
+ texmf-dist/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/energybased/multilevelmixer/MatchingMerger_script.h
+ texmf-dist/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/energybased/multilevelmixer/MedianPlacer_script.h
+ texmf-dist/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/energybased/multilevelmixer/RandomMerger_script.h
+ texmf-dist/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/energybased/multilevelmixer/RandomPlacer_script.h
+ texmf-dist/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/energybased/multilevelmixer/SolarMerger_script.h
+ texmf-dist/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/energybased/multilevelmixer/SolarPlacer_script.h
+ texmf-dist/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/energybased/multilevelmixer/ZeroPlacer_script.h
+ texmf-dist/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/energybased/multilevelmixer/multilevelmixer_script.h
+ texmf-dist/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/layered/BarycenterHeuristic_script.h
+ texmf-dist/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/layered/CoffmanGrahamRanking_script.h
+ texmf-dist/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/layered/DfsAcyclicSubgraph_script.h
+ texmf-dist/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/layered/FastHierarchyLayout_script.h
+ texmf-dist/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/layered/FastSimpleHierarchyLayout_script.h
+ texmf-dist/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/layered/GreedyCycleRemoval_script.h
+ texmf-dist/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/layered/GreedyInsertHeuristic_script.h
+ texmf-dist/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/layered/LongestPathRanking_script.h
+ texmf-dist/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/layered/MedianHeuristic_script.h
+ texmf-dist/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/layered/OptimalRanking_script.h
+ texmf-dist/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/layered/SiftingHeuristic_script.h
+ texmf-dist/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/layered/SplitHeuristic_script.h
+ texmf-dist/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/layered/SugiyamaLayout_script.h
+ texmf-dist/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/layered/layered_script.h
+ texmf-dist/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/misclayout/BalloonLayout_script.h
+ texmf-dist/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/misclayout/CircularLayout_script.h
+ texmf-dist/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/misclayout/misclayout_script.h
+ texmf-dist/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/module/module_script.h
+ texmf-dist/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/ogdf_script.c++
+ texmf-dist/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/planarity/PlanarizationLayout_script.h
+ texmf-dist/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/planarity/planarity_script.h
+ texmf-dist/source/generic/pgf/testsuite/external/Makefile
+ texmf-dist/source/generic/pgf/testsuite/external/tikzexternaltest.code.tex
+ texmf-dist/source/generic/pgf/testsuite/external/tikzexternaltest.sharedpreamble.tex
+ texmf-dist/source/generic/pgf/testsuite/external/tikzexternaltest.tex
+ texmf-dist/source/generic/pgf/testsuite/external/tikzexternaltestmakefile.tex
+ texmf-dist/source/generic/pgf/testsuite/mathtest/pgfmathtestsuite.tex
+runfiles size=1248
texmf-dist/tex/context/third/pgf/basiclayer/t-pgf.tex
texmf-dist/tex/context/third/pgf/basiclayer/t-pgfbim.tex
texmf-dist/tex/context/third/pgf/basiclayer/t-pgfbla.tex
@@ -123651,11 +136290,6 @@ runfiles size=782
texmf-dist/tex/generic/pgf/basiclayer/pgfcoreshade.code.tex
texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransformations.code.tex
texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransparency.code.tex
- texmf-dist/tex/generic/pgf/frontendlayer/svg/svgpgf.cfg
- texmf-dist/tex/generic/pgf/frontendlayer/svg/svgpgf.xmt
- texmf-dist/tex/generic/pgf/frontendlayer/svg/svgtest.cfg
- texmf-dist/tex/generic/pgf/frontendlayer/svg/svgtest.tex
- texmf-dist/tex/generic/pgf/frontendlayer/svg/svgtest.xml
texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/circuits/tikzlibrarycircuits.code.tex
texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/circuits/tikzlibrarycircuits.ee.IEC.code.tex
texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/circuits/tikzlibrarycircuits.ee.code.tex
@@ -123669,13 +136303,16 @@ runfiles size=782
texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/datavisualization/tikzlibrarydatavisualization.formats.functions.code.tex
texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/datavisualization/tikzlibrarydatavisualization.polar.code.tex
texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/datavisualization/tikzlibrarydatavisualization.sparklines.code.tex
- texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/graphs/tikzlibrarygraphs.basic.code.tex
texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/graphs/tikzlibrarygraphs.code.tex
+ texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/graphs/tikzlibrarygraphs.standard.code.tex
texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzexternalshared.code.tex
texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrary3d.code.tex
+ texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryangles.code.tex
texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryarrows.code.tex
texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryautomata.code.tex
+ texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarybabel.code.tex
texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarybackgrounds.code.tex
+ texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarybending.code.tex
texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarycalc.code.tex
texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarycalendar.code.tex
texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarychains.code.tex
@@ -123695,6 +136332,7 @@ runfiles size=782
texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryfpu.code.tex
texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryintersections.code.tex
texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarylindenmayersystems.code.tex
+ texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarymath.code.tex
texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarymatrix.code.tex
texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarymindmap.code.tex
texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarypatterns.code.tex
@@ -123702,6 +136340,7 @@ runfiles size=782
texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryplothandlers.code.tex
texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryplotmarks.code.tex
texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarypositioning.code.tex
+ texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryquotes.code.tex
texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryscopes.code.tex
texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshadings.code.tex
texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshadows.code.tex
@@ -123722,6 +136361,178 @@ runfiles size=782
texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarytrees.code.tex
texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryturtle.code.tex
texmf-dist/tex/generic/pgf/frontendlayer/tikz/tikz.code.tex
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/LUA_CODING_STYLE
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/bindings.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/bindings/Binding.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/bindings/BindingToPGF.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/circular.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/circular/Tantau2012.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/circular/library.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/control.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/control/Anchoring.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/control/ComponentAlign.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/control/ComponentDirection.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/control/ComponentDistance.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/control/ComponentOrder.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/control/Components.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/control/Distances.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/control/FineTune.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/control/LayoutPipeline.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/control/NodeAnchors.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/control/Orientation.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/control/Sublayouts.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/control/library.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/deprecated/Cluster.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/deprecated/Edge.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/deprecated/Graph.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/deprecated/Iterators.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/deprecated/Node.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/deprecated/Vector.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/circular/Tantau2012.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/control/Anchoring.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/energybased.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/energybased/FMMMLayout.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/energybased/FastMultipoleEmbedder.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/energybased/GEMLayout.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/energybased/MultilevelLayout.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/energybased/SpringEmbedderFR.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/energybased/SpringEmbedderFRExact.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/energybased/SpringEmbedderKK.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/energybased/multilevelmixer/BarycenterPlacer.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/energybased/multilevelmixer/CirclePlacer.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/energybased/multilevelmixer/EdgeCoverMerger.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/energybased/multilevelmixer/IndependentSetMerger.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/energybased/multilevelmixer/LocalBiconnectedMerger.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/energybased/multilevelmixer/MatchingMerger.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/energybased/multilevelmixer/MedianPlacer.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/energybased/multilevelmixer/RandomMerger.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/energybased/multilevelmixer/RandomPlacer.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/energybased/multilevelmixer/SolarMerger.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/energybased/multilevelmixer/SolarPlacer.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/energybased/multilevelmixer/ZeroPlacer.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/layered.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/layered/BarycenterHeuristic.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/layered/CoffmanGrahamRanking.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/layered/DfsAcyclicSubgraph.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/layered/FastHierarchyLayout.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/layered/FastSimpleHierarchyLayout.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/layered/GreedyCycleRemoval.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/layered/GreedyInsertHeuristic.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/layered/LongestPathRanking.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/layered/MedianHeuristic.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/layered/OptimalRanking.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/layered/SiftingHeuristic.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/layered/SplitHeuristic.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/layered/SugiyamaLayout.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/misclayout.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/misclayout/BalloonLayout.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/misclayout/CircularLayout.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/module/AcyclicSubgraphModule.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/module/HierarchyLayoutModule.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/module/InitialPlacer.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/module/MultilevelBuilder.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/module/RankingModule.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/module/TwoLayerCrossMin.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/planarity.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/ogdf/planarity/PlanarizationLayout.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/doc/trees/ReingoldTilford1981.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/examples.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/examples/ASCIIDisplayer.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/examples/BindingToASCII.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/examples/SimpleDemo.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/examples/SimpleEdgeDemo.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/examples/SimpleHuffman.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/examples/example_graph_for_ascii_displayer.txt
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/examples/library.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/force.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/CoarseGraph.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/Control.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/ControlCoarsening.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/ControlElectric.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/ControlIteration.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/ControlSprings.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/ControlStart.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/QuadTree.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/SpringElectricalHu2006.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/SpringElectricalLayouts.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/SpringElectricalWalshaw2000.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/SpringHu2006.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/SpringLayouts.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/library.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/interface.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/interface/InterfaceCore.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/interface/InterfaceToAlgorithms.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/interface/InterfaceToC.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/interface/InterfaceToDisplay.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/interface/Scope.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/layered.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/layered/CrossingMinimizationGansnerKNV1993.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/layered/CycleRemovalBergerS1990a.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/layered/CycleRemovalBergerS1990b.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/layered/CycleRemovalEadesLS1993.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/layered/CycleRemovalGansnerKNV1993.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/layered/EdgeRoutingGansnerKNV1993.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/layered/NetworkSimplex.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/layered/NodePositioningGansnerKNV1993.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/layered/NodeRankingGansnerKNV1993.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/layered/NodeRankingMinimumHeight.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/layered/Ranking.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/layered/Sugiyama.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/layered/crossing_minimization.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/layered/cycle_removal.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/layered/edge_routing.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/layered/library.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/layered/node_positioning.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/layered/node_ranking.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/lib.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/lib/Bezier.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/lib/DepthFirstSearch.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/lib/Direct.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/lib/Event.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/lib/LookupTable.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/lib/PathLengths.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/lib/PriorityQueue.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/lib/Simplifiers.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/lib/Stack.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/lib/Storage.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/lib/Transform.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/model.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/model/Arc.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/model/Collection.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/model/Coordinate.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/model/Digraph.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/model/Edge.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/model/Hyperedge.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/model/Path.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/model/Vertex.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/model/library.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/ogdf.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/ogdf/library.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/phylogenetics.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/phylogenetics/AuthorDefinedPhylogeny.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/phylogenetics/BalancedMinimumEvolution.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/phylogenetics/BalancedNearestNeighbourInterchange.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/phylogenetics/DistanceMatrix.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/phylogenetics/Maeusle2012.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/phylogenetics/PhylogeneticTree.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/phylogenetics/SokalMichener1958.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/phylogenetics/library.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/tools/make_gd_wrap.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/trees.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/trees/ChildSpec.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/trees/ReingoldTilford1981.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/trees/SpanningTreeComputation.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/trees/library.lua
+ texmf-dist/tex/generic/pgf/graphdrawing/tex/pgflibrarygraphdrawing.circular.code.tex
+ texmf-dist/tex/generic/pgf/graphdrawing/tex/pgflibrarygraphdrawing.code.tex
+ texmf-dist/tex/generic/pgf/graphdrawing/tex/pgflibrarygraphdrawing.examples.code.tex
+ texmf-dist/tex/generic/pgf/graphdrawing/tex/pgflibrarygraphdrawing.force.code.tex
+ texmf-dist/tex/generic/pgf/graphdrawing/tex/pgflibrarygraphdrawing.layered.code.tex
+ texmf-dist/tex/generic/pgf/graphdrawing/tex/pgflibrarygraphdrawing.trees.code.tex
+ texmf-dist/tex/generic/pgf/graphdrawing/tex/tikzlibrarygraphdrawing.code.tex
texmf-dist/tex/generic/pgf/libraries/datavisualization/pgflibrarydatavisualization.barcharts.code.tex
texmf-dist/tex/generic/pgf/libraries/datavisualization/pgflibrarydatavisualization.formats.functions.code.tex
texmf-dist/tex/generic/pgf/libraries/datavisualization/pgflibrarydatavisualization.polar.code.tex
@@ -123732,7 +136543,13 @@ runfiles size=782
texmf-dist/tex/generic/pgf/libraries/decorations/pgflibrarydecorations.pathreplacing.code.tex
texmf-dist/tex/generic/pgf/libraries/decorations/pgflibrarydecorations.shapes.code.tex
texmf-dist/tex/generic/pgf/libraries/decorations/pgflibrarydecorations.text.code.tex
+ texmf-dist/tex/generic/pgf/libraries/luamath/pgflibraryluamath.code.tex
+ texmf-dist/tex/generic/pgf/libraries/luamath/pgfluamath.functions.lua
+ texmf-dist/tex/generic/pgf/libraries/luamath/pgfluamath.parser.lua
texmf-dist/tex/generic/pgf/libraries/pgflibraryarrows.code.tex
+ texmf-dist/tex/generic/pgf/libraries/pgflibraryarrows.meta.code.tex
+ texmf-dist/tex/generic/pgf/libraries/pgflibraryarrows.spaced.code.tex
+ texmf-dist/tex/generic/pgf/libraries/pgflibrarycurvilinear.code.tex
texmf-dist/tex/generic/pgf/libraries/pgflibraryfadings.code.tex
texmf-dist/tex/generic/pgf/libraries/pgflibraryfixedpointarithmetic.code.tex
texmf-dist/tex/generic/pgf/libraries/pgflibraryfpu.code.tex
@@ -123757,6 +136574,8 @@ runfiles size=782
texmf-dist/tex/generic/pgf/libraries/shapes/pgflibraryshapes.misc.code.tex
texmf-dist/tex/generic/pgf/libraries/shapes/pgflibraryshapes.multipart.code.tex
texmf-dist/tex/generic/pgf/libraries/shapes/pgflibraryshapes.symbols.code.tex
+ texmf-dist/tex/generic/pgf/lua/pgf/manual.lua
+ texmf-dist/tex/generic/pgf/lua/pgf/manual/DocumentParser.lua
texmf-dist/tex/generic/pgf/math/pgfmath.code.tex
texmf-dist/tex/generic/pgf/math/pgfmathcalc.code.tex
texmf-dist/tex/generic/pgf/math/pgfmathfloat.code.tex
@@ -123764,23 +136583,25 @@ runfiles size=782
texmf-dist/tex/generic/pgf/math/pgfmathfunctions.basic.code.tex
texmf-dist/tex/generic/pgf/math/pgfmathfunctions.code.tex
texmf-dist/tex/generic/pgf/math/pgfmathfunctions.comparison.code.tex
+ texmf-dist/tex/generic/pgf/math/pgfmathfunctions.integerarithmetics.code.tex
texmf-dist/tex/generic/pgf/math/pgfmathfunctions.misc.code.tex
texmf-dist/tex/generic/pgf/math/pgfmathfunctions.random.code.tex
texmf-dist/tex/generic/pgf/math/pgfmathfunctions.round.code.tex
texmf-dist/tex/generic/pgf/math/pgfmathfunctions.trigonometric.code.tex
+ texmf-dist/tex/generic/pgf/math/pgfmathode.code.tex
texmf-dist/tex/generic/pgf/math/pgfmathparser.code.tex
texmf-dist/tex/generic/pgf/math/pgfmathutil.code.tex
+ texmf-dist/tex/generic/pgf/modules/pgfmodulebending.code.tex
texmf-dist/tex/generic/pgf/modules/pgfmoduledatavisualization.code.tex
texmf-dist/tex/generic/pgf/modules/pgfmoduledecorations.code.tex
texmf-dist/tex/generic/pgf/modules/pgfmodulematrix.code.tex
+ texmf-dist/tex/generic/pgf/modules/pgfmodulenonlineartransformations.code.tex
texmf-dist/tex/generic/pgf/modules/pgfmoduleoo.code.tex
texmf-dist/tex/generic/pgf/modules/pgfmoduleparser.code.tex
texmf-dist/tex/generic/pgf/modules/pgfmoduleplot.code.tex
texmf-dist/tex/generic/pgf/modules/pgfmoduleshapes.code.tex
texmf-dist/tex/generic/pgf/modules/pgfmodulesnakes.code.tex
texmf-dist/tex/generic/pgf/modules/pgfmodulesorting.code.tex
- texmf-dist/tex/generic/pgf/rendering/pgfrenderpoints.code.tex
- texmf-dist/tex/generic/pgf/rendering/pgfrendertransform.code.tex
texmf-dist/tex/generic/pgf/systemlayer/pgf.cfg
texmf-dist/tex/generic/pgf/systemlayer/pgfsys-common-pdf-via-dvi.def
texmf-dist/tex/generic/pgf/systemlayer/pgfsys-common-pdf.def
@@ -123790,6 +136611,7 @@ runfiles size=782
texmf-dist/tex/generic/pgf/systemlayer/pgfsys-dvipdfm.def
texmf-dist/tex/generic/pgf/systemlayer/pgfsys-dvipdfmx.def
texmf-dist/tex/generic/pgf/systemlayer/pgfsys-dvips.def
+ texmf-dist/tex/generic/pgf/systemlayer/pgfsys-dvisvgm.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
@@ -123805,6 +136627,7 @@ runfiles size=782
texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex
texmf-dist/tex/generic/pgf/utilities/pgfkeysfiltered.code.tex
texmf-dist/tex/generic/pgf/utilities/pgfrcs.code.tex
+ texmf-dist/tex/generic/pgf/utilities/pgfutil-common-lists.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
@@ -123866,38 +136689,38 @@ runfiles size=782
texmf-dist/tex/plain/pgf/utilities/pgfkeys.tex
texmf-dist/tex/plain/pgf/utilities/pgfrcs.tex
catalogue-ctan /graphics/pgf/base
-catalogue-date 2012-06-12 22:35:22 +0200
+catalogue-date 2014-02-26 21:08:13 +0100
catalogue-license lppl1.3
-catalogue-version 2.10
+catalogue-version 3.0.0
name pgf-blur
category Package
-revision 26134
+revision 31693
shortdesc PGF/TikZ package for "blurred" shadows.
-longdesc The package adds blurred/faded/fuzzy shadows to TikZ/PGF
+longdesc The package adds blurred/faded/fuzzy shadows to PGF/TikZ
longdesc pictures. It is configured as a TikZ/PGF library module. The
longdesc method is similar to that of the author's pst-blur package for
longdesc PSTricks.
docfiles size=63
texmf-dist/doc/latex/pgf-blur/README details="Readme"
- texmf-dist/doc/latex/pgf-blur/pgf-blur.pdf
+ texmf-dist/doc/latex/pgf-blur/pgf-blur.pdf details="Package documentation"
srcfiles size=9
texmf-dist/source/latex/pgf-blur/pgf-blur.dtx
texmf-dist/source/latex/pgf-blur/pgf-blur.ins
runfiles size=2
texmf-dist/tex/latex/pgf-blur/tikzlibraryshadows.blur.code.tex
catalogue-ctan /graphics/pgf/contrib/pgf-blur
-catalogue-date 2012-04-28 17:44:11 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.01
name pgf-soroban
category Package
-revision 15878
+revision 32269
shortdesc Create images of the soroban using TikZ/PGF.
longdesc The package makes it possible to create pictures of the soroban
longdesc (Japanese abacus) using PGF/TikZ
-docfiles size=97
+docfiles size=91
texmf-dist/doc/latex/pgf-soroban/Changes
texmf-dist/doc/latex/pgf-soroban/README details="Readme"
texmf-dist/doc/latex/pgf-soroban/pgf-soroban-doc.bib
@@ -123906,48 +136729,104 @@ docfiles size=97
runfiles size=2
texmf-dist/tex/latex/pgf-soroban/pgf-soroban.sty
catalogue-ctan /graphics/pgf/contrib/pgf-soroban
-catalogue-date 2012-06-12 22:35:22 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
-catalogue-version 1.0
+catalogue-version 1.1
+
+name pgf-umlcd
+category Package
+revision 33307
+shortdesc Some LaTeX macros for UML Class Diagrams.
+longdesc Some LaTeX macros for UML Class Diagrams.pgf
+docfiles size=121
+ texmf-dist/doc/latex/pgf-umlcd/COPYING
+ texmf-dist/doc/latex/pgf-umlcd/README
+ texmf-dist/doc/latex/pgf-umlcd/demo/abstract-class.tex
+ texmf-dist/doc/latex/pgf-umlcd/demo/abstract-factory.svg
+ texmf-dist/doc/latex/pgf-umlcd/demo/abstract-factory.tex
+ texmf-dist/doc/latex/pgf-umlcd/demo/aggregation.tex
+ texmf-dist/doc/latex/pgf-umlcd/demo/association.tex
+ texmf-dist/doc/latex/pgf-umlcd/demo/class.tex
+ texmf-dist/doc/latex/pgf-umlcd/demo/composition.tex
+ texmf-dist/doc/latex/pgf-umlcd/demo/implement-interface.tex
+ texmf-dist/doc/latex/pgf-umlcd/demo/inheritance.tex
+ texmf-dist/doc/latex/pgf-umlcd/demo/interface.tex
+ texmf-dist/doc/latex/pgf-umlcd/demo/note.tex
+ texmf-dist/doc/latex/pgf-umlcd/demo/object-include-methods.tex
+ texmf-dist/doc/latex/pgf-umlcd/demo/object.tex
+ texmf-dist/doc/latex/pgf-umlcd/demo/package.tex
+ texmf-dist/doc/latex/pgf-umlcd/demo/unidirectional-association.tex
+ texmf-dist/doc/latex/pgf-umlcd/demo/visibility.tex
+ texmf-dist/doc/latex/pgf-umlcd/logo.png
+ texmf-dist/doc/latex/pgf-umlcd/pgf-umlcd-manual.pdf details="Package demo"
+ texmf-dist/doc/latex/pgf-umlcd/pgf-umlcd-manual.tex
+runfiles size=3
+ texmf-dist/tex/latex/pgf-umlcd/pgf-umlcd.sty
+catalogue-ctan /graphics/pgf/contrib/pgf-umlcd
+catalogue-date 2014-03-28 18:05:25 +0100
+catalogue-license gpl
+catalogue-version 0.2.1.1
name pgf-umlsd
category Package
-revision 21301
+revision 33045
shortdesc Draw UML Sequence Diagrams.
longdesc LaTeX macros to draw UML diagrams using pgf
-docfiles size=25
+docfiles size=97
texmf-dist/doc/latex/pgf-umlsd/README
- texmf-dist/doc/latex/pgf-umlsd/pgf-umlsd-demo.pdf details="Package demo"
- texmf-dist/doc/latex/pgf-umlsd/pgf-umlsd-demo.tex
- texmf-dist/doc/latex/pgf-umlsd/pgf-umlsd-demo2.pdf details="Package demo (2)"
- texmf-dist/doc/latex/pgf-umlsd/pgf-umlsd-demo2.tex
+ texmf-dist/doc/latex/pgf-umlsd/demo/block.tex
+ texmf-dist/doc/latex/pgf-umlsd/demo/call.tex
+ texmf-dist/doc/latex/pgf-umlsd/demo/callself.tex
+ texmf-dist/doc/latex/pgf-umlsd/demo/customize.log
+ texmf-dist/doc/latex/pgf-umlsd/demo/customize.tex
+ texmf-dist/doc/latex/pgf-umlsd/demo/distance.tex
+ texmf-dist/doc/latex/pgf-umlsd/demo/empty.tex
+ texmf-dist/doc/latex/pgf-umlsd/demo/instance.tex
+ texmf-dist/doc/latex/pgf-umlsd/demo/message.tex
+ texmf-dist/doc/latex/pgf-umlsd/demo/messcall.tex
+ texmf-dist/doc/latex/pgf-umlsd/demo/multi-threads-example.tex
+ texmf-dist/doc/latex/pgf-umlsd/demo/nested-call.tex
+ texmf-dist/doc/latex/pgf-umlsd/demo/no-thread-example.tex
+ texmf-dist/doc/latex/pgf-umlsd/demo/non-instantaneous-message.tex
+ texmf-dist/doc/latex/pgf-umlsd/demo/postlevel.log
+ texmf-dist/doc/latex/pgf-umlsd/demo/postlevel.tex
+ texmf-dist/doc/latex/pgf-umlsd/demo/prelevel.tex
+ texmf-dist/doc/latex/pgf-umlsd/demo/single-thread-example.tex
+ texmf-dist/doc/latex/pgf-umlsd/demo/sync-clock.tex
+ texmf-dist/doc/latex/pgf-umlsd/demo/thread.tex
+ texmf-dist/doc/latex/pgf-umlsd/demo/threadbias.log
+ texmf-dist/doc/latex/pgf-umlsd/demo/threadbias.tex
+ texmf-dist/doc/latex/pgf-umlsd/diagrams.pdf
+ texmf-dist/doc/latex/pgf-umlsd/logo.png
+ texmf-dist/doc/latex/pgf-umlsd/pgf-umlsd-manual.pdf details="Package documentation"
+ texmf-dist/doc/latex/pgf-umlsd/pgf-umlsd-manual.tex
runfiles size=3
texmf-dist/tex/latex/pgf-umlsd/pgf-umlsd.sty
catalogue-ctan /graphics/pgf/contrib/pgf-umlsd
-catalogue-date 2012-04-16 17:52:21 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license gpl
-catalogue-version 0.5
+catalogue-version 0.7
name pgfgantt
category Package
-revision 25204
+revision 31037
shortdesc Draw Gantt charts with TikZ.
longdesc The package provides an environment for drawing Gantt charts
longdesc that contain various elements (titles, bars, milestones, groups
longdesc and links). Several keys customize the appearance of the chart
longdesc elements.
-docfiles size=193
+docfiles size=224
texmf-dist/doc/latex/pgfgantt/README details="Readme"
texmf-dist/doc/latex/pgfgantt/pgfgantt.pdf details="Package documentation"
-srcfiles size=38
+srcfiles size=49
texmf-dist/source/latex/pgfgantt/pgfgantt.dtx
texmf-dist/source/latex/pgfgantt/pgfgantt.ins
-runfiles size=7
+runfiles size=11
texmf-dist/tex/latex/pgfgantt/pgfgantt.sty
catalogue-ctan /graphics/pgf/contrib/pgfgantt
-catalogue-date 2012-01-26 11:19:33 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
-catalogue-version 3.0
+catalogue-version 4.0
name pgfkeyx
category Package
@@ -123965,13 +136844,13 @@ docfiles size=2
runfiles size=8
texmf-dist/tex/latex/pgfkeyx/pgfkeyx.sty
catalogue-ctan /macros/latex/contrib/pgfkeyx
-catalogue-date 2012-04-30 08:59:01 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 0.0.1
name pgfmolbio
category Package
-revision 28023
+revision 31334
shortdesc Draw graphs typically found in molecular biology texts.
longdesc The package draws graphs typically found in molecular biology
longdesc texts. Currently, the package contains modules for drawing DNA
@@ -123994,9 +136873,9 @@ runfiles size=20
texmf-dist/tex/lualatex/pgfmolbio/pgfmolbio.domains.tex
texmf-dist/tex/lualatex/pgfmolbio/pgfmolbio.sty
catalogue-ctan /macros/luatex/latex/pgfmolbio
-catalogue-date 2012-10-04 13:44:39 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
-catalogue-version 0.2
+catalogue-version 0.21
name pgfopts
category Package
@@ -124018,13 +136897,13 @@ srcfiles size=6
runfiles size=2
texmf-dist/tex/latex/pgfopts/pgfopts.sty
catalogue-ctan /macros/latex/contrib/pgfopts
-catalogue-date 2012-06-12 22:35:22 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 2.1
name pgfplots
category Package
-revision 29531
+revision 33097
shortdesc Create normal/logarithmic plots in two and three dimensions.
longdesc PGFPlots draws high-quality function plots in normal or
longdesc logarithmic scaling with a user-friendly interface directly in
@@ -124035,7 +136914,7 @@ longdesc plots, supporting line plots, scatter plots, piecewise constant
longdesc plots, bar plots, area plots, mesh-- and surface plots and some
longdesc more. Pgfplots is based on PGF/TikZ (pgf); it runs equally for
longdesc LaTeX/TeX/ConTeXt.
-docfiles size=2491
+docfiles size=3080
texmf-dist/doc/context/third/pgfplots/pgfplotsexample-context.pdf
texmf-dist/doc/context/third/pgfplots/pgfplotsexample-context.tex
texmf-dist/doc/generic/pgfplots/README details="Readme"
@@ -124048,10 +136927,10 @@ docfiles size=2491
texmf-dist/doc/latex/pgfplots/pgfplotstodo.pdf
texmf-dist/doc/plain/pgfplots/pgfplotsexample-plain.pdf
texmf-dist/doc/plain/pgfplots/pgfplotsexample-plain.tex
-srcfiles size=204
+srcfiles size=229
texmf-dist/source/context/third/pgfplots/pgfplotstests.context.tar.bz2
texmf-dist/source/latex/pgfplots/pgfplotstests.tar.bz2
-runfiles size=673
+runfiles size=720
texmf-dist/scripts/pgfplots/matlab2pgfplots.m
texmf-dist/scripts/pgfplots/matlab2pgfplots.sh
texmf-dist/scripts/pgfplots/pgf2pdf.sh
@@ -124062,7 +136941,9 @@ runfiles size=673
texmf-dist/tex/generic/pgfplots/libs/pgfplotslibrary.code.tex
texmf-dist/tex/generic/pgfplots/libs/tikzlibrarypgfplots.colormaps.code.tex
texmf-dist/tex/generic/pgfplots/libs/tikzlibrarypgfplots.dateplot.code.tex
+ texmf-dist/tex/generic/pgfplots/libs/tikzlibrarypgfplots.decorations.softclip.code.tex
texmf-dist/tex/generic/pgfplots/libs/tikzlibrarypgfplots.external.code.tex
+ texmf-dist/tex/generic/pgfplots/libs/tikzlibrarypgfplots.fillbetween.code.tex
texmf-dist/tex/generic/pgfplots/libs/tikzlibrarypgfplots.groupplots.code.tex
texmf-dist/tex/generic/pgfplots/libs/tikzlibrarypgfplots.patchplots.code.tex
texmf-dist/tex/generic/pgfplots/libs/tikzlibrarypgfplots.polar.code.tex
@@ -124088,16 +136969,23 @@ runfiles size=673
texmf-dist/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_pgfkeys.code.tex
texmf-dist/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_pgfkeysfiltered.code.tex
texmf-dist/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_pgflibraryfpu.code.tex
+ texmf-dist/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_pgflibraryintersections.code.tex
texmf-dist/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_pgflibraryplothandlers.code.tex
texmf-dist/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_pgfmanual.code.tex
texmf-dist/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_pgfmanual.pdflinks.code.tex
texmf-dist/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_pgfmanual.prettyprinter.code.tex
texmf-dist/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_pgfmathfloat.code.tex
+ texmf-dist/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_pgfutil-common-lists.tex
texmf-dist/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_tikzexternal.sty
texmf-dist/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_tikzexternalshared.code.tex
texmf-dist/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_tikzlibraryexternal.code.tex
texmf-dist/tex/generic/pgfplots/oldpgfplotscompatib/tikzlibrarydateplot.code.tex
+ texmf-dist/tex/generic/pgfplots/pgfcontrib/pgflibraryfillbetween.code.tex
+ texmf-dist/tex/generic/pgfplots/pgfcontrib/tikzlibrarydecorations.softclip.code.tex
+ texmf-dist/tex/generic/pgfplots/pgfcontrib/tikzlibraryfillbetween.code.tex
texmf-dist/tex/generic/pgfplots/pgfplots.code.tex
+ texmf-dist/tex/generic/pgfplots/pgfplots.errorbars.code.tex
+ texmf-dist/tex/generic/pgfplots/pgfplots.markers.code.tex
texmf-dist/tex/generic/pgfplots/pgfplots.paths.code.tex
texmf-dist/tex/generic/pgfplots/pgfplots.revision.tex
texmf-dist/tex/generic/pgfplots/pgfplots.scaling.code.tex
@@ -124112,6 +137000,8 @@ runfiles size=673
texmf-dist/tex/generic/pgfplots/sys/pgflibrarypgfplots.surfshading.pgfsys-pdftex.def
texmf-dist/tex/generic/pgfplots/sys/pgflibrarypgfplots.surfshading.pgfsys-xetex.def
texmf-dist/tex/generic/pgfplots/sys/pgfplotssysgeneric.code.tex
+ texmf-dist/tex/generic/pgfplots/test/pgfplots.assert.code.tex
+ texmf-dist/tex/generic/pgfplots/test/pgfplots.assert.sty
texmf-dist/tex/generic/pgfplots/util/pgfplotsbinary.code.tex
texmf-dist/tex/generic/pgfplots/util/pgfplotsbinary.data.code.tex
texmf-dist/tex/generic/pgfplots/util/pgfplotscolor.code.tex
@@ -124127,9 +137017,9 @@ runfiles size=673
texmf-dist/tex/plain/pgfplots/pgfplots.tex
texmf-dist/tex/plain/pgfplots/pgfplotstable.tex
catalogue-ctan /graphics/pgf/contrib/pgfplots
-catalogue-date 2013-04-04 19:44:04 +0200
+catalogue-date 2014-03-04 06:56:29 +0100
catalogue-license gpl
-catalogue-version 1.8
+catalogue-version 1.10
name phaistos
category Package
@@ -124159,13 +137049,13 @@ runfiles size=54
texmf-dist/fonts/type1/public/phaistos/phaistos.pfb
texmf-dist/tex/latex/phaistos/phaistos.sty
catalogue-ctan /fonts/archaic/phaistos
-catalogue-date 2011-12-20 11:10:50 +0100
+catalogue-date 2014-05-17 21:41:14 +0200
catalogue-license lppl
catalogue-version 1.0
name philex
category Package
-revision 27785
+revision 33315
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,
@@ -124174,16 +137064,17 @@ 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=56
- texmf-dist/doc/latex/philex/README
+docfiles size=62
+ texmf-dist/doc/latex/philex/README details="Readme"
+ texmf-dist/doc/latex/philex/README.rtf
texmf-dist/doc/latex/philex/philexmanual.pdf details="Package documentation"
texmf-dist/doc/latex/philex/philexmanual.tex
-runfiles size=5
+runfiles size=6
texmf-dist/tex/latex/philex/philex.sty
catalogue-ctan /macros/latex/contrib/philex
-catalogue-date 2012-09-24 12:06:05 +0200
+catalogue-date 2014-03-28 20:06:26 +0100
catalogue-license lppl
-catalogue-version 1.01
+catalogue-version 1.2
name philokalia
category Package
@@ -124236,7 +137127,7 @@ srcfiles size=12
runfiles size=4
texmf-dist/tex/latex/philosophersimprint/philosophersimprint.cls
catalogue-ctan /macros/latex/contrib/philosophersimprint
-catalogue-date 2013-01-15 09:51:57 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.3
@@ -124287,9 +137178,27 @@ runfiles size=55
texmf-dist/tex/latex/phonetic/Uphon.fd
texmf-dist/tex/latex/phonetic/phonetic.sty
catalogue-ctan /fonts/phonetic
-catalogue-date 2012-06-12 23:14:44 +0200
+catalogue-date 2014-05-23 17:08:48 +0200
catalogue-license lppl
+name phonrule
+category Package
+revision 31966
+shortdesc Typeset linear phonological rules.
+longdesc The package provides macros for typesetting phonological rules
+longdesc like those in 'Sound Pattern of English' (Chomsky and Halle
+longdesc 1968).
+docfiles size=10
+ texmf-dist/doc/latex/phonrule/README details="Readme"
+ texmf-dist/doc/latex/phonrule/phonrule-doc.pdf details="Package documentation"
+ texmf-dist/doc/latex/phonrule/phonrule-doc.tex
+runfiles size=1
+ texmf-dist/tex/latex/phonrule/phonrule.sty
+catalogue-ctan /macros/latex/contrib/phonrule
+catalogue-date 2014-02-26 23:03:13 +0100
+catalogue-license lppl
+catalogue-version 0.01
+
name photo
category Package
revision 18739
@@ -124330,7 +137239,7 @@ docfiles size=69
runfiles size=8
texmf-dist/tex/latex/physics/physics.sty
catalogue-ctan /macros/latex/contrib/physics
-catalogue-date 2012-12-20 17:31:55 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.3
@@ -124352,7 +137261,7 @@ srcfiles size=11
runfiles size=3
texmf-dist/tex/latex/physymb/physymb.sty
catalogue-ctan /macros/latex/contrib/physymb
-catalogue-date 2012-06-13 09:18:45 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 0.2
@@ -124371,7 +137280,7 @@ docfiles size=1
runfiles size=4
texmf-dist/tex/latex/piano/piano.sty
catalogue-ctan /macros/latex/contrib/piano
-catalogue-date 2012-06-13 09:18:45 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.0
@@ -124398,7 +137307,7 @@ catalogue-version 1.2a
name pict2e
category Package
-revision 29215
+revision 32658
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
@@ -124411,12 +137320,12 @@ longdesc drivers for PostScript output from LaTeX, and for use with
longdesc PDFLaTeX are available). The package documentation has a fair
longdesc number of examples of use, showing where things are improved by
longdesc comparison with the LaTeX picture environment.
-docfiles size=211
+docfiles size=194
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=37
+srcfiles size=38
texmf-dist/source/latex/pict2e/p2e-drivers.dtx
texmf-dist/source/latex/pict2e/pict2e.dtx
texmf-dist/source/latex/pict2e/pict2e.ins
@@ -124433,9 +137342,9 @@ runfiles size=17
texmf-dist/tex/latex/pict2e/pict2e.cfg
texmf-dist/tex/latex/pict2e/pict2e.sty
catalogue-ctan /macros/latex/contrib/pict2e
-catalogue-date 2013-01-08 22:57:06 +0100
+catalogue-date 2014-01-13 11:26:35 +0100
catalogue-license lppl
-catalogue-version 0.2y
+catalogue-version 0.2z
name pictex
category Package
@@ -124506,7 +137415,7 @@ docfiles size=59
texmf-dist/doc/latex/pictexsum/pictexsum.tex
texmf-dist/doc/latex/pictexsum/useful.sty
catalogue-ctan /info/pictex/summary
-catalogue-date 2006-08-27 16:41:02 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license other-free
name piechartmp
@@ -124540,10 +137449,10 @@ name piff
category Package
revision 21894
shortdesc Macro tools by Mike Piff.
-longdesc The set (now) consists of: - a small package for dealing with
-longdesc duplicate-numbered output pages; - newproof, for defining
-longdesc mathematical proof structures; - onepagem for omitting the page
-longdesc number in one-page documents and - time, which prints a 12-hour
+longdesc The set (now) consists of: a small package for dealing with
+longdesc duplicate-numbered output pages; newproof, for defining
+longdesc mathematical proof structures; onepagem for omitting the page
+longdesc number in one-page documents and time, which prints a 12-hour
longdesc format time.
docfiles size=185
texmf-dist/doc/latex/piff/README
@@ -124561,7 +137470,7 @@ runfiles size=4
texmf-dist/tex/latex/piff/onepagem.sty
texmf-dist/tex/latex/piff/time.sty
catalogue-ctan /macros/latex/contrib/piff
-catalogue-date 2012-07-19 14:34:01 +0200
+catalogue-date 2013-12-03 18:41:19 +0100
catalogue-license pd
name pigpen
@@ -124586,7 +137495,7 @@ runfiles size=9
texmf-dist/tex/latex/pigpen/pigpen.sty
texmf-dist/tex/latex/pigpen/pigpen.tex
catalogue-ctan /fonts/pigpen
-catalogue-date 2012-07-19 14:34:01 +0200
+catalogue-date 2014-05-23 17:08:48 +0200
catalogue-license lppl
catalogue-version 0.2
@@ -124649,7 +137558,7 @@ runfiles size=27
texmf-dist/tex/plain/pitex/sections.ptx
texmf-dist/tex/plain/pitex/verbatim.ptx
catalogue-ctan /macros/plain/contrib/pitex
-catalogue-date 2012-02-24 11:32:36 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
name pittetd
@@ -124810,13 +137719,6 @@ shortdesc i386-solaris files of pkfix-helper
binfiles arch=i386-solaris size=1
bin/i386-solaris/pkfix-helper
-name pkfix-helper.mips-irix
-category Package
-revision 29949
-shortdesc mips-irix files of pkfix-helper
-binfiles arch=mips-irix size=1
- bin/mips-irix/pkfix-helper
-
name pkfix-helper.mipsel-linux
category Package
revision 29946
@@ -124852,6 +137754,13 @@ shortdesc win32 files of pkfix-helper
binfiles arch=win32 size=1
bin/win32/pkfix-helper.exe
+name pkfix-helper.x86_64-cygwin
+category Package
+revision 33557
+shortdesc x86_64-cygwin files of pkfix-helper
+binfiles arch=x86_64-cygwin size=1
+ bin/x86_64-cygwin/pkfix-helper
+
name pkfix-helper.x86_64-darwin
category Package
revision 18441
@@ -124957,13 +137866,6 @@ shortdesc i386-solaris files of pkfix
binfiles arch=i386-solaris size=1
bin/i386-solaris/pkfix
-name pkfix.mips-irix
-category Package
-revision 29949
-shortdesc mips-irix files of pkfix
-binfiles arch=mips-irix size=1
- bin/mips-irix/pkfix
-
name pkfix.mipsel-linux
category Package
revision 29946
@@ -124999,6 +137901,13 @@ shortdesc win32 files of pkfix
binfiles arch=win32 size=1
bin/win32/pkfix.exe
+name pkfix.x86_64-cygwin
+category Package
+revision 33557
+shortdesc x86_64-cygwin files of pkfix
+binfiles arch=x86_64-cygwin size=1
+ bin/x86_64-cygwin/pkfix
+
name pkfix.x86_64-darwin
category Package
revision 18441
@@ -125020,65 +137929,98 @@ shortdesc x86_64-solaris files of pkfix
binfiles arch=x86_64-solaris size=1
bin/x86_64-solaris/pkfix
+name pkgloader
+category Package
+revision 34019
+shortdesc Managing the options and loading order of other packages.
+longdesc The package seeks to address the frustration caused by package
+longdesc conflicts. It is in an early stage of its development, and
+longdesc should probably not be used as a matter of course; however the
+longdesc author welcomes feedback via the home page link given in this
+longdesc catalogue entry. Nevertheless, the author urges users to try
+longdesc the package and to report issues (or whatever) via the
+longdesc package's repository.
+docfiles size=121
+ texmf-dist/doc/latex/pkgloader/README details="Readme"
+ texmf-dist/doc/latex/pkgloader/pkgloader-packagedoc.cls
+ texmf-dist/doc/latex/pkgloader/pkgloader.pdf details="Package documentation"
+ texmf-dist/doc/latex/pkgloader/pkgloader.tex
+runfiles size=17
+ texmf-dist/tex/latex/pkgloader/pkgloader-cls-pkg.sty
+ texmf-dist/tex/latex/pkgloader/pkgloader-dry.sty
+ texmf-dist/tex/latex/pkgloader/pkgloader-early.sty
+ texmf-dist/tex/latex/pkgloader/pkgloader-error.sty
+ texmf-dist/tex/latex/pkgloader/pkgloader-false.sty
+ texmf-dist/tex/latex/pkgloader/pkgloader-late.sty
+ texmf-dist/tex/latex/pkgloader/pkgloader-recommended.sty
+ texmf-dist/tex/latex/pkgloader/pkgloader-true.sty
+ texmf-dist/tex/latex/pkgloader/pkgloader.sty
+catalogue-ctan /macros/latex/contrib/pkgloader
+catalogue-date 2014-05-22 12:56:12 +0200
+catalogue-license lppl1.3
+catalogue-version 0.2.0
+
name pkuthss
category Package
-revision 29797
+revision 33464
shortdesc LaTeX template for dissertations in Peking University.
longdesc The package provides a simple, clear and flexible LaTeX
longdesc template for dissertations in Peking University.
-docfiles size=145
- texmf-dist/doc/latex/pkuthss/gbkcrlf/ChangeLog-upto-1.3.txt
- texmf-dist/doc/latex/pkuthss/gbkcrlf/ChangeLog.txt
- texmf-dist/doc/latex/pkuthss/gbkcrlf/Make.bat
- texmf-dist/doc/latex/pkuthss/gbkcrlf/Makefile
- texmf-dist/doc/latex/pkuthss/gbkcrlf/chap/abstract.tex
- texmf-dist/doc/latex/pkuthss/gbkcrlf/chap/acknowledge.tex
- texmf-dist/doc/latex/pkuthss/gbkcrlf/chap/chap1.tex
- texmf-dist/doc/latex/pkuthss/gbkcrlf/chap/chap2.tex
- texmf-dist/doc/latex/pkuthss/gbkcrlf/chap/chap3.tex
- texmf-dist/doc/latex/pkuthss/gbkcrlf/chap/conclusion.tex
- texmf-dist/doc/latex/pkuthss/gbkcrlf/chap/copyright.tex
- texmf-dist/doc/latex/pkuthss/gbkcrlf/chap/encl1.tex
- texmf-dist/doc/latex/pkuthss/gbkcrlf/chap/encl2.tex
- texmf-dist/doc/latex/pkuthss/gbkcrlf/chap/introduction.tex
- texmf-dist/doc/latex/pkuthss/gbkcrlf/chap/originauth.tex
- texmf-dist/doc/latex/pkuthss/gbkcrlf/img/Make.bat
- texmf-dist/doc/latex/pkuthss/gbkcrlf/img/Makefile
- texmf-dist/doc/latex/pkuthss/gbkcrlf/img/pkulogo.eps
- texmf-dist/doc/latex/pkuthss/gbkcrlf/img/pkuword.eps
- texmf-dist/doc/latex/pkuthss/gbkcrlf/pkuthss.bib
- texmf-dist/doc/latex/pkuthss/gbkcrlf/pkuthss.tex
- texmf-dist/doc/latex/pkuthss/pkuthss.pdf
- texmf-dist/doc/latex/pkuthss/utf8lf/ChangeLog-upto-1.3.txt
- texmf-dist/doc/latex/pkuthss/utf8lf/ChangeLog.txt
- texmf-dist/doc/latex/pkuthss/utf8lf/Make.bat
- texmf-dist/doc/latex/pkuthss/utf8lf/Makefile
- texmf-dist/doc/latex/pkuthss/utf8lf/chap/abstract.tex
- texmf-dist/doc/latex/pkuthss/utf8lf/chap/acknowledge.tex
- texmf-dist/doc/latex/pkuthss/utf8lf/chap/chap1.tex
- texmf-dist/doc/latex/pkuthss/utf8lf/chap/chap2.tex
- texmf-dist/doc/latex/pkuthss/utf8lf/chap/chap3.tex
- texmf-dist/doc/latex/pkuthss/utf8lf/chap/conclusion.tex
- texmf-dist/doc/latex/pkuthss/utf8lf/chap/copyright.tex
- texmf-dist/doc/latex/pkuthss/utf8lf/chap/encl1.tex
- texmf-dist/doc/latex/pkuthss/utf8lf/chap/encl2.tex
- texmf-dist/doc/latex/pkuthss/utf8lf/chap/introduction.tex
- texmf-dist/doc/latex/pkuthss/utf8lf/chap/originauth.tex
- texmf-dist/doc/latex/pkuthss/utf8lf/img/Make.bat
- texmf-dist/doc/latex/pkuthss/utf8lf/img/Makefile
- texmf-dist/doc/latex/pkuthss/utf8lf/img/pkulogo.eps
- texmf-dist/doc/latex/pkuthss/utf8lf/img/pkuword.eps
- texmf-dist/doc/latex/pkuthss/utf8lf/pkuthss.bib
- texmf-dist/doc/latex/pkuthss/utf8lf/pkuthss.tex
-runfiles size=7
+docfiles size=152
+ texmf-dist/doc/latex/pkuthss/example-gbk/Make.bat
+ texmf-dist/doc/latex/pkuthss/example-gbk/Makefile
+ texmf-dist/doc/latex/pkuthss/example-gbk/chap/abstract.tex
+ texmf-dist/doc/latex/pkuthss/example-gbk/chap/acknowledge.tex
+ texmf-dist/doc/latex/pkuthss/example-gbk/chap/chap1.tex
+ texmf-dist/doc/latex/pkuthss/example-gbk/chap/conclusion.tex
+ texmf-dist/doc/latex/pkuthss/example-gbk/chap/copyright.tex
+ texmf-dist/doc/latex/pkuthss/example-gbk/chap/encl1.tex
+ texmf-dist/doc/latex/pkuthss/example-gbk/chap/introduction.tex
+ texmf-dist/doc/latex/pkuthss/example-gbk/chap/originauth.tex
+ texmf-dist/doc/latex/pkuthss/example-gbk/thesis.bib
+ texmf-dist/doc/latex/pkuthss/example-gbk/thesis.tex
+ texmf-dist/doc/latex/pkuthss/example-utf8/Make.bat
+ texmf-dist/doc/latex/pkuthss/example-utf8/Makefile
+ texmf-dist/doc/latex/pkuthss/example-utf8/chap/abstract.tex
+ texmf-dist/doc/latex/pkuthss/example-utf8/chap/acknowledge.tex
+ texmf-dist/doc/latex/pkuthss/example-utf8/chap/chap1.tex
+ texmf-dist/doc/latex/pkuthss/example-utf8/chap/conclusion.tex
+ texmf-dist/doc/latex/pkuthss/example-utf8/chap/copyright.tex
+ texmf-dist/doc/latex/pkuthss/example-utf8/chap/encl1.tex
+ texmf-dist/doc/latex/pkuthss/example-utf8/chap/introduction.tex
+ texmf-dist/doc/latex/pkuthss/example-utf8/chap/originauth.tex
+ texmf-dist/doc/latex/pkuthss/example-utf8/thesis.bib
+ texmf-dist/doc/latex/pkuthss/example-utf8/thesis.tex
+ texmf-dist/doc/latex/pkuthss/example.pdf
+ texmf-dist/doc/latex/pkuthss/readme-src/ChangeLog-upto-1.3.txt
+ texmf-dist/doc/latex/pkuthss/readme-src/ChangeLog.txt
+ texmf-dist/doc/latex/pkuthss/readme-src/Makefile
+ texmf-dist/doc/latex/pkuthss/readme-src/chap/abstract.tex
+ texmf-dist/doc/latex/pkuthss/readme-src/chap/acknowledge.tex
+ texmf-dist/doc/latex/pkuthss/readme-src/chap/chap1.tex
+ texmf-dist/doc/latex/pkuthss/readme-src/chap/chap2.tex
+ texmf-dist/doc/latex/pkuthss/readme-src/chap/chap3.tex
+ texmf-dist/doc/latex/pkuthss/readme-src/chap/conclusion.tex
+ texmf-dist/doc/latex/pkuthss/readme-src/chap/copyright.tex
+ texmf-dist/doc/latex/pkuthss/readme-src/chap/encl1.tex
+ texmf-dist/doc/latex/pkuthss/readme-src/chap/introduction.tex
+ texmf-dist/doc/latex/pkuthss/readme-src/chap/originauth.tex
+ texmf-dist/doc/latex/pkuthss/readme-src/pkuthss.bib
+ texmf-dist/doc/latex/pkuthss/readme-src/pkuthss.tex
+ texmf-dist/doc/latex/pkuthss/readme.pdf
+runfiles size=13
+ texmf-dist/tex/latex/pkuthss/pkulogo.eps
+ texmf-dist/tex/latex/pkuthss/pkulogo.pdf
texmf-dist/tex/latex/pkuthss/pkuthss-extra.sty
texmf-dist/tex/latex/pkuthss/pkuthss-gbk.def
texmf-dist/tex/latex/pkuthss/pkuthss-utf8.def
texmf-dist/tex/latex/pkuthss/pkuthss.cls
+ texmf-dist/tex/latex/pkuthss/pkuword.eps
+ texmf-dist/tex/latex/pkuthss/pkuword.pdf
catalogue-ctan /macros/latex/contrib/pkuthss
-catalogue-date 2013-04-08 10:17:07 +0200
+catalogue-date 2014-05-24 00:37:52 +0200
catalogue-license other-free
-catalogue-version 1.4rc3
+catalogue-version 1.5.3
name pl
category Package
@@ -125526,6 +138468,29 @@ catalogue-date 2012-06-08 17:19:18 +0200
catalogue-license pd
catalogue-version 1.15
+name placeat
+category Package
+revision 33526
+shortdesc Absolute content positioning.
+longdesc The package provides commands so that the user of LuaLaTeX may
+longdesc position arbitrary content at any position specified by
+longdesc absolute coordinates on the page. The package draws a grid on
+longdesc each page of the document, to aid positioning (the grid may be
+longdesc disabled, for 'final copy' using the command \placeatsetup).
+docfiles size=25
+ texmf-dist/doc/lualatex/placeat/README details="Readme"
+ texmf-dist/doc/lualatex/placeat/placeat.pdf details="Package documentation"
+ texmf-dist/doc/lualatex/placeat/placeat.tex
+srcfiles size=9
+ texmf-dist/source/lualatex/placeat/placeat.dtx
+runfiles size=4
+ texmf-dist/scripts/placeat/placeat.lua
+ texmf-dist/tex/lualatex/placeat/placeat.sty
+catalogue-ctan /macros/luatex/latex/placeat
+catalogue-date 2014-04-25 11:20:11 +0200
+catalogue-license lppl1.3
+catalogue-version 0.1
+
name placeins
category Package
revision 19848
@@ -125597,7 +138562,7 @@ runfiles size=57
texmf-dist/tex/plain/config/tex.ini
texmf-dist/tex/plain/config/xetex.ini
catalogue-ctan /macros/plain/base
-catalogue-date 2012-06-08 17:19:18 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license knuth
catalogue-version 3.141592653
@@ -125638,7 +138603,7 @@ srcfiles size=5
runfiles size=2
texmf-dist/tex/generic/plainpkg/plainpkg.tex
catalogue-ctan /macros/generic/plainpkg
-catalogue-date 2012-09-27 12:42:10 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 0.4a
@@ -125661,7 +138626,7 @@ docfiles size=94
runfiles size=1
texmf-dist/tex/latex/plantslabels/plantslabels.sty
catalogue-ctan /macros/latex/contrib/plantslabels
-catalogue-date 2012-06-08 17:19:18 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.0
@@ -125726,6 +138691,344 @@ catalogue-ctan /macros/latex/contrib/play
catalogue-date 2012-05-31 18:08:53 +0200
catalogue-license lppl
+name playfair
+category Package
+revision 34236
+shortdesc Playfair Display fonts with LaTeX support.
+longdesc Playfair Display is well suited for titling and headlines. It
+longdesc has an extra large x-height and short descenders. It can be set
+longdesc with no leading if space is tight, for instance in news
+longdesc headlines, or for stylistic effect in titles. Capitals are
+longdesc extra short, and only very slightly heavier than the lowercase
+longdesc characters. This helps achieve a more even typographical colour
+longdesc when typesetting proper nouns and initialisms.
+execute addMap PlayfairDisplay.map
+docfiles size=30
+ texmf-dist/doc/fonts/playfair/OFL.txt
+ texmf-dist/doc/fonts/playfair/Playfair_Display_A4_specimen.pdf
+ texmf-dist/doc/fonts/playfair/README details="Readme"
+ texmf-dist/doc/fonts/playfair/playfair-samples.pdf
+ texmf-dist/doc/fonts/playfair/playfair-samples.tex
+runfiles size=1224
+ texmf-dist/fonts/enc/dvips/playfair/plf_5ewtu2.enc
+ texmf-dist/fonts/enc/dvips/playfair/plf_6bqc7d.enc
+ texmf-dist/fonts/enc/dvips/playfair/plf_723q3k.enc
+ texmf-dist/fonts/enc/dvips/playfair/plf_aehru5.enc
+ texmf-dist/fonts/enc/dvips/playfair/plf_apfun2.enc
+ texmf-dist/fonts/enc/dvips/playfair/plf_c2cruh.enc
+ texmf-dist/fonts/enc/dvips/playfair/plf_cgf2ku.enc
+ texmf-dist/fonts/enc/dvips/playfair/plf_ev34te.enc
+ texmf-dist/fonts/enc/dvips/playfair/plf_ilriiw.enc
+ texmf-dist/fonts/enc/dvips/playfair/plf_j6ohis.enc
+ texmf-dist/fonts/enc/dvips/playfair/plf_ouuek2.enc
+ texmf-dist/fonts/enc/dvips/playfair/plf_qjvs44.enc
+ texmf-dist/fonts/enc/dvips/playfair/plf_rmgfzq.enc
+ texmf-dist/fonts/enc/dvips/playfair/plf_tcbmed.enc
+ texmf-dist/fonts/enc/dvips/playfair/plf_tff5oq.enc
+ texmf-dist/fonts/enc/dvips/playfair/plf_ujy7vm.enc
+ texmf-dist/fonts/enc/dvips/playfair/plf_vgw77z.enc
+ texmf-dist/fonts/enc/dvips/playfair/plf_vw64ij.enc
+ texmf-dist/fonts/enc/dvips/playfair/plf_ybdqh4.enc
+ texmf-dist/fonts/enc/dvips/playfair/plf_zcb4ya.enc
+ texmf-dist/fonts/map/dvips/playfair/PlayfairDisplay.map
+ texmf-dist/fonts/opentype/public/playfair/PlayfairDisplay-Black.otf
+ texmf-dist/fonts/opentype/public/playfair/PlayfairDisplay-BlackItalic.otf
+ texmf-dist/fonts/opentype/public/playfair/PlayfairDisplay-Bold.otf
+ texmf-dist/fonts/opentype/public/playfair/PlayfairDisplay-BoldItalic.otf
+ texmf-dist/fonts/opentype/public/playfair/PlayfairDisplay-Italic.otf
+ texmf-dist/fonts/opentype/public/playfair/PlayfairDisplay-Regular.otf
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Black-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Black-lf-ly1.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Black-lf-ot1.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Black-lf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Black-lf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Black-lf-sc-ot1--base.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Black-lf-sc-ot1.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Black-lf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Black-lf-sc-t1.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Black-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Black-lf-t1.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Black-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Black-lf-ts1.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Black-osf-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Black-osf-ly1.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Black-osf-ot1.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Black-osf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Black-osf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Black-osf-sc-ot1--base.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Black-osf-sc-ot1.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Black-osf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Black-osf-sc-t1.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Black-osf-t1--base.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Black-osf-t1.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Black-osf-ts1--base.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Black-osf-ts1.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Black-sup-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Black-sup-ly1.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Black-sup-ot1.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Black-sup-t1--base.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Black-sup-t1.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-BlackItalic-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-BlackItalic-lf-ly1.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-BlackItalic-lf-ot1.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-BlackItalic-lf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-BlackItalic-lf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-BlackItalic-lf-sc-ot1--base.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-BlackItalic-lf-sc-ot1.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-BlackItalic-lf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-BlackItalic-lf-sc-t1.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-BlackItalic-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-BlackItalic-lf-t1.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-BlackItalic-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-BlackItalic-lf-ts1.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-BlackItalic-osf-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-BlackItalic-osf-ly1.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-BlackItalic-osf-ot1.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-BlackItalic-osf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-BlackItalic-osf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-BlackItalic-osf-sc-ot1--base.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-BlackItalic-osf-sc-ot1.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-BlackItalic-osf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-BlackItalic-osf-sc-t1.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-BlackItalic-osf-t1--base.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-BlackItalic-osf-t1.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-BlackItalic-osf-ts1--base.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-BlackItalic-osf-ts1.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-BlackItalic-sup-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-BlackItalic-sup-ly1.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-BlackItalic-sup-ot1.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-BlackItalic-sup-t1--base.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-BlackItalic-sup-t1.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Bold-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Bold-lf-ly1.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Bold-lf-ot1.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Bold-lf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Bold-lf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Bold-lf-sc-ot1--base.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Bold-lf-sc-ot1.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Bold-lf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Bold-lf-sc-t1.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Bold-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Bold-lf-t1.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Bold-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Bold-lf-ts1.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Bold-osf-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Bold-osf-ly1.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Bold-osf-ot1.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Bold-osf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Bold-osf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Bold-osf-sc-ot1--base.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Bold-osf-sc-ot1.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Bold-osf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Bold-osf-sc-t1.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Bold-osf-t1--base.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Bold-osf-t1.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Bold-osf-ts1--base.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Bold-osf-ts1.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Bold-sup-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Bold-sup-ly1.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Bold-sup-ot1.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Bold-sup-t1--base.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Bold-sup-t1.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-BoldItalic-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-BoldItalic-lf-ly1.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-BoldItalic-lf-ot1.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-BoldItalic-lf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-BoldItalic-lf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-BoldItalic-lf-sc-ot1--base.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-BoldItalic-lf-sc-ot1.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-BoldItalic-lf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-BoldItalic-lf-sc-t1.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-BoldItalic-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-BoldItalic-lf-t1.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-BoldItalic-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-BoldItalic-lf-ts1.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-BoldItalic-osf-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-BoldItalic-osf-ly1.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-BoldItalic-osf-ot1.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-BoldItalic-osf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-BoldItalic-osf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-BoldItalic-osf-sc-ot1--base.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-BoldItalic-osf-sc-ot1.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-BoldItalic-osf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-BoldItalic-osf-sc-t1.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-BoldItalic-osf-t1--base.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-BoldItalic-osf-t1.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-BoldItalic-osf-ts1--base.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-BoldItalic-osf-ts1.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-BoldItalic-sup-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-BoldItalic-sup-ly1.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-BoldItalic-sup-ot1.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-BoldItalic-sup-t1--base.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-BoldItalic-sup-t1.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Italic-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Italic-lf-ly1.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Italic-lf-ot1.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Italic-lf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Italic-lf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Italic-lf-sc-ot1--base.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Italic-lf-sc-ot1.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Italic-lf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Italic-lf-sc-t1.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Italic-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Italic-lf-t1.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Italic-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Italic-lf-ts1.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Italic-osf-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Italic-osf-ly1.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Italic-osf-ot1.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Italic-osf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Italic-osf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Italic-osf-sc-ot1--base.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Italic-osf-sc-ot1.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Italic-osf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Italic-osf-sc-t1.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Italic-osf-t1--base.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Italic-osf-t1.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Italic-osf-ts1--base.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Italic-osf-ts1.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Italic-sup-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Italic-sup-ly1.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Italic-sup-ot1.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Italic-sup-t1--base.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Italic-sup-t1.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Regular-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Regular-lf-ly1.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Regular-lf-ot1.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Regular-lf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Regular-lf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Regular-lf-sc-ot1--base.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Regular-lf-sc-ot1.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Regular-lf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Regular-lf-sc-t1.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Regular-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Regular-lf-t1.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Regular-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Regular-lf-ts1.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Regular-osf-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Regular-osf-ly1.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Regular-osf-ot1.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Regular-osf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Regular-osf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Regular-osf-sc-ot1--base.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Regular-osf-sc-ot1.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Regular-osf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Regular-osf-sc-t1.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Regular-osf-t1--base.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Regular-osf-t1.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Regular-osf-ts1--base.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Regular-osf-ts1.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Regular-sup-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Regular-sup-ly1.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Regular-sup-ot1.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Regular-sup-t1--base.tfm
+ texmf-dist/fonts/tfm/public/playfair/PlayfairDisplay-Regular-sup-t1.tfm
+ texmf-dist/fonts/type1/public/playfair/PlayfairDisplay-Black.pfb
+ texmf-dist/fonts/type1/public/playfair/PlayfairDisplay-BlackItalic.pfb
+ texmf-dist/fonts/type1/public/playfair/PlayfairDisplay-Bold.pfb
+ texmf-dist/fonts/type1/public/playfair/PlayfairDisplay-BoldItalic.pfb
+ texmf-dist/fonts/type1/public/playfair/PlayfairDisplay-Italic.pfb
+ texmf-dist/fonts/type1/public/playfair/PlayfairDisplay-Regular.pfb
+ texmf-dist/fonts/vf/public/playfair/PlayfairDisplay-Black-lf-ly1.vf
+ texmf-dist/fonts/vf/public/playfair/PlayfairDisplay-Black-lf-sc-ly1.vf
+ texmf-dist/fonts/vf/public/playfair/PlayfairDisplay-Black-lf-sc-ot1.vf
+ texmf-dist/fonts/vf/public/playfair/PlayfairDisplay-Black-lf-sc-t1.vf
+ texmf-dist/fonts/vf/public/playfair/PlayfairDisplay-Black-lf-t1.vf
+ texmf-dist/fonts/vf/public/playfair/PlayfairDisplay-Black-lf-ts1.vf
+ texmf-dist/fonts/vf/public/playfair/PlayfairDisplay-Black-osf-ly1.vf
+ texmf-dist/fonts/vf/public/playfair/PlayfairDisplay-Black-osf-sc-ly1.vf
+ texmf-dist/fonts/vf/public/playfair/PlayfairDisplay-Black-osf-sc-ot1.vf
+ texmf-dist/fonts/vf/public/playfair/PlayfairDisplay-Black-osf-sc-t1.vf
+ texmf-dist/fonts/vf/public/playfair/PlayfairDisplay-Black-osf-t1.vf
+ texmf-dist/fonts/vf/public/playfair/PlayfairDisplay-Black-osf-ts1.vf
+ texmf-dist/fonts/vf/public/playfair/PlayfairDisplay-Black-sup-ly1.vf
+ texmf-dist/fonts/vf/public/playfair/PlayfairDisplay-Black-sup-t1.vf
+ texmf-dist/fonts/vf/public/playfair/PlayfairDisplay-BlackItalic-lf-ly1.vf
+ texmf-dist/fonts/vf/public/playfair/PlayfairDisplay-BlackItalic-lf-sc-ly1.vf
+ texmf-dist/fonts/vf/public/playfair/PlayfairDisplay-BlackItalic-lf-sc-ot1.vf
+ texmf-dist/fonts/vf/public/playfair/PlayfairDisplay-BlackItalic-lf-sc-t1.vf
+ texmf-dist/fonts/vf/public/playfair/PlayfairDisplay-BlackItalic-lf-t1.vf
+ texmf-dist/fonts/vf/public/playfair/PlayfairDisplay-BlackItalic-lf-ts1.vf
+ texmf-dist/fonts/vf/public/playfair/PlayfairDisplay-BlackItalic-osf-ly1.vf
+ texmf-dist/fonts/vf/public/playfair/PlayfairDisplay-BlackItalic-osf-sc-ly1.vf
+ texmf-dist/fonts/vf/public/playfair/PlayfairDisplay-BlackItalic-osf-sc-ot1.vf
+ texmf-dist/fonts/vf/public/playfair/PlayfairDisplay-BlackItalic-osf-sc-t1.vf
+ texmf-dist/fonts/vf/public/playfair/PlayfairDisplay-BlackItalic-osf-t1.vf
+ texmf-dist/fonts/vf/public/playfair/PlayfairDisplay-BlackItalic-osf-ts1.vf
+ texmf-dist/fonts/vf/public/playfair/PlayfairDisplay-BlackItalic-sup-ly1.vf
+ texmf-dist/fonts/vf/public/playfair/PlayfairDisplay-BlackItalic-sup-t1.vf
+ texmf-dist/fonts/vf/public/playfair/PlayfairDisplay-Bold-lf-ly1.vf
+ texmf-dist/fonts/vf/public/playfair/PlayfairDisplay-Bold-lf-sc-ly1.vf
+ texmf-dist/fonts/vf/public/playfair/PlayfairDisplay-Bold-lf-sc-ot1.vf
+ texmf-dist/fonts/vf/public/playfair/PlayfairDisplay-Bold-lf-sc-t1.vf
+ texmf-dist/fonts/vf/public/playfair/PlayfairDisplay-Bold-lf-t1.vf
+ texmf-dist/fonts/vf/public/playfair/PlayfairDisplay-Bold-lf-ts1.vf
+ texmf-dist/fonts/vf/public/playfair/PlayfairDisplay-Bold-osf-ly1.vf
+ texmf-dist/fonts/vf/public/playfair/PlayfairDisplay-Bold-osf-sc-ly1.vf
+ texmf-dist/fonts/vf/public/playfair/PlayfairDisplay-Bold-osf-sc-ot1.vf
+ texmf-dist/fonts/vf/public/playfair/PlayfairDisplay-Bold-osf-sc-t1.vf
+ texmf-dist/fonts/vf/public/playfair/PlayfairDisplay-Bold-osf-t1.vf
+ texmf-dist/fonts/vf/public/playfair/PlayfairDisplay-Bold-osf-ts1.vf
+ texmf-dist/fonts/vf/public/playfair/PlayfairDisplay-Bold-sup-ly1.vf
+ texmf-dist/fonts/vf/public/playfair/PlayfairDisplay-Bold-sup-t1.vf
+ texmf-dist/fonts/vf/public/playfair/PlayfairDisplay-BoldItalic-lf-ly1.vf
+ texmf-dist/fonts/vf/public/playfair/PlayfairDisplay-BoldItalic-lf-sc-ly1.vf
+ texmf-dist/fonts/vf/public/playfair/PlayfairDisplay-BoldItalic-lf-sc-ot1.vf
+ texmf-dist/fonts/vf/public/playfair/PlayfairDisplay-BoldItalic-lf-sc-t1.vf
+ texmf-dist/fonts/vf/public/playfair/PlayfairDisplay-BoldItalic-lf-t1.vf
+ texmf-dist/fonts/vf/public/playfair/PlayfairDisplay-BoldItalic-lf-ts1.vf
+ texmf-dist/fonts/vf/public/playfair/PlayfairDisplay-BoldItalic-osf-ly1.vf
+ texmf-dist/fonts/vf/public/playfair/PlayfairDisplay-BoldItalic-osf-sc-ly1.vf
+ texmf-dist/fonts/vf/public/playfair/PlayfairDisplay-BoldItalic-osf-sc-ot1.vf
+ texmf-dist/fonts/vf/public/playfair/PlayfairDisplay-BoldItalic-osf-sc-t1.vf
+ texmf-dist/fonts/vf/public/playfair/PlayfairDisplay-BoldItalic-osf-t1.vf
+ texmf-dist/fonts/vf/public/playfair/PlayfairDisplay-BoldItalic-osf-ts1.vf
+ texmf-dist/fonts/vf/public/playfair/PlayfairDisplay-BoldItalic-sup-ly1.vf
+ texmf-dist/fonts/vf/public/playfair/PlayfairDisplay-BoldItalic-sup-t1.vf
+ texmf-dist/fonts/vf/public/playfair/PlayfairDisplay-Italic-lf-ly1.vf
+ texmf-dist/fonts/vf/public/playfair/PlayfairDisplay-Italic-lf-sc-ly1.vf
+ texmf-dist/fonts/vf/public/playfair/PlayfairDisplay-Italic-lf-sc-ot1.vf
+ texmf-dist/fonts/vf/public/playfair/PlayfairDisplay-Italic-lf-sc-t1.vf
+ texmf-dist/fonts/vf/public/playfair/PlayfairDisplay-Italic-lf-t1.vf
+ texmf-dist/fonts/vf/public/playfair/PlayfairDisplay-Italic-lf-ts1.vf
+ texmf-dist/fonts/vf/public/playfair/PlayfairDisplay-Italic-osf-ly1.vf
+ texmf-dist/fonts/vf/public/playfair/PlayfairDisplay-Italic-osf-sc-ly1.vf
+ texmf-dist/fonts/vf/public/playfair/PlayfairDisplay-Italic-osf-sc-ot1.vf
+ texmf-dist/fonts/vf/public/playfair/PlayfairDisplay-Italic-osf-sc-t1.vf
+ texmf-dist/fonts/vf/public/playfair/PlayfairDisplay-Italic-osf-t1.vf
+ texmf-dist/fonts/vf/public/playfair/PlayfairDisplay-Italic-osf-ts1.vf
+ texmf-dist/fonts/vf/public/playfair/PlayfairDisplay-Italic-sup-ly1.vf
+ texmf-dist/fonts/vf/public/playfair/PlayfairDisplay-Italic-sup-t1.vf
+ texmf-dist/fonts/vf/public/playfair/PlayfairDisplay-Regular-lf-ly1.vf
+ texmf-dist/fonts/vf/public/playfair/PlayfairDisplay-Regular-lf-sc-ly1.vf
+ texmf-dist/fonts/vf/public/playfair/PlayfairDisplay-Regular-lf-sc-ot1.vf
+ texmf-dist/fonts/vf/public/playfair/PlayfairDisplay-Regular-lf-sc-t1.vf
+ texmf-dist/fonts/vf/public/playfair/PlayfairDisplay-Regular-lf-t1.vf
+ texmf-dist/fonts/vf/public/playfair/PlayfairDisplay-Regular-lf-ts1.vf
+ texmf-dist/fonts/vf/public/playfair/PlayfairDisplay-Regular-osf-ly1.vf
+ texmf-dist/fonts/vf/public/playfair/PlayfairDisplay-Regular-osf-sc-ly1.vf
+ texmf-dist/fonts/vf/public/playfair/PlayfairDisplay-Regular-osf-sc-ot1.vf
+ texmf-dist/fonts/vf/public/playfair/PlayfairDisplay-Regular-osf-sc-t1.vf
+ texmf-dist/fonts/vf/public/playfair/PlayfairDisplay-Regular-osf-t1.vf
+ texmf-dist/fonts/vf/public/playfair/PlayfairDisplay-Regular-osf-ts1.vf
+ texmf-dist/fonts/vf/public/playfair/PlayfairDisplay-Regular-sup-ly1.vf
+ texmf-dist/fonts/vf/public/playfair/PlayfairDisplay-Regular-sup-t1.vf
+ texmf-dist/tex/latex/playfair/LY1PlayfairDisplay-LF.fd
+ texmf-dist/tex/latex/playfair/LY1PlayfairDisplay-OsF.fd
+ texmf-dist/tex/latex/playfair/LY1PlayfairDisplay-Sup.fd
+ texmf-dist/tex/latex/playfair/OT1PlayfairDisplay-LF.fd
+ texmf-dist/tex/latex/playfair/OT1PlayfairDisplay-OsF.fd
+ texmf-dist/tex/latex/playfair/OT1PlayfairDisplay-Sup.fd
+ texmf-dist/tex/latex/playfair/PlayfairDisplay.sty
+ texmf-dist/tex/latex/playfair/T1PlayfairDisplay-LF.fd
+ texmf-dist/tex/latex/playfair/T1PlayfairDisplay-OsF.fd
+ texmf-dist/tex/latex/playfair/T1PlayfairDisplay-Sup.fd
+ texmf-dist/tex/latex/playfair/TS1PlayfairDisplay-LF.fd
+ texmf-dist/tex/latex/playfair/TS1PlayfairDisplay-OsF.fd
+catalogue-ctan /fonts/playfair
+catalogue-date 2014-05-23 17:11:55 +0200
+catalogue-license ofl
+
name plipsum
category Package
revision 30353
@@ -125744,7 +139047,7 @@ docfiles size=101
runfiles size=37
texmf-dist/tex/plain/plipsum/plipsum.tex
catalogue-ctan /macros/plain/contrib/plipsum
-catalogue-date 2013-05-09 11:57:32 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 4.3
@@ -125787,20 +139090,20 @@ catalogue-version 1.1
name plstmary
category Package
-revision 30377
+revision 31088
shortdesc St. Mary's Road font support for plain TeX.
longdesc The package provides commands to produce all the symbols of the
longdesc St Mary's Road fonts, in a Plain TeX environment.
-docfiles size=40
+docfiles size=41
texmf-dist/doc/plain/plstmary/README details="Readme"
texmf-dist/doc/plain/plstmary/plstmary-doc.pdf details="Package documentation and font tables"
texmf-dist/doc/plain/plstmary/plstmary-doc.tex
runfiles size=2
texmf-dist/tex/plain/plstmary/stmary.tex
catalogue-ctan /macros/plain/contrib/plstmary
-catalogue-date 2013-05-10 10:43:41 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license pd
-catalogue-version 0.5a
+catalogue-version 0.5c
name plweb
category Package
@@ -125850,7 +139153,7 @@ catalogue-version 1.0
name pmx
category Package
-revision 29978
+revision 33826
shortdesc Preprocessor for MusiXTeX.
longdesc PMX is a preprocessor for MusiXTeX. It builds the TeX input
longdesc file from a file in a much simpler language, making most of the
@@ -125860,7 +139163,7 @@ longdesc PMX can make a MIDI file of your score. The present version
longdesc requires at least version 1.15 of MusiXTeX, running on an e-
longdesc tex-enhanced TeX system.
depend pmx.ARCH
-docfiles size=239
+docfiles size=243
texmf-dist/doc/generic/pmx/README details="Readme"
texmf-dist/doc/generic/pmx/examples/barsant.pmx
texmf-dist/doc/generic/pmx/examples/dyntest.pmx
@@ -125870,13 +139173,16 @@ docfiles size=239
texmf-dist/doc/generic/pmx/gpl.txt
texmf-dist/doc/generic/pmx/install_run_pmx270.pdf
texmf-dist/doc/generic/pmx/install_run_pmx270.tex
- texmf-dist/doc/generic/pmx/pmx-install.pdf details="Installation details"
+ texmf-dist/doc/generic/pmx/pmx-install.pdf
texmf-dist/doc/generic/pmx/pmx-install.tex
texmf-dist/doc/generic/pmx/pmx25-27.html
texmf-dist/doc/generic/pmx/pmx270.pdf
texmf-dist/doc/generic/pmx/pmx270.tex
+ texmf-dist/doc/generic/pmx/pmx2pdf.html
+ texmf-dist/doc/generic/pmx/pmxab.html
texmf-dist/doc/generic/pmx/ref270.pdf
texmf-dist/doc/generic/pmx/ref270.tex
+ texmf-dist/doc/generic/pmx/scor2prt.html
texmf-dist/doc/man/man1/pmx2pdf.1
texmf-dist/doc/man/man1/pmx2pdf.man1.pdf
texmf-dist/doc/man/man1/pmxab.1
@@ -125887,7 +139193,7 @@ runfiles size=9
texmf-dist/scripts/pmx/pmx2pdf.lua
texmf-dist/tex/generic/pmx/pmx.tex
catalogue-ctan /support/pmx
-catalogue-date 2013-04-16 18:37:23 +0200
+catalogue-date 2013-12-16 11:52:21 +0100
catalogue-license gpl2
catalogue-version 2.7.0
@@ -125911,7 +139217,7 @@ binfiles arch=amd64-freebsd size=144
name pmx.amd64-kfreebsd
category Package
-revision 30655
+revision 33529
shortdesc amd64-kfreebsd files of pmx
binfiles arch=amd64-kfreebsd size=145
bin/amd64-kfreebsd/pmx2pdf
@@ -125920,7 +139226,7 @@ binfiles arch=amd64-kfreebsd size=145
name pmx.amd64-netbsd
category Package
-revision 30660
+revision 33726
shortdesc amd64-netbsd files of pmx
binfiles arch=amd64-netbsd size=142
bin/amd64-netbsd/pmx2pdf
@@ -125938,7 +139244,7 @@ binfiles arch=armel-linux size=134
name pmx.armhf-linux
category Package
-revision 30443
+revision 33545
shortdesc armhf-linux files of pmx
binfiles arch=armhf-linux size=129
bin/armhf-linux/pmx2pdf
@@ -125947,9 +139253,9 @@ binfiles arch=armhf-linux size=129
name pmx.i386-cygwin
category Package
-revision 30526
+revision 34161
shortdesc i386-cygwin files of pmx
-binfiles arch=i386-cygwin size=126
+binfiles arch=i386-cygwin size=137
bin/i386-cygwin/pmx2pdf
bin/i386-cygwin/pmxab.exe
bin/i386-cygwin/scor2prt.exe
@@ -125965,7 +139271,7 @@ binfiles arch=i386-freebsd size=128
name pmx.i386-kfreebsd
category Package
-revision 30440
+revision 33529
shortdesc i386-kfreebsd files of pmx
binfiles arch=i386-kfreebsd size=138
bin/i386-kfreebsd/pmx2pdf
@@ -125974,70 +139280,61 @@ binfiles arch=i386-kfreebsd size=138
name pmx.i386-linux
category Package
-revision 30088
+revision 33479
shortdesc i386-linux files of pmx
-binfiles arch=i386-linux size=140
+binfiles arch=i386-linux size=141
bin/i386-linux/pmx2pdf
bin/i386-linux/pmxab
bin/i386-linux/scor2prt
name pmx.i386-netbsd
category Package
-revision 30191
+revision 33562
shortdesc i386-netbsd files of pmx
-binfiles arch=i386-netbsd size=125
+binfiles arch=i386-netbsd size=129
bin/i386-netbsd/pmx2pdf
bin/i386-netbsd/pmxab
bin/i386-netbsd/scor2prt
name pmx.i386-solaris
category Package
-revision 30112
+revision 34203
shortdesc i386-solaris files of pmx
-binfiles arch=i386-solaris size=157
+binfiles arch=i386-solaris size=158
bin/i386-solaris/pmx2pdf
bin/i386-solaris/pmxab
bin/i386-solaris/scor2prt
-name pmx.mips-irix
-category Package
-revision 30027
-shortdesc mips-irix files of pmx
-binfiles arch=mips-irix size=218
- bin/mips-irix/pmx2pdf
- bin/mips-irix/pmxab
- bin/mips-irix/scor2prt
-
name pmx.mipsel-linux
category Package
-revision 29995
+revision 33811
shortdesc mipsel-linux files of pmx
-binfiles arch=mipsel-linux size=171
+binfiles arch=mipsel-linux size=150
bin/mipsel-linux/pmx2pdf
bin/mipsel-linux/pmxab
bin/mipsel-linux/scor2prt
name pmx.powerpc-linux
category Package
-revision 30114
+revision 33561
shortdesc powerpc-linux files of pmx
-binfiles arch=powerpc-linux size=142
+binfiles arch=powerpc-linux size=137
bin/powerpc-linux/pmx2pdf
bin/powerpc-linux/pmxab
bin/powerpc-linux/scor2prt
name pmx.sparc-solaris
category Package
-revision 29877
+revision 33871
shortdesc sparc-solaris files of pmx
-binfiles arch=sparc-solaris size=149
+binfiles arch=sparc-solaris size=148
bin/sparc-solaris/pmx2pdf
bin/sparc-solaris/pmxab
bin/sparc-solaris/scor2prt
name pmx.universal-darwin
category Package
-revision 30764
+revision 34201
shortdesc universal-darwin files of pmx
binfiles arch=universal-darwin size=295
bin/universal-darwin/pmx2pdf
@@ -126046,16 +139343,25 @@ binfiles arch=universal-darwin size=295
name pmx.win32
category Package
-revision 29861
+revision 33513
shortdesc win32 files of pmx
-binfiles arch=win32 size=106
+binfiles arch=win32 size=123
bin/win32/pmx2pdf.exe
bin/win32/pmxab.exe
bin/win32/scor2prt.exe
+name pmx.x86_64-cygwin
+category Package
+revision 34161
+shortdesc x86_64-cygwin files of pmx
+binfiles arch=x86_64-cygwin size=153
+ bin/x86_64-cygwin/pmx2pdf
+ bin/x86_64-cygwin/pmxab.exe
+ bin/x86_64-cygwin/scor2prt.exe
+
name pmx.x86_64-darwin
category Package
-revision 29879
+revision 34201
shortdesc x86_64-darwin files of pmx
binfiles arch=x86_64-darwin size=161
bin/x86_64-darwin/pmx2pdf
@@ -126064,22 +139370,211 @@ binfiles arch=x86_64-darwin size=161
name pmx.x86_64-linux
category Package
-revision 30204
+revision 33723
shortdesc x86_64-linux files of pmx
-binfiles arch=x86_64-linux size=146
+binfiles arch=x86_64-linux size=145
bin/x86_64-linux/pmx2pdf
bin/x86_64-linux/pmxab
bin/x86_64-linux/scor2prt
name pmx.x86_64-solaris
category Package
-revision 30112
+revision 34203
shortdesc x86_64-solaris files of pmx
-binfiles arch=x86_64-solaris size=184
+binfiles arch=x86_64-solaris size=187
bin/x86_64-solaris/pmx2pdf
bin/x86_64-solaris/pmxab
bin/x86_64-solaris/scor2prt
+name pmxchords
+category Package
+revision 32443
+shortdesc Produce chord information to go with pmx output.
+longdesc The bundle supplements pmx, providing the means of typesetting
+longdesc chords above the notes of a score. The bundle contains: macros
+longdesc for typing the chords; a Lua script to transpose chord macros
+longdesc to the required key signature; and support scripts for common
+longdesc requirements.
+depend pmxchords.ARCH
+docfiles size=161
+ texmf-dist/doc/man/man1/pmxchords.1
+ texmf-dist/doc/man/man1/pmxchords.man1.pdf
+ texmf-dist/doc/pmxchords/README details="Readme"
+ texmf-dist/doc/pmxchords/chordsRef.pdf
+ texmf-dist/doc/pmxchords/chordsRef.tex
+ texmf-dist/doc/pmxchords/chordsRefCZ.pdf
+ texmf-dist/doc/pmxchords/chordsRefCZ.tex
+ texmf-dist/doc/pmxchords/examples/jazz/misty/misty.pdf
+ texmf-dist/doc/pmxchords/examples/jazz/misty/misty.pmx
+ texmf-dist/doc/pmxchords/examples/jazz/schema/schema.pdf
+ texmf-dist/doc/pmxchords/examples/jazz/schema/schema.pmx
+ texmf-dist/doc/pmxchords/examples/jazz/schema/schema_full.pdf
+ texmf-dist/doc/pmxchords/examples/jazz/schema/schema_full.pmx
+ texmf-dist/doc/pmxchords/examples/noel/aj_co_to_hlasaju/aj_co_to_hlasaju.pdf
+ texmf-dist/doc/pmxchords/examples/noel/aj_co_to_hlasaju/aj_co_to_hlasaju.pmx
+ texmf-dist/doc/pmxchords/examples/noel/pasli_ovce_valasi/README details="Readme"
+ texmf-dist/doc/pmxchords/examples/noel/pasli_ovce_valasi/pasli_ovce_valasi.pdf
+ texmf-dist/doc/pmxchords/examples/noel/pasli_ovce_valasi/pasli_ovce_valasi.pmx
+ texmf-dist/doc/pmxchords/gpl-2.0.txt
+ texmf-dist/doc/pmxchords/pmxchords-install.pdf
+ texmf-dist/doc/pmxchords/pmxchords-install.tex
+runfiles size=9
+ texmf-dist/scripts/pmxchords/ChordsTr.lua
+ texmf-dist/scripts/pmxchords/pmxchords.lua
+ texmf-dist/tex/generic/pmxchords/chords.tex
+ texmf-dist/tex/generic/pmxchords/chordsCZ.tex
+catalogue-ctan /support/pmxchords
+catalogue-date 2014-02-26 23:03:13 +0100
+catalogue-license gpl2
+catalogue-version 2.0.1
+
+name pmxchords.alpha-linux
+category Package
+revision 32405
+shortdesc alpha-linux files of pmxchords
+binfiles arch=alpha-linux size=1
+ bin/alpha-linux/pmxchords
+
+name pmxchords.amd64-freebsd
+category Package
+revision 32405
+shortdesc amd64-freebsd files of pmxchords
+binfiles arch=amd64-freebsd size=1
+ bin/amd64-freebsd/pmxchords
+
+name pmxchords.amd64-kfreebsd
+category Package
+revision 32405
+shortdesc amd64-kfreebsd files of pmxchords
+binfiles arch=amd64-kfreebsd size=1
+ bin/amd64-kfreebsd/pmxchords
+
+name pmxchords.amd64-netbsd
+category Package
+revision 32405
+shortdesc amd64-netbsd files of pmxchords
+binfiles arch=amd64-netbsd size=1
+ bin/amd64-netbsd/pmxchords
+
+name pmxchords.armel-linux
+category Package
+revision 32405
+shortdesc armel-linux files of pmxchords
+binfiles arch=armel-linux size=1
+ bin/armel-linux/pmxchords
+
+name pmxchords.armhf-linux
+category Package
+revision 32405
+shortdesc armhf-linux files of pmxchords
+binfiles arch=armhf-linux size=1
+ bin/armhf-linux/pmxchords
+
+name pmxchords.i386-cygwin
+category Package
+revision 32405
+shortdesc i386-cygwin files of pmxchords
+binfiles arch=i386-cygwin size=1
+ bin/i386-cygwin/pmxchords
+
+name pmxchords.i386-freebsd
+category Package
+revision 32405
+shortdesc i386-freebsd files of pmxchords
+binfiles arch=i386-freebsd size=1
+ bin/i386-freebsd/pmxchords
+
+name pmxchords.i386-kfreebsd
+category Package
+revision 32405
+shortdesc i386-kfreebsd files of pmxchords
+binfiles arch=i386-kfreebsd size=1
+ bin/i386-kfreebsd/pmxchords
+
+name pmxchords.i386-linux
+category Package
+revision 32405
+shortdesc i386-linux files of pmxchords
+binfiles arch=i386-linux size=1
+ bin/i386-linux/pmxchords
+
+name pmxchords.i386-netbsd
+category Package
+revision 32405
+shortdesc i386-netbsd files of pmxchords
+binfiles arch=i386-netbsd size=1
+ bin/i386-netbsd/pmxchords
+
+name pmxchords.i386-solaris
+category Package
+revision 32405
+shortdesc i386-solaris files of pmxchords
+binfiles arch=i386-solaris size=1
+ bin/i386-solaris/pmxchords
+
+name pmxchords.mipsel-linux
+category Package
+revision 32405
+shortdesc mipsel-linux files of pmxchords
+binfiles arch=mipsel-linux size=1
+ bin/mipsel-linux/pmxchords
+
+name pmxchords.powerpc-linux
+category Package
+revision 32405
+shortdesc powerpc-linux files of pmxchords
+binfiles arch=powerpc-linux size=1
+ bin/powerpc-linux/pmxchords
+
+name pmxchords.sparc-solaris
+category Package
+revision 32405
+shortdesc sparc-solaris files of pmxchords
+binfiles arch=sparc-solaris size=1
+ bin/sparc-solaris/pmxchords
+
+name pmxchords.universal-darwin
+category Package
+revision 32405
+shortdesc universal-darwin files of pmxchords
+binfiles arch=universal-darwin size=1
+ bin/universal-darwin/pmxchords
+
+name pmxchords.win32
+category Package
+revision 32405
+shortdesc win32 files of pmxchords
+binfiles arch=win32 size=1
+ bin/win32/pmxchords.exe
+
+name pmxchords.x86_64-cygwin
+category Package
+revision 33557
+shortdesc x86_64-cygwin files of pmxchords
+binfiles arch=x86_64-cygwin size=1
+ bin/x86_64-cygwin/pmxchords
+
+name pmxchords.x86_64-darwin
+category Package
+revision 32405
+shortdesc x86_64-darwin files of pmxchords
+binfiles arch=x86_64-darwin size=1
+ bin/x86_64-darwin/pmxchords
+
+name pmxchords.x86_64-linux
+category Package
+revision 32405
+shortdesc x86_64-linux files of pmxchords
+binfiles arch=x86_64-linux size=1
+ bin/x86_64-linux/pmxchords
+
+name pmxchords.x86_64-solaris
+category Package
+revision 32405
+shortdesc x86_64-solaris files of pmxchords
+binfiles arch=x86_64-solaris size=1
+ bin/x86_64-solaris/pmxchords
+
name pnas2009
category Package
revision 16287
@@ -126097,7 +139592,7 @@ catalogue-version 1.0
name poemscol
category Package
-revision 30706
+revision 31338
shortdesc Typesetting Critical Editions of Poetry.
longdesc The package offers LaTeX macros for typesetting critical
longdesc editions of poetry. Its features include automatic
@@ -126117,30 +139612,31 @@ srcfiles size=76
runfiles size=23
texmf-dist/tex/latex/poemscol/poemscol.sty
catalogue-ctan /macros/latex/contrib/poemscol
-catalogue-date 2013-05-25 17:03:59 +0200
+catalogue-date 2013-08-03 08:19:55 +0200
catalogue-license lppl1.2
-catalogue-version 2.62
+catalogue-version 2.64
name poetrytex
category Package
-revision 29347
+revision 31463
shortdesc Typeset anthologies of poetry.
longdesc The package is designed to aid in the management and formatting
longdesc of anthologies of poetry and other writings; it does not
longdesc concern itself with actually typesettinig the verse itself.
-docfiles size=67
+docfiles size=71
texmf-dist/doc/latex/poetrytex/README details="Readme"
texmf-dist/doc/latex/poetrytex/poetrytex-style.sty
texmf-dist/doc/latex/poetrytex/poetrytex.pdf details="Package documentation"
-srcfiles size=11
+ texmf-dist/doc/latex/poetrytex/poetrytex.top
+srcfiles size=13
texmf-dist/source/latex/poetrytex/Makefile
texmf-dist/source/latex/poetrytex/poetrytex.dtx
-runfiles size=2
+runfiles size=3
texmf-dist/tex/latex/poetrytex/poetrytex.sty
catalogue-ctan /macros/latex/contrib/poetrytex
-catalogue-date 2013-03-11 00:44:39 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
-catalogue-version 1.4
+catalogue-version 2.0.0
name polski
category Package
@@ -126188,7 +139684,7 @@ runfiles size=24
texmf-dist/tex/latex/polski/polski.sty
texmf-dist/tex/latex/polski/qxenc.def
catalogue-ctan /macros/latex/contrib/polski
-catalogue-date 2012-04-10 16:50:57 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.2
catalogue-version 1.3.3
@@ -127081,13 +140577,13 @@ runfiles size=7225
texmf-dist/tex/latex/poltawski/ts1antp.fd
texmf-dist/tex/latex/poltawski/ts1antpl.fd
catalogue-ctan /fonts/poltawski
-catalogue-date 2012-04-10 16:50:57 +0200
+catalogue-date 2014-05-23 17:08:48 +0200
catalogue-license gfsl
catalogue-version 1.101
name polyglossia
category Package
-revision 30787
+revision 34205
shortdesc Modern multilingual typesetting with XeLaTeX.
longdesc This package provides a complete Babel replacement for users of
longdesc LuaLaTeX and XeLaTeX; it relies on the fontspec package,
@@ -127099,7 +140595,7 @@ depend fontspec
depend ifluatex
depend makecmds
depend xkeyval
-docfiles size=122
+docfiles size=121
texmf-dist/doc/latex/polyglossia/README
texmf-dist/doc/latex/polyglossia/example-arabic.pdf
texmf-dist/doc/latex/polyglossia/example-arabic.tex
@@ -127109,7 +140605,7 @@ docfiles size=122
texmf-dist/doc/latex/polyglossia/examples.tex
texmf-dist/doc/latex/polyglossia/polyglossia.pdf details="Package documentation"
texmf-dist/doc/latex/polyglossia/polyglossia.tex
-srcfiles size=70
+srcfiles size=71
texmf-dist/source/latex/polyglossia/polyglossia.dtx
runfiles size=131
texmf-dist/fonts/misc/xetex/fontmapping/polyglossia/arabicdigits.map
@@ -127211,9 +140707,9 @@ runfiles size=131
texmf-dist/tex/latex/polyglossia/polyglossia.sty
texmf-dist/tex/latex/polyglossia/xgreek-fixes.def
catalogue-ctan /macros/latex/contrib/polyglossia
-catalogue-date 2013-05-28 18:20:04 +0200
+catalogue-date 2014-05-22 01:04:51 +0200
catalogue-license lppl1.3
-catalogue-version v1.33.3
+catalogue-version v1.33.5
name polynom
category Package
@@ -127257,13 +140753,13 @@ srcfiles size=5
runfiles size=2
texmf-dist/tex/latex/polynomial/polynomial.sty
catalogue-ctan /macros/latex/contrib/polynomial
-catalogue-date 2012-04-10 17:31:04 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.0
name polytable
category Package
-revision 20331
+revision 31235
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
@@ -127332,7 +140828,7 @@ catalogue-version 1.1
name powerdot
category Package
-revision 25656
+revision 32549
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
@@ -127341,41 +140837,25 @@ 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=1044
- texmf-dist/doc/latex/powerdot/Changes
+docfiles size=313
texmf-dist/doc/latex/powerdot/README details="Readme"
- texmf-dist/doc/latex/powerdot/RunDoc
- texmf-dist/doc/latex/powerdot/RunExamples
- texmf-dist/doc/latex/powerdot/RunSlideDoc
- texmf-dist/doc/latex/powerdot/clemson.eps
texmf-dist/doc/latex/powerdot/manifest.txt
- texmf-dist/doc/latex/powerdot/pawmkorange.eps
- texmf-dist/doc/latex/powerdot/pawmkorange.png
- texmf-dist/doc/latex/powerdot/pawmkpurple.eps
- texmf-dist/doc/latex/powerdot/pawmkpurple.png
- texmf-dist/doc/latex/powerdot/pawtraceorange.eps
- texmf-dist/doc/latex/powerdot/pawtraceorange.png
- texmf-dist/doc/latex/powerdot/pawtracep.eps
- texmf-dist/doc/latex/powerdot/pawtracep.png
+ texmf-dist/doc/latex/powerdot/pdpream.ble
texmf-dist/doc/latex/powerdot/powerdot-example.lyx
texmf-dist/doc/latex/powerdot/powerdot-example.tex
- texmf-dist/doc/latex/powerdot/powerdot-example1.pdf
texmf-dist/doc/latex/powerdot/powerdot-example1.tex
- texmf-dist/doc/latex/powerdot/powerdot-example2.pdf
texmf-dist/doc/latex/powerdot/powerdot-example2.tex
- texmf-dist/doc/latex/powerdot/powerdot-example3.pdf
texmf-dist/doc/latex/powerdot/powerdot-example3.tex
texmf-dist/doc/latex/powerdot/powerdot-styleexample.tex
texmf-dist/doc/latex/powerdot/powerdot-styletest.tex
texmf-dist/doc/latex/powerdot/powerdot.bib
texmf-dist/doc/latex/powerdot/powerdot.layout
texmf-dist/doc/latex/powerdot/powerdot.pdf
- texmf-dist/doc/latex/powerdot/powerdot.tex
texmf-dist/doc/latex/powerdot/powerdotDE.pdf
texmf-dist/doc/latex/powerdot/powerdotDE.tex
- texmf-dist/doc/latex/powerdot/powerdotSlide.pdf
- texmf-dist/doc/latex/powerdot/powerdotSlide.tex
-runfiles size=50
+srcfiles size=79
+ texmf-dist/source/latex/powerdot/powerdot.dtx
+runfiles size=49
texmf-dist/tex/latex/powerdot/powerdot-aggie.sty
texmf-dist/tex/latex/powerdot/powerdot-bframe.sty
texmf-dist/tex/latex/powerdot/powerdot-ciment.sty
@@ -127392,14 +140872,13 @@ runfiles size=50
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-tiger.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-ctan /macros/latex/contrib/powerdot
-catalogue-date 2012-03-13 22:44:46 +0100
+catalogue-date 2014-01-02 07:32:11 +0100
catalogue-license lppl1.3
-catalogue-version 1.4i
+catalogue-version 1.5
name powerdot-FUBerlin
category Package
@@ -127428,7 +140907,7 @@ runfiles size=4
texmf-dist/tex/latex/powerdot-FUBerlin/FUpowerdot.cls
texmf-dist/tex/latex/powerdot-FUBerlin/powerdot-BerlinFU.sty
catalogue-ctan /macros/latex/contrib/powerdot-FUBerlin
-catalogue-date 2012-03-13 22:48:27 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 0.01
@@ -127481,12 +140960,12 @@ name preprint
category Package
revision 30447
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, to
-longdesc balance the end of \twocolumn pages, - figcaps, to send figure
-longdesc captions, etc., to end document, - fullpage, to set narrow page
-longdesc margins and set a fixed page style, and - sublabel, which
-longdesc permits counters to be subnumbered.
+longdesc The bundle comprises: authblk, which permits footnote style
+longdesc author/affiliation input in the \author command, balance, to
+longdesc balance the end of \twocolumn pages, figcaps, to send figure
+longdesc captions, etc., to end document, fullpage, to set narrow page
+longdesc margins and set a fixed page style, and sublabel, which permits
+longdesc counters to be subnumbered.
docfiles size=189
texmf-dist/doc/latex/preprint/README details="Readme"
texmf-dist/doc/latex/preprint/authblk.pdf
@@ -127517,44 +140996,45 @@ runfiles size=9
texmf-dist/tex/latex/preprint/fullpage.sty
texmf-dist/tex/latex/preprint/sublabel.sty
catalogue-ctan /macros/latex/contrib/preprint
-catalogue-date 2013-05-13 11:38:32 +0200
+catalogue-date 2013-12-03 18:48:45 +0100
catalogue-license collection
catalogue-version 2011
name prerex
category Package
-revision 27495
+revision 33642
shortdesc Interactive editor and macro support for prerequisite charts.
longdesc This package consists of prerex.sty, a LaTeX package for
longdesc producing charts of course nodes linked by arrows representing
longdesc pre- and co-requisites, and prerex, an interactive program for
longdesc creating and editing chart descriptions. The implementation of
-longdesc prerex.sty is built on PGF, so that it may be used equally
-longdesc happily with latex or pdflatex; prerex itself is written in C.
-longdesc The package includes source code for a previewer application, a
+longdesc prerex.sty uses PGF, so that it may be used equally happily
+longdesc with latex or pdflatex; prerex itself is written in C. The
+longdesc package includes source code for a previewer application, a
longdesc lightweight Qt-4 and poppler-based prerex-enabled PDF viewer.
-docfiles size=174
+docfiles size=231
texmf-dist/doc/latex/prerex/README details="Readme"
- texmf-dist/doc/latex/prerex/chart.html
texmf-dist/doc/latex/prerex/chart.pdf
- texmf-dist/doc/latex/prerex/chart.png
+ texmf-dist/doc/latex/prerex/chart.svg
texmf-dist/doc/latex/prerex/chart.tex
- texmf-dist/doc/latex/prerex/doc/intro.pdf details="Package introduction"
- texmf-dist/doc/latex/prerex/doc/intro.tex
- texmf-dist/doc/latex/prerex/doc/introFonts.png
- texmf-dist/doc/latex/prerex/doc/introchart1.tex
- texmf-dist/doc/latex/prerex/doc/introchart2.tex
- texmf-dist/doc/latex/prerex/doc/prerex.pdf details="Package documentation"
- texmf-dist/doc/latex/prerex/doc/prerex.sty.7
- texmf-dist/doc/latex/prerex/doc/prerex.tex
- texmf-dist/doc/latex/prerex/prerex-6.5.1.tar.gz
+ texmf-dist/doc/latex/prerex/intro.pdf
+ texmf-dist/doc/latex/prerex/intro.tex
+ texmf-dist/doc/latex/prerex/introFonts.png
+ texmf-dist/doc/latex/prerex/introchart1.tex
+ texmf-dist/doc/latex/prerex/introchart2.tex
+ texmf-dist/doc/latex/prerex/prerex-6.5.3.tar.gz
+ texmf-dist/doc/latex/prerex/prerex.pdf
+ texmf-dist/doc/latex/prerex/prerex.sty.7
+ texmf-dist/doc/latex/prerex/prerex.sty.7.pdf
+ texmf-dist/doc/latex/prerex/prerex.tex
texmf-dist/doc/latex/prerex/vprerex-6.4.2.tar.gz
-runfiles size=7
+ texmf-dist/doc/man/man5/prerex.5
+ texmf-dist/doc/man/man5/prerex.man5.pdf
+runfiles size=6
texmf-dist/tex/latex/prerex/prerex.sty
catalogue-ctan /graphics/prerex
-catalogue-date 2012-08-22 19:18:22 +0200
+catalogue-date 2014-04-23 07:43:02 +0200
catalogue-license gpl
-catalogue-version 6.5.2
name present
category Package
@@ -127583,7 +141063,7 @@ docfiles size=415
runfiles size=3
texmf-dist/tex/plain/present/present.tex
catalogue-ctan /macros/plain/contrib/present
-catalogue-date 2012-04-12 21:32:25 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 2.2
@@ -127872,7 +141352,7 @@ docfiles size=2456
texmf-dist/doc/latex/presentations/pd-demo-default.tex
texmf-dist/doc/latex/presentations/pd-demo.tex
catalogue-ctan /info/examples/Presentations_de
-catalogue-date 2012-07-19 15:24:58 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
name presentations-en
@@ -128183,7 +141663,7 @@ docfiles size=542
texmf-dist/doc/latex/presentations-en/slidenotes.cls
texmf-dist/doc/latex/presentations-en/textdemo.sty
catalogue-ctan /info/examples/Presentations_en
-catalogue-date 2012-08-22 17:34:41 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
name prettyref
@@ -128377,7 +141857,7 @@ runfiles size=5
texmf-dist/fonts/type1/public/prodint/prodint.pfb
texmf-dist/tex/latex/prodint/prodint.sty
catalogue-ctan /fonts/prodint
-catalogue-date 2012-04-20 13:29:23 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license ofl
name productbox
@@ -128401,7 +141881,7 @@ srcfiles size=21
runfiles size=7
texmf-dist/tex/latex/productbox/productbox.sty
catalogue-ctan /macros/latex/contrib/gene/productbox
-catalogue-date 2012-04-20 13:29:23 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license other-free
catalogue-version 1.1
@@ -128449,7 +141929,7 @@ catalogue-version 1.10
name progressbar
category Package
-revision 28753
+revision 33822
shortdesc Visualize shares of total amounts in the form of a (progress-)bar.
longdesc This package allows you to easily visualize shares of total
longdesc amounts in the form of a bar. So basically you can convert any
@@ -128457,16 +141937,16 @@ longdesc number between 0 and 1 to a progressbar using the command
longdesc \progressbar{<number>}. Also a lot of customizations are
longdesc possible, allowing you to create an unique progressbar on your
longdesc own. The package uses TikZ to produce its graphics.
-docfiles size=97
+docfiles size=31
texmf-dist/doc/latex/progressbar/README details="Readme"
texmf-dist/doc/latex/progressbar/progressbar.pdf details="Package documentation"
texmf-dist/doc/latex/progressbar/progressbar.tex
runfiles size=2
texmf-dist/tex/latex/progressbar/progressbar.sty
catalogue-ctan /macros/latex/contrib/progressbar
-catalogue-date 2013-01-06 18:12:17 +0100
+catalogue-date 2014-05-04 11:26:45 +0200
catalogue-license lppl
-catalogue-version v1.0b~3
+catalogue-version v1.0b~4
name properties
category Package
@@ -128480,7 +141960,7 @@ docfiles size=2
runfiles size=1
texmf-dist/tex/latex/properties/properties.sty
catalogue-ctan /macros/latex/contrib/properties
-catalogue-date 2012-04-20 13:29:23 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 0.2
@@ -128623,12 +142103,12 @@ runfiles size=22
texmf-dist/tex/latex/proposal/eu/euproposal.cls
texmf-dist/tex/latex/proposal/eu/eureporting.cls
catalogue-ctan /macros/latex/contrib/proposal
-catalogue-date 2013-02-20 11:06:23 +0100
+catalogue-date 2014-04-30 19:02:32 +0200
catalogue-license lppl
name prosper
category Package
-revision 15878
+revision 33033
shortdesc LaTeX class for high quality slides.
longdesc Prosper is a LaTeX class for writing transparencies. It is
longdesc written as an extension of the seminar class by Timothy Van
@@ -128639,7 +142119,9 @@ longdesc computer and a video projector may integrate animation effects,
longdesc incremental display, and so on. Various visual styles are
longdesc supported (including some that mimic PowerPoint) and others are
longdesc being contributed.
-docfiles size=117
+docfiles size=152
+ texmf-dist/doc/latex/prosper/AUTHORS
+ texmf-dist/doc/latex/prosper/ChangeLog
texmf-dist/doc/latex/prosper/Example.tex
texmf-dist/doc/latex/prosper/ExampleAlienglow.tex
texmf-dist/doc/latex/prosper/ExampleAutumn.tex
@@ -128651,8 +142133,11 @@ docfiles size=117
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/INSTALL
texmf-dist/doc/latex/prosper/NEWS
texmf-dist/doc/latex/prosper/README details="Package Readme"
+ texmf-dist/doc/latex/prosper/TODO
+ texmf-dist/doc/latex/prosper/compilation.fig
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
@@ -128660,27 +142145,21 @@ docfiles size=117
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-structure.fig
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/prosper.png
+ texmf-dist/doc/latex/prosper/prosper.ui
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/seminar-bg2-lepennec.fix
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=35
- 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=199
texmf-dist/tex/latex/prosper/PPRalcatel.sty
texmf-dist/tex/latex/prosper/PPRalienglow.sty
@@ -128833,12 +142312,12 @@ runfiles size=10
texmf-dist/tex/latex/przechlewski-book/upmgr.cls
texmf-dist/tex/latex/przechlewski-book/wkmgr.cls
catalogue-ctan /info/examples/przechlewski-book-examples
-catalogue-date 2012-07-20 20:39:39 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
name ps2pkm
category TLCore
-revision 29764
+revision 33818
catalogue ps2pk
shortdesc Generate a PK font from an Adobe Type 1 font.
longdesc Generates a PK file from an Adobe Type 1 font. PK fonts are (or
@@ -128846,7 +142325,7 @@ longdesc used to be) valuable in enabling previewers to view documents
longdesc generated that use Type 1 fonts. The program makes use of code
longdesc donated to the X consortium by IBM.
depend ps2pkm.ARCH
-runfiles size=13
+docfiles size=13
texmf-dist/doc/man/man1/mag.1
texmf-dist/doc/man/man1/mag.man1.pdf
texmf-dist/doc/man/man1/pfb2pfa.1
@@ -128856,13 +142335,13 @@ runfiles size=13
texmf-dist/doc/man/man1/ps2pk.1
texmf-dist/doc/man/man1/ps2pk.man1.pdf
catalogue-ctan /fonts/utilities/ps2pk
-catalogue-date 2012-07-20 20:39:39 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license other-free
catalogue-version 1.6 beta 1
name ps2pkm.alpha-linux
category TLCore
-revision 29891
+revision 33553
shortdesc alpha-linux files of ps2pkm
binfiles arch=alpha-linux size=70
bin/alpha-linux/mag
@@ -128872,7 +142351,7 @@ binfiles arch=alpha-linux size=70
name ps2pkm.amd64-freebsd
category TLCore
-revision 29874
+revision 33488
shortdesc amd64-freebsd files of ps2pkm
binfiles arch=amd64-freebsd size=54
bin/amd64-freebsd/mag
@@ -128882,7 +142361,7 @@ binfiles arch=amd64-freebsd size=54
name ps2pkm.amd64-kfreebsd
category TLCore
-revision 30655
+revision 33864
shortdesc amd64-kfreebsd files of ps2pkm
binfiles arch=amd64-kfreebsd size=56
bin/amd64-kfreebsd/mag
@@ -128892,7 +142371,7 @@ binfiles arch=amd64-kfreebsd size=56
name ps2pkm.amd64-netbsd
category TLCore
-revision 30660
+revision 33726
shortdesc amd64-netbsd files of ps2pkm
binfiles arch=amd64-netbsd size=55
bin/amd64-netbsd/mag
@@ -128902,7 +142381,7 @@ binfiles arch=amd64-netbsd size=55
name ps2pkm.armel-linux
category TLCore
-revision 29888
+revision 33916
shortdesc armel-linux files of ps2pkm
binfiles arch=armel-linux size=50
bin/armel-linux/mag
@@ -128912,7 +142391,7 @@ binfiles arch=armel-linux size=50
name ps2pkm.armhf-linux
category TLCore
-revision 30443
+revision 34125
shortdesc armhf-linux files of ps2pkm
binfiles arch=armhf-linux size=46
bin/armhf-linux/mag
@@ -128922,9 +142401,9 @@ binfiles arch=armhf-linux size=46
name ps2pkm.i386-cygwin
category TLCore
-revision 30526
+revision 34161
shortdesc i386-cygwin files of ps2pkm
-binfiles arch=i386-cygwin size=49
+binfiles arch=i386-cygwin size=58
bin/i386-cygwin/mag.exe
bin/i386-cygwin/pfb2pfa.exe
bin/i386-cygwin/pk2bm.exe
@@ -128932,7 +142411,7 @@ binfiles arch=i386-cygwin size=49
name ps2pkm.i386-freebsd
category TLCore
-revision 29874
+revision 33488
shortdesc i386-freebsd files of ps2pkm
binfiles arch=i386-freebsd size=50
bin/i386-freebsd/mag
@@ -128942,9 +142421,9 @@ binfiles arch=i386-freebsd size=50
name ps2pkm.i386-kfreebsd
category TLCore
-revision 30440
+revision 33864
shortdesc i386-kfreebsd files of ps2pkm
-binfiles arch=i386-kfreebsd size=53
+binfiles arch=i386-kfreebsd size=54
bin/i386-kfreebsd/mag
bin/i386-kfreebsd/pfb2pfa
bin/i386-kfreebsd/pk2bm
@@ -128952,9 +142431,9 @@ binfiles arch=i386-kfreebsd size=53
name ps2pkm.i386-linux
category TLCore
-revision 30088
+revision 33479
shortdesc i386-linux files of ps2pkm
-binfiles arch=i386-linux size=54
+binfiles arch=i386-linux size=58
bin/i386-linux/mag
bin/i386-linux/pfb2pfa
bin/i386-linux/pk2bm
@@ -128962,7 +142441,7 @@ binfiles arch=i386-linux size=54
name ps2pkm.i386-netbsd
category TLCore
-revision 30191
+revision 33562
shortdesc i386-netbsd files of ps2pkm
binfiles arch=i386-netbsd size=47
bin/i386-netbsd/mag
@@ -128972,7 +142451,7 @@ binfiles arch=i386-netbsd size=47
name ps2pkm.i386-solaris
category TLCore
-revision 30112
+revision 34203
shortdesc i386-solaris files of ps2pkm
binfiles arch=i386-solaris size=59
bin/i386-solaris/mag
@@ -128980,21 +142459,11 @@ binfiles arch=i386-solaris size=59
bin/i386-solaris/pk2bm
bin/i386-solaris/ps2pk
-name ps2pkm.mips-irix
-category TLCore
-revision 30131
-shortdesc mips-irix files of ps2pkm
-binfiles arch=mips-irix size=124
- bin/mips-irix/mag
- bin/mips-irix/pfb2pfa
- bin/mips-irix/pk2bm
- bin/mips-irix/ps2pk
-
name ps2pkm.mipsel-linux
category TLCore
-revision 29995
+revision 33811
shortdesc mipsel-linux files of ps2pkm
-binfiles arch=mipsel-linux size=67
+binfiles arch=mipsel-linux size=56
bin/mipsel-linux/mag
bin/mipsel-linux/pfb2pfa
bin/mipsel-linux/pk2bm
@@ -129002,9 +142471,9 @@ binfiles arch=mipsel-linux size=67
name ps2pkm.powerpc-linux
category TLCore
-revision 30114
+revision 33889
shortdesc powerpc-linux files of ps2pkm
-binfiles arch=powerpc-linux size=57
+binfiles arch=powerpc-linux size=54
bin/powerpc-linux/mag
bin/powerpc-linux/pfb2pfa
bin/powerpc-linux/pk2bm
@@ -129012,7 +142481,7 @@ binfiles arch=powerpc-linux size=57
name ps2pkm.sparc-solaris
category TLCore
-revision 29877
+revision 33871
shortdesc sparc-solaris files of ps2pkm
binfiles arch=sparc-solaris size=56
bin/sparc-solaris/mag
@@ -129022,7 +142491,7 @@ binfiles arch=sparc-solaris size=56
name ps2pkm.universal-darwin
category TLCore
-revision 30764
+revision 34201
shortdesc universal-darwin files of ps2pkm
binfiles arch=universal-darwin size=120
bin/universal-darwin/mag
@@ -129032,17 +142501,27 @@ binfiles arch=universal-darwin size=120
name ps2pkm.win32
category TLCore
-revision 29816
+revision 33897
shortdesc win32 files of ps2pkm
-binfiles arch=win32 size=39
+binfiles arch=win32 size=45
bin/win32/mag.exe
bin/win32/pfb2pfa.exe
bin/win32/pk2bm.exe
bin/win32/ps2pk.exe
+name ps2pkm.x86_64-cygwin
+category TLCore
+revision 34161
+shortdesc x86_64-cygwin files of ps2pkm
+binfiles arch=x86_64-cygwin size=56
+ bin/x86_64-cygwin/mag.exe
+ bin/x86_64-cygwin/pfb2pfa.exe
+ bin/x86_64-cygwin/pk2bm.exe
+ bin/x86_64-cygwin/ps2pk.exe
+
name ps2pkm.x86_64-darwin
category TLCore
-revision 29879
+revision 34201
shortdesc x86_64-darwin files of ps2pkm
binfiles arch=x86_64-darwin size=64
bin/x86_64-darwin/mag
@@ -129052,7 +142531,7 @@ binfiles arch=x86_64-darwin size=64
name ps2pkm.x86_64-linux
category TLCore
-revision 30204
+revision 33723
shortdesc x86_64-linux files of ps2pkm
binfiles arch=x86_64-linux size=56
bin/x86_64-linux/mag
@@ -129062,7 +142541,7 @@ binfiles arch=x86_64-linux size=56
name ps2pkm.x86_64-solaris
category TLCore
-revision 30112
+revision 34203
shortdesc x86_64-solaris files of ps2pkm
binfiles arch=x86_64-solaris size=72
bin/x86_64-solaris/mag
@@ -129084,7 +142563,7 @@ docfiles size=31
runfiles size=5
texmf-dist/tex/latex/psbao/psbao.sty
catalogue-ctan /graphics/pstricks/contrib/psbao
-catalogue-date 2012-08-13 18:38:03 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 0.17
@@ -129279,7 +142758,7 @@ catalogue-license lppl
name psnfss
category Package
-revision 23394
+revision 33946
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
@@ -129479,7 +142958,7 @@ docfiles size=27
runfiles size=2
texmf-dist/tex/latex/pst-2dplot/pst-2dplot.sty
catalogue-ctan /graphics/pstricks/contrib/pst-2dplot
-catalogue-date 2006-12-31 09:43:01 +0000
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.5
@@ -129487,8 +142966,9 @@ name pst-3d
category Package
revision 17257
shortdesc A PSTricks package for tilting and other pseudo-3D tricks.
-longdesc The package provides basic macros for shadows, tilting and
-longdesc three dimensional representations of text or graphical objects.
+longdesc The package provides basic macros that use PSTricks for
+longdesc shadows, tilting and three dimensional representations of text
+longdesc or graphical objects.
docfiles size=44
texmf-dist/doc/generic/pst-3d/Changes
texmf-dist/doc/generic/pst-3d/README details="Readme"
@@ -129502,36 +142982,34 @@ runfiles size=5
texmf-dist/tex/generic/pst-3d/pst-3d.tex
texmf-dist/tex/latex/pst-3d/pst-3d.sty
catalogue-ctan /graphics/pstricks/contrib/pst-3d
-catalogue-date 2012-06-07 15:01:30 +0200
+catalogue-date 2013-07-15 01:18:47 +0200
catalogue-license lppl
catalogue-version 1.10
name pst-3dplot
category Package
-revision 27233
+revision 33302
shortdesc Draw 3D objects in parallel projection, 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.
-docfiles size=889
+docfiles size=890
texmf-dist/doc/generic/pst-3dplot/Changes
texmf-dist/doc/generic/pst-3dplot/README details="Readme"
- texmf-dist/doc/generic/pst-3dplot/more_docs/tb72voss3d.pdf details="TUGboat paper"
texmf-dist/doc/generic/pst-3dplot/pst-3dplot-doc.bib
texmf-dist/doc/generic/pst-3dplot/pst-3dplot-doc.dat
- texmf-dist/doc/generic/pst-3dplot/pst-3dplot-doc.pdf details="Package documentation"
+ texmf-dist/doc/generic/pst-3dplot/pst-3dplot-doc.pdf
texmf-dist/doc/generic/pst-3dplot/pst-3dplot-doc.tex
-srcfiles size=1
- texmf-dist/source/generic/pst-3dplot/Makefile
-runfiles size=30
+ texmf-dist/doc/generic/pst-3dplot/tb72voss3d.pdf
+runfiles size=31
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-ctan /graphics/pstricks/contrib/pst-3dplot
-catalogue-date 2012-06-07 14:36:18 +0200
+catalogue-date 2014-03-26 20:10:14 +0100
catalogue-license lppl
-catalogue-version 1.97
+catalogue-version 2.00
name pst-abspos
category Package
@@ -129552,7 +143030,7 @@ runfiles size=3
texmf-dist/tex/generic/pst-abspos/pst-abspos.tex
texmf-dist/tex/latex/pst-abspos/pst-abspos.sty
catalogue-ctan /graphics/pstricks/contrib/pst-abspos
-catalogue-date 2012-06-07 15:01:30 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 0.2
@@ -129576,7 +143054,7 @@ srcfiles size=1
runfiles size=3
texmf-dist/tex/latex/pst-am/pst-am.sty
catalogue-ctan /graphics/pstricks/contrib/pst-am
-catalogue-date 2012-06-07 15:01:30 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.02
@@ -129596,7 +143074,7 @@ runfiles size=7
texmf-dist/tex/generic/pst-asr/pst-asr.tex
texmf-dist/tex/latex/pst-asr/pst-asr.sty
catalogue-ctan /graphics/pstricks/contrib/pst-asr
-catalogue-date 2012-06-07 15:01:30 +0200
+catalogue-date 2013-07-15 20:25:07 +0200
catalogue-license lppl
catalogue-version 1.3
@@ -129604,11 +143082,11 @@ name pst-bar
category Package
revision 18734
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.
+longdesc The package uses pstricks to draw bar charts from data stored
+longdesc in a comma-delimited file. Several types of bar charts may be
+longdesc drawn, and the drawing parameters are highly customizable. No
+longdesc external packages are required except those that are part of
+longdesc the standard pstricks distribution.
docfiles size=81
texmf-dist/doc/generic/pst-bar/README details="Readme"
texmf-dist/doc/generic/pst-bar/pst-bar-doc.bib
@@ -129624,35 +143102,33 @@ runfiles size=6
texmf-dist/tex/generic/pst-bar/pst-bar.tex
texmf-dist/tex/latex/pst-bar/pst-bar.sty
catalogue-ctan /graphics/pstricks/contrib/pst-bar
-catalogue-date 2012-07-19 15:23:05 +0200
+catalogue-date 2013-07-15 20:25:07 +0200
catalogue-license lppl
catalogue-version 0.92
name pst-barcode
category Package
-revision 28278
+revision 32004
shortdesc Print barcodes using PostScript.
longdesc The pst-barcode package allows printing of barcodes, in a huge
longdesc variety of formats (see documentation for details). As a
longdesc pstricks package, the package requires pstricks. The package
longdesc uses PostScript for calculating the bars. For PDF output use a
longdesc multi-pass mechansism such as pst-pdf.
-docfiles size=79
+docfiles size=88
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.pdf
texmf-dist/doc/generic/pst-barcode/pst-barcode-doc.tex
-srcfiles size=1
- texmf-dist/source/generic/pst-barcode/Makefile
-runfiles size=155
+runfiles size=120
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-ctan /graphics/pstricks/contrib/pst-barcode
-catalogue-date 2012-11-16 20:45:05 +0100
+catalogue-date 2013-10-26 16:10:33 +0200
catalogue-license lppl
-catalogue-version 0.10
+catalogue-version 0.12
name pst-bezier
category Package
@@ -129674,7 +143150,7 @@ runfiles size=5
texmf-dist/tex/generic/pst-bezier/pst-bezier.tex
texmf-dist/tex/latex/pst-bezier/pst-bezier.sty
catalogue-ctan /graphics/pstricks/contrib/pst-bezier
-catalogue-date 2012-06-07 15:01:30 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 0.01
@@ -129698,7 +143174,7 @@ runfiles size=3
texmf-dist/tex/generic/pst-blur/pst-blur.tex
texmf-dist/tex/latex/pst-blur/pst-blur.sty
catalogue-ctan /graphics/pstricks/contrib/pst-blur
-catalogue-date 2012-05-30 14:49:05 +0200
+catalogue-date 2013-07-15 20:28:38 +0200
catalogue-license lppl
catalogue-version 2.0
@@ -129720,7 +143196,7 @@ runfiles size=11
texmf-dist/tex/generic/pst-bspline/pst-bspline.tex
texmf-dist/tex/latex/pst-bspline/pst-bspline.sty
catalogue-ctan /graphics/pstricks/contrib/pst-bspline
-catalogue-date 2012-06-16 21:00:12 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.61
@@ -129728,12 +143204,12 @@ name pst-calendar
category Package
revision 15878
shortdesc Plot calendars in "fancy" ways.
-longdesc The pst-calendar package uses pstricks and pst-3d to draw
-longdesc tabular calendars, or calendars on dodecahedra with a month to
-longdesc each face (the package also requires the multido and pst-xkey
-longdesc packages). The package works for years 2000-2099, and has
-longdesc options for calendars in French German and English, but the
-longdesc documentation is not available in English.
+longdesc The package uses pstricks and pst-3d to draw tabular calendars,
+longdesc or calendars on dodecahedra with a month to each face (the
+longdesc package also requires the multido and pst-xkey packages). The
+longdesc package works for years 2000-2099, and has options for
+longdesc calendars in French German and English, but the documentation
+longdesc is not available in English.
docfiles size=85
texmf-dist/doc/latex/pst-calendar/Changes
texmf-dist/doc/latex/pst-calendar/README details="Readme"
@@ -129745,13 +143221,13 @@ docfiles size=85
runfiles size=5
texmf-dist/tex/latex/pst-calendar/pst-calendar.sty
catalogue-ctan /graphics/pstricks/contrib/pst-calendar
-catalogue-date 2012-06-16 21:00:12 +0200
+catalogue-date 2013-07-16 00:15:49 +0200
catalogue-license lppl
catalogue-version 0.47
name pst-circ
category Package
-revision 30527
+revision 34127
shortdesc PSTricks package for drawing electric circuits.
longdesc The package is built using PSTricks and in particular pst-node.
longdesc It can easily draw current 2-terminal devices and some 3- and
@@ -129760,23 +143236,24 @@ longdesc package's macros are designed with a view to 'logical'
longdesc representation of circuits, as far as possible, so as to
longdesc relieve the user of purely graphical considerations when
longdesc expressing a circuit.
-docfiles size=265
+docfiles size=276
texmf-dist/doc/generic/pst-circ/Changes
texmf-dist/doc/generic/pst-circ/README details="Readme"
- texmf-dist/doc/generic/pst-circ/more_docs/dtk03-3.pdf details="Journal Article" language="de"
+ texmf-dist/doc/generic/pst-circ/dtk03-3.bib
+ texmf-dist/doc/generic/pst-circ/dtk03-3.ltx
+ texmf-dist/doc/generic/pst-circ/dtk03-3.pdf
+ texmf-dist/doc/generic/pst-circ/dtk03-3.tex
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.pdf
texmf-dist/doc/generic/pst-circ/pst-circ-doc.tex
-srcfiles size=1
- texmf-dist/source/generic/pst-circ/Makefile
-runfiles size=51
+runfiles size=52
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-ctan /graphics/pstricks/contrib/pst-circ
-catalogue-date 2013-05-17 14:10:30 +0200
+catalogue-date 2014-05-18 22:26:36 +0200
catalogue-license lppl
-catalogue-version 2.03
+catalogue-version 2.09
name pst-coil
category Package
@@ -129797,7 +143274,7 @@ runfiles size=5
texmf-dist/tex/generic/pst-coil/pst-coil.tex
texmf-dist/tex/latex/pst-coil/pst-coil.sty
catalogue-ctan /graphics/pstricks/contrib/pst-coil
-catalogue-date 2012-06-16 21:00:12 +0200
+catalogue-date 2013-07-16 00:15:49 +0200
catalogue-license lppl
catalogue-version 1.06
@@ -129837,7 +143314,7 @@ runfiles size=614
texmf-dist/tex/latex/pst-cox/pst-coxcoor.sty
texmf-dist/tex/latex/pst-cox/pst-coxeterp.sty
catalogue-ctan /graphics/pstricks/contrib/pst-cox
-catalogue-date 2012-06-17 01:47:14 +0200
+catalogue-date 2013-07-16 00:15:49 +0200
catalogue-license lgpl
catalogue-version 0.98 Beta
@@ -129864,7 +143341,7 @@ srcfiles size=12
runfiles size=3
texmf-dist/tex/latex/pst-dbicons/pst-dbicons.sty
catalogue-ctan /graphics/pstricks/contrib/pst-dbicons
-catalogue-date 2006-08-27 16:41:02 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 0.16
@@ -129872,15 +143349,16 @@ name pst-diffraction
category Package
revision 15878
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).
+longdesc The package enables the user to draw (using PSTricks) the
+longdesc diffraction patterns for different geometric forms of apertures
+longdesc for monochromatic light (using PSTricks). The aperture stops
+longdesc can have rectangular, circular or triangular openings. The view
+longdesc of the diffraction may be planar, or three-dimensional. Options
+longdesc available are the dimensions of the aperture under
+longdesc consideration and of the particular optical setting, e.g. the
+longdesc radius in case of an circular opening. Moreover one can choose
+longdesc the wavelength of the light (the associated color will be
+longdesc calculated by the package).
docfiles size=613
texmf-dist/doc/generic/pst-diffraction/Changes
texmf-dist/doc/generic/pst-diffraction/README details="Readme"
@@ -129897,7 +143375,7 @@ runfiles size=6
texmf-dist/tex/generic/pst-diffraction/pst-diffraction.tex
texmf-dist/tex/latex/pst-diffraction/pst-diffraction.sty
catalogue-ctan /graphics/pstricks/contrib/pst-diffraction
-catalogue-date 2012-06-16 21:00:12 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 2.03
@@ -129928,7 +143406,7 @@ runfiles size=4
texmf-dist/tex/generic/pst-electricfield/pst-electricfield.tex
texmf-dist/tex/latex/pst-electricfield/pst-electricfield.sty
catalogue-ctan /graphics/pstricks/contrib/pst-electricfield
-catalogue-date 2012-06-17 01:47:14 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 0.14
@@ -129952,136 +143430,33 @@ runfiles size=3
texmf-dist/tex/generic/pst-eps/pst-eps.tex
texmf-dist/tex/latex/pst-eps/pst-eps.sty
catalogue-ctan /graphics/pstricks/contrib/pst-eps
-catalogue-date 2012-06-16 21:00:12 +0200
+catalogue-date 2013-07-16 19:52:31 +0200
catalogue-license lppl
catalogue-version 1.0
name pst-eucl
category Package
-revision 29356
+revision 34104
shortdesc Euclidian geometry with pstricks.
longdesc The package allows the drawing of Euclidean geometric figures
longdesc 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=220
+docfiles size=145
texmf-dist/doc/generic/pst-eucl/Changes
texmf-dist/doc/generic/pst-eucl/README details="Readme"
- texmf-dist/doc/generic/pst-eucl/doc/Examples/abscur.tex
- texmf-dist/doc/generic/pst-eucl/doc/Examples/abscur_in.tex
- texmf-dist/doc/generic/pst-eucl/doc/Examples/angle.tex
- texmf-dist/doc/generic/pst-eucl/doc/Examples/angle_in.tex
- texmf-dist/doc/generic/pst-eucl/doc/Examples/arc.tex
- texmf-dist/doc/generic/pst-eucl/doc/Examples/arc_in.tex
- texmf-dist/doc/generic/pst-eucl/doc/Examples/astro.tex
- texmf-dist/doc/generic/pst-eucl/doc/Examples/astro_in.tex
- texmf-dist/doc/generic/pst-eucl/doc/Examples/bissec.tex
- texmf-dist/doc/generic/pst-eucl/doc/Examples/bissec_in.tex
- texmf-dist/doc/generic/pst-eucl/doc/Examples/ccirc.tex
- texmf-dist/doc/generic/pst-eucl/doc/Examples/ccirc_in.tex
- texmf-dist/doc/generic/pst-eucl/doc/Examples/cercle.tex
- texmf-dist/doc/generic/pst-eucl/doc/Examples/cercle_in.tex
- texmf-dist/doc/generic/pst-eucl/doc/Examples/cinscex.pdf
- texmf-dist/doc/generic/pst-eucl/doc/Examples/cinscex.tex
- texmf-dist/doc/generic/pst-eucl/doc/Examples/cinscex_in.tex
- texmf-dist/doc/generic/pst-eucl/doc/Examples/curvetype.tex
- texmf-dist/doc/generic/pst-eucl/doc/Examples/curvetype_in.tex
- texmf-dist/doc/generic/pst-eucl/doc/Examples/cyclo.pdf
- texmf-dist/doc/generic/pst-eucl/doc/Examples/cyclo.tex
- texmf-dist/doc/generic/pst-eucl/doc/Examples/cycloO.tex
- texmf-dist/doc/generic/pst-eucl/doc/Examples/cyclo_in.tex
- texmf-dist/doc/generic/pst-eucl/doc/Examples/delto.tex
- texmf-dist/doc/generic/pst-eucl/doc/Examples/droite.tex
- texmf-dist/doc/generic/pst-eucl/doc/Examples/droite_in.tex
- texmf-dist/doc/generic/pst-eucl/doc/Examples/envcardi.tex
- texmf-dist/doc/generic/pst-eucl/doc/Examples/envcardi_in.tex
- texmf-dist/doc/generic/pst-eucl/doc/Examples/envellipse.tex
- texmf-dist/doc/generic/pst-eucl/doc/Examples/envellipse_in.tex
- texmf-dist/doc/generic/pst-eucl/doc/Examples/euler.tex
- texmf-dist/doc/generic/pst-eucl/doc/Examples/euler_in.tex
- texmf-dist/doc/generic/pst-eucl/doc/Examples/fracthom.tex
- texmf-dist/doc/generic/pst-eucl/doc/Examples/fracthom_in.tex
- texmf-dist/doc/generic/pst-eucl/doc/Examples/gal_biss.tex
- texmf-dist/doc/generic/pst-eucl/doc/Examples/gal_biss_in.tex
- texmf-dist/doc/generic/pst-eucl/doc/Examples/gauss.tex
- texmf-dist/doc/generic/pst-eucl/doc/Examples/gauss_in.tex
- texmf-dist/doc/generic/pst-eucl/doc/Examples/gencur.tex
- texmf-dist/doc/generic/pst-eucl/doc/Examples/gencur_in.tex
- texmf-dist/doc/generic/pst-eucl/doc/Examples/geohyper.tex
- texmf-dist/doc/generic/pst-eucl/doc/Examples/geohyper_in.tex
- texmf-dist/doc/generic/pst-eucl/doc/Examples/geonode.tex
- texmf-dist/doc/generic/pst-eucl/doc/Examples/geonode_in.tex
- texmf-dist/doc/generic/pst-eucl/doc/Examples/german_ra.tex
- texmf-dist/doc/generic/pst-eucl/doc/Examples/german_ra_in.tex
- texmf-dist/doc/generic/pst-eucl/doc/Examples/grav.tex
- texmf-dist/doc/generic/pst-eucl/doc/Examples/grav_in.tex
- texmf-dist/doc/generic/pst-eucl/doc/Examples/homothetie.tex
- texmf-dist/doc/generic/pst-eucl/doc/Examples/homothetie_in.tex
- texmf-dist/doc/generic/pst-eucl/doc/Examples/hyperbole.tex
- texmf-dist/doc/generic/pst-eucl/doc/Examples/hyperbole_in.tex
- texmf-dist/doc/generic/pst-eucl/doc/Examples/hypocyclo.tex
- texmf-dist/doc/generic/pst-eucl/doc/Examples/interCC.tex
- texmf-dist/doc/generic/pst-eucl/doc/Examples/interCC_bis_in.tex
- texmf-dist/doc/generic/pst-eucl/doc/Examples/interCC_in.tex
- texmf-dist/doc/generic/pst-eucl/doc/Examples/interDC.tex
- texmf-dist/doc/generic/pst-eucl/doc/Examples/interDC_in.tex
- texmf-dist/doc/generic/pst-eucl/doc/Examples/interDD.tex
- texmf-dist/doc/generic/pst-eucl/doc/Examples/interDD_in.tex
- texmf-dist/doc/generic/pst-eucl/doc/Examples/interFC.tex
- texmf-dist/doc/generic/pst-eucl/doc/Examples/interFC_in.tex
- texmf-dist/doc/generic/pst-eucl/doc/Examples/interFF.tex
- texmf-dist/doc/generic/pst-eucl/doc/Examples/interFF_in.tex
- texmf-dist/doc/generic/pst-eucl/doc/Examples/interFL.tex
- texmf-dist/doc/generic/pst-eucl/doc/Examples/interFL_in.tex
- texmf-dist/doc/generic/pst-eucl/doc/Examples/mediator.tex
- texmf-dist/doc/generic/pst-eucl/doc/Examples/mediator_in.tex
- texmf-dist/doc/generic/pst-eucl/doc/Examples/milieu.tex
- texmf-dist/doc/generic/pst-eucl/doc/Examples/milieu_in.tex
- texmf-dist/doc/generic/pst-eucl/doc/Examples/oij.tex
- texmf-dist/doc/generic/pst-eucl/doc/Examples/oij_in.tex
- texmf-dist/doc/generic/pst-eucl/doc/Examples/orthocentre.tex
- texmf-dist/doc/generic/pst-eucl/doc/Examples/orthocentre_in.tex
- texmf-dist/doc/generic/pst-eucl/doc/Examples/orthoethyper.tex
- texmf-dist/doc/generic/pst-eucl/doc/Examples/orthoethyper_in.tex
- texmf-dist/doc/generic/pst-eucl/doc/Examples/parabole.tex
- texmf-dist/doc/generic/pst-eucl/doc/Examples/parabole_in.tex
- texmf-dist/doc/generic/pst-eucl/doc/Examples/projection.tex
- texmf-dist/doc/generic/pst-eucl/doc/Examples/projection_in.tex
- texmf-dist/doc/generic/pst-eucl/doc/Examples/ptfermat.tex
- texmf-dist/doc/generic/pst-eucl/doc/Examples/ptfermat_in.tex
- texmf-dist/doc/generic/pst-eucl/doc/Examples/remarq.tex
- texmf-dist/doc/generic/pst-eucl/doc/Examples/remarq_in.tex
- texmf-dist/doc/generic/pst-eucl/doc/Examples/rotation.tex
- texmf-dist/doc/generic/pst-eucl/doc/Examples/rotation_in.tex
- texmf-dist/doc/generic/pst-eucl/doc/Examples/segmentmark.tex
- texmf-dist/doc/generic/pst-eucl/doc/Examples/segmentmark_in.tex
- texmf-dist/doc/generic/pst-eucl/doc/Examples/symcentrale.tex
- texmf-dist/doc/generic/pst-eucl/doc/Examples/symcentrale_in.tex
- texmf-dist/doc/generic/pst-eucl/doc/Examples/symorthogonale.tex
- texmf-dist/doc/generic/pst-eucl/doc/Examples/symorthogonale_in.tex
- texmf-dist/doc/generic/pst-eucl/doc/Examples/tg1c.tex
- texmf-dist/doc/generic/pst-eucl/doc/Examples/tg1c_in.tex
- texmf-dist/doc/generic/pst-eucl/doc/Examples/tg2c.tex
- texmf-dist/doc/generic/pst-eucl/doc/Examples/tg2c_in.tex
- texmf-dist/doc/generic/pst-eucl/doc/Examples/translation.tex
- texmf-dist/doc/generic/pst-eucl/doc/Examples/translation_in.tex
- texmf-dist/doc/generic/pst-eucl/doc/Examples/triangle.ps
- texmf-dist/doc/generic/pst-eucl/doc/Examples/triangle.tex
- texmf-dist/doc/generic/pst-eucl/doc/Examples/triangle_in.tex
- texmf-dist/doc/generic/pst-eucl/doc/euclide-english.tex
- texmf-dist/doc/generic/pst-eucl/doc/euclide.sty
- texmf-dist/doc/generic/pst-eucl/doc/euclide_english.ist
- texmf-dist/doc/generic/pst-eucl/doc/euclide_macros.ist
- texmf-dist/doc/generic/pst-eucl/pst-eucl-doc.pdf details="Package documentation (English)" language="en"
-runfiles size=19
+ texmf-dist/doc/generic/pst-eucl/pst-eucl-doc.bib
+ texmf-dist/doc/generic/pst-eucl/pst-eucl-doc.pdf
+ texmf-dist/doc/generic/pst-eucl/pst-eucl-doc.tex
+runfiles size=20
texmf-dist/dvips/pst-eucl/pst-eucl.pro
texmf-dist/tex/generic/pst-eucl/pst-eucl.tex
texmf-dist/tex/latex/pst-eucl/pst-eucl.sty
catalogue-ctan /graphics/pstricks/contrib/pst-eucl
-catalogue-date 2013-03-12 20:16:10 +0100
+catalogue-date 2014-05-18 11:08:05 +0200
catalogue-license lppl
-catalogue-version 1.47
+catalogue-version 1.51
name pst-eucl-translation-bg
category Package
@@ -130215,7 +143590,7 @@ docfiles size=57
runfiles size=1
texmf-dist/tex/latex/pst-exa/pst-exa.sty
catalogue-ctan /graphics/pstricks/contrib/pst-exa
-catalogue-date 2012-06-16 21:00:12 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 0.01
@@ -130237,7 +143612,7 @@ runfiles size=5
texmf-dist/tex/generic/pst-fill/pst-fill.tex
texmf-dist/tex/latex/pst-fill/pst-fill.sty
catalogue-ctan /graphics/pstricks/contrib/pst-fill
-catalogue-date 2012-06-17 01:47:14 +0200
+catalogue-date 2013-07-16 19:52:31 +0200
catalogue-license lppl
catalogue-version 1.01
@@ -130245,10 +143620,9 @@ name pst-fit
category Package
revision 28155
shortdesc Macros for curve fitting.
-longdesc The package provides fitting of: 1. Linear Functions; 2. Power
-longdesc Functions; 3. exp Function; 4. Log_{10} and Log_e functions; 5.
-longdesc Recip; 6. Kings Law data; 7. Gaussian; and 8. 4th order
-longdesc Polynomial.
+longdesc The package uses PSTricks to fit curves to: Linear Functions;
+longdesc Power Functions; exp Function; Log_{10} and Log_e functions;
+longdesc Recip; Kings Law data; Gaussian; and 4th order Polynomial
docfiles size=32
texmf-dist/doc/generic/pst-fit/Changes
texmf-dist/doc/generic/pst-fit/README details="Readme"
@@ -130262,7 +143636,7 @@ runfiles size=10
texmf-dist/tex/generic/pst-fit/pst-fit.tex
texmf-dist/tex/latex/pst-fit/pst-fit.sty
catalogue-ctan /graphics/pstricks/contrib/pst-fit
-catalogue-date 2012-11-09 11:55:25 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 0.01
@@ -130284,7 +143658,7 @@ runfiles size=3
texmf-dist/tex/generic/pst-fr3d/pst-fr3d.tex
texmf-dist/tex/latex/pst-fr3d/pst-fr3d.sty
catalogue-ctan /graphics/pstricks/contrib/pst-fr3d
-catalogue-date 2012-07-23 16:47:40 +0200
+catalogue-date 2013-07-16 20:22:47 +0200
catalogue-license lppl
catalogue-version 1.10
@@ -130292,12 +143666,12 @@ name pst-fractal
category Package
revision 16958
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.
+longdesc The package uses PSTricks to draw the Julia and Mandelbrot
+longdesc sets, the Sierpinski triangle, Koch flake, and Apollonius
+longdesc Circle as well as fractal trees (which need not be balanced)
+longdesc with a variety of different parameters (including varying
+longdesc numbers of iterations). The package uses the pst-xkey package,
+longdesc part of the xkeyval distribution.
docfiles size=204
texmf-dist/doc/generic/pst-fractal/Changes
texmf-dist/doc/generic/pst-fractal/README details="Readme"
@@ -130309,7 +143683,7 @@ runfiles size=7
texmf-dist/tex/generic/pst-fractal/pst-fractal.tex
texmf-dist/tex/latex/pst-fractal/pst-fractal.sty
catalogue-ctan /graphics/pstricks/contrib/pst-fractal
-catalogue-date 2012-07-23 16:47:40 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 0.06
@@ -130334,85 +143708,82 @@ runfiles size=22
texmf-dist/tex/generic/pst-fun/pst-fun.tex
texmf-dist/tex/latex/pst-fun/pst-fun.sty
catalogue-ctan /graphics/pstricks/contrib/pst-fun
-catalogue-date 2012-07-23 16:47:40 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 0.04
name pst-func
category Package
-revision 30023
+revision 34156
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 The package is built for use with PSTricks. It provides macros
+longdesc for plotting and manipulating 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 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; - Bezier curves
-longdesc from order 1 (two control points) to order 9 (10 control
-longdesc points); - the superellipse function (the Lame curve); -
-longdesc Chebyshev polynomials of the first and second kind; - the
-longdesc Thomae (or popcorn) function; - various integration-derived
-longdesc functions; - normal, binomial, poisson, gamma, chi-squared,
-longdesc student's t, F, beta, Cauchy and Weibull distribution functions
-longdesc and the Lorenz curve; - the Vasicek function for describing the
-longdesc evolution of interest rates; and - implicit functions. The
-longdesc plots may be generated as volumes of rotation about the X-axis,
-longdesc as well.
-docfiles size=852
+longdesc ... b1 b2 b3 ...; the Bessel function defined by its order; the
+longdesc Gauss function defined by sigma and mu; Bezier curves from
+longdesc order 1 (two control points) to order 9 (10 control points);
+longdesc the superellipse function (the Lame curve); Chebyshev
+longdesc polynomials of the first and second kind; the Thomae (or
+longdesc popcorn) function; the Weierstrass function; various
+longdesc integration-derived functions; normal, binomial, poisson,
+longdesc gamma, chi-squared, student's t, F, beta, Cauchy and Weibull
+longdesc distribution functions and the Lorenz curve; the zeroes of a
+longdesc function, or the intermediate point of two functions; the
+longdesc Vasicek function for describing the evolution of interest
+longdesc rates; and implicit functions. The plots may be generated as
+longdesc volumes of rotation about the X-axis, as well.
+docfiles size=864
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.data
- texmf-dist/doc/generic/pst-func/pst-func-doc.pdf details="Package documentation"
+ texmf-dist/doc/generic/pst-func/pst-func-doc.pdf
texmf-dist/doc/generic/pst-func/pst-func-doc.tex
-srcfiles size=1
- texmf-dist/source/generic/pst-func/Makefile
-runfiles size=15
+runfiles size=17
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-ctan /graphics/pstricks/contrib/pst-func
-catalogue-date 2012-04-10 17:31:04 +0200
+catalogue-date 2014-05-22 17:35:02 +0200
catalogue-license lppl
-catalogue-version 0.76
+catalogue-version 0.81
name pst-gantt
category Package
-revision 17206
+revision 32023
shortdesc Draw GANTT charts with pstricks.
-longdesc The package draws GANTT charts, which are a kind of bar chart
-longdesc that displays a project schedule. The package requires the
-longdesc pstricks apparatus, of course.
+longdesc The package uses PSTricks to draw GANTT charts, which are a
+longdesc kind of bar chart that displays a project schedule. The package
+longdesc requires the pstricks apparatus, of course.
docfiles size=36
texmf-dist/doc/generic/pst-gantt/Changes
texmf-dist/doc/generic/pst-gantt/README details="Readme"
texmf-dist/doc/generic/pst-gantt/pst-gantt-doc.bib
- texmf-dist/doc/generic/pst-gantt/pst-gantt-doc.pdf details="Brief documentation, with examples"
+ texmf-dist/doc/generic/pst-gantt/pst-gantt-doc.pdf
texmf-dist/doc/generic/pst-gantt/pst-gantt-doc.tex
-srcfiles size=1
- texmf-dist/source/generic/pst-gantt/Makefile
runfiles size=3
texmf-dist/tex/generic/pst-gantt/pst-gantt.tex
texmf-dist/tex/latex/pst-gantt/pst-gantt.sty
catalogue-ctan /graphics/pstricks/contrib/pst-gantt
-catalogue-date 2012-07-23 16:47:40 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
-catalogue-version 0.21
+catalogue-version 0.22
name pst-geo
category Package
revision 17751
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 The package offers a set of PSTricks related packages for
+longdesc various cartographic projections of the terrestrial sphere. The
+longdesc package pst-map2d provides conventional projections such as
+longdesc Mercator, Lambert, cylindrical, etc. The package pst-map3d
+longdesc treats representation in three dimensions of the terrestrial
+longdesc sphere. Packages pst-map2dII and pst-map3dII allow use of the
+longdesc CIA World DataBank II. Various parameters of the packages allow
+longdesc for choice of the level of the detail and the layouts possible
longdesc (cities, borders, rivers etc). Substantial data files are
longdesc provided, in an (internally) compressed format. Decompression
longdesc happens on-the-fly as a document using the data is displayed,
@@ -130502,7 +143873,7 @@ runfiles size=6042
texmf-dist/tex/latex/pst-geo/pst-map3d.sty
texmf-dist/tex/latex/pst-geo/pst-map3dII.sty
catalogue-ctan /graphics/pstricks/contrib/pst-geo
-catalogue-date 2012-07-24 10:31:24 +0200
+catalogue-date 2013-12-02 16:58:07 +0100
catalogue-license lppl
catalogue-version 2.03
@@ -130538,7 +143909,7 @@ runfiles size=3
texmf-dist/tex/generic/pst-gr3d/pst-gr3d.tex
texmf-dist/tex/latex/pst-gr3d/pst-gr3d.sty
catalogue-ctan /graphics/pstricks/contrib/pst-gr3d
-catalogue-date 2012-07-23 16:47:40 +0200
+catalogue-date 2013-07-16 20:34:34 +0200
catalogue-license lppl
catalogue-version 1.34
@@ -130559,7 +143930,7 @@ runfiles size=5
texmf-dist/tex/generic/pst-grad/pst-grad.tex
texmf-dist/tex/latex/pst-grad/pst-grad.sty
catalogue-ctan /graphics/pstricks/contrib/pst-grad
-catalogue-date 2012-07-23 16:47:40 +0200
+catalogue-date 2013-07-16 20:34:34 +0200
catalogue-license lppl
catalogue-version 1.06
@@ -130577,7 +143948,7 @@ docfiles size=3
runfiles size=1
texmf-dist/tex/generic/pst-graphicx/pst-graphicx.tex
catalogue-ctan /graphics/pstricks/contrib/pst-graphicx
-catalogue-date 2013-01-29 15:50:53 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 0.02
@@ -130602,10 +143973,35 @@ runfiles size=7
texmf-dist/tex/latex/pst-infixplot/infix-RPN.sty
texmf-dist/tex/latex/pst-infixplot/pst-infixplot.sty
catalogue-ctan /graphics/pstricks/contrib/pst-infixplot
-catalogue-date 2012-07-24 16:30:52 +0200
+catalogue-date 2013-07-16 20:34:34 +0200
catalogue-license lppl
catalogue-version 0.11
+name pst-intersect
+category Package
+revision 33210
+shortdesc Compute intersections of arbitrary curves
+longdesc The package computes the intersections between arbitrary
+longdesc Postscript paths or Bezier curves, using the Bezier clipping
+longdesc algorithm.
+docfiles size=60
+ texmf-dist/doc/latex/pst-intersect/Changes
+ texmf-dist/doc/latex/pst-intersect/README details="Readme"
+ texmf-dist/doc/latex/pst-intersect/pst-intersect-DE.pdf details="Package documentation" language="de"
+ texmf-dist/doc/latex/pst-intersect/pst-intersect.pdf details="Package documentation" language="en"
+srcfiles size=29
+ texmf-dist/source/latex/pst-intersect/Makefile
+ texmf-dist/source/latex/pst-intersect/pst-intersect.dtx
+ texmf-dist/source/latex/pst-intersect/pst-intersect.ins
+runfiles size=12
+ texmf-dist/dvips/pst-intersect/pst-intersect.pro
+ texmf-dist/tex/generic/pst-intersect/pst-intersect.tex
+ texmf-dist/tex/latex/pst-intersect/pst-intersect.sty
+catalogue-ctan /graphics/pstricks/contrib/pst-intersect
+catalogue-date 2014-03-17 08:20:02 +0100
+catalogue-license lppl
+catalogue-version 0.4
+
name pst-jtree
category Package
revision 20946
@@ -130644,7 +144040,7 @@ runfiles size=15
texmf-dist/tex/generic/pst-knot/pst-knot.tex
texmf-dist/tex/latex/pst-knot/pst-knot.sty
catalogue-ctan /graphics/pstricks/contrib/pst-knot
-catalogue-date 2012-08-25 14:37:30 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 0.2
@@ -130696,7 +144092,7 @@ docfiles size=29
runfiles size=3
texmf-dist/tex/latex/pst-layout/pst-layout.sty
catalogue-ctan /graphics/pstricks/contrib/pst-layout
-catalogue-date 2012-04-27 12:45:13 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version .95
@@ -130786,8 +144182,8 @@ 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 the latter). The package is designed essentially to work with
+longdesc pst-plot but can be used in whatever PS code (such as pstricks
longdesc SpecialCoor "!", which is useful for placing labels). The
longdesc package also provides a routine SIMPSON for numerical
longdesc integration and a solver of linear equation systems.
@@ -130804,37 +144200,45 @@ runfiles size=5
texmf-dist/tex/generic/pst-math/pst-math.tex
texmf-dist/tex/latex/pst-math/pst-math.sty
catalogue-ctan /graphics/pstricks/contrib/pst-math
-catalogue-date 2012-06-18 13:20:48 +0200
+catalogue-date 2013-09-30 11:46:09 +0200
catalogue-license lppl
catalogue-version 0.62
name pst-mirror
category Package
-revision 16370
+revision 32997
shortdesc Images on a spherical mirror.
longdesc The package provides commands and supporting PostScript
longdesc material for drawing images as if reflected by a spherical
longdesc mirror.
-docfiles size=1560
+docfiles size=1749
texmf-dist/doc/generic/pst-mirror/Changes
texmf-dist/doc/generic/pst-mirror/README details="Readme"
+ texmf-dist/doc/generic/pst-mirror/createEPS/make.sh
+ texmf-dist/doc/generic/pst-mirror/createEPS/script.readme
+ texmf-dist/doc/generic/pst-mirror/createEPS/scripts/filtre.pl
+ texmf-dist/doc/generic/pst-mirror/createEPS/test.pdf
+ texmf-dist/doc/generic/pst-mirror/createEPS/test.sh
+ texmf-dist/doc/generic/pst-mirror/createEPS/test.tex
+ texmf-dist/doc/generic/pst-mirror/createEPS/xa.eps
+ texmf-dist/doc/generic/pst-mirror/createEPS/xa.tex
+ texmf-dist/doc/generic/pst-mirror/createEPS/xb.eps
+ texmf-dist/doc/generic/pst-mirror/createEPS/xc.eps
texmf-dist/doc/generic/pst-mirror/pst-mirror-doc.bib
- texmf-dist/doc/generic/pst-mirror/pst-mirror-doc.pdf details="Package documentation" language="fr"
+ texmf-dist/doc/generic/pst-mirror/pst-mirror-doc.pdf
texmf-dist/doc/generic/pst-mirror/pst-mirror-doc.tex
-srcfiles size=1
- texmf-dist/source/generic/pst-mirror/Makefile
-runfiles size=19
+runfiles size=21
texmf-dist/dvips/pst-mirror/pst-mirror.pro
texmf-dist/tex/generic/pst-mirror/pst-mirror.tex
texmf-dist/tex/latex/pst-mirror/pst-mirror.sty
catalogue-ctan /graphics/pstricks/contrib/pst-mirror
-catalogue-date 2012-06-18 13:20:48 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
-catalogue-version 1.00
+catalogue-version 1.01
name pst-node
category Package
-revision 29899
+revision 33303
shortdesc Nodes and node connections in pstricks.
longdesc The package enables the user to connect information, and to
longdesc place labels, without knowing (in advance) the actual positions
@@ -130842,29 +144246,27 @@ longdesc of the items to be connected, or where the connecting line
longdesc should go. The macros are useful for making graphs and trees,
longdesc mathematical diagrams, linguistic syntax diagrams, and so on.
longdesc The package contents were previously distributed as a part of
-longdesc the pstricks base distribution.
-docfiles size=226
+longdesc the pstricks base distribution; the package serves as an
+longdesc extension to PSTricks.
+docfiles size=221
texmf-dist/doc/generic/pst-node/Changes
texmf-dist/doc/generic/pst-node/README details="Readme"
- texmf-dist/doc/generic/pst-node/more_docs/Makefile
- texmf-dist/doc/generic/pst-node/more_docs/psmatrix-docDE.bib
- texmf-dist/doc/generic/pst-node/more_docs/psmatrix-docDE.pdf details="Documentation of \psmatrix (German)" language="de"
- texmf-dist/doc/generic/pst-node/more_docs/psmatrix-docDE.tex
+ texmf-dist/doc/generic/pst-node/psmatrix-docDE.bib
+ texmf-dist/doc/generic/pst-node/psmatrix-docDE.pdf
+ texmf-dist/doc/generic/pst-node/psmatrix-docDE.tex
texmf-dist/doc/generic/pst-node/pst-node-doc.bib
- texmf-dist/doc/generic/pst-node/pst-node-doc.pdf details="Package documentation (English)" language="en"
+ texmf-dist/doc/generic/pst-node/pst-node-doc.pdf
texmf-dist/doc/generic/pst-node/pst-node-doc.tex
- texmf-dist/doc/generic/pst-node/pst-node97.tex
-srcfiles size=1
- texmf-dist/source/generic/pst-node/Makefile
-runfiles size=24
+runfiles size=28
texmf-dist/dvips/pst-node/pst-node.pro
texmf-dist/dvips/pst-node/pst-node97.pro
texmf-dist/tex/generic/pst-node/pst-node.tex
+ texmf-dist/tex/generic/pst-node/pst-node97.tex
texmf-dist/tex/latex/pst-node/pst-node.sty
catalogue-ctan /graphics/pstricks/contrib/pst-node
-catalogue-date 2013-04-14 10:19:50 +0200
+catalogue-date 2014-03-26 09:37:24 +0100
catalogue-license lppl
-catalogue-version 1.27
+catalogue-version 1.33
name pst-ob3d
category Package
@@ -130892,7 +144294,7 @@ catalogue-version 0.21
name pst-ode
category Package
-revision 27669
+revision 33301
shortdesc Solving initial value problems for sets of Ordinary Differential Equations.
longdesc The package defines \pstODEsolve for solving initial value
longdesc problems for sets of Ordinary Differential Equations (ODE)
@@ -130905,46 +144307,46 @@ longdesc user-defined PostScript procedures. Optionally, the computed
longdesc state vectors can be written as a table to a text file.
docfiles size=38
texmf-dist/doc/generic/pst-ode/ChangeLog
- texmf-dist/doc/generic/pst-ode/README
+ texmf-dist/doc/generic/pst-ode/README details="Readme"
texmf-dist/doc/generic/pst-ode/pst-ode-doc.pdf details="Package documentation"
texmf-dist/doc/generic/pst-ode/pst-ode-doc.tex
-runfiles size=5
+runfiles size=6
texmf-dist/dvips/pst-ode/pst-ode.pro
texmf-dist/tex/generic/pst-ode/pst-ode.tex
texmf-dist/tex/latex/pst-ode/pst-ode.sty
catalogue-ctan /graphics/pstricks/contrib/pst-ode
-catalogue-date 2012-09-27 12:42:10 +0200
+catalogue-date 2014-03-27 19:23:13 +0100
catalogue-license lppl
-catalogue-version 0.2
+catalogue-version 0.7
name pst-optexp
category Package
-revision 30617
+revision 33077
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 A lot of different free-ray and fiber components are provided,
-longdesc the alignment, positioning and labelling of which can be
-longdesc achieved in very simple and flexible ways. The components can
-longdesc be connected with fibers or beams, realistic raytraced beam
-longdesc paths are also possible.
-docfiles size=1115
+longdesc The package is a collection of optical components that
+longdesc facilitate easy sketching of optical experimental setups. The
+longdesc package uses PSTricks for its output. A wide range of free-ray
+longdesc and fibre components is provided, the alignment, positioning
+longdesc and labelling of which can be achieved in very simple and
+longdesc flexible ways. The components may be connected with fibers or
+longdesc beams, and realistic raytraced beam paths are also possible.
+docfiles size=1435
texmf-dist/doc/latex/pst-optexp/Changes
texmf-dist/doc/latex/pst-optexp/README details="Readme"
texmf-dist/doc/latex/pst-optexp/pst-optexp-DE.pdf details="Package manual (German)" language="de"
- texmf-dist/doc/latex/pst-optexp/pst-optexp-quickref.pdf details="Quick reference ("cheat-sheet")"
+ texmf-dist/doc/latex/pst-optexp/pst-optexp-quickref.pdf details="Quick reference (cheat-sheet)"
texmf-dist/doc/latex/pst-optexp/pst-optexp.pdf details="Package manual (English)" language="en"
-srcfiles size=175
+srcfiles size=194
texmf-dist/source/latex/pst-optexp/Makefile
texmf-dist/source/latex/pst-optexp/pst-optexp.dtx
texmf-dist/source/latex/pst-optexp/pst-optexp.ins
-runfiles size=47
+runfiles size=53
texmf-dist/dvips/pst-optexp/pst-optexp.pro
texmf-dist/tex/latex/pst-optexp/pst-optexp.sty
catalogue-ctan /graphics/pstricks/contrib/pst-optexp
-catalogue-date 2013-05-21 21:04:45 +0200
+catalogue-date 2014-02-28 20:10:22 +0100
catalogue-license lppl
-catalogue-version 4.1
+catalogue-version 4.8
name pst-optic
category Package
@@ -130998,6 +144400,29 @@ catalogue-date 2012-05-30 14:49:05 +0200
catalogue-license lppl
catalogue-version 2.82
+name pst-ovl
+category Package
+revision 34033
+shortdesc Create and manage graphical overlays.
+longdesc The package is useful when building an image from assorted
+longdesc material, as in the slides of a projected presentation. The
+longdesc package requires pstricks, and shares that package's
+longdesc restrictions on usage when generating PDF output.
+docfiles size=17
+ texmf-dist/doc/generic/pst-ovl/Changes
+ texmf-dist/doc/generic/pst-ovl/README details="Readme"
+ texmf-dist/doc/generic/pst-ovl/pst-ovl-doc.bib
+ texmf-dist/doc/generic/pst-ovl/pst-ovl-doc.pdf
+ texmf-dist/doc/generic/pst-ovl/pst-ovl-doc.tex
+runfiles size=3
+ texmf-dist/dvips/pst-ovl/pst-ovl.pro
+ texmf-dist/tex/generic/pst-ovl/pst-ovl.tex
+ texmf-dist/tex/latex/pst-ovl/pst-ovl.sty
+catalogue-ctan /graphics/pstricks/contrib/pst-ovl
+catalogue-date 2014-05-13 21:58:12 +0200
+catalogue-license lppl
+catalogue-version 0.06
+
name pst-pad
category Package
revision 15878
@@ -131024,13 +144449,13 @@ runfiles size=6
texmf-dist/tex/generic/pst-pad/pst-pad.tex
texmf-dist/tex/latex/pst-pad/pst-pad.sty
catalogue-ctan /graphics/pstricks/contrib/pst-pad
-catalogue-date 2012-06-18 13:20:48 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 0.3b
name pst-pdf
category Package
-revision 29349
+revision 31660
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
@@ -131040,6 +144465,7 @@ longdesc PDF file (\PDFcontainer) that will contain all the graphics
longdesc material. In the final document these contents will be inserted
longdesc instead of the original PostScript code. The package works with
longdesc pstricks and requires a recent version of the preview package.
+depend pst-pdf.ARCH
docfiles size=379
texmf-dist/doc/latex/pst-pdf/CHANGES
texmf-dist/doc/latex/pst-pdf/README details="README file"
@@ -131070,6 +144496,154 @@ catalogue-date 2012-06-18 13:20:48 +0200
catalogue-license lppl
catalogue-version 1.1v
+name pst-pdf.alpha-linux
+category Package
+revision 8514
+shortdesc alpha-linux files of pst-pdf
+binfiles arch=alpha-linux size=1
+ bin/alpha-linux/ps4pdf
+
+name pst-pdf.amd64-freebsd
+category Package
+revision 16472
+shortdesc amd64-freebsd files of pst-pdf
+binfiles arch=amd64-freebsd size=1
+ bin/amd64-freebsd/ps4pdf
+
+name pst-pdf.amd64-kfreebsd
+category Package
+revision 18459
+shortdesc amd64-kfreebsd files of pst-pdf
+binfiles arch=amd64-kfreebsd size=1
+ bin/amd64-kfreebsd/ps4pdf
+
+name pst-pdf.amd64-netbsd
+category Package
+revision 30191
+shortdesc amd64-netbsd files of pst-pdf
+binfiles arch=amd64-netbsd size=1
+ bin/amd64-netbsd/ps4pdf
+
+name pst-pdf.armel-linux
+category Package
+revision 26458
+shortdesc armel-linux files of pst-pdf
+binfiles arch=armel-linux size=1
+ bin/armel-linux/ps4pdf
+
+name pst-pdf.armhf-linux
+category Package
+revision 30015
+shortdesc armhf-linux files of pst-pdf
+binfiles arch=armhf-linux size=1
+ bin/armhf-linux/ps4pdf
+
+name pst-pdf.i386-cygwin
+category Package
+revision 12991
+shortdesc i386-cygwin files of pst-pdf
+binfiles arch=i386-cygwin size=1
+ bin/i386-cygwin/ps4pdf
+
+name pst-pdf.i386-freebsd
+category Package
+revision 16472
+shortdesc i386-freebsd files of pst-pdf
+binfiles arch=i386-freebsd size=1
+ bin/i386-freebsd/ps4pdf
+
+name pst-pdf.i386-kfreebsd
+category Package
+revision 17370
+shortdesc i386-kfreebsd files of pst-pdf
+binfiles arch=i386-kfreebsd size=1
+ bin/i386-kfreebsd/ps4pdf
+
+name pst-pdf.i386-linux
+category Package
+revision 7838
+shortdesc i386-linux files of pst-pdf
+binfiles arch=i386-linux size=1
+ bin/i386-linux/ps4pdf
+
+name pst-pdf.i386-netbsd
+category Package
+revision 30191
+shortdesc i386-netbsd files of pst-pdf
+binfiles arch=i386-netbsd size=1
+ bin/i386-netbsd/ps4pdf
+
+name pst-pdf.i386-solaris
+category Package
+revision 8102
+shortdesc i386-solaris files of pst-pdf
+binfiles arch=i386-solaris size=1
+ bin/i386-solaris/ps4pdf
+
+name pst-pdf.mipsel-linux
+category Package
+revision 29946
+shortdesc mipsel-linux files of pst-pdf
+binfiles arch=mipsel-linux size=1
+ bin/mipsel-linux/ps4pdf
+
+name pst-pdf.powerpc-linux
+category Package
+revision 8569
+shortdesc powerpc-linux files of pst-pdf
+binfiles arch=powerpc-linux size=1
+ bin/powerpc-linux/ps4pdf
+
+name pst-pdf.sparc-solaris
+category Package
+revision 8475
+shortdesc sparc-solaris files of pst-pdf
+binfiles arch=sparc-solaris size=1
+ bin/sparc-solaris/ps4pdf
+
+name pst-pdf.universal-darwin
+category Package
+revision 9317
+shortdesc universal-darwin files of pst-pdf
+binfiles arch=universal-darwin size=1
+ bin/universal-darwin/ps4pdf
+
+name pst-pdf.win32
+category Package
+revision 15404
+shortdesc win32 files of pst-pdf
+binfiles arch=win32 size=2
+ bin/win32/ps4pdf.bat
+ bin/win32/ps4pdf.exe
+
+name pst-pdf.x86_64-cygwin
+category Package
+revision 33557
+shortdesc x86_64-cygwin files of pst-pdf
+binfiles arch=x86_64-cygwin size=1
+ bin/x86_64-cygwin/ps4pdf
+
+name pst-pdf.x86_64-darwin
+category Package
+revision 18441
+shortdesc x86_64-darwin files of pst-pdf
+binfiles arch=x86_64-darwin size=1
+ bin/x86_64-darwin/ps4pdf
+
+name pst-pdf.x86_64-linux
+category Package
+revision 8601
+shortdesc x86_64-linux files of pst-pdf
+binfiles arch=x86_64-linux size=1
+ bin/x86_64-linux/ps4pdf
+
+name pst-pdf.x86_64-solaris
+category Package
+revision 18442
+shortdesc x86_64-solaris files of pst-pdf
+binfiles arch=x86_64-solaris size=1
+ bin/x86_64-solaris/ps4pdf
+
name pst-pdgr
category Package
revision 15878
@@ -131099,6 +144673,29 @@ catalogue-date 2012-04-11 15:14:23 +0200
catalogue-license lppl
catalogue-version 0.3
+name pst-perspective
+category Package
+revision 33524
+shortdesc Draw perspective views using pstricks.
+longdesc The package provides the means to draw an orthogonal parallel
+longdesc projection with an arbitrarily chosen angle and a variable
+longdesc shortening factor.
+docfiles size=405
+ texmf-dist/doc/generic/pst-perspective/Parallelprojektion-Kreis.pdf
+ texmf-dist/doc/generic/pst-perspective/Parallelprojektion-Kreis.tex
+ texmf-dist/doc/generic/pst-perspective/README details="Readme"
+ texmf-dist/doc/generic/pst-perspective/pst-perspective-doc.pdf details="Package documentation (German)" language="de"
+ texmf-dist/doc/generic/pst-perspective/pst-perspective-doc.tex
+ texmf-dist/doc/generic/pst-perspective/pst-perspective-docEN.pdf details="Package documentation (English)" language="en"
+ texmf-dist/doc/generic/pst-perspective/pst-perspective-docEN.tex
+runfiles size=6
+ texmf-dist/tex/generic/pst-perspective/pst-perspective.tex
+ texmf-dist/tex/latex/pst-perspective/pst-perspective.sty
+catalogue-ctan /graphics/pstricks/contrib/pst-perspective
+catalogue-date 2014-04-18 18:08:56 +0200
+catalogue-license lppl1.3
+catalogue-version 1.04
+
name pst-platon
category Package
revision 16538
@@ -131116,38 +144713,44 @@ srcfiles size=1
runfiles size=3
texmf-dist/tex/latex/pst-platon/pst-platon.sty
catalogue-ctan /graphics/pstricks/contrib/pst-platon
-catalogue-date 2012-06-18 13:20:48 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 0.01
name pst-plot
category Package
-revision 30162
+revision 34063
shortdesc Plot data using PSTricks.
longdesc The package provides plotting of data (typically from external
-longdesc files), using PSTricks. Plots my be configured using a wide
+longdesc files), using PSTricks. Plots may be configured using a wide
longdesc variety of parameters.
-docfiles size=702
+docfiles size=761
texmf-dist/doc/generic/pst-plot/Changes
+ texmf-dist/doc/generic/pst-plot/Contents
texmf-dist/doc/generic/pst-plot/README details="Readme"
- texmf-dist/doc/generic/pst-plot/more_docs/README details="Readme"
- texmf-dist/doc/generic/pst-plot/more_docs/dtk02-1.pdf
- texmf-dist/doc/generic/pst-plot/more_docs/dtk02-2.pdf
- texmf-dist/doc/generic/pst-plot/more_docs/tugboat01-4.pdf
+ texmf-dist/doc/generic/pst-plot/README-doc
+ texmf-dist/doc/generic/pst-plot/dtk02-1.pdf
+ texmf-dist/doc/generic/pst-plot/dtk02-1.tex
+ texmf-dist/doc/generic/pst-plot/dtk02-2.bib
+ texmf-dist/doc/generic/pst-plot/dtk02-2.pdf
+ texmf-dist/doc/generic/pst-plot/dtk02-2.tex
texmf-dist/doc/generic/pst-plot/pst-plot-doc.bib
texmf-dist/doc/generic/pst-plot/pst-plot-doc.dat
- texmf-dist/doc/generic/pst-plot/pst-plot-doc.pdf details="Package documentation" language="en"
+ texmf-dist/doc/generic/pst-plot/pst-plot-doc.eps
+ texmf-dist/doc/generic/pst-plot/pst-plot-doc.pdf
+ texmf-dist/doc/generic/pst-plot/pst-plot-doc.png
texmf-dist/doc/generic/pst-plot/pst-plot-doc.tex
- texmf-dist/doc/generic/pst-plot/pst-plot97.tex
-srcfiles size=1
- texmf-dist/source/generic/pst-plot/Makefile
-runfiles size=23
+ texmf-dist/doc/generic/pst-plot/tugboat01-4.bib
+ texmf-dist/doc/generic/pst-plot/tugboat01-4.pdf
+ texmf-dist/doc/generic/pst-plot/tugboat01-4.tex
+runfiles size=29
texmf-dist/tex/generic/pst-plot/pst-plot.tex
+ texmf-dist/tex/generic/pst-plot/pst-plot97.tex
texmf-dist/tex/latex/pst-plot/pst-plot.sty
catalogue-ctan /graphics/pstricks/contrib/pst-plot
-catalogue-date 2013-04-30 08:59:42 +0200
+catalogue-date 2014-05-16 13:47:09 +0200
catalogue-license lppl
-catalogue-version 1.45
+catalogue-version 1.62
name pst-poly
category Package
@@ -131195,7 +144798,7 @@ runfiles size=16
texmf-dist/tex/generic/pst-pulley/pst-pulley.tex
texmf-dist/tex/latex/pst-pulley/pst-pulley.sty
catalogue-ctan /graphics/pstricks/contrib/pst-pulley
-catalogue-date 2012-01-26 13:00:16 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 0.01
@@ -131213,7 +144816,7 @@ runfiles size=2
texmf-dist/tex/generic/pst-qtree/pst-qtree.tex
texmf-dist/tex/latex/pst-qtree/pst-qtree.sty
catalogue-ctan /graphics/pstricks/contrib/pst-qtree
-catalogue-date 2012-01-18 17:42:33 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license gpl
name pst-rubans
@@ -131238,7 +144841,7 @@ runfiles size=5
texmf-dist/tex/generic/pst-rubans/pst-rubans.tex
texmf-dist/tex/latex/pst-rubans/pst-rubans.sty
catalogue-ctan /graphics/pstricks/contrib/pst-rubans
-catalogue-date 2012-08-25 14:43:44 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.2
@@ -131265,7 +144868,7 @@ runfiles size=6
texmf-dist/tex/generic/pst-sigsys/pst-sigsys.tex
texmf-dist/tex/latex/pst-sigsys/pst-sigsys.sty
catalogue-ctan /graphics/pstricks/contrib/pst-sigsys
-catalogue-date 2012-08-25 14:37:30 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.4
@@ -131275,14 +144878,13 @@ revision 24391
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: - it
+longdesc distribution), and provides the following facilities: it
longdesc permits the user to specify an arbitrary number of colours,
-longdesc along with the points at which they are to be reached; - it
-longdesc converts between RGB and HSV behind the scenes; - it provides
-longdesc concentric and radial gradients; - it provides a command
-longdesc \psBall that generates bullets with a three-dimensional
-longdesc appearance; and - uses the xkeyval package for the extended key
-longdesc handling.
+longdesc along with the points at which they are to be reached; it
+longdesc converts between RGB and HSV behind the scenes; it provides
+longdesc concentric and radial gradients; it provides a command \psBall
+longdesc that generates bullets with a three-dimensional appearance; and
+longdesc uses the xkeyval package for the extended key handling.
docfiles size=72
texmf-dist/doc/generic/pst-slpe/Changes
texmf-dist/doc/generic/pst-slpe/README details="Readme"
@@ -131296,7 +144898,7 @@ runfiles size=5
texmf-dist/tex/generic/pst-slpe/pst-slpe.tex
texmf-dist/tex/latex/pst-slpe/pst-slpe.sty
catalogue-ctan /graphics/pstricks/contrib/pst-slpe
-catalogue-date 2012-07-23 16:47:40 +0200
+catalogue-date 2013-12-02 16:37:30 +0100
catalogue-license lppl
catalogue-version 1.31
@@ -131324,167 +144926,168 @@ runfiles size=6
texmf-dist/tex/generic/pst-solarsystem/pst-solarsystem.tex
texmf-dist/tex/latex/pst-solarsystem/pst-solarsystem.sty
catalogue-ctan /graphics/pstricks/contrib/pst-solarsystem
-catalogue-date 2012-08-25 14:43:44 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 0.12
name pst-solides3d
category Package
-revision 28581
+revision 33375
shortdesc Draw perspective views of 3D solids.
longdesc The package is designed to draw solids in 3d perspective.
-longdesc Features include: - create primitive solids; - create solids by
-longdesc including a list of its vertices and faces; - faces of solids
-longdesc and surfaces can be colored by choosing from a very large
-longdesc palette of colors; - draw parametric surfaces in algebraic and
-longdesc reverse polish notation; - create explicit and parameterized
-longdesc algebraic functions drawn in 2 or 3 dimensions; - project text
-longdesc onto a plane and onto the faces of a solid; - support for
-longdesc including external database files
-docfiles size=2060
- texmf-dist/doc/generic/pst-solides3d/Changes
+longdesc Features include: create primitive solids; create solids by
+longdesc including a list of its vertices and faces; faces of solids and
+longdesc surfaces can be colored by choosing from a very large palette
+longdesc of colors; draw parametric surfaces in algebraic and reverse
+longdesc polish notation; create explicit and parameterized algebraic
+longdesc functions drawn in 2 or 3 dimensions; project text onto a plane
+longdesc and onto the faces of a solid; support for including external
+longdesc database files.
+docfiles size=6588
texmf-dist/doc/generic/pst-solides3d/README details="Readme"
- texmf-dist/doc/generic/pst-solides3d/doc-en/Changes
- texmf-dist/doc/generic/pst-solides3d/doc-en/Letter.ist
- texmf-dist/doc/generic/pst-solides3d/doc-en/Makefile
- texmf-dist/doc/generic/pst-solides3d/doc-en/Pyramid-couleurs.dat
- texmf-dist/doc/generic/pst-solides3d/doc-en/Pyramid-faces.dat
- texmf-dist/doc/generic/pst-solides3d/doc-en/Pyramid-io.dat
- texmf-dist/doc/generic/pst-solides3d/doc-en/Pyramid-sommets.dat
- texmf-dist/doc/generic/pst-solides3d/doc-en/README details="Readme"
- texmf-dist/doc/generic/pst-solides3d/doc-en/chapter-1-en.tex
- texmf-dist/doc/generic/pst-solides3d/doc-en/chapter-2-en.tex
- texmf-dist/doc/generic/pst-solides3d/doc-en/cubeHexagone-couleurs.dat
- texmf-dist/doc/generic/pst-solides3d/doc-en/cubeHexagone-faces.dat
- texmf-dist/doc/generic/pst-solides3d/doc-en/cubeHexagone-io.dat
- texmf-dist/doc/generic/pst-solides3d/doc-en/cubeHexagone-sommets.dat
- texmf-dist/doc/generic/pst-solides3d/doc-en/cubecolor-couleurs.dat
- texmf-dist/doc/generic/pst-solides3d/doc-en/cubecolor-faces.dat
- texmf-dist/doc/generic/pst-solides3d/doc-en/cubecolor-io.dat
- texmf-dist/doc/generic/pst-solides3d/doc-en/cubecolor-sommets.dat
- texmf-dist/doc/generic/pst-solides3d/doc-en/faces_nefer.dat
- texmf-dist/doc/generic/pst-solides3d/doc-en/faces_nefer_levres.dat
- texmf-dist/doc/generic/pst-solides3d/doc-en/faces_nefer_sourcils.dat
- texmf-dist/doc/generic/pst-solides3d/doc-en/faces_nefer_yeux.dat
- texmf-dist/doc/generic/pst-solides3d/doc-en/fusee62-couleurs.dat
- texmf-dist/doc/generic/pst-solides3d/doc-en/fusee62-faces.dat
- texmf-dist/doc/generic/pst-solides3d/doc-en/fusee62-io.dat
- texmf-dist/doc/generic/pst-solides3d/doc-en/fusee62-sommets.dat
- texmf-dist/doc/generic/pst-solides3d/doc-en/geodedual44-couleurs.dat
- texmf-dist/doc/generic/pst-solides3d/doc-en/geodedual44-faces.dat
- texmf-dist/doc/generic/pst-solides3d/doc-en/geodedual44-io.dat
- texmf-dist/doc/generic/pst-solides3d/doc-en/geodedual44-sommets.dat
- texmf-dist/doc/generic/pst-solides3d/doc-en/horoptere-couleurs.dat
- texmf-dist/doc/generic/pst-solides3d/doc-en/horoptere-faces.dat
- texmf-dist/doc/generic/pst-solides3d/doc-en/horoptere-io.dat
- texmf-dist/doc/generic/pst-solides3d/doc-en/horoptere-sommets.dat
- texmf-dist/doc/generic/pst-solides3d/doc-en/kepler.eps
- texmf-dist/doc/generic/pst-solides3d/doc-en/par-acknowledgements-en.tex
- texmf-dist/doc/generic/pst-solides3d/doc-en/par-affinage-en.tex
- texmf-dist/doc/generic/pst-solides3d/doc-en/par-anneaux-en.tex
- texmf-dist/doc/generic/pst-solides3d/doc-en/par-annoterschema-en.tex
- texmf-dist/doc/generic/pst-solides3d/doc-en/par-axes3D-en.tex
- texmf-dist/doc/generic/pst-solides3d/doc-en/par-chanfrein-en.tex
- texmf-dist/doc/generic/pst-solides3d/doc-en/par-codejps-en.tex
- texmf-dist/doc/generic/pst-solides3d/doc-en/par-colorierfacettes-en.tex
- texmf-dist/doc/generic/pst-solides3d/doc-en/par-commandestrace-en.tex
- texmf-dist/doc/generic/pst-solides3d/doc-en/par-couleurs-en.tex
- texmf-dist/doc/generic/pst-solides3d/doc-en/par-courbeR3-en.tex
- texmf-dist/doc/generic/pst-solides3d/doc-en/par-cylindres-cones-en.tex
- texmf-dist/doc/generic/pst-solides3d/doc-en/par-datfile-en.tex
- texmf-dist/doc/generic/pst-solides3d/doc-en/par-definirfonction-en.tex
- texmf-dist/doc/generic/pst-solides3d/doc-en/par-definirplanquelconque-en.tex
- texmf-dist/doc/generic/pst-solides3d/doc-en/par-definitionmaillage-en.tex
- texmf-dist/doc/generic/pst-solides3d/doc-en/par-eclairageponctuel-en.tex
- texmf-dist/doc/generic/pst-solides3d/doc-en/par-enleverfacettes-en.tex
- texmf-dist/doc/generic/pst-solides3d/doc-en/par-extensions-en.tex
- texmf-dist/doc/generic/pst-solides3d/doc-en/par-face-en.tex
- texmf-dist/doc/generic/pst-solides3d/doc-en/par-fusion-en.tex
- texmf-dist/doc/generic/pst-solides3d/doc-en/par-fusionjps-en.tex
- texmf-dist/doc/generic/pst-solides3d/doc-en/par-geode-en.tex
- texmf-dist/doc/generic/pst-solides3d/doc-en/par-grille-en.tex
- texmf-dist/doc/generic/pst-solides3d/doc-en/par-keywords-en.tex
- texmf-dist/doc/generic/pst-solides3d/doc-en/par-ligne3D-en.tex
- texmf-dist/doc/generic/pst-solides3d/doc-en/par-lignedeniveau-en.tex
- texmf-dist/doc/generic/pst-solides3d/doc-en/par-modes-en.tex
- texmf-dist/doc/generic/pst-solides3d/doc-en/par-new-en.tex
- texmf-dist/doc/generic/pst-solides3d/doc-en/par-nommersolide-en.tex
- texmf-dist/doc/generic/pst-solides3d/doc-en/par-numeroterfacettes-en.tex
- texmf-dist/doc/generic/pst-solides3d/doc-en/par-opacity-en.tex
- texmf-dist/doc/generic/pst-solides3d/doc-en/par-parametres-en.tex
- texmf-dist/doc/generic/pst-solides3d/doc-en/par-plan-en.tex
- texmf-dist/doc/generic/pst-solides3d/doc-en/par-poems-en.tex
- texmf-dist/doc/generic/pst-solides3d/doc-en/par-point-en.tex
- texmf-dist/doc/generic/pst-solides3d/doc-en/par-pointagesommets-en.tex
- texmf-dist/doc/generic/pst-solides3d/doc-en/par-positionnerpointconnu-en.tex
- texmf-dist/doc/generic/pst-solides3d/doc-en/par-positionnersolide-en.tex
- texmf-dist/doc/generic/pst-solides3d/doc-en/par-prisme-en.tex
- texmf-dist/doc/generic/pst-solides3d/doc-en/par-projectionangledroit-en.tex
- texmf-dist/doc/generic/pst-solides3d/doc-en/par-projectioncercle-en.tex
- texmf-dist/doc/generic/pst-solides3d/doc-en/par-projectioncourbe-en.tex
- texmf-dist/doc/generic/pst-solides3d/doc-en/par-projectiondroite-en.tex
- texmf-dist/doc/generic/pst-solides3d/doc-en/par-projectionligne-en.tex
- texmf-dist/doc/generic/pst-solides3d/doc-en/par-projectionpoint-en.tex
- texmf-dist/doc/generic/pst-solides3d/doc-en/par-projectionpolygone-en.tex
- texmf-dist/doc/generic/pst-solides3d/doc-en/par-projectiontexte-en.tex
- texmf-dist/doc/generic/pst-solides3d/doc-en/par-projectionvecteur-en.tex
- texmf-dist/doc/generic/pst-solides3d/doc-en/par-projectionvisibility-en.tex
- texmf-dist/doc/generic/pst-solides3d/doc-en/par-projpresentation-en.tex
- texmf-dist/doc/generic/pst-solides3d/doc-en/par-ruban-en.tex
- texmf-dist/doc/generic/pst-solides3d/doc-en/par-section-en.tex
- texmf-dist/doc/generic/pst-solides3d/doc-en/par-solidescreux-en.tex
- texmf-dist/doc/generic/pst-solides3d/doc-en/par-solidespredefinis-en.tex
- texmf-dist/doc/generic/pst-solides3d/doc-en/par-surfaces-en.tex
- texmf-dist/doc/generic/pst-solides3d/doc-en/par-surfacesparametrees-en.tex
- texmf-dist/doc/generic/pst-solides3d/doc-en/par-tracerpolygone-en.tex
- texmf-dist/doc/generic/pst-solides3d/doc-en/par-transform-en.tex
- texmf-dist/doc/generic/pst-solides3d/doc-en/par-transformpointconnu-en.tex
- texmf-dist/doc/generic/pst-solides3d/doc-en/par-tronque-en.tex
- texmf-dist/doc/generic/pst-solides3d/doc-en/par-tube-en.tex
- texmf-dist/doc/generic/pst-solides3d/doc-en/par-vecteur-en.tex
- texmf-dist/doc/generic/pst-solides3d/doc-en/paraboloid-couleurs.dat
- texmf-dist/doc/generic/pst-solides3d/doc-en/paraboloid-faces.dat
- texmf-dist/doc/generic/pst-solides3d/doc-en/paraboloid-io.dat
- texmf-dist/doc/generic/pst-solides3d/doc-en/paraboloid-sommets.dat
- texmf-dist/doc/generic/pst-solides3d/doc-en/pst-solides3d-doc.bib
- texmf-dist/doc/generic/pst-solides3d/doc-en/pst-solides3d-doc.brf
- texmf-dist/doc/generic/pst-solides3d/doc-en/pst-solides3d-doc.tex
- texmf-dist/doc/generic/pst-solides3d/doc-en/rocket.obj
- texmf-dist/doc/generic/pst-solides3d/doc-en/slicePyramid-couleurs.dat
- texmf-dist/doc/generic/pst-solides3d/doc-en/slicePyramid-faces.dat
- texmf-dist/doc/generic/pst-solides3d/doc-en/slicePyramid-io.dat
- texmf-dist/doc/generic/pst-solides3d/doc-en/slicePyramid-sommets.dat
- texmf-dist/doc/generic/pst-solides3d/doc-en/sommets_nefer.dat
- texmf-dist/doc/generic/pst-solides3d/doc-en/sommets_nefer0.dat
- texmf-dist/doc/generic/pst-solides3d/doc-en/tore1836-couleurs.dat
- texmf-dist/doc/generic/pst-solides3d/doc-en/tore1836-faces.dat
- texmf-dist/doc/generic/pst-solides3d/doc-en/tore1836-io.dat
- texmf-dist/doc/generic/pst-solides3d/doc-en/tore1836-sommets.dat
- texmf-dist/doc/generic/pst-solides3d/doc-en/tore1860-couleurs.dat
- texmf-dist/doc/generic/pst-solides3d/doc-en/tore1860-faces.dat
- texmf-dist/doc/generic/pst-solides3d/doc-en/tore1860-io.dat
- texmf-dist/doc/generic/pst-solides3d/doc-en/tore1860-sommets.dat
- texmf-dist/doc/generic/pst-solides3d/doc-en/tore1860lemniscate-couleurs.dat
- texmf-dist/doc/generic/pst-solides3d/doc-en/tore1860lemniscate-faces.dat
- texmf-dist/doc/generic/pst-solides3d/doc-en/tore1860lemniscate-io.dat
- texmf-dist/doc/generic/pst-solides3d/doc-en/tore1860lemniscate-sommets.dat
- texmf-dist/doc/generic/pst-solides3d/doc-en/tore1860ovales-couleurs.dat
- texmf-dist/doc/generic/pst-solides3d/doc-en/tore1860ovales-faces.dat
- texmf-dist/doc/generic/pst-solides3d/doc-en/tore1860ovales-io.dat
- texmf-dist/doc/generic/pst-solides3d/doc-en/tore1860ovales-sommets.dat
- texmf-dist/doc/generic/pst-solides3d/doc-en/tore1860part-couleurs.dat
- texmf-dist/doc/generic/pst-solides3d/doc-en/tore1860part-faces.dat
- texmf-dist/doc/generic/pst-solides3d/doc-en/tore1860part-io.dat
- texmf-dist/doc/generic/pst-solides3d/doc-en/tore1860part-sommets.dat
- texmf-dist/doc/generic/pst-solides3d/pst-solides3d-doc.pdf details="Package documentation (English)" language="en"
-runfiles size=75
+ texmf-dist/doc/generic/pst-solides3d/pst-solides3d-doc.pdf
+ texmf-dist/doc/generic/pst-solides3d/src/Changes
+ texmf-dist/doc/generic/pst-solides3d/src/Letter.ist
+ texmf-dist/doc/generic/pst-solides3d/src/Makefile
+ texmf-dist/doc/generic/pst-solides3d/src/Pyramid-couleurs.dat
+ texmf-dist/doc/generic/pst-solides3d/src/Pyramid-faces.dat
+ texmf-dist/doc/generic/pst-solides3d/src/Pyramid-io.dat
+ texmf-dist/doc/generic/pst-solides3d/src/Pyramid-sommets.dat
+ texmf-dist/doc/generic/pst-solides3d/src/chapter-1-en.tex
+ texmf-dist/doc/generic/pst-solides3d/src/chapter-2-en.tex
+ texmf-dist/doc/generic/pst-solides3d/src/cubeHexagone-couleurs.dat
+ texmf-dist/doc/generic/pst-solides3d/src/cubeHexagone-faces.dat
+ texmf-dist/doc/generic/pst-solides3d/src/cubeHexagone-io.dat
+ texmf-dist/doc/generic/pst-solides3d/src/cubeHexagone-sommets.dat
+ texmf-dist/doc/generic/pst-solides3d/src/cubecolor-couleurs.dat
+ texmf-dist/doc/generic/pst-solides3d/src/cubecolor-faces.dat
+ texmf-dist/doc/generic/pst-solides3d/src/cubecolor-io.dat
+ texmf-dist/doc/generic/pst-solides3d/src/cubecolor-sommets.dat
+ texmf-dist/doc/generic/pst-solides3d/src/faces_nefer.dat
+ texmf-dist/doc/generic/pst-solides3d/src/faces_nefer_levres.dat
+ texmf-dist/doc/generic/pst-solides3d/src/faces_nefer_sourcils.dat
+ texmf-dist/doc/generic/pst-solides3d/src/faces_nefer_yeux.dat
+ texmf-dist/doc/generic/pst-solides3d/src/fusee62-couleurs.dat
+ texmf-dist/doc/generic/pst-solides3d/src/fusee62-faces.dat
+ texmf-dist/doc/generic/pst-solides3d/src/fusee62-io.dat
+ texmf-dist/doc/generic/pst-solides3d/src/fusee62-sommets.dat
+ texmf-dist/doc/generic/pst-solides3d/src/geodedual44-couleurs.dat
+ texmf-dist/doc/generic/pst-solides3d/src/geodedual44-faces.dat
+ texmf-dist/doc/generic/pst-solides3d/src/geodedual44-io.dat
+ texmf-dist/doc/generic/pst-solides3d/src/geodedual44-sommets.dat
+ texmf-dist/doc/generic/pst-solides3d/src/horoptere-couleurs.dat
+ texmf-dist/doc/generic/pst-solides3d/src/horoptere-faces.dat
+ texmf-dist/doc/generic/pst-solides3d/src/horoptere-io.dat
+ texmf-dist/doc/generic/pst-solides3d/src/horoptere-sommets.dat
+ texmf-dist/doc/generic/pst-solides3d/src/kepler.eps
+ texmf-dist/doc/generic/pst-solides3d/src/par-acknowledgements-en.tex
+ texmf-dist/doc/generic/pst-solides3d/src/par-affinage-en.tex
+ texmf-dist/doc/generic/pst-solides3d/src/par-anneaux-en.tex
+ texmf-dist/doc/generic/pst-solides3d/src/par-annoterschema-en.tex
+ texmf-dist/doc/generic/pst-solides3d/src/par-axes3D-en.tex
+ texmf-dist/doc/generic/pst-solides3d/src/par-chanfrein-en.tex
+ texmf-dist/doc/generic/pst-solides3d/src/par-codejps-en.tex
+ texmf-dist/doc/generic/pst-solides3d/src/par-colorierfacettes-en.tex
+ texmf-dist/doc/generic/pst-solides3d/src/par-commandestrace-en.tex
+ texmf-dist/doc/generic/pst-solides3d/src/par-couleurs-en.tex
+ texmf-dist/doc/generic/pst-solides3d/src/par-courbeR3-en.tex
+ texmf-dist/doc/generic/pst-solides3d/src/par-cylindres-cones-en.tex
+ texmf-dist/doc/generic/pst-solides3d/src/par-datfile-en.tex
+ texmf-dist/doc/generic/pst-solides3d/src/par-definirfonction-en.tex
+ texmf-dist/doc/generic/pst-solides3d/src/par-definirplanquelconque-en.tex
+ texmf-dist/doc/generic/pst-solides3d/src/par-definitionmaillage-en.tex
+ texmf-dist/doc/generic/pst-solides3d/src/par-eclairageponctuel-en.tex
+ texmf-dist/doc/generic/pst-solides3d/src/par-enleverfacettes-en.tex
+ texmf-dist/doc/generic/pst-solides3d/src/par-extensions-en.tex
+ texmf-dist/doc/generic/pst-solides3d/src/par-face-en.tex
+ texmf-dist/doc/generic/pst-solides3d/src/par-fusion-en.tex
+ texmf-dist/doc/generic/pst-solides3d/src/par-fusionjps-en.tex
+ texmf-dist/doc/generic/pst-solides3d/src/par-geode-en.tex
+ texmf-dist/doc/generic/pst-solides3d/src/par-grille-en.tex
+ texmf-dist/doc/generic/pst-solides3d/src/par-image2d-en.tex
+ texmf-dist/doc/generic/pst-solides3d/src/par-keywords-en.tex
+ texmf-dist/doc/generic/pst-solides3d/src/par-ligne3D-en.tex
+ texmf-dist/doc/generic/pst-solides3d/src/par-lignedeniveau-en.tex
+ texmf-dist/doc/generic/pst-solides3d/src/par-modes-en.tex
+ texmf-dist/doc/generic/pst-solides3d/src/par-new-en.tex
+ texmf-dist/doc/generic/pst-solides3d/src/par-nommersolide-en.tex
+ texmf-dist/doc/generic/pst-solides3d/src/par-numeroterfacettes-en.tex
+ texmf-dist/doc/generic/pst-solides3d/src/par-opacity-en.tex
+ texmf-dist/doc/generic/pst-solides3d/src/par-parametres-en.tex
+ texmf-dist/doc/generic/pst-solides3d/src/par-plan-en.tex
+ texmf-dist/doc/generic/pst-solides3d/src/par-poems-en.tex
+ texmf-dist/doc/generic/pst-solides3d/src/par-point-en.tex
+ texmf-dist/doc/generic/pst-solides3d/src/par-pointagesommets-en.tex
+ texmf-dist/doc/generic/pst-solides3d/src/par-positionnerpointconnu-en.tex
+ texmf-dist/doc/generic/pst-solides3d/src/par-positionnersolide-en.tex
+ texmf-dist/doc/generic/pst-solides3d/src/par-prisme-en.tex
+ texmf-dist/doc/generic/pst-solides3d/src/par-projectionangledroit-en.tex
+ texmf-dist/doc/generic/pst-solides3d/src/par-projectioncercle-en.tex
+ texmf-dist/doc/generic/pst-solides3d/src/par-projectioncourbe-en.tex
+ texmf-dist/doc/generic/pst-solides3d/src/par-projectiondroite-en.tex
+ texmf-dist/doc/generic/pst-solides3d/src/par-projectionligne-en.tex
+ texmf-dist/doc/generic/pst-solides3d/src/par-projectionpoint-en.tex
+ texmf-dist/doc/generic/pst-solides3d/src/par-projectionpolygone-en.tex
+ texmf-dist/doc/generic/pst-solides3d/src/par-projectiontexte-en.tex
+ texmf-dist/doc/generic/pst-solides3d/src/par-projectionvecteur-en.tex
+ texmf-dist/doc/generic/pst-solides3d/src/par-projectionvisibility-en.tex
+ texmf-dist/doc/generic/pst-solides3d/src/par-projpresentation-en.tex
+ texmf-dist/doc/generic/pst-solides3d/src/par-ruban-en.tex
+ texmf-dist/doc/generic/pst-solides3d/src/par-section-en.tex
+ texmf-dist/doc/generic/pst-solides3d/src/par-solidescreux-en.tex
+ texmf-dist/doc/generic/pst-solides3d/src/par-solidespredefinis-en.tex
+ texmf-dist/doc/generic/pst-solides3d/src/par-surfaces-en.tex
+ texmf-dist/doc/generic/pst-solides3d/src/par-surfacesparametrees-en.tex
+ texmf-dist/doc/generic/pst-solides3d/src/par-tracerpolygone-en.tex
+ texmf-dist/doc/generic/pst-solides3d/src/par-transform-en.tex
+ texmf-dist/doc/generic/pst-solides3d/src/par-transformpointconnu-en.tex
+ texmf-dist/doc/generic/pst-solides3d/src/par-tronque-en.tex
+ texmf-dist/doc/generic/pst-solides3d/src/par-tube-en.tex
+ texmf-dist/doc/generic/pst-solides3d/src/par-vecteur-en.tex
+ texmf-dist/doc/generic/pst-solides3d/src/paraboloid-couleurs.dat
+ texmf-dist/doc/generic/pst-solides3d/src/paraboloid-faces.dat
+ texmf-dist/doc/generic/pst-solides3d/src/paraboloid-io.dat
+ texmf-dist/doc/generic/pst-solides3d/src/paraboloid-sommets.dat
+ texmf-dist/doc/generic/pst-solides3d/src/parrot.eps
+ texmf-dist/doc/generic/pst-solides3d/src/pst-solides3d-doc.bib
+ texmf-dist/doc/generic/pst-solides3d/src/pst-solides3d-doc.ps
+ texmf-dist/doc/generic/pst-solides3d/src/pst-solides3d-doc.tex
+ texmf-dist/doc/generic/pst-solides3d/src/rocket.obj
+ texmf-dist/doc/generic/pst-solides3d/src/slicePyramid-couleurs.dat
+ texmf-dist/doc/generic/pst-solides3d/src/slicePyramid-faces.dat
+ texmf-dist/doc/generic/pst-solides3d/src/slicePyramid-io.dat
+ texmf-dist/doc/generic/pst-solides3d/src/slicePyramid-sommets.dat
+ texmf-dist/doc/generic/pst-solides3d/src/sommets_nefer.dat
+ texmf-dist/doc/generic/pst-solides3d/src/sommets_nefer0.dat
+ texmf-dist/doc/generic/pst-solides3d/src/tiger.eps
+ texmf-dist/doc/generic/pst-solides3d/src/tore1836-couleurs.dat
+ texmf-dist/doc/generic/pst-solides3d/src/tore1836-faces.dat
+ texmf-dist/doc/generic/pst-solides3d/src/tore1836-io.dat
+ texmf-dist/doc/generic/pst-solides3d/src/tore1836-sommets.dat
+ texmf-dist/doc/generic/pst-solides3d/src/tore1860-couleurs.dat
+ texmf-dist/doc/generic/pst-solides3d/src/tore1860-faces.dat
+ texmf-dist/doc/generic/pst-solides3d/src/tore1860-io.dat
+ texmf-dist/doc/generic/pst-solides3d/src/tore1860-sommets.dat
+ texmf-dist/doc/generic/pst-solides3d/src/tore1860lemniscate-couleurs.dat
+ texmf-dist/doc/generic/pst-solides3d/src/tore1860lemniscate-faces.dat
+ texmf-dist/doc/generic/pst-solides3d/src/tore1860lemniscate-io.dat
+ texmf-dist/doc/generic/pst-solides3d/src/tore1860lemniscate-sommets.dat
+ texmf-dist/doc/generic/pst-solides3d/src/tore1860ovales-couleurs.dat
+ texmf-dist/doc/generic/pst-solides3d/src/tore1860ovales-faces.dat
+ texmf-dist/doc/generic/pst-solides3d/src/tore1860ovales-io.dat
+ texmf-dist/doc/generic/pst-solides3d/src/tore1860ovales-sommets.dat
+ texmf-dist/doc/generic/pst-solides3d/src/tore1860part-couleurs.dat
+ texmf-dist/doc/generic/pst-solides3d/src/tore1860part-faces.dat
+ texmf-dist/doc/generic/pst-solides3d/src/tore1860part-io.dat
+ texmf-dist/doc/generic/pst-solides3d/src/tore1860part-sommets.dat
+runfiles size=76
texmf-dist/dvips/pst-solides3d/pst-solides3d.pro
texmf-dist/tex/generic/pst-solides3d/pst-solides3d.tex
texmf-dist/tex/latex/pst-solides3d/pst-solides3d.sty
catalogue-ctan /graphics/pstricks/contrib/pst-solides3d
-catalogue-date 2012-11-16 20:45:05 +0100
+catalogue-date 2014-03-28 18:05:25 +0100
catalogue-license lppl1.3
-catalogue-version 4.24
+catalogue-version 4.245
name pst-soroban
category Package
@@ -131503,7 +145106,7 @@ srcfiles size=1
runfiles size=2
texmf-dist/tex/latex/pst-soroban/pst-soroban.sty
catalogue-ctan /graphics/pstricks/contrib/pst-soroban
-catalogue-date 2012-06-12 22:35:22 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.0
@@ -131562,7 +145165,7 @@ docfiles size=10
texmf-dist/doc/generic/pst-support/latex-pstpdf-pdf.tco
texmf-dist/doc/generic/pst-support/pdflatex-autopstpdf.tco
catalogue-ctan /graphics/pstricks/pst-support
-catalogue-date 2012-04-16 17:52:21 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 2009-02-05
@@ -131610,13 +145213,13 @@ runfiles size=2
texmf-dist/tex/generic/pst-thick/pst-thick.tex
texmf-dist/tex/latex/pst-thick/pst-thick.sty
catalogue-ctan /graphics/pstricks/contrib/pst-thick
-catalogue-date 2012-04-16 17:52:21 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.0
name pst-tools
category Package
-revision 27986
+revision 34067
shortdesc PStricks support functions.
longdesc The package provides helper functions for other PSTricks
longdesc related packages.
@@ -131624,18 +145227,16 @@ docfiles size=23
texmf-dist/doc/generic/pst-tools/Changes
texmf-dist/doc/generic/pst-tools/README details="Readme"
texmf-dist/doc/generic/pst-tools/pst-tools-doc.bib
- texmf-dist/doc/generic/pst-tools/pst-tools-doc.pdf details="Package documentation"
+ texmf-dist/doc/generic/pst-tools/pst-tools-doc.pdf
texmf-dist/doc/generic/pst-tools/pst-tools-doc.tex
-srcfiles size=1
- texmf-dist/source/generic/pst-tools/Makefile
runfiles size=5
texmf-dist/dvips/pst-tools/pst-tools.pro
texmf-dist/tex/generic/pst-tools/pst-tools.tex
texmf-dist/tex/latex/pst-tools/pst-tools.sty
catalogue-ctan /graphics/pstricks/contrib/pst-tools
-catalogue-date 2012-10-16 22:55:53 +0200
+catalogue-date 2014-05-16 12:23:05 +0200
catalogue-license lppl
-catalogue-version 0.02
+catalogue-version 0.05
name pst-tree
category Package
@@ -131681,7 +145282,7 @@ runfiles size=21
texmf-dist/tex/generic/pst-tvz/pst-tvz.tex
texmf-dist/tex/latex/pst-tvz/pst-tvz.sty
catalogue-ctan /graphics/pstricks/contrib/pst-tvz
-catalogue-date 2012-04-16 17:52:21 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.01
@@ -131730,7 +145331,7 @@ runfiles size=463
texmf-dist/dvips/pst-vectorian/psvectorian.pro
texmf-dist/tex/latex/pst-vectorian/psvectorian.sty
catalogue-ctan /graphics/pstricks/contrib/pst-vectorian
-catalogue-date 2013-01-26 20:44:01 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 0.4
@@ -131749,7 +145350,7 @@ docfiles size=28
runfiles size=2
texmf-dist/tex/latex/pst-vowel/pst-vowel.sty
catalogue-ctan /macros/latex/contrib/pst-vowel
-catalogue-date 2012-04-16 17:52:21 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.0
@@ -131779,7 +145380,7 @@ catalogue-version 1.24
name pst2pdf
category Package
-revision 29333
+revision 31118
shortdesc A script to compile pstricks documents via pdftex.
longdesc The script extracts the preamble of the document and runs all
longdesc \begin{postscript}...\end{postscript}
@@ -131791,26 +145392,29 @@ longdesc the script replaces the environments with \includegraphics to
longdesc include the processed snippets. Detail documentation is
longdesc acquired from the document itself via Perldoc.
depend pst2pdf.ARCH
-docfiles size=129
+docfiles size=156
texmf-dist/doc/latex/pst2pdf/Changes
texmf-dist/doc/latex/pst2pdf/Makefile.doc
texmf-dist/doc/latex/pst2pdf/README details="Readme"
texmf-dist/doc/latex/pst2pdf/pst2pdf-doc.bib
texmf-dist/doc/latex/pst2pdf/pst2pdf-doc.pdf
texmf-dist/doc/latex/pst2pdf/pst2pdf-doc.tex
+ texmf-dist/doc/latex/pst2pdf/test.pdf
+ texmf-dist/doc/latex/pst2pdf/test.tex
texmf-dist/doc/latex/pst2pdf/test1-pdf.pdf
texmf-dist/doc/latex/pst2pdf/test1.tex
texmf-dist/doc/latex/pst2pdf/test2-pdf.pdf
+ texmf-dist/doc/latex/pst2pdf/test2.pdf
texmf-dist/doc/latex/pst2pdf/test2.tex
texmf-dist/doc/latex/pst2pdf/test3-pdf.pdf
texmf-dist/doc/latex/pst2pdf/test3.tex
texmf-dist/doc/latex/pst2pdf/tux.jpg
-runfiles size=6
+runfiles size=7
texmf-dist/scripts/pst2pdf/pst2pdf.pl
catalogue-ctan /graphics/pstricks/scripts/pst2pdf
-catalogue-date 2013-03-10 15:10:17 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license gpl
-catalogue-version 0.14
+catalogue-version 0.15
name pst2pdf.alpha-linux
category Package
@@ -131896,13 +145500,6 @@ shortdesc i386-solaris files of pst2pdf
binfiles arch=i386-solaris size=1
bin/i386-solaris/pst2pdf
-name pst2pdf.mips-irix
-category Package
-revision 29949
-shortdesc mips-irix files of pst2pdf
-binfiles arch=mips-irix size=1
- bin/mips-irix/pst2pdf
-
name pst2pdf.mipsel-linux
category Package
revision 29946
@@ -131938,6 +145535,13 @@ shortdesc win32 files of pst2pdf
binfiles arch=win32 size=1
bin/win32/pst2pdf.exe
+name pst2pdf.x86_64-cygwin
+category Package
+revision 33557
+shortdesc x86_64-cygwin files of pst2pdf
+binfiles arch=x86_64-cygwin size=1
+ bin/x86_64-cygwin/pst2pdf
+
name pst2pdf.x86_64-darwin
category Package
revision 29333
@@ -131961,7 +145565,7 @@ binfiles arch=x86_64-solaris size=1
name pstool
category Package
-revision 29343
+revision 34015
shortdesc Support for psfrag within pdfLaTeX.
longdesc The package works in the same sort of way as pst-pdf, but it
longdesc also processes the PostScript graphics with psfrag to add
@@ -131974,53 +145578,17 @@ longdesc previous compilation of the document). This drastically speeds
longdesc up the running of the package in the typical case (though the
longdesc first run of any document is inevitably just as slow as with
longdesc any similar package).
-docfiles size=341
+docfiles size=123
texmf-dist/doc/latex/pstool/README details="Readme"
- texmf-dist/doc/latex/pstool/example-blx.bib
texmf-dist/doc/latex/pstool/example-pstool.tex
- texmf-dist/doc/latex/pstool/example.aux
- texmf-dist/doc/latex/pstool/example.bbl
- texmf-dist/doc/latex/pstool/example.blg
- texmf-dist/doc/latex/pstool/example.log
- texmf-dist/doc/latex/pstool/example.pdf
- texmf-dist/doc/latex/pstool/example.run.xml
- texmf-dist/doc/latex/pstool/example.synctex
texmf-dist/doc/latex/pstool/example.tex
texmf-dist/doc/latex/pstool/macros.tex
texmf-dist/doc/latex/pstool/pstool.pdf details="Package documentation"
- texmf-dist/doc/latex/pstool/pstool.sty
- texmf-dist/doc/latex/pstool/subdir/trial2-psfrag-pstool-blx.bib
- texmf-dist/doc/latex/pstool/subdir/trial2-psfrag-pstool.aux
- texmf-dist/doc/latex/pstool/subdir/trial2-psfrag-pstool.bbl
- texmf-dist/doc/latex/pstool/subdir/trial2-psfrag-pstool.dvi
- texmf-dist/doc/latex/pstool/subdir/trial2-psfrag-pstool.log
- texmf-dist/doc/latex/pstool/subdir/trial2-psfrag-pstool.ps
- texmf-dist/doc/latex/pstool/subdir/trial2-psfrag-pstool.run.xml
- texmf-dist/doc/latex/pstool/subdir/trial2-psfrag-pstool.tex
texmf-dist/doc/latex/pstool/subdir/trial2-psfrag.eps
- texmf-dist/doc/latex/pstool/subdir/trial2-psfrag.pdf
texmf-dist/doc/latex/pstool/subdir/trial2-psfrag.tex
- texmf-dist/doc/latex/pstool/trial-pstool-blx.bib
- texmf-dist/doc/latex/pstool/trial-pstool.aux
- texmf-dist/doc/latex/pstool/trial-pstool.bbl
- texmf-dist/doc/latex/pstool/trial-pstool.dvi
- texmf-dist/doc/latex/pstool/trial-pstool.log
- texmf-dist/doc/latex/pstool/trial-pstool.ps
- texmf-dist/doc/latex/pstool/trial-pstool.run.xml
- texmf-dist/doc/latex/pstool/trial-pstool.tex
texmf-dist/doc/latex/pstool/trial.eps
- texmf-dist/doc/latex/pstool/trial.pdf
texmf-dist/doc/latex/pstool/trial.tex
- texmf-dist/doc/latex/pstool/trial2-pstool-blx.bib
- texmf-dist/doc/latex/pstool/trial2-pstool.aux
- texmf-dist/doc/latex/pstool/trial2-pstool.bbl
- texmf-dist/doc/latex/pstool/trial2-pstool.dvi
- texmf-dist/doc/latex/pstool/trial2-pstool.log
- texmf-dist/doc/latex/pstool/trial2-pstool.ps
- texmf-dist/doc/latex/pstool/trial2-pstool.run.xml
- texmf-dist/doc/latex/pstool/trial2-pstool.tex
texmf-dist/doc/latex/pstool/trial2.eps
- texmf-dist/doc/latex/pstool/trial2.pdf
texmf-dist/doc/latex/pstool/trial2.tex
srcfiles size=13
texmf-dist/source/latex/pstool/pstool.ins
@@ -132028,13 +145596,13 @@ srcfiles size=13
runfiles size=5
texmf-dist/tex/latex/pstool/pstool.sty
catalogue-ctan /macros/latex/contrib/pstool
-catalogue-date 2013-03-11 10:36:18 +0100
+catalogue-date 2014-05-11 12:42:16 +0200
catalogue-license lppl
-catalogue-version 1.5a
+catalogue-version 1.5c
name pstools
category TLCore
-revision 29764
+revision 33736
catalogue ps2eps
shortdesc Produce Encapsulated PostScript from PostScript.
longdesc Produce Encapsulated PostScript Files (EPS/EPSF) from a one-
@@ -132096,7 +145664,7 @@ binfiles arch=amd64-freebsd size=6
name pstools.amd64-kfreebsd
category TLCore
-revision 30655
+revision 33529
shortdesc amd64-kfreebsd files of pstools
binfiles arch=amd64-kfreebsd size=6
bin/amd64-kfreebsd/bbox
@@ -132106,7 +145674,7 @@ binfiles arch=amd64-kfreebsd size=6
name pstools.amd64-netbsd
category TLCore
-revision 30660
+revision 33726
shortdesc amd64-netbsd files of pstools
binfiles arch=amd64-netbsd size=6
bin/amd64-netbsd/bbox
@@ -132126,7 +145694,7 @@ binfiles arch=armel-linux size=6
name pstools.armhf-linux
category TLCore
-revision 30015
+revision 33545
shortdesc armhf-linux files of pstools
binfiles arch=armhf-linux size=5
bin/armhf-linux/bbox
@@ -132136,7 +145704,7 @@ binfiles arch=armhf-linux size=5
name pstools.i386-cygwin
category TLCore
-revision 30526
+revision 34161
shortdesc i386-cygwin files of pstools
binfiles arch=i386-cygwin size=6
bin/i386-cygwin/bbox.exe
@@ -132156,7 +145724,7 @@ binfiles arch=i386-freebsd size=5
name pstools.i386-kfreebsd
category TLCore
-revision 30440
+revision 33529
shortdesc i386-kfreebsd files of pstools
binfiles arch=i386-kfreebsd size=5
bin/i386-kfreebsd/bbox
@@ -132166,7 +145734,7 @@ binfiles arch=i386-kfreebsd size=5
name pstools.i386-linux
category TLCore
-revision 30088
+revision 33479
shortdesc i386-linux files of pstools
binfiles arch=i386-linux size=5
bin/i386-linux/bbox
@@ -132176,9 +145744,9 @@ binfiles arch=i386-linux size=5
name pstools.i386-netbsd
category TLCore
-revision 30191
+revision 33562
shortdesc i386-netbsd files of pstools
-binfiles arch=i386-netbsd size=6
+binfiles arch=i386-netbsd size=5
bin/i386-netbsd/bbox
bin/i386-netbsd/ps2eps
bin/i386-netbsd/ps2frag
@@ -132186,7 +145754,7 @@ binfiles arch=i386-netbsd size=6
name pstools.i386-solaris
category TLCore
-revision 30112
+revision 34203
shortdesc i386-solaris files of pstools
binfiles arch=i386-solaris size=6
bin/i386-solaris/bbox
@@ -132194,19 +145762,9 @@ binfiles arch=i386-solaris size=6
bin/i386-solaris/ps2frag
bin/i386-solaris/pslatex
-name pstools.mips-irix
-category TLCore
-revision 29949
-shortdesc mips-irix files of pstools
-binfiles arch=mips-irix size=14
- bin/mips-irix/bbox
- bin/mips-irix/ps2eps
- bin/mips-irix/ps2frag
- bin/mips-irix/pslatex
-
name pstools.mipsel-linux
category TLCore
-revision 29946
+revision 33811
shortdesc mipsel-linux files of pstools
binfiles arch=mipsel-linux size=6
bin/mipsel-linux/bbox
@@ -132216,7 +145774,7 @@ binfiles arch=mipsel-linux size=6
name pstools.powerpc-linux
category TLCore
-revision 29833
+revision 33561
shortdesc powerpc-linux files of pstools
binfiles arch=powerpc-linux size=6
bin/powerpc-linux/bbox
@@ -132226,7 +145784,7 @@ binfiles arch=powerpc-linux size=6
name pstools.sparc-solaris
category TLCore
-revision 29877
+revision 33871
shortdesc sparc-solaris files of pstools
binfiles arch=sparc-solaris size=6
bin/sparc-solaris/bbox
@@ -132236,7 +145794,7 @@ binfiles arch=sparc-solaris size=6
name pstools.universal-darwin
category TLCore
-revision 30764
+revision 34201
shortdesc universal-darwin files of pstools
binfiles arch=universal-darwin size=13
bin/universal-darwin/bbox
@@ -132252,9 +145810,19 @@ binfiles arch=win32 size=3
bin/win32/bbox.exe
bin/win32/ps2eps.exe
+name pstools.x86_64-cygwin
+category TLCore
+revision 34161
+shortdesc x86_64-cygwin files of pstools
+binfiles arch=x86_64-cygwin size=6
+ bin/x86_64-cygwin/bbox.exe
+ bin/x86_64-cygwin/ps2eps
+ bin/x86_64-cygwin/ps2frag
+ bin/x86_64-cygwin/pslatex
+
name pstools.x86_64-darwin
category TLCore
-revision 29809
+revision 34201
shortdesc x86_64-darwin files of pstools
binfiles arch=x86_64-darwin size=7
bin/x86_64-darwin/bbox
@@ -132264,7 +145832,7 @@ binfiles arch=x86_64-darwin size=7
name pstools.x86_64-linux
category TLCore
-revision 30204
+revision 33723
shortdesc x86_64-linux files of pstools
binfiles arch=x86_64-linux size=6
bin/x86_64-linux/bbox
@@ -132274,7 +145842,7 @@ binfiles arch=x86_64-linux size=6
name pstools.x86_64-solaris
category TLCore
-revision 30112
+revision 34203
shortdesc x86_64-solaris files of pstools
binfiles arch=x86_64-solaris size=6
bin/x86_64-solaris/bbox
@@ -132284,27 +145852,31 @@ binfiles arch=x86_64-solaris size=6
name pstricks
category Package
-revision 30616
+revision 34155
+catalogue pstricks-base
shortdesc PostScript macros for TeX.
-longdesc An extensive collection of macros for generating PostScript
-longdesc that is usable with most TeX macro formats, including Plain
-longdesc TeX, LaTeX, AMS-TeX, and AMS-LaTeX. Included are macros for
-longdesc colour, graphics, pie charts, rotation, trees and overlays. It
-longdesc has many special features, including a wide variety of graphics
-longdesc (picture drawing) macros, with a flexible interface and with
-longdesc colour support. There are macros for colouring or shading the
-longdesc cells of tables. The package pstricks-add contains bug-fixes
-longdesc and additions for pstricks (among other things). PSTricks uses
-longdesc PostScript \special commands, which are not supported by
-longdesc PDF(La)TeX. This limitation may be overcome by using either the
-longdesc pst-pdf or the pdftricks package, to generate a PDF inclusion
-longdesc from a PSTricks diagram.
-docfiles size=2286
+longdesc PStricks offers an extensive collection of macros for
+longdesc generating PostScript that is usable with most TeX macro
+longdesc formats, including Plain TeX, LaTeX, AMS-TeX, and AMS-LaTeX.
+longdesc Included are macros for colour, graphics, pie charts, rotation,
+longdesc trees and overlays. It has many special features, including a
+longdesc wide variety of graphics (picture drawing) macros, with a
+longdesc flexible interface and with colour support. There are macros
+longdesc for colouring or shading the cells of tables. The package
+longdesc pstricks-add contains bug-fixes and additions for pstricks
+longdesc (among other things). PSTricks uses PostScript \special
+longdesc 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. Note that this is one of a pair of catalogue entries
+longdesc for PSTricks; the other one (PSTricks) is acting as a "stub",
+longdesc while editorial work on catalogue entries for PSTricks
+longdesc contributed is completed.
+docfiles size=2033
texmf-dist/doc/generic/pstricks/Changes
texmf-dist/doc/generic/pstricks/Changes.dvips
texmf-dist/doc/generic/pstricks/Changes.generic
texmf-dist/doc/generic/pstricks/Changes.latex
- texmf-dist/doc/generic/pstricks/Makefile
texmf-dist/doc/generic/pstricks/PSTricks.bib
texmf-dist/doc/generic/pstricks/README details="Readme"
texmf-dist/doc/generic/pstricks/ctandir.sty
@@ -132331,31 +145903,23 @@ docfiles size=2286
texmf-dist/doc/generic/pstricks/pst-news12.tex
texmf-dist/doc/generic/pstricks/pst-news13.pdf
texmf-dist/doc/generic/pstricks/pst-news13.tex
- texmf-dist/doc/generic/pstricks/pst-quickref.pdf
+ texmf-dist/doc/generic/pstricks/pst-news14.pdf
+ texmf-dist/doc/generic/pstricks/pst-news14.tex
texmf-dist/doc/generic/pstricks/pst-user.pdf
texmf-dist/doc/generic/pstricks/pst-user.tgz
- texmf-dist/doc/generic/pstricks/pst-usrfull.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/pstnews97-15.pdf
- texmf-dist/doc/generic/pstricks/pstnews97-15.tex
texmf-dist/doc/generic/pstricks/pstricks-add-data9.data
texmf-dist/doc/generic/pstricks/pstricks-bug.tex
texmf-dist/doc/generic/pstricks/pstricks-doc.pdf
texmf-dist/doc/generic/pstricks/test-pst.pdf
texmf-dist/doc/generic/pstricks/test-pst.tex
-runfiles size=115
+runfiles size=116
texmf-dist/dvips/pstricks/pst-algparser.pro
texmf-dist/dvips/pstricks/pst-dots.pro
texmf-dist/dvips/pstricks/pst-dots97.pro
texmf-dist/dvips/pstricks/pstricks.pro
texmf-dist/dvips/pstricks/pstricks97.pro
texmf-dist/tex/generic/pstricks/config/Changes
- texmf-dist/tex/generic/pstricks/config/README
+ texmf-dist/tex/generic/pstricks/config/README.cfg
texmf-dist/tex/generic/pstricks/config/distiller.cfg
texmf-dist/tex/generic/pstricks/config/dvips.cfg
texmf-dist/tex/generic/pstricks/config/dvipsone.cfg
@@ -132365,7 +145929,6 @@ runfiles size=115
texmf-dist/tex/generic/pstricks/config/xdvipdfmx.cfg
texmf-dist/tex/generic/pstricks/pst-fp.tex
texmf-dist/tex/generic/pstricks/pst-key.tex
- texmf-dist/tex/generic/pstricks/pstPlain.tex
texmf-dist/tex/generic/pstricks/pstricks.con
texmf-dist/tex/generic/pstricks/pstricks.tex
texmf-dist/tex/generic/pstricks/pstricks97.tex
@@ -132375,41 +145938,39 @@ runfiles size=115
texmf-dist/tex/latex/pstricks/pstcol.sty
texmf-dist/tex/latex/pstricks/pstricks.sty
catalogue-ctan /graphics/pstricks/base
-catalogue-date 2013-05-21 21:04:45 +0200
-catalogue-license lppl1.3
-catalogue-version 2.43
+catalogue-date 2014-05-20 11:23:08 +0200
+catalogue-license lppl
+catalogue-version 2.54a
name pstricks-add
category Package
-revision 28750
+revision 34105
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 many additional features
-longdesc for the basic pstricks, pst-plot and pst-node, including: -
-longdesc bugfixes; - new options for the pspicture environment; -
-longdesc arrows; - braces as node connection/linestyle; - extended axes
-longdesc for plots (e.g., logarithm axes); - polar plots; - plotting
-longdesc tangent lines of curves or functions; - solving and printing
-longdesc differential equationd; - box plots; - matrix plots; and - pie
-longdesc charts. The package makes use of PostScript routines provided
-longdesc by pst-math.
-docfiles size=723
+longdesc for the basic pstricks, pst-plot and pst-node, including:
+longdesc bugfixes; new options for the pspicture environment; arrows;
+longdesc braces as node connection/linestyle; extended axes for plots
+longdesc (e.g., logarithm axes); polar plots; plotting tangent lines of
+longdesc curves or functions; solving and printing differential
+longdesc equations; box plots; matrix plots; and pie charts. The package
+longdesc makes use of PostScript routines provided by pst-math.
+docfiles size=2019
texmf-dist/doc/generic/pstricks-add/Changes
- texmf-dist/doc/generic/pstricks-add/README
+ texmf-dist/doc/generic/pstricks-add/README details="Readme"
texmf-dist/doc/generic/pstricks-add/pstricks-add-doc.bib
texmf-dist/doc/generic/pstricks-add/pstricks-add-doc.dat
- texmf-dist/doc/generic/pstricks-add/pstricks-add-doc.pdf details="Package documentation"
+ texmf-dist/doc/generic/pstricks-add/pstricks-add-doc.pdf
texmf-dist/doc/generic/pstricks-add/pstricks-add-doc.tex
-srcfiles size=1
- texmf-dist/source/generic/pstricks-add/Makefile
-runfiles size=26
+runfiles size=28
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.cfg
texmf-dist/tex/latex/pstricks-add/pstricks-add.sty
catalogue-ctan /graphics/pstricks/contrib/pstricks-add
-catalogue-date 2012-09-28 14:00:56 +0200
+catalogue-date 2014-05-18 10:19:00 +0200
catalogue-license lppl
-catalogue-version 3.59
+catalogue-version 3.68
name pstricks-examples
category Package
@@ -134511,7 +148072,7 @@ docfiles size=2561
texmf-dist/doc/latex/pstricks-examples/screxareport.cls
texmf-dist/doc/latex/pstricks-examples/textdemo.sty
catalogue-ctan /info/examples/PSTricks_6_de
-catalogue-date 2012-04-05 17:28:29 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
name pstricks-examples-en
@@ -136911,21 +150472,28 @@ docfiles size=2651
texmf-dist/doc/latex/pstricks-examples-en/test10.dat
texmf-dist/doc/latex/pstricks-examples-en/textdemo.sty
catalogue-ctan /info/examples/PSTricks_en
-catalogue-date 2012-04-05 17:28:29 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
name pstricks_calcnotes
category Package
-revision 18816
-docfiles size=297
- texmf-dist/doc/latex/pstricks_calcnotes/Convert_PstricsCode_To_Pdf/Readme.txt
- texmf-dist/doc/latex/pstricks_calcnotes/Convert_PstricsCode_To_Pdf/convert.tex
- texmf-dist/doc/latex/pstricks_calcnotes/Convert_PstricsCode_To_Pdf/test.pdf
- texmf-dist/doc/latex/pstricks_calcnotes/For_Pdf_Output/Fig1-1.pdf
- texmf-dist/doc/latex/pstricks_calcnotes/For_Pdf_Output/Fig1-2.pdf
- texmf-dist/doc/latex/pstricks_calcnotes/For_Pdf_Output/Fig1-3.pdf
- texmf-dist/doc/latex/pstricks_calcnotes/For_Pdf_Output/Fig2-1.pdf
- texmf-dist/doc/latex/pstricks_calcnotes/For_Pdf_Output/Fig2-2.pdf
+revision 33361
+shortdesc Use of PStricks in calculus lecture notes.
+longdesc The bundle shows the construction of PStricks macros to draw
+longdesc Riemann sums of an integral and to draw the vector field of an
+longdesc ordinary differential equation. The results are illustrated in
+longdesc a fragment of lecture notes.
+docfiles size=2581
+ texmf-dist/doc/latex/pstricks_calcnotes/Convert_PstricksCode_To_Pdf/Readme.txt
+ texmf-dist/doc/latex/pstricks_calcnotes/Convert_PstricksCode_To_Pdf/convert.tex
+ texmf-dist/doc/latex/pstricks_calcnotes/Convert_PstricksCode_To_Pdf/test.pdf
+ texmf-dist/doc/latex/pstricks_calcnotes/For_Pdf_Output/Fig13.pdf
+ texmf-dist/doc/latex/pstricks_calcnotes/For_Pdf_Output/Fig14.pdf
+ texmf-dist/doc/latex/pstricks_calcnotes/For_Pdf_Output/Fig1a.pdf
+ texmf-dist/doc/latex/pstricks_calcnotes/For_Pdf_Output/Fig1b.pdf
+ texmf-dist/doc/latex/pstricks_calcnotes/For_Pdf_Output/Fig1c.pdf
+ texmf-dist/doc/latex/pstricks_calcnotes/For_Pdf_Output/Fig2a.pdf
+ texmf-dist/doc/latex/pstricks_calcnotes/For_Pdf_Output/Fig2b.pdf
texmf-dist/doc/latex/pstricks_calcnotes/For_Pdf_Output/Fig3.pdf
texmf-dist/doc/latex/pstricks_calcnotes/For_Pdf_Output/Fig4.pdf
texmf-dist/doc/latex/pstricks_calcnotes/For_Pdf_Output/Fig5.pdf
@@ -136933,10 +150501,34 @@ docfiles size=297
texmf-dist/doc/latex/pstricks_calcnotes/For_Pdf_Output/Fig7.pdf
texmf-dist/doc/latex/pstricks_calcnotes/For_Pdf_Output/Fig8.pdf
texmf-dist/doc/latex/pstricks_calcnotes/For_Pdf_Output/Fig9.pdf
- texmf-dist/doc/latex/pstricks_calcnotes/For_Pdf_Output/TwoApps_Pdf.tex
- texmf-dist/doc/latex/pstricks_calcnotes/For_Ps_Output/TwoApps_Ps.tex
- texmf-dist/doc/latex/pstricks_calcnotes/README
- texmf-dist/doc/latex/pstricks_calcnotes/two_apps.pdf
+ texmf-dist/doc/latex/pstricks_calcnotes/For_Pdf_Output/ThreeAppsPDF.tex
+ texmf-dist/doc/latex/pstricks_calcnotes/For_Pdf_Output/b6of1.pdf
+ texmf-dist/doc/latex/pstricks_calcnotes/For_Pdf_Output/b6of2.pdf
+ texmf-dist/doc/latex/pstricks_calcnotes/For_Pdf_Output/b6of3.pdf
+ texmf-dist/doc/latex/pstricks_calcnotes/For_Pdf_Output/b6of4.pdf
+ texmf-dist/doc/latex/pstricks_calcnotes/For_Pdf_Output/vecb1.pdf
+ texmf-dist/doc/latex/pstricks_calcnotes/For_Pdf_Output/vecb2.pdf
+ texmf-dist/doc/latex/pstricks_calcnotes/For_Pdf_Output/vecb3.pdf
+ texmf-dist/doc/latex/pstricks_calcnotes/For_Pdf_Output/vecb4.pdf
+ texmf-dist/doc/latex/pstricks_calcnotes/For_Pdf_Output/vecb5.pdf
+ texmf-dist/doc/latex/pstricks_calcnotes/For_Pdf_Output/vecb6.pdf
+ texmf-dist/doc/latex/pstricks_calcnotes/For_Ps_Output/ThreeAppsPS.tex
+ texmf-dist/doc/latex/pstricks_calcnotes/For_Ps_Output/b6of1.eps
+ texmf-dist/doc/latex/pstricks_calcnotes/For_Ps_Output/b6of2.eps
+ texmf-dist/doc/latex/pstricks_calcnotes/For_Ps_Output/b6of3.eps
+ texmf-dist/doc/latex/pstricks_calcnotes/For_Ps_Output/b6of4.eps
+ texmf-dist/doc/latex/pstricks_calcnotes/For_Ps_Output/vecb1.eps
+ texmf-dist/doc/latex/pstricks_calcnotes/For_Ps_Output/vecb2.eps
+ texmf-dist/doc/latex/pstricks_calcnotes/For_Ps_Output/vecb3.eps
+ texmf-dist/doc/latex/pstricks_calcnotes/For_Ps_Output/vecb4.eps
+ texmf-dist/doc/latex/pstricks_calcnotes/For_Ps_Output/vecb5.eps
+ texmf-dist/doc/latex/pstricks_calcnotes/For_Ps_Output/vecb6.eps
+ texmf-dist/doc/latex/pstricks_calcnotes/README details="Readme"
+ texmf-dist/doc/latex/pstricks_calcnotes/ThreeAppsPDF.pdf
+catalogue-ctan /info/pstricks_calcnotes
+catalogue-date 2014-04-03 16:06:38 +0200
+catalogue-license lppl
+catalogue-version 1.2
name psu-thesis
category Package
@@ -136959,13 +150551,13 @@ runfiles size=13
texmf-dist/bibtex/bst/psu-thesis/psuthesis.bst
texmf-dist/tex/latex/psu-thesis/psu-thesis.sty
catalogue-ctan /macros/latex/contrib/psu-thesis
-catalogue-date 2012-06-13 12:41:44 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.1
name psutils
category TLCore
-revision 29764
+revision 33992
shortdesc PostScript utilities.
longdesc A bundle of utilities for manipulating PostScript documents,
longdesc including page selection and rearrangement, resizing the page,
@@ -136973,37 +150565,17 @@ longdesc arrangement into signatures for booklet printing, and page
longdesc merging for n-up printing. Utilities include psbook, psselect,
longdesc pstops, psnup, psresize, epsffit.
depend psutils.ARCH
-docfiles size=48
+docfiles size=28
texmf-dist/doc/man/man1/epsffit.1
texmf-dist/doc/man/man1/epsffit.man1.pdf
texmf-dist/doc/man/man1/extractres.1
texmf-dist/doc/man/man1/extractres.man1.pdf
- texmf-dist/doc/man/man1/fixdlsrps.1
- texmf-dist/doc/man/man1/fixdlsrps.man1.pdf
- texmf-dist/doc/man/man1/fixfmps.1
- texmf-dist/doc/man/man1/fixfmps.man1.pdf
- texmf-dist/doc/man/man1/fixpsditps.1
- texmf-dist/doc/man/man1/fixpsditps.man1.pdf
- texmf-dist/doc/man/man1/fixpspps.1
- texmf-dist/doc/man/man1/fixpspps.man1.pdf
- texmf-dist/doc/man/man1/fixscribeps.1
- texmf-dist/doc/man/man1/fixscribeps.man1.pdf
- texmf-dist/doc/man/man1/fixtpps.1
- texmf-dist/doc/man/man1/fixtpps.man1.pdf
- texmf-dist/doc/man/man1/fixwfwps.1
- texmf-dist/doc/man/man1/fixwfwps.man1.pdf
- texmf-dist/doc/man/man1/fixwpps.1
- texmf-dist/doc/man/man1/fixwpps.man1.pdf
- texmf-dist/doc/man/man1/fixwwps.1
- texmf-dist/doc/man/man1/fixwwps.man1.pdf
- texmf-dist/doc/man/man1/getafm.1
- texmf-dist/doc/man/man1/getafm.man1.pdf
texmf-dist/doc/man/man1/includeres.1
texmf-dist/doc/man/man1/includeres.man1.pdf
texmf-dist/doc/man/man1/psbook.1
texmf-dist/doc/man/man1/psbook.man1.pdf
- texmf-dist/doc/man/man1/psmerge.1
- texmf-dist/doc/man/man1/psmerge.man1.pdf
+ texmf-dist/doc/man/man1/psjoin.1
+ texmf-dist/doc/man/man1/psjoin.man1.pdf
texmf-dist/doc/man/man1/psnup.1
texmf-dist/doc/man/man1/psnup.man1.pdf
texmf-dist/doc/man/man1/psresize.1
@@ -137012,574 +150584,337 @@ docfiles size=48
texmf-dist/doc/man/man1/psselect.man1.pdf
texmf-dist/doc/man/man1/pstops.1
texmf-dist/doc/man/man1/pstops.man1.pdf
-runfiles size=17
+ texmf-dist/doc/man/man1/psutils.1
+ texmf-dist/doc/man/man1/psutils.man1.pdf
+runfiles size=7
texmf-dist/dvips/getafm/getafm.ps
+ texmf-dist/psutils/paper.cfg
texmf-dist/scripts/psutils/extractres.pl
- texmf-dist/scripts/psutils/fixdlsrps.pl
- texmf-dist/scripts/psutils/fixfmps.pl
- texmf-dist/scripts/psutils/fixpsditps.pl
- texmf-dist/scripts/psutils/fixpspps.pl
- texmf-dist/scripts/psutils/fixscribeps.pl
- texmf-dist/scripts/psutils/fixtpps.pl
- texmf-dist/scripts/psutils/fixwfwps.pl
- texmf-dist/scripts/psutils/fixwpps.pl
- texmf-dist/scripts/psutils/fixwwps.pl
- texmf-dist/scripts/psutils/getafm.sh
texmf-dist/scripts/psutils/includeres.pl
- texmf-dist/scripts/psutils/psmerge.pl
- texmf-dist/scripts/psutils/showchar.sh
-catalogue-ctan /support/psutils
-catalogue-date 2012-06-13 12:41:44 +0200
+ texmf-dist/scripts/psutils/psjoin.pl
+catalogue-ctan /obsolete/support/psutils
+catalogue-date 2014-02-16 23:23:15 +0100
catalogue-license other-free
catalogue-version p17
name psutils.alpha-linux
category TLCore
-revision 29834
+revision 33553
shortdesc alpha-linux files of psutils
-binfiles arch=alpha-linux size=47
+binfiles arch=alpha-linux size=119
bin/alpha-linux/epsffit
bin/alpha-linux/extractres
- bin/alpha-linux/fixdlsrps
- bin/alpha-linux/fixfmps
- 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/getafm
bin/alpha-linux/includeres
bin/alpha-linux/psbook
- bin/alpha-linux/psmerge
+ bin/alpha-linux/psjoin
bin/alpha-linux/psnup
bin/alpha-linux/psresize
bin/alpha-linux/psselect
bin/alpha-linux/pstops
- bin/alpha-linux/showchar
name psutils.amd64-freebsd
category TLCore
-revision 29785
+revision 33488
shortdesc amd64-freebsd files of psutils
-binfiles arch=amd64-freebsd size=43
+binfiles arch=amd64-freebsd size=94
bin/amd64-freebsd/epsffit
bin/amd64-freebsd/extractres
- bin/amd64-freebsd/fixdlsrps
- bin/amd64-freebsd/fixfmps
- bin/amd64-freebsd/fixpsditps
- bin/amd64-freebsd/fixpspps
- bin/amd64-freebsd/fixscribeps
- bin/amd64-freebsd/fixtpps
- bin/amd64-freebsd/fixwfwps
- bin/amd64-freebsd/fixwpps
- bin/amd64-freebsd/fixwwps
- bin/amd64-freebsd/getafm
bin/amd64-freebsd/includeres
bin/amd64-freebsd/psbook
- bin/amd64-freebsd/psmerge
+ bin/amd64-freebsd/psjoin
bin/amd64-freebsd/psnup
bin/amd64-freebsd/psresize
bin/amd64-freebsd/psselect
bin/amd64-freebsd/pstops
- bin/amd64-freebsd/showchar
name psutils.amd64-kfreebsd
category TLCore
-revision 30655
+revision 33864
shortdesc amd64-kfreebsd files of psutils
-binfiles arch=amd64-kfreebsd size=42
+binfiles arch=amd64-kfreebsd size=89
bin/amd64-kfreebsd/epsffit
bin/amd64-kfreebsd/extractres
- bin/amd64-kfreebsd/fixdlsrps
- bin/amd64-kfreebsd/fixfmps
- bin/amd64-kfreebsd/fixpsditps
- bin/amd64-kfreebsd/fixpspps
- bin/amd64-kfreebsd/fixscribeps
- bin/amd64-kfreebsd/fixtpps
- bin/amd64-kfreebsd/fixwfwps
- bin/amd64-kfreebsd/fixwpps
- bin/amd64-kfreebsd/fixwwps
- bin/amd64-kfreebsd/getafm
bin/amd64-kfreebsd/includeres
bin/amd64-kfreebsd/psbook
- bin/amd64-kfreebsd/psmerge
+ bin/amd64-kfreebsd/psjoin
bin/amd64-kfreebsd/psnup
bin/amd64-kfreebsd/psresize
bin/amd64-kfreebsd/psselect
bin/amd64-kfreebsd/pstops
- bin/amd64-kfreebsd/showchar
name psutils.amd64-netbsd
category TLCore
-revision 30660
+revision 33726
shortdesc amd64-netbsd files of psutils
-binfiles arch=amd64-netbsd size=44
+binfiles arch=amd64-netbsd size=94
bin/amd64-netbsd/epsffit
bin/amd64-netbsd/extractres
- bin/amd64-netbsd/fixdlsrps
- bin/amd64-netbsd/fixfmps
- bin/amd64-netbsd/fixpsditps
- bin/amd64-netbsd/fixpspps
- bin/amd64-netbsd/fixscribeps
- bin/amd64-netbsd/fixtpps
- bin/amd64-netbsd/fixwfwps
- bin/amd64-netbsd/fixwpps
- bin/amd64-netbsd/fixwwps
- bin/amd64-netbsd/getafm
bin/amd64-netbsd/includeres
bin/amd64-netbsd/psbook
- bin/amd64-netbsd/psmerge
+ bin/amd64-netbsd/psjoin
bin/amd64-netbsd/psnup
bin/amd64-netbsd/psresize
bin/amd64-netbsd/psselect
bin/amd64-netbsd/pstops
- bin/amd64-netbsd/showchar
name psutils.armel-linux
category TLCore
-revision 29805
+revision 33916
shortdesc armel-linux files of psutils
-binfiles arch=armel-linux size=39
+binfiles arch=armel-linux size=77
bin/armel-linux/epsffit
bin/armel-linux/extractres
- bin/armel-linux/fixdlsrps
- bin/armel-linux/fixfmps
- bin/armel-linux/fixpsditps
- bin/armel-linux/fixpspps
- bin/armel-linux/fixscribeps
- bin/armel-linux/fixtpps
- bin/armel-linux/fixwfwps
- bin/armel-linux/fixwpps
- bin/armel-linux/fixwwps
- bin/armel-linux/getafm
bin/armel-linux/includeres
bin/armel-linux/psbook
- bin/armel-linux/psmerge
+ bin/armel-linux/psjoin
bin/armel-linux/psnup
bin/armel-linux/psresize
bin/armel-linux/psselect
bin/armel-linux/pstops
- bin/armel-linux/showchar
name psutils.armhf-linux
category TLCore
-revision 30015
+revision 34125
shortdesc armhf-linux files of psutils
-binfiles arch=armhf-linux size=36
+binfiles arch=armhf-linux size=74
bin/armhf-linux/epsffit
bin/armhf-linux/extractres
- bin/armhf-linux/fixdlsrps
- bin/armhf-linux/fixfmps
- bin/armhf-linux/fixpsditps
- bin/armhf-linux/fixpspps
- bin/armhf-linux/fixscribeps
- bin/armhf-linux/fixtpps
- bin/armhf-linux/fixwfwps
- bin/armhf-linux/fixwpps
- bin/armhf-linux/fixwwps
- bin/armhf-linux/getafm
bin/armhf-linux/includeres
bin/armhf-linux/psbook
- bin/armhf-linux/psmerge
+ bin/armhf-linux/psjoin
bin/armhf-linux/psnup
bin/armhf-linux/psresize
bin/armhf-linux/psselect
bin/armhf-linux/pstops
- bin/armhf-linux/showchar
name psutils.i386-cygwin
category TLCore
-revision 30526
+revision 34161
shortdesc i386-cygwin files of psutils
-binfiles arch=i386-cygwin size=39
+binfiles arch=i386-cygwin size=99
bin/i386-cygwin/epsffit.exe
bin/i386-cygwin/extractres
- bin/i386-cygwin/fixdlsrps
- bin/i386-cygwin/fixfmps
- bin/i386-cygwin/fixpsditps
- bin/i386-cygwin/fixpspps
- bin/i386-cygwin/fixscribeps
- bin/i386-cygwin/fixtpps
- bin/i386-cygwin/fixwfwps
- bin/i386-cygwin/fixwpps
- bin/i386-cygwin/fixwwps
- bin/i386-cygwin/getafm
bin/i386-cygwin/includeres
bin/i386-cygwin/psbook.exe
- bin/i386-cygwin/psmerge
+ bin/i386-cygwin/psjoin
bin/i386-cygwin/psnup.exe
bin/i386-cygwin/psresize.exe
bin/i386-cygwin/psselect.exe
bin/i386-cygwin/pstops.exe
- bin/i386-cygwin/showchar
name psutils.i386-freebsd
category TLCore
-revision 29785
+revision 33488
shortdesc i386-freebsd files of psutils
-binfiles arch=i386-freebsd size=39
+binfiles arch=i386-freebsd size=86
bin/i386-freebsd/epsffit
bin/i386-freebsd/extractres
- bin/i386-freebsd/fixdlsrps
- bin/i386-freebsd/fixfmps
- 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/getafm
bin/i386-freebsd/includeres
bin/i386-freebsd/psbook
- bin/i386-freebsd/psmerge
+ bin/i386-freebsd/psjoin
bin/i386-freebsd/psnup
bin/i386-freebsd/psresize
bin/i386-freebsd/psselect
bin/i386-freebsd/pstops
- bin/i386-freebsd/showchar
name psutils.i386-kfreebsd
category TLCore
-revision 30440
+revision 33864
shortdesc i386-kfreebsd files of psutils
-binfiles arch=i386-kfreebsd size=39
+binfiles arch=i386-kfreebsd size=87
bin/i386-kfreebsd/epsffit
bin/i386-kfreebsd/extractres
- bin/i386-kfreebsd/fixdlsrps
- bin/i386-kfreebsd/fixfmps
- bin/i386-kfreebsd/fixpsditps
- bin/i386-kfreebsd/fixpspps
- bin/i386-kfreebsd/fixscribeps
- bin/i386-kfreebsd/fixtpps
- bin/i386-kfreebsd/fixwfwps
- bin/i386-kfreebsd/fixwpps
- bin/i386-kfreebsd/fixwwps
- bin/i386-kfreebsd/getafm
bin/i386-kfreebsd/includeres
bin/i386-kfreebsd/psbook
- bin/i386-kfreebsd/psmerge
+ bin/i386-kfreebsd/psjoin
bin/i386-kfreebsd/psnup
bin/i386-kfreebsd/psresize
bin/i386-kfreebsd/psselect
bin/i386-kfreebsd/pstops
- bin/i386-kfreebsd/showchar
name psutils.i386-linux
category TLCore
-revision 30088
+revision 33479
shortdesc i386-linux files of psutils
-binfiles arch=i386-linux size=39
+binfiles arch=i386-linux size=93
bin/i386-linux/epsffit
bin/i386-linux/extractres
- bin/i386-linux/fixdlsrps
- bin/i386-linux/fixfmps
- 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/getafm
bin/i386-linux/includeres
bin/i386-linux/psbook
- bin/i386-linux/psmerge
+ bin/i386-linux/psjoin
bin/i386-linux/psnup
bin/i386-linux/psresize
bin/i386-linux/psselect
bin/i386-linux/pstops
- bin/i386-linux/showchar
name psutils.i386-netbsd
category TLCore
-revision 30191
+revision 33562
shortdesc i386-netbsd files of psutils
-binfiles arch=i386-netbsd size=39
+binfiles arch=i386-netbsd size=81
bin/i386-netbsd/epsffit
bin/i386-netbsd/extractres
- bin/i386-netbsd/fixdlsrps
- bin/i386-netbsd/fixfmps
- bin/i386-netbsd/fixpsditps
- bin/i386-netbsd/fixpspps
- bin/i386-netbsd/fixscribeps
- bin/i386-netbsd/fixtpps
- bin/i386-netbsd/fixwfwps
- bin/i386-netbsd/fixwpps
- bin/i386-netbsd/fixwwps
- bin/i386-netbsd/getafm
bin/i386-netbsd/includeres
bin/i386-netbsd/psbook
- bin/i386-netbsd/psmerge
+ bin/i386-netbsd/psjoin
bin/i386-netbsd/psnup
bin/i386-netbsd/psresize
bin/i386-netbsd/psselect
bin/i386-netbsd/pstops
- bin/i386-netbsd/showchar
name psutils.i386-solaris
category TLCore
-revision 30112
+revision 34203
shortdesc i386-solaris files of psutils
-binfiles arch=i386-solaris size=41
+binfiles arch=i386-solaris size=102
bin/i386-solaris/epsffit
bin/i386-solaris/extractres
- bin/i386-solaris/fixdlsrps
- bin/i386-solaris/fixfmps
- 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/getafm
bin/i386-solaris/includeres
bin/i386-solaris/psbook
- bin/i386-solaris/psmerge
+ bin/i386-solaris/psjoin
bin/i386-solaris/psnup
bin/i386-solaris/psresize
bin/i386-solaris/psselect
bin/i386-solaris/pstops
- bin/i386-solaris/showchar
-
-name psutils.mips-irix
-category TLCore
-revision 29949
-shortdesc mips-irix files of psutils
-binfiles arch=mips-irix size=88
- bin/mips-irix/epsffit
- bin/mips-irix/extractres
- bin/mips-irix/fixdlsrps
- bin/mips-irix/fixfmps
- 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/getafm
- 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
- bin/mips-irix/showchar
name psutils.mipsel-linux
category TLCore
-revision 29946
+revision 33811
shortdesc mipsel-linux files of psutils
-binfiles arch=mipsel-linux size=44
+binfiles arch=mipsel-linux size=87
bin/mipsel-linux/epsffit
bin/mipsel-linux/extractres
- bin/mipsel-linux/fixdlsrps
- bin/mipsel-linux/fixfmps
- bin/mipsel-linux/fixpsditps
- bin/mipsel-linux/fixpspps
- bin/mipsel-linux/fixscribeps
- bin/mipsel-linux/fixtpps
- bin/mipsel-linux/fixwfwps
- bin/mipsel-linux/fixwpps
- bin/mipsel-linux/fixwwps
- bin/mipsel-linux/getafm
bin/mipsel-linux/includeres
bin/mipsel-linux/psbook
- bin/mipsel-linux/psmerge
+ bin/mipsel-linux/psjoin
bin/mipsel-linux/psnup
bin/mipsel-linux/psresize
bin/mipsel-linux/psselect
bin/mipsel-linux/pstops
- bin/mipsel-linux/showchar
name psutils.powerpc-linux
category TLCore
-revision 29833
+revision 33889
shortdesc powerpc-linux files of psutils
-binfiles arch=powerpc-linux size=41
+binfiles arch=powerpc-linux size=84
bin/powerpc-linux/epsffit
bin/powerpc-linux/extractres
- bin/powerpc-linux/fixdlsrps
- bin/powerpc-linux/fixfmps
- 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/getafm
bin/powerpc-linux/includeres
bin/powerpc-linux/psbook
- bin/powerpc-linux/psmerge
+ bin/powerpc-linux/psjoin
bin/powerpc-linux/psnup
bin/powerpc-linux/psresize
bin/powerpc-linux/psselect
bin/powerpc-linux/pstops
- bin/powerpc-linux/showchar
name psutils.sparc-solaris
category TLCore
-revision 29877
+revision 33871
shortdesc sparc-solaris files of psutils
-binfiles arch=sparc-solaris size=41
+binfiles arch=sparc-solaris size=95
bin/sparc-solaris/epsffit
bin/sparc-solaris/extractres
- bin/sparc-solaris/fixdlsrps
- bin/sparc-solaris/fixfmps
- 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/getafm
bin/sparc-solaris/includeres
bin/sparc-solaris/psbook
- bin/sparc-solaris/psmerge
+ bin/sparc-solaris/psjoin
bin/sparc-solaris/psnup
bin/sparc-solaris/psresize
bin/sparc-solaris/psselect
bin/sparc-solaris/pstops
- bin/sparc-solaris/showchar
name psutils.universal-darwin
category TLCore
-revision 30764
+revision 34201
shortdesc universal-darwin files of psutils
-binfiles arch=universal-darwin size=90
+binfiles arch=universal-darwin size=197
bin/universal-darwin/epsffit
bin/universal-darwin/extractres
- bin/universal-darwin/fixdlsrps
- bin/universal-darwin/fixfmps
- bin/universal-darwin/fixpsditps
- bin/universal-darwin/fixpspps
- bin/universal-darwin/fixscribeps
- bin/universal-darwin/fixtpps
- bin/universal-darwin/fixwfwps
- bin/universal-darwin/fixwpps
- bin/universal-darwin/fixwwps
- bin/universal-darwin/getafm
bin/universal-darwin/includeres
bin/universal-darwin/psbook
- bin/universal-darwin/psmerge
+ bin/universal-darwin/psjoin
bin/universal-darwin/psnup
bin/universal-darwin/psresize
bin/universal-darwin/psselect
bin/universal-darwin/pstops
- bin/universal-darwin/showchar
name psutils.win32
category TLCore
-revision 29816
+revision 33897
shortdesc win32 files of psutils
-binfiles arch=win32 size=31
+binfiles arch=win32 size=32
bin/win32/epsffit.exe
bin/win32/extractres.exe
- bin/win32/fixdlsrps.exe
- bin/win32/fixfmps.exe
- bin/win32/fixpsditps.exe
- bin/win32/fixpspps.exe
- bin/win32/fixscribeps.exe
- bin/win32/fixtpps.exe
- bin/win32/fixwfwps.exe
- bin/win32/fixwpps.exe
- bin/win32/fixwwps.exe
bin/win32/includeres.exe
bin/win32/psbook.exe
- bin/win32/psmerge.exe
+ bin/win32/psjoin.exe
bin/win32/psnup.exe
bin/win32/psresize.exe
bin/win32/psselect.exe
bin/win32/pstops.exe
+name psutils.x86_64-cygwin
+category TLCore
+revision 34161
+shortdesc x86_64-cygwin files of psutils
+binfiles arch=x86_64-cygwin size=95
+ bin/x86_64-cygwin/epsffit.exe
+ bin/x86_64-cygwin/extractres
+ bin/x86_64-cygwin/includeres
+ bin/x86_64-cygwin/psbook.exe
+ bin/x86_64-cygwin/psjoin
+ bin/x86_64-cygwin/psnup.exe
+ bin/x86_64-cygwin/psresize.exe
+ bin/x86_64-cygwin/psselect.exe
+ bin/x86_64-cygwin/pstops.exe
+
name psutils.x86_64-darwin
category TLCore
-revision 29809
+revision 34201
shortdesc x86_64-darwin files of psutils
-binfiles arch=x86_64-darwin size=48
+binfiles arch=x86_64-darwin size=104
bin/x86_64-darwin/epsffit
bin/x86_64-darwin/extractres
- bin/x86_64-darwin/fixdlsrps
- bin/x86_64-darwin/fixfmps
- bin/x86_64-darwin/fixpsditps
- bin/x86_64-darwin/fixpspps
- bin/x86_64-darwin/fixscribeps
- bin/x86_64-darwin/fixtpps
- bin/x86_64-darwin/fixwfwps
- bin/x86_64-darwin/fixwpps
- bin/x86_64-darwin/fixwwps
- bin/x86_64-darwin/getafm
bin/x86_64-darwin/includeres
bin/x86_64-darwin/psbook
- bin/x86_64-darwin/psmerge
+ bin/x86_64-darwin/psjoin
bin/x86_64-darwin/psnup
bin/x86_64-darwin/psresize
bin/x86_64-darwin/psselect
bin/x86_64-darwin/pstops
- bin/x86_64-darwin/showchar
name psutils.x86_64-linux
category TLCore
-revision 30204
+revision 33723
shortdesc x86_64-linux files of psutils
-binfiles arch=x86_64-linux size=45
+binfiles arch=x86_64-linux size=87
bin/x86_64-linux/epsffit
bin/x86_64-linux/extractres
- bin/x86_64-linux/fixdlsrps
- bin/x86_64-linux/fixfmps
- 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/getafm
bin/x86_64-linux/includeres
bin/x86_64-linux/psbook
- bin/x86_64-linux/psmerge
+ bin/x86_64-linux/psjoin
bin/x86_64-linux/psnup
bin/x86_64-linux/psresize
bin/x86_64-linux/psselect
bin/x86_64-linux/pstops
- bin/x86_64-linux/showchar
name psutils.x86_64-solaris
category TLCore
-revision 30112
+revision 34203
shortdesc x86_64-solaris files of psutils
-binfiles arch=x86_64-solaris size=47
+binfiles arch=x86_64-solaris size=121
bin/x86_64-solaris/epsffit
bin/x86_64-solaris/extractres
- bin/x86_64-solaris/fixdlsrps
- bin/x86_64-solaris/fixfmps
- bin/x86_64-solaris/fixpsditps
- bin/x86_64-solaris/fixpspps
- bin/x86_64-solaris/fixscribeps
- bin/x86_64-solaris/fixtpps
- bin/x86_64-solaris/fixwfwps
- bin/x86_64-solaris/fixwpps
- bin/x86_64-solaris/fixwwps
- bin/x86_64-solaris/getafm
bin/x86_64-solaris/includeres
bin/x86_64-solaris/psbook
- bin/x86_64-solaris/psmerge
+ bin/x86_64-solaris/psjoin
bin/x86_64-solaris/psnup
bin/x86_64-solaris/psresize
bin/x86_64-solaris/psselect
bin/x86_64-solaris/pstops
- bin/x86_64-solaris/showchar
name ptex
category Package
-revision 30518
+revision 33966
shortdesc A TeX system for publishing in Japanese.
longdesc PTeX adds features related to vertical writing, and deals with
longdesc other problems in typesetting Japanese. A set of additions to a
@@ -137598,7 +150933,7 @@ execute AddFormat name=eptex engine=eptex options="*eptex.ini"
execute AddFormat name=platex engine=eptex options="*platex.ini" patterns=language.dat
execute addKanjiMap ptex-@kanjiEmbed@@kanjiVariant@.map
execute addKanjiMap morisawa.map
-docfiles size=534
+docfiles size=566
texmf-dist/doc/man/man1/mendex.1
texmf-dist/doc/man/man1/mendex.man1.pdf
texmf-dist/doc/ptex/base/COPYRIGHT
@@ -137905,14 +151240,14 @@ runfiles size=2485
texmf-dist/tex/ptex/config/eptex.ini
texmf-dist/tex/ptex/config/ptex.ini
catalogue-ctan /language/japanese/ptex
-catalogue-date 2011-11-09 15:33:34 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license other-free
name ptex.alpha-linux
category Package
-revision 30403
+revision 34095
shortdesc alpha-linux files of ptex
-binfiles arch=alpha-linux size=622
+binfiles arch=alpha-linux size=625
bin/alpha-linux/eptex
bin/alpha-linux/makejvf
bin/alpha-linux/mendex
@@ -137925,7 +151260,7 @@ binfiles arch=alpha-linux size=622
name ptex.amd64-freebsd
category Package
-revision 30400
+revision 34091
shortdesc amd64-freebsd files of ptex
binfiles arch=amd64-freebsd size=505
bin/amd64-freebsd/eptex
@@ -137940,9 +151275,9 @@ binfiles arch=amd64-freebsd size=505
name ptex.amd64-kfreebsd
category Package
-revision 30655
+revision 34100
shortdesc amd64-kfreebsd files of ptex
-binfiles arch=amd64-kfreebsd size=497
+binfiles arch=amd64-kfreebsd size=499
bin/amd64-kfreebsd/eptex
bin/amd64-kfreebsd/makejvf
bin/amd64-kfreebsd/mendex
@@ -137955,9 +151290,9 @@ binfiles arch=amd64-kfreebsd size=497
name ptex.amd64-netbsd
category Package
-revision 30660
+revision 34102
shortdesc amd64-netbsd files of ptex
-binfiles arch=amd64-netbsd size=503
+binfiles arch=amd64-netbsd size=505
bin/amd64-netbsd/eptex
bin/amd64-netbsd/makejvf
bin/amd64-netbsd/mendex
@@ -137970,9 +151305,9 @@ binfiles arch=amd64-netbsd size=503
name ptex.armel-linux
category Package
-revision 30774
+revision 34096
shortdesc armel-linux files of ptex
-binfiles arch=armel-linux size=467
+binfiles arch=armel-linux size=468
bin/armel-linux/eptex
bin/armel-linux/makejvf
bin/armel-linux/mendex
@@ -137985,9 +151320,9 @@ binfiles arch=armel-linux size=467
name ptex.armhf-linux
category Package
-revision 30443
+revision 34125
shortdesc armhf-linux files of ptex
-binfiles arch=armhf-linux size=448
+binfiles arch=armhf-linux size=450
bin/armhf-linux/eptex
bin/armhf-linux/makejvf
bin/armhf-linux/mendex
@@ -138000,9 +151335,9 @@ binfiles arch=armhf-linux size=448
name ptex.i386-cygwin
category Package
-revision 30526
+revision 34161
shortdesc i386-cygwin files of ptex
-binfiles arch=i386-cygwin size=462
+binfiles arch=i386-cygwin size=509
bin/i386-cygwin/eptex.exe
bin/i386-cygwin/makejvf.exe
bin/i386-cygwin/mendex.exe
@@ -138015,7 +151350,7 @@ binfiles arch=i386-cygwin size=462
name ptex.i386-freebsd
category Package
-revision 30400
+revision 34091
shortdesc i386-freebsd files of ptex
binfiles arch=i386-freebsd size=479
bin/i386-freebsd/eptex
@@ -138030,9 +151365,9 @@ binfiles arch=i386-freebsd size=479
name ptex.i386-kfreebsd
category Package
-revision 30440
+revision 34100
shortdesc i386-kfreebsd files of ptex
-binfiles arch=i386-kfreebsd size=490
+binfiles arch=i386-kfreebsd size=494
bin/i386-kfreebsd/eptex
bin/i386-kfreebsd/makejvf
bin/i386-kfreebsd/mendex
@@ -138045,9 +151380,9 @@ binfiles arch=i386-kfreebsd size=490
name ptex.i386-linux
category Package
-revision 30376
+revision 34086
shortdesc i386-linux files of ptex
-binfiles arch=i386-linux size=493
+binfiles arch=i386-linux size=524
bin/i386-linux/eptex
bin/i386-linux/makejvf
bin/i386-linux/mendex
@@ -138060,9 +151395,9 @@ binfiles arch=i386-linux size=493
name ptex.i386-netbsd
category Package
-revision 30405
+revision 34102
shortdesc i386-netbsd files of ptex
-binfiles arch=i386-netbsd size=452
+binfiles arch=i386-netbsd size=453
bin/i386-netbsd/eptex
bin/i386-netbsd/makejvf
bin/i386-netbsd/mendex
@@ -138075,9 +151410,9 @@ binfiles arch=i386-netbsd size=452
name ptex.i386-solaris
category Package
-revision 30439
+revision 34203
shortdesc i386-solaris files of ptex
-binfiles arch=i386-solaris size=577
+binfiles arch=i386-solaris size=575
bin/i386-solaris/eptex
bin/i386-solaris/makejvf
bin/i386-solaris/mendex
@@ -138088,26 +151423,11 @@ binfiles arch=i386-solaris size=577
bin/i386-solaris/ptex
bin/i386-solaris/ptftopl
-name ptex.mips-irix
-category Package
-revision 30131
-shortdesc mips-irix files of ptex
-binfiles arch=mips-irix size=953
- bin/mips-irix/eptex
- bin/mips-irix/makejvf
- bin/mips-irix/mendex
- bin/mips-irix/pbibtex
- bin/mips-irix/pdvitype
- bin/mips-irix/platex
- bin/mips-irix/ppltotf
- bin/mips-irix/ptex
- bin/mips-irix/ptftopl
-
name ptex.mipsel-linux
category Package
-revision 30435
+revision 34099
shortdesc mipsel-linux files of ptex
-binfiles arch=mipsel-linux size=622
+binfiles arch=mipsel-linux size=522
bin/mipsel-linux/eptex
bin/mipsel-linux/makejvf
bin/mipsel-linux/mendex
@@ -138120,9 +151440,9 @@ binfiles arch=mipsel-linux size=622
name ptex.powerpc-linux
category Package
-revision 30402
+revision 34101
shortdesc powerpc-linux files of ptex
-binfiles arch=powerpc-linux size=524
+binfiles arch=powerpc-linux size=493
bin/powerpc-linux/eptex
bin/powerpc-linux/makejvf
bin/powerpc-linux/mendex
@@ -138135,9 +151455,9 @@ binfiles arch=powerpc-linux size=524
name ptex.sparc-solaris
category Package
-revision 30384
+revision 34030
shortdesc sparc-solaris files of ptex
-binfiles arch=sparc-solaris size=540
+binfiles arch=sparc-solaris size=531
bin/sparc-solaris/eptex
bin/sparc-solaris/makejvf
bin/sparc-solaris/mendex
@@ -138150,9 +151470,9 @@ binfiles arch=sparc-solaris size=540
name ptex.universal-darwin
category Package
-revision 30764
+revision 34201
shortdesc universal-darwin files of ptex
-binfiles arch=universal-darwin size=1026
+binfiles arch=universal-darwin size=1028
bin/universal-darwin/eptex
bin/universal-darwin/makejvf
bin/universal-darwin/mendex
@@ -138165,9 +151485,9 @@ binfiles arch=universal-darwin size=1026
name ptex.win32
category Package
-revision 30245
+revision 34004
shortdesc win32 files of ptex
-binfiles arch=win32 size=616
+binfiles arch=win32 size=656
bin/win32/eptex.dll
bin/win32/eptex.exe
bin/win32/makejvf.exe
@@ -138180,11 +151500,26 @@ binfiles arch=win32 size=616
bin/win32/ptex.exe
bin/win32/ptftopl.exe
+name ptex.x86_64-cygwin
+category Package
+revision 34161
+shortdesc x86_64-cygwin files of ptex
+binfiles arch=x86_64-cygwin size=503
+ bin/x86_64-cygwin/eptex.exe
+ bin/x86_64-cygwin/makejvf.exe
+ bin/x86_64-cygwin/mendex.exe
+ bin/x86_64-cygwin/pbibtex.exe
+ bin/x86_64-cygwin/pdvitype.exe
+ bin/x86_64-cygwin/platex
+ bin/x86_64-cygwin/ppltotf.exe
+ bin/x86_64-cygwin/ptex.exe
+ bin/x86_64-cygwin/ptftopl.exe
+
name ptex.x86_64-darwin
category Package
-revision 30401
+revision 34201
shortdesc x86_64-darwin files of ptex
-binfiles arch=x86_64-darwin size=556
+binfiles arch=x86_64-darwin size=557
bin/x86_64-darwin/eptex
bin/x86_64-darwin/makejvf
bin/x86_64-darwin/mendex
@@ -138197,9 +151532,9 @@ binfiles arch=x86_64-darwin size=556
name ptex.x86_64-linux
category Package
-revision 30519
+revision 34007
shortdesc x86_64-linux files of ptex
-binfiles arch=x86_64-linux size=497
+binfiles arch=x86_64-linux size=502
bin/x86_64-linux/eptex
bin/x86_64-linux/makejvf
bin/x86_64-linux/mendex
@@ -138212,9 +151547,9 @@ binfiles arch=x86_64-linux size=497
name ptex.x86_64-solaris
category Package
-revision 30439
+revision 34203
shortdesc x86_64-solaris files of ptex
-binfiles arch=x86_64-solaris size=668
+binfiles arch=x86_64-solaris size=666
bin/x86_64-solaris/eptex
bin/x86_64-solaris/makejvf
bin/x86_64-solaris/mendex
@@ -138241,7 +151576,7 @@ docfiles size=6
runfiles size=2
texmf-dist/scripts/ptex2pdf/ptex2pdf.lua
catalogue-ctan /language/japanese/ptex2pdf
-catalogue-date 2013-05-07 20:01:57 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license gpl2
catalogue-version 0.4
@@ -138329,13 +151664,6 @@ shortdesc i386-solaris files of ptex2pdf
binfiles arch=i386-solaris size=1
bin/i386-solaris/ptex2pdf
-name ptex2pdf.mips-irix
-category Package
-revision 29949
-shortdesc mips-irix files of ptex2pdf
-binfiles arch=mips-irix size=1
- bin/mips-irix/ptex2pdf
-
name ptex2pdf.mipsel-linux
category Package
revision 29946
@@ -138371,6 +151699,13 @@ shortdesc win32 files of ptex2pdf
binfiles arch=win32 size=1
bin/win32/ptex2pdf.exe
+name ptex2pdf.x86_64-cygwin
+category Package
+revision 33557
+shortdesc x86_64-cygwin files of ptex2pdf
+binfiles arch=x86_64-cygwin size=1
+ bin/x86_64-cygwin/ptex2pdf
+
name ptex2pdf.x86_64-darwin
category Package
revision 29335
@@ -138407,7 +151742,7 @@ docfiles size=17
runfiles size=22
texmf-dist/tex/xelatex/ptext/ptext.sty
catalogue-ctan /macros/xetex/latex/ptext
-catalogue-date 2013-05-07 12:36:07 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.2
catalogue-version 1.1
@@ -138469,7 +151804,7 @@ runfiles size=20
texmf-dist/fonts/tfm/public/punk/punkbx20.tfm
texmf-dist/fonts/tfm/public/punk/punksl20.tfm
catalogue-ctan /fonts/punk
-catalogue-date 2012-05-30 14:49:05 +0200
+catalogue-date 2014-05-23 17:29:14 +0200
catalogue-license knuth
name punk-latex
@@ -138518,7 +151853,7 @@ runfiles size=424
texmf-dist/fonts/opentype/public/punknova/punknova-regular.otf
texmf-dist/fonts/opentype/public/punknova/punknova-slanted.otf
catalogue-ctan /fonts/punknova
-catalogue-date 2011-11-23 11:34:47 +0100
+catalogue-date 2014-05-23 17:29:14 +0200
catalogue-license other-free
catalogue-version 1.003
@@ -138631,13 +151966,6 @@ shortdesc i386-solaris files of purifyeps
binfiles arch=i386-solaris size=1
bin/i386-solaris/purifyeps
-name purifyeps.mips-irix
-category Package
-revision 29949
-shortdesc mips-irix files of purifyeps
-binfiles arch=mips-irix size=1
- bin/mips-irix/purifyeps
-
name purifyeps.mipsel-linux
category Package
revision 29946
@@ -138673,6 +152001,13 @@ shortdesc win32 files of purifyeps
binfiles arch=win32 size=1
bin/win32/purifyeps.exe
+name purifyeps.x86_64-cygwin
+category Package
+revision 33557
+shortdesc x86_64-cygwin files of purifyeps
+binfiles arch=x86_64-cygwin size=1
+ bin/x86_64-cygwin/purifyeps
+
name purifyeps.x86_64-darwin
category Package
revision 18441
@@ -138713,7 +152048,7 @@ runfiles size=20
texmf-dist/tex/platex/pxbase/pxjsfenc.def
texmf-dist/tex/platex/pxbase/upkcat.sty
catalogue-ctan /language/japanese/pxbase
-catalogue-date 2012-12-21 17:35:00 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license other-free
catalogue-version 0.5
@@ -138770,7 +152105,7 @@ runfiles size=27
texmf-dist/tex/platex/pxchfon/pxchfon0.def
texmf-dist/tex/platex/pxchfon/pxjafont.sty
catalogue-ctan /language/japanese/pxchfon
-catalogue-date 2013-05-18 17:41:16 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license other-free
catalogue-version 0.7a
@@ -138790,7 +152125,7 @@ docfiles size=9
runfiles size=5
texmf-dist/tex/latex/pxcjkcat/pxcjkcat.sty
catalogue-ctan /macros/latex/contrib/pxcjkcat
-catalogue-date 2012-09-27 12:42:10 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license other-free
catalogue-version 1.0
@@ -138987,14 +152322,14 @@ runfiles size=305
texmf-dist/tex/latex/pxfonts/upxsyc.fd
texmf-dist/tex/latex/pxfonts/upxtt.fd
catalogue-ctan /fonts/pxfonts
-catalogue-date 2012-02-14 16:35:41 +0100
+catalogue-date 2014-05-24 12:23:46 +0200
catalogue-license gpl
name pxgreeks
category Package
revision 21838
shortdesc Shape selection for PX fonts Greek letters.
-longdesc The package allows LaTeX users who use the PX fonts to select
+longdesc The package allows LaTeX maths users of the PX fonts to select
longdesc the shapes (italic or upright) for the Greek lowercase and
longdesc uppercase letters. Once the shapes for lowercase and uppercase
longdesc have been selected via a package option, the \other prefix
@@ -139010,7 +152345,7 @@ srcfiles size=4
runfiles size=2
texmf-dist/tex/latex/pxgreeks/pxgreeks.sty
catalogue-ctan /macros/latex/contrib/pxgreeks
-catalogue-date 2012-05-07 16:41:43 +0200
+catalogue-date 2014-05-24 12:23:46 +0200
catalogue-license lppl1.3
catalogue-version 1.0
@@ -139026,7 +152361,7 @@ docfiles size=12
runfiles size=5
texmf-dist/tex/platex/pxjahyper/pxjahyper.sty
catalogue-ctan /language/japanese/pxjahyper
-catalogue-date 2012-12-21 17:35:00 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license other-free
catalogue-version 0.3
@@ -139043,7 +152378,7 @@ docfiles size=2
runfiles size=1
texmf-dist/tex/latex/pxpgfmark/pxpgfmark.sty
catalogue-ctan /graphics/pgf/contrib/pxpgfmark
-catalogue-date 2013-05-07 12:36:07 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license other-free
catalogue-version 0.2
@@ -139110,7 +152445,7 @@ runfiles size=28
texmf-dist/tex/latex/pxtxalfa/utx-frak.fd
texmf-dist/tex/latex/pxtxalfa/utx-of.fd
catalogue-ctan /fonts/pxtxalfa
-catalogue-date 2012-05-07 21:40:19 +0200
+catalogue-date 2014-05-24 14:29:45 +0200
catalogue-license lppl
catalogue-version 1
@@ -139125,10 +152460,226 @@ docfiles size=1
runfiles size=1
texmf-dist/tex/latex/python/python.sty
catalogue-ctan /macros/latex/contrib/python
-catalogue-date 2012-07-16 11:23:54 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license gpl
catalogue-version 0.21
+name pythontex
+category Package
+revision 31686
+shortdesc Run Python from within a document, typesetting the results.
+longdesc The package allows you to enter Python code within a LaTeX
+longdesc document, execute the code, and access its output in the
+longdesc original document. Python code is only executed when it has
+longdesc been modified, or when it meets user-specified criteria. Code
+longdesc may be divided into user-defined sessions, which automatically
+longdesc run in parallel. Errors and warnings are synchronized with the
+longdesc LaTeX document, so that they refer to the document's line
+longdesc numbers. External dependencies can be tracked, so that code is
+longdesc re-executed when the data it depends on is modified. PythonTeX
+longdesc also provides syntax highlighting for code in LaTeX documents
+longdesc via the Pygments syntax highlighter. The package provides a
+longdesc depythontex utility, that creates a copy of the document in
+longdesc which all Python code has been replaced by its output. This is
+longdesc useful for journal submissions, sharing documents, and
+longdesc conversion to other formats.
+depend pythontex.ARCH
+docfiles size=337
+ texmf-dist/doc/latex/pythontex/README details="Readme"
+ texmf-dist/doc/latex/pythontex/pythontex.pdf details="Package documentation"
+ texmf-dist/doc/latex/pythontex/pythontex_gallery.pdf details="Gallery of use"
+ texmf-dist/doc/latex/pythontex/pythontex_gallery.tex
+ texmf-dist/doc/latex/pythontex/pythontex_quickstart.pdf details="Quick start documentation"
+ texmf-dist/doc/latex/pythontex/pythontex_quickstart.tex
+srcfiles size=82
+ texmf-dist/source/latex/pythontex/pythontex.bat
+ texmf-dist/source/latex/pythontex/pythontex.dtx
+ texmf-dist/source/latex/pythontex/pythontex.ins
+runfiles size=128
+ texmf-dist/scripts/pythontex/depythontex.py
+ texmf-dist/scripts/pythontex/depythontex2.py
+ texmf-dist/scripts/pythontex/depythontex3.py
+ texmf-dist/scripts/pythontex/pythontex.py
+ texmf-dist/scripts/pythontex/pythontex2.py
+ texmf-dist/scripts/pythontex/pythontex3.py
+ texmf-dist/scripts/pythontex/pythontex_2to3.py
+ texmf-dist/scripts/pythontex/pythontex_engines.py
+ texmf-dist/scripts/pythontex/pythontex_install_texlive.py
+ texmf-dist/scripts/pythontex/pythontex_utils.py
+ texmf-dist/tex/latex/pythontex/pythontex.sty
+catalogue-ctan /macros/latex/contrib/pythontex
+catalogue-date 2014-02-26 23:03:13 +0100
+catalogue-license lppl1.3
+catalogue-version 0.12
+
+name pythontex.alpha-linux
+category Package
+revision 31638
+shortdesc alpha-linux files of pythontex
+binfiles arch=alpha-linux size=2
+ bin/alpha-linux/depythontex
+ bin/alpha-linux/pythontex
+
+name pythontex.amd64-freebsd
+category Package
+revision 31638
+shortdesc amd64-freebsd files of pythontex
+binfiles arch=amd64-freebsd size=2
+ bin/amd64-freebsd/depythontex
+ bin/amd64-freebsd/pythontex
+
+name pythontex.amd64-kfreebsd
+category Package
+revision 31638
+shortdesc amd64-kfreebsd files of pythontex
+binfiles arch=amd64-kfreebsd size=2
+ bin/amd64-kfreebsd/depythontex
+ bin/amd64-kfreebsd/pythontex
+
+name pythontex.amd64-netbsd
+category Package
+revision 31638
+shortdesc amd64-netbsd files of pythontex
+binfiles arch=amd64-netbsd size=2
+ bin/amd64-netbsd/depythontex
+ bin/amd64-netbsd/pythontex
+
+name pythontex.armel-linux
+category Package
+revision 31638
+shortdesc armel-linux files of pythontex
+binfiles arch=armel-linux size=2
+ bin/armel-linux/depythontex
+ bin/armel-linux/pythontex
+
+name pythontex.armhf-linux
+category Package
+revision 31638
+shortdesc armhf-linux files of pythontex
+binfiles arch=armhf-linux size=2
+ bin/armhf-linux/depythontex
+ bin/armhf-linux/pythontex
+
+name pythontex.i386-cygwin
+category Package
+revision 31638
+shortdesc i386-cygwin files of pythontex
+binfiles arch=i386-cygwin size=2
+ bin/i386-cygwin/depythontex
+ bin/i386-cygwin/pythontex
+
+name pythontex.i386-freebsd
+category Package
+revision 31638
+shortdesc i386-freebsd files of pythontex
+binfiles arch=i386-freebsd size=2
+ bin/i386-freebsd/depythontex
+ bin/i386-freebsd/pythontex
+
+name pythontex.i386-kfreebsd
+category Package
+revision 31638
+shortdesc i386-kfreebsd files of pythontex
+binfiles arch=i386-kfreebsd size=2
+ bin/i386-kfreebsd/depythontex
+ bin/i386-kfreebsd/pythontex
+
+name pythontex.i386-linux
+category Package
+revision 31638
+shortdesc i386-linux files of pythontex
+binfiles arch=i386-linux size=2
+ bin/i386-linux/depythontex
+ bin/i386-linux/pythontex
+
+name pythontex.i386-netbsd
+category Package
+revision 31638
+shortdesc i386-netbsd files of pythontex
+binfiles arch=i386-netbsd size=2
+ bin/i386-netbsd/depythontex
+ bin/i386-netbsd/pythontex
+
+name pythontex.i386-solaris
+category Package
+revision 31638
+shortdesc i386-solaris files of pythontex
+binfiles arch=i386-solaris size=2
+ bin/i386-solaris/depythontex
+ bin/i386-solaris/pythontex
+
+name pythontex.mipsel-linux
+category Package
+revision 31638
+shortdesc mipsel-linux files of pythontex
+binfiles arch=mipsel-linux size=2
+ bin/mipsel-linux/depythontex
+ bin/mipsel-linux/pythontex
+
+name pythontex.powerpc-linux
+category Package
+revision 31638
+shortdesc powerpc-linux files of pythontex
+binfiles arch=powerpc-linux size=2
+ bin/powerpc-linux/depythontex
+ bin/powerpc-linux/pythontex
+
+name pythontex.sparc-solaris
+category Package
+revision 31638
+shortdesc sparc-solaris files of pythontex
+binfiles arch=sparc-solaris size=2
+ bin/sparc-solaris/depythontex
+ bin/sparc-solaris/pythontex
+
+name pythontex.universal-darwin
+category Package
+revision 31638
+shortdesc universal-darwin files of pythontex
+binfiles arch=universal-darwin size=2
+ bin/universal-darwin/depythontex
+ bin/universal-darwin/pythontex
+
+name pythontex.win32
+category Package
+revision 31638
+shortdesc win32 files of pythontex
+binfiles arch=win32 size=2
+ bin/win32/depythontex.exe
+ bin/win32/pythontex.exe
+
+name pythontex.x86_64-cygwin
+category Package
+revision 33557
+shortdesc x86_64-cygwin files of pythontex
+binfiles arch=x86_64-cygwin size=2
+ bin/x86_64-cygwin/depythontex
+ bin/x86_64-cygwin/pythontex
+
+name pythontex.x86_64-darwin
+category Package
+revision 31638
+shortdesc x86_64-darwin files of pythontex
+binfiles arch=x86_64-darwin size=2
+ bin/x86_64-darwin/depythontex
+ bin/x86_64-darwin/pythontex
+
+name pythontex.x86_64-linux
+category Package
+revision 31638
+shortdesc x86_64-linux files of pythontex
+binfiles arch=x86_64-linux size=2
+ bin/x86_64-linux/depythontex
+ bin/x86_64-linux/pythontex
+
+name pythontex.x86_64-solaris
+category Package
+revision 31638
+shortdesc x86_64-solaris files of pythontex
+binfiles arch=x86_64-solaris size=2
+ bin/x86_64-solaris/depythontex
+ bin/x86_64-solaris/pythontex
+
name qcm
category Package
revision 15878
@@ -139302,7 +152853,7 @@ catalogue-version 3.1b
name quattrocento
category Package
-revision 28957
+revision 31763
shortdesc LaTeX support for Quattrocento and Quattrocento Sans fonts.
longdesc The package provides LaTeX, pdfLaTeX, XeLaTeX and LuaLaTeX
longdesc support for the Quattrocento and Quattrocento Sans families of
@@ -139553,7 +153104,7 @@ runfiles size=1004
texmf-dist/tex/latex/quattrocento/TS1QuattrocentoSans-TLF.fd
texmf-dist/tex/latex/quattrocento/quattrocento.sty
catalogue-ctan /fonts/quattrocento
-catalogue-date 2013-01-28 07:51:38 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
name quotchap
@@ -139580,7 +153131,7 @@ catalogue-version 1.1
name quoting
category Package
-revision 25474
+revision 32818
shortdesc Consolidated environment for displayed text.
longdesc As an alternative to the LaTeX standard environments quotation
longdesc and quote, the package provides a consolidated environment for
@@ -139589,7 +153140,7 @@ longdesc adding a blank line before the quoting environment. A key-value
longdesc interface (using kvoptions) allows the user to configure font
longdesc properties and spacing and to control orphans within and after
longdesc the environment.
-docfiles size=74
+docfiles size=76
texmf-dist/doc/latex/quoting/README details="Readme"
texmf-dist/doc/latex/quoting/quoting.pdf details="Package documentation"
srcfiles size=7
@@ -139598,9 +153149,9 @@ srcfiles size=7
runfiles size=1
texmf-dist/tex/latex/quoting/quoting.sty
catalogue-ctan /macros/latex/contrib/quoting
-catalogue-date 2012-02-22 10:43:42 +0100
+catalogue-date 2014-01-29 17:50:59 +0100
catalogue-license lppl1.3
-catalogue-version v0.1b
+catalogue-version v0.1c
name quotmark
category Package
@@ -139660,7 +153211,7 @@ runfiles size=39
texmf-dist/tex/latex/quotmark/quotmark-welsh.def
texmf-dist/tex/latex/quotmark/quotmark.sty
catalogue-ctan /macros/latex/contrib/quotmark
-catalogue-date 2012-06-01 18:19:13 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.0
@@ -139687,19 +153238,19 @@ runfiles size=31
texmf-dist/tex/latex/r_und_s/r_und_s.sty
texmf-dist/tex/latex/r_und_s/r_und_s.tex
catalogue-ctan /macros/latex/contrib/r_und_s
-catalogue-date 2012-06-04 16:55:44 +0200
+catalogue-date 2013-06-19 11:01:13 +0200
catalogue-license other-free
catalogue-version 1.3i
name raleway
category Package
-revision 30211
+revision 31969
shortdesc Use Raleway with TeX(-alike) systems.
longdesc The package provides the Raleway family in an easy to use way.
longdesc For XeLaTeX and LuaLaTeX users the original OpenType fonts are
longdesc used. The entire font family is included.
execute addMap Raleway.map
-docfiles size=53
+docfiles size=88
texmf-dist/doc/latex/raleway/OFL.txt
texmf-dist/doc/latex/raleway/README details="Readme"
texmf-dist/doc/latex/raleway/raleway-otf-specimen.pdf
@@ -139708,43 +153259,40 @@ docfiles size=53
texmf-dist/doc/latex/raleway/raleway-type1-specimen.tex
texmf-dist/doc/latex/raleway/raleway.pdf
texmf-dist/doc/latex/raleway/raleway.tex
-runfiles size=1236
- texmf-dist/fonts/enc/dvips/raleway/a_7mkq5h.enc
+runfiles size=3060
+ texmf-dist/fonts/enc/dvips/raleway/a_2bcjq6.enc
+ texmf-dist/fonts/enc/dvips/raleway/a_biciir.enc
texmf-dist/fonts/enc/dvips/raleway/a_bzmckq.enc
- texmf-dist/fonts/enc/dvips/raleway/a_ioyy6d.enc
+ texmf-dist/fonts/enc/dvips/raleway/a_f3uqdf.enc
+ texmf-dist/fonts/enc/dvips/raleway/a_gvxmk7.enc
+ texmf-dist/fonts/enc/dvips/raleway/a_ioname.enc
texmf-dist/fonts/enc/dvips/raleway/a_k2dfwc.enc
- texmf-dist/fonts/enc/dvips/raleway/a_keo5xw.enc
- texmf-dist/fonts/enc/dvips/raleway/a_l5jmzb.enc
- texmf-dist/fonts/enc/dvips/raleway/a_nli7k3.enc
- texmf-dist/fonts/enc/dvips/raleway/a_oaj2jl.enc
+ texmf-dist/fonts/enc/dvips/raleway/a_mgzrni.enc
+ texmf-dist/fonts/enc/dvips/raleway/a_mzuigi.enc
+ texmf-dist/fonts/enc/dvips/raleway/a_oaf34p.enc
+ texmf-dist/fonts/enc/dvips/raleway/a_pcwse4.enc
texmf-dist/fonts/enc/dvips/raleway/a_sor5xn.enc
- texmf-dist/fonts/enc/dvips/raleway/a_sp3cim.enc
- texmf-dist/fonts/enc/dvips/raleway/a_uagyv3.enc
- texmf-dist/fonts/enc/dvips/raleway/a_umxzao.enc
+ texmf-dist/fonts/enc/dvips/raleway/a_u6n666.enc
texmf-dist/fonts/enc/dvips/raleway/a_yqxcf3.enc
texmf-dist/fonts/map/dvips/raleway/Raleway.map
+ texmf-dist/fonts/opentype/theleagueofmoveabletype/raleway/Raleway-Black-Italic.otf
texmf-dist/fonts/opentype/theleagueofmoveabletype/raleway/Raleway-Black.otf
+ texmf-dist/fonts/opentype/theleagueofmoveabletype/raleway/Raleway-Bold-Italic.otf
texmf-dist/fonts/opentype/theleagueofmoveabletype/raleway/Raleway-Bold.otf
+ texmf-dist/fonts/opentype/theleagueofmoveabletype/raleway/Raleway-ExtraBold-Italic.otf
texmf-dist/fonts/opentype/theleagueofmoveabletype/raleway/Raleway-ExtraBold.otf
+ texmf-dist/fonts/opentype/theleagueofmoveabletype/raleway/Raleway-ExtraLight-Italic.otf
texmf-dist/fonts/opentype/theleagueofmoveabletype/raleway/Raleway-ExtraLight.otf
+ texmf-dist/fonts/opentype/theleagueofmoveabletype/raleway/Raleway-Light-Italic.otf
texmf-dist/fonts/opentype/theleagueofmoveabletype/raleway/Raleway-Light.otf
+ texmf-dist/fonts/opentype/theleagueofmoveabletype/raleway/Raleway-Medium-Italic.otf
texmf-dist/fonts/opentype/theleagueofmoveabletype/raleway/Raleway-Medium.otf
+ texmf-dist/fonts/opentype/theleagueofmoveabletype/raleway/Raleway-Regular-Italic.otf
texmf-dist/fonts/opentype/theleagueofmoveabletype/raleway/Raleway-Regular.otf
+ texmf-dist/fonts/opentype/theleagueofmoveabletype/raleway/Raleway-SemiBold-Italic.otf
texmf-dist/fonts/opentype/theleagueofmoveabletype/raleway/Raleway-SemiBold.otf
+ texmf-dist/fonts/opentype/theleagueofmoveabletype/raleway/Raleway-Thin-Italic.otf
texmf-dist/fonts/opentype/theleagueofmoveabletype/raleway/Raleway-Thin.otf
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Black-osf-ly1--base.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Black-osf-ly1.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Black-osf-ot1.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Black-osf-sc-ly1--base.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Black-osf-sc-ly1.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Black-osf-sc-ot1--base.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Black-osf-sc-ot1.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Black-osf-sc-t1--base.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Black-osf-sc-t1.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Black-osf-t1--base.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Black-osf-t1.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Black-osf-ts1--base.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Black-osf-ts1.tfm
texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Black-tlf-ly1--base.tfm
texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Black-tlf-ly1.tfm
texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Black-tlf-ot1.tfm
@@ -139771,19 +153319,32 @@ runfiles size=1236
texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Black-tosf-t1.tfm
texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Black-tosf-ts1--base.tfm
texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Black-tosf-ts1.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Bold-osf-ly1--base.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Bold-osf-ly1.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Bold-osf-ot1.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Bold-osf-sc-ly1--base.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Bold-osf-sc-ly1.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Bold-osf-sc-ot1--base.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Bold-osf-sc-ot1.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Bold-osf-sc-t1--base.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Bold-osf-sc-t1.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Bold-osf-t1--base.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Bold-osf-t1.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Bold-osf-ts1--base.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Bold-osf-ts1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-BlackItalic-tlf-ly1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-BlackItalic-tlf-ly1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-BlackItalic-tlf-ot1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-BlackItalic-tlf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-BlackItalic-tlf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-BlackItalic-tlf-sc-ot1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-BlackItalic-tlf-sc-ot1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-BlackItalic-tlf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-BlackItalic-tlf-sc-t1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-BlackItalic-tlf-t1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-BlackItalic-tlf-t1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-BlackItalic-tlf-ts1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-BlackItalic-tlf-ts1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-BlackItalic-tosf-ly1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-BlackItalic-tosf-ly1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-BlackItalic-tosf-ot1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-BlackItalic-tosf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-BlackItalic-tosf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-BlackItalic-tosf-sc-ot1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-BlackItalic-tosf-sc-ot1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-BlackItalic-tosf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-BlackItalic-tosf-sc-t1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-BlackItalic-tosf-t1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-BlackItalic-tosf-t1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-BlackItalic-tosf-ts1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-BlackItalic-tosf-ts1.tfm
texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Bold-tlf-ly1--base.tfm
texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Bold-tlf-ly1.tfm
texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Bold-tlf-ot1.tfm
@@ -139810,19 +153371,32 @@ runfiles size=1236
texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Bold-tosf-t1.tfm
texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Bold-tosf-ts1--base.tfm
texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Bold-tosf-ts1.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ExtraBold-osf-ly1--base.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ExtraBold-osf-ly1.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ExtraBold-osf-ot1.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ExtraBold-osf-sc-ly1--base.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ExtraBold-osf-sc-ly1.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ExtraBold-osf-sc-ot1--base.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ExtraBold-osf-sc-ot1.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ExtraBold-osf-sc-t1--base.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ExtraBold-osf-sc-t1.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ExtraBold-osf-t1--base.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ExtraBold-osf-t1.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ExtraBold-osf-ts1--base.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ExtraBold-osf-ts1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-BoldItalic-tlf-ly1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-BoldItalic-tlf-ly1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-BoldItalic-tlf-ot1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-BoldItalic-tlf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-BoldItalic-tlf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-BoldItalic-tlf-sc-ot1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-BoldItalic-tlf-sc-ot1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-BoldItalic-tlf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-BoldItalic-tlf-sc-t1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-BoldItalic-tlf-t1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-BoldItalic-tlf-t1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-BoldItalic-tlf-ts1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-BoldItalic-tlf-ts1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-BoldItalic-tosf-ly1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-BoldItalic-tosf-ly1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-BoldItalic-tosf-ot1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-BoldItalic-tosf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-BoldItalic-tosf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-BoldItalic-tosf-sc-ot1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-BoldItalic-tosf-sc-ot1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-BoldItalic-tosf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-BoldItalic-tosf-sc-t1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-BoldItalic-tosf-t1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-BoldItalic-tosf-t1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-BoldItalic-tosf-ts1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-BoldItalic-tosf-ts1.tfm
texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ExtraBold-tlf-ly1--base.tfm
texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ExtraBold-tlf-ly1.tfm
texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ExtraBold-tlf-ot1.tfm
@@ -139849,19 +153423,32 @@ runfiles size=1236
texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ExtraBold-tosf-t1.tfm
texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ExtraBold-tosf-ts1--base.tfm
texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ExtraBold-tosf-ts1.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ExtraLight-osf-ly1--base.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ExtraLight-osf-ly1.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ExtraLight-osf-ot1.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ExtraLight-osf-sc-ly1--base.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ExtraLight-osf-sc-ly1.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ExtraLight-osf-sc-ot1--base.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ExtraLight-osf-sc-ot1.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ExtraLight-osf-sc-t1--base.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ExtraLight-osf-sc-t1.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ExtraLight-osf-t1--base.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ExtraLight-osf-t1.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ExtraLight-osf-ts1--base.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ExtraLight-osf-ts1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ExtraBoldItalic-tlf-ly1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ExtraBoldItalic-tlf-ly1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ExtraBoldItalic-tlf-ot1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ExtraBoldItalic-tlf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ExtraBoldItalic-tlf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ExtraBoldItalic-tlf-sc-ot1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ExtraBoldItalic-tlf-sc-ot1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ExtraBoldItalic-tlf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ExtraBoldItalic-tlf-sc-t1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ExtraBoldItalic-tlf-t1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ExtraBoldItalic-tlf-t1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ExtraBoldItalic-tlf-ts1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ExtraBoldItalic-tlf-ts1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ExtraBoldItalic-tosf-ly1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ExtraBoldItalic-tosf-ly1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ExtraBoldItalic-tosf-ot1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ExtraBoldItalic-tosf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ExtraBoldItalic-tosf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ExtraBoldItalic-tosf-sc-ot1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ExtraBoldItalic-tosf-sc-ot1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ExtraBoldItalic-tosf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ExtraBoldItalic-tosf-sc-t1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ExtraBoldItalic-tosf-t1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ExtraBoldItalic-tosf-t1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ExtraBoldItalic-tosf-ts1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ExtraBoldItalic-tosf-ts1.tfm
texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ExtraLight-tlf-ly1--base.tfm
texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ExtraLight-tlf-ly1.tfm
texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ExtraLight-tlf-ot1.tfm
@@ -139888,19 +153475,58 @@ runfiles size=1236
texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ExtraLight-tosf-t1.tfm
texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ExtraLight-tosf-ts1--base.tfm
texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ExtraLight-tosf-ts1.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Light-osf-ly1--base.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Light-osf-ly1.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Light-osf-ot1.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Light-osf-sc-ly1--base.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Light-osf-sc-ly1.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Light-osf-sc-ot1--base.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Light-osf-sc-ot1.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Light-osf-sc-t1--base.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Light-osf-sc-t1.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Light-osf-t1--base.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Light-osf-t1.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Light-osf-ts1--base.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Light-osf-ts1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ExtraLightItalic-tlf-ly1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ExtraLightItalic-tlf-ly1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ExtraLightItalic-tlf-ot1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ExtraLightItalic-tlf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ExtraLightItalic-tlf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ExtraLightItalic-tlf-sc-ot1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ExtraLightItalic-tlf-sc-ot1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ExtraLightItalic-tlf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ExtraLightItalic-tlf-sc-t1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ExtraLightItalic-tlf-t1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ExtraLightItalic-tlf-t1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ExtraLightItalic-tlf-ts1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ExtraLightItalic-tlf-ts1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ExtraLightItalic-tosf-ly1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ExtraLightItalic-tosf-ly1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ExtraLightItalic-tosf-ot1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ExtraLightItalic-tosf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ExtraLightItalic-tosf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ExtraLightItalic-tosf-sc-ot1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ExtraLightItalic-tosf-sc-ot1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ExtraLightItalic-tosf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ExtraLightItalic-tosf-sc-t1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ExtraLightItalic-tosf-t1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ExtraLightItalic-tosf-t1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ExtraLightItalic-tosf-ts1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ExtraLightItalic-tosf-ts1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Italic-tlf-ly1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Italic-tlf-ly1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Italic-tlf-ot1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Italic-tlf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Italic-tlf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Italic-tlf-sc-ot1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Italic-tlf-sc-ot1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Italic-tlf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Italic-tlf-sc-t1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Italic-tlf-t1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Italic-tlf-t1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Italic-tlf-ts1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Italic-tlf-ts1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Italic-tosf-ly1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Italic-tosf-ly1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Italic-tosf-ot1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Italic-tosf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Italic-tosf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Italic-tosf-sc-ot1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Italic-tosf-sc-ot1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Italic-tosf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Italic-tosf-sc-t1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Italic-tosf-t1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Italic-tosf-t1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Italic-tosf-ts1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Italic-tosf-ts1.tfm
texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Light-tlf-ly1--base.tfm
texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Light-tlf-ly1.tfm
texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Light-tlf-ot1.tfm
@@ -139927,19 +153553,32 @@ runfiles size=1236
texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Light-tosf-t1.tfm
texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Light-tosf-ts1--base.tfm
texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Light-tosf-ts1.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Medium-osf-ly1--base.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Medium-osf-ly1.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Medium-osf-ot1.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Medium-osf-sc-ly1--base.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Medium-osf-sc-ly1.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Medium-osf-sc-ot1--base.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Medium-osf-sc-ot1.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Medium-osf-sc-t1--base.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Medium-osf-sc-t1.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Medium-osf-t1--base.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Medium-osf-t1.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Medium-osf-ts1--base.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Medium-osf-ts1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-LightItalic-tlf-ly1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-LightItalic-tlf-ly1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-LightItalic-tlf-ot1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-LightItalic-tlf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-LightItalic-tlf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-LightItalic-tlf-sc-ot1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-LightItalic-tlf-sc-ot1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-LightItalic-tlf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-LightItalic-tlf-sc-t1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-LightItalic-tlf-t1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-LightItalic-tlf-t1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-LightItalic-tlf-ts1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-LightItalic-tlf-ts1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-LightItalic-tosf-ly1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-LightItalic-tosf-ly1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-LightItalic-tosf-ot1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-LightItalic-tosf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-LightItalic-tosf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-LightItalic-tosf-sc-ot1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-LightItalic-tosf-sc-ot1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-LightItalic-tosf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-LightItalic-tosf-sc-t1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-LightItalic-tosf-t1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-LightItalic-tosf-t1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-LightItalic-tosf-ts1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-LightItalic-tosf-ts1.tfm
texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Medium-tlf-ly1--base.tfm
texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Medium-tlf-ly1.tfm
texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Medium-tlf-ot1.tfm
@@ -139966,19 +153605,32 @@ runfiles size=1236
texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Medium-tosf-t1.tfm
texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Medium-tosf-ts1--base.tfm
texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Medium-tosf-ts1.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Regular-osf-ly1--base.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Regular-osf-ly1.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Regular-osf-ot1.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Regular-osf-sc-ly1--base.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Regular-osf-sc-ly1.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Regular-osf-sc-ot1--base.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Regular-osf-sc-ot1.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Regular-osf-sc-t1--base.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Regular-osf-sc-t1.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Regular-osf-t1--base.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Regular-osf-t1.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Regular-osf-ts1--base.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Regular-osf-ts1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-MediumItalic-tlf-ly1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-MediumItalic-tlf-ly1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-MediumItalic-tlf-ot1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-MediumItalic-tlf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-MediumItalic-tlf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-MediumItalic-tlf-sc-ot1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-MediumItalic-tlf-sc-ot1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-MediumItalic-tlf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-MediumItalic-tlf-sc-t1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-MediumItalic-tlf-t1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-MediumItalic-tlf-t1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-MediumItalic-tlf-ts1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-MediumItalic-tlf-ts1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-MediumItalic-tosf-ly1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-MediumItalic-tosf-ly1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-MediumItalic-tosf-ot1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-MediumItalic-tosf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-MediumItalic-tosf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-MediumItalic-tosf-sc-ot1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-MediumItalic-tosf-sc-ot1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-MediumItalic-tosf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-MediumItalic-tosf-sc-t1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-MediumItalic-tosf-t1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-MediumItalic-tosf-t1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-MediumItalic-tosf-ts1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-MediumItalic-tosf-ts1.tfm
texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Regular-tlf-ly1--base.tfm
texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Regular-tlf-ly1.tfm
texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Regular-tlf-ot1.tfm
@@ -140005,19 +153657,6 @@ runfiles size=1236
texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Regular-tosf-t1.tfm
texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Regular-tosf-ts1--base.tfm
texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Regular-tosf-ts1.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-SemiBold-osf-ly1--base.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-SemiBold-osf-ly1.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-SemiBold-osf-ot1.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-SemiBold-osf-sc-ly1--base.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-SemiBold-osf-sc-ly1.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-SemiBold-osf-sc-ot1--base.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-SemiBold-osf-sc-ot1.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-SemiBold-osf-sc-t1--base.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-SemiBold-osf-sc-t1.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-SemiBold-osf-t1--base.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-SemiBold-osf-t1.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-SemiBold-osf-ts1--base.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-SemiBold-osf-ts1.tfm
texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-SemiBold-tlf-ly1--base.tfm
texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-SemiBold-tlf-ly1.tfm
texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-SemiBold-tlf-ot1.tfm
@@ -140044,19 +153683,32 @@ runfiles size=1236
texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-SemiBold-tosf-t1.tfm
texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-SemiBold-tosf-ts1--base.tfm
texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-SemiBold-tosf-ts1.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Thin-osf-ly1--base.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Thin-osf-ly1.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Thin-osf-ot1.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Thin-osf-sc-ly1--base.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Thin-osf-sc-ly1.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Thin-osf-sc-ot1--base.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Thin-osf-sc-ot1.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Thin-osf-sc-t1--base.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Thin-osf-sc-t1.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Thin-osf-t1--base.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Thin-osf-t1.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Thin-osf-ts1--base.tfm
- texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Thin-osf-ts1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-SemiBoldItalic-tlf-ly1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-SemiBoldItalic-tlf-ly1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-SemiBoldItalic-tlf-ot1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-SemiBoldItalic-tlf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-SemiBoldItalic-tlf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-SemiBoldItalic-tlf-sc-ot1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-SemiBoldItalic-tlf-sc-ot1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-SemiBoldItalic-tlf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-SemiBoldItalic-tlf-sc-t1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-SemiBoldItalic-tlf-t1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-SemiBoldItalic-tlf-t1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-SemiBoldItalic-tlf-ts1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-SemiBoldItalic-tlf-ts1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-SemiBoldItalic-tosf-ly1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-SemiBoldItalic-tosf-ly1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-SemiBoldItalic-tosf-ot1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-SemiBoldItalic-tosf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-SemiBoldItalic-tosf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-SemiBoldItalic-tosf-sc-ot1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-SemiBoldItalic-tosf-sc-ot1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-SemiBoldItalic-tosf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-SemiBoldItalic-tosf-sc-t1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-SemiBoldItalic-tosf-t1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-SemiBoldItalic-tosf-t1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-SemiBoldItalic-tosf-ts1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-SemiBoldItalic-tosf-ts1.tfm
texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Thin-tlf-ly1--base.tfm
texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Thin-tlf-ly1.tfm
texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Thin-tlf-ot1.tfm
@@ -140083,21 +153735,50 @@ runfiles size=1236
texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Thin-tosf-t1.tfm
texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Thin-tosf-ts1--base.tfm
texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-Thin-tosf-ts1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ThinItalic-tlf-ly1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ThinItalic-tlf-ly1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ThinItalic-tlf-ot1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ThinItalic-tlf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ThinItalic-tlf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ThinItalic-tlf-sc-ot1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ThinItalic-tlf-sc-ot1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ThinItalic-tlf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ThinItalic-tlf-sc-t1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ThinItalic-tlf-t1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ThinItalic-tlf-t1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ThinItalic-tlf-ts1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ThinItalic-tlf-ts1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ThinItalic-tosf-ly1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ThinItalic-tosf-ly1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ThinItalic-tosf-ot1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ThinItalic-tosf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ThinItalic-tosf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ThinItalic-tosf-sc-ot1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ThinItalic-tosf-sc-ot1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ThinItalic-tosf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ThinItalic-tosf-sc-t1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ThinItalic-tosf-t1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ThinItalic-tosf-t1.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ThinItalic-tosf-ts1--base.tfm
+ texmf-dist/fonts/tfm/theleagueofmoveabletype/raleway/Raleway-ThinItalic-tosf-ts1.tfm
texmf-dist/fonts/type1/theleagueofmoveabletype/raleway/Raleway-Black.pfb
+ texmf-dist/fonts/type1/theleagueofmoveabletype/raleway/Raleway-BlackItalic.pfb
texmf-dist/fonts/type1/theleagueofmoveabletype/raleway/Raleway-Bold.pfb
+ texmf-dist/fonts/type1/theleagueofmoveabletype/raleway/Raleway-BoldItalic.pfb
texmf-dist/fonts/type1/theleagueofmoveabletype/raleway/Raleway-ExtraBold.pfb
+ texmf-dist/fonts/type1/theleagueofmoveabletype/raleway/Raleway-ExtraBoldItalic.pfb
texmf-dist/fonts/type1/theleagueofmoveabletype/raleway/Raleway-ExtraLight.pfb
+ texmf-dist/fonts/type1/theleagueofmoveabletype/raleway/Raleway-ExtraLightItalic.pfb
+ texmf-dist/fonts/type1/theleagueofmoveabletype/raleway/Raleway-Italic.pfb
texmf-dist/fonts/type1/theleagueofmoveabletype/raleway/Raleway-Light.pfb
+ texmf-dist/fonts/type1/theleagueofmoveabletype/raleway/Raleway-LightItalic.pfb
texmf-dist/fonts/type1/theleagueofmoveabletype/raleway/Raleway-Medium.pfb
+ texmf-dist/fonts/type1/theleagueofmoveabletype/raleway/Raleway-MediumItalic.pfb
texmf-dist/fonts/type1/theleagueofmoveabletype/raleway/Raleway-Regular.pfb
texmf-dist/fonts/type1/theleagueofmoveabletype/raleway/Raleway-SemiBold.pfb
+ texmf-dist/fonts/type1/theleagueofmoveabletype/raleway/Raleway-SemiBoldItalic.pfb
texmf-dist/fonts/type1/theleagueofmoveabletype/raleway/Raleway-Thin.pfb
- texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-Black-osf-ly1.vf
- texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-Black-osf-sc-ly1.vf
- texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-Black-osf-sc-ot1.vf
- texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-Black-osf-sc-t1.vf
- texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-Black-osf-t1.vf
- texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-Black-osf-ts1.vf
+ texmf-dist/fonts/type1/theleagueofmoveabletype/raleway/Raleway-ThinItalic.pfb
texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-Black-tlf-ly1.vf
texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-Black-tlf-sc-ly1.vf
texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-Black-tlf-sc-ot1.vf
@@ -140110,12 +153791,18 @@ runfiles size=1236
texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-Black-tosf-sc-t1.vf
texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-Black-tosf-t1.vf
texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-Black-tosf-ts1.vf
- texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-Bold-osf-ly1.vf
- texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-Bold-osf-sc-ly1.vf
- texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-Bold-osf-sc-ot1.vf
- texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-Bold-osf-sc-t1.vf
- texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-Bold-osf-t1.vf
- texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-Bold-osf-ts1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-BlackItalic-tlf-ly1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-BlackItalic-tlf-sc-ly1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-BlackItalic-tlf-sc-ot1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-BlackItalic-tlf-sc-t1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-BlackItalic-tlf-t1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-BlackItalic-tlf-ts1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-BlackItalic-tosf-ly1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-BlackItalic-tosf-sc-ly1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-BlackItalic-tosf-sc-ot1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-BlackItalic-tosf-sc-t1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-BlackItalic-tosf-t1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-BlackItalic-tosf-ts1.vf
texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-Bold-tlf-ly1.vf
texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-Bold-tlf-sc-ly1.vf
texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-Bold-tlf-sc-ot1.vf
@@ -140128,12 +153815,18 @@ runfiles size=1236
texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-Bold-tosf-sc-t1.vf
texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-Bold-tosf-t1.vf
texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-Bold-tosf-ts1.vf
- texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-ExtraBold-osf-ly1.vf
- texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-ExtraBold-osf-sc-ly1.vf
- texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-ExtraBold-osf-sc-ot1.vf
- texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-ExtraBold-osf-sc-t1.vf
- texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-ExtraBold-osf-t1.vf
- texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-ExtraBold-osf-ts1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-BoldItalic-tlf-ly1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-BoldItalic-tlf-sc-ly1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-BoldItalic-tlf-sc-ot1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-BoldItalic-tlf-sc-t1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-BoldItalic-tlf-t1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-BoldItalic-tlf-ts1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-BoldItalic-tosf-ly1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-BoldItalic-tosf-sc-ly1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-BoldItalic-tosf-sc-ot1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-BoldItalic-tosf-sc-t1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-BoldItalic-tosf-t1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-BoldItalic-tosf-ts1.vf
texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-ExtraBold-tlf-ly1.vf
texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-ExtraBold-tlf-sc-ly1.vf
texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-ExtraBold-tlf-sc-ot1.vf
@@ -140146,12 +153839,18 @@ runfiles size=1236
texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-ExtraBold-tosf-sc-t1.vf
texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-ExtraBold-tosf-t1.vf
texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-ExtraBold-tosf-ts1.vf
- texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-ExtraLight-osf-ly1.vf
- texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-ExtraLight-osf-sc-ly1.vf
- texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-ExtraLight-osf-sc-ot1.vf
- texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-ExtraLight-osf-sc-t1.vf
- texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-ExtraLight-osf-t1.vf
- texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-ExtraLight-osf-ts1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-ExtraBoldItalic-tlf-ly1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-ExtraBoldItalic-tlf-sc-ly1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-ExtraBoldItalic-tlf-sc-ot1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-ExtraBoldItalic-tlf-sc-t1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-ExtraBoldItalic-tlf-t1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-ExtraBoldItalic-tlf-ts1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-ExtraBoldItalic-tosf-ly1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-ExtraBoldItalic-tosf-sc-ly1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-ExtraBoldItalic-tosf-sc-ot1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-ExtraBoldItalic-tosf-sc-t1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-ExtraBoldItalic-tosf-t1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-ExtraBoldItalic-tosf-ts1.vf
texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-ExtraLight-tlf-ly1.vf
texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-ExtraLight-tlf-sc-ly1.vf
texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-ExtraLight-tlf-sc-ot1.vf
@@ -140164,12 +153863,30 @@ runfiles size=1236
texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-ExtraLight-tosf-sc-t1.vf
texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-ExtraLight-tosf-t1.vf
texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-ExtraLight-tosf-ts1.vf
- texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-Light-osf-ly1.vf
- texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-Light-osf-sc-ly1.vf
- texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-Light-osf-sc-ot1.vf
- texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-Light-osf-sc-t1.vf
- texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-Light-osf-t1.vf
- texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-Light-osf-ts1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-ExtraLightItalic-tlf-ly1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-ExtraLightItalic-tlf-sc-ly1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-ExtraLightItalic-tlf-sc-ot1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-ExtraLightItalic-tlf-sc-t1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-ExtraLightItalic-tlf-t1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-ExtraLightItalic-tlf-ts1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-ExtraLightItalic-tosf-ly1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-ExtraLightItalic-tosf-sc-ly1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-ExtraLightItalic-tosf-sc-ot1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-ExtraLightItalic-tosf-sc-t1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-ExtraLightItalic-tosf-t1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-ExtraLightItalic-tosf-ts1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-Italic-tlf-ly1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-Italic-tlf-sc-ly1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-Italic-tlf-sc-ot1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-Italic-tlf-sc-t1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-Italic-tlf-t1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-Italic-tlf-ts1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-Italic-tosf-ly1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-Italic-tosf-sc-ly1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-Italic-tosf-sc-ot1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-Italic-tosf-sc-t1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-Italic-tosf-t1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-Italic-tosf-ts1.vf
texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-Light-tlf-ly1.vf
texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-Light-tlf-sc-ly1.vf
texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-Light-tlf-sc-ot1.vf
@@ -140182,12 +153899,18 @@ runfiles size=1236
texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-Light-tosf-sc-t1.vf
texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-Light-tosf-t1.vf
texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-Light-tosf-ts1.vf
- texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-Medium-osf-ly1.vf
- texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-Medium-osf-sc-ly1.vf
- texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-Medium-osf-sc-ot1.vf
- texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-Medium-osf-sc-t1.vf
- texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-Medium-osf-t1.vf
- texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-Medium-osf-ts1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-LightItalic-tlf-ly1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-LightItalic-tlf-sc-ly1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-LightItalic-tlf-sc-ot1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-LightItalic-tlf-sc-t1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-LightItalic-tlf-t1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-LightItalic-tlf-ts1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-LightItalic-tosf-ly1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-LightItalic-tosf-sc-ly1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-LightItalic-tosf-sc-ot1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-LightItalic-tosf-sc-t1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-LightItalic-tosf-t1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-LightItalic-tosf-ts1.vf
texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-Medium-tlf-ly1.vf
texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-Medium-tlf-sc-ly1.vf
texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-Medium-tlf-sc-ot1.vf
@@ -140200,12 +153923,18 @@ runfiles size=1236
texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-Medium-tosf-sc-t1.vf
texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-Medium-tosf-t1.vf
texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-Medium-tosf-ts1.vf
- texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-Regular-osf-ly1.vf
- texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-Regular-osf-sc-ly1.vf
- texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-Regular-osf-sc-ot1.vf
- texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-Regular-osf-sc-t1.vf
- texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-Regular-osf-t1.vf
- texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-Regular-osf-ts1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-MediumItalic-tlf-ly1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-MediumItalic-tlf-sc-ly1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-MediumItalic-tlf-sc-ot1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-MediumItalic-tlf-sc-t1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-MediumItalic-tlf-t1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-MediumItalic-tlf-ts1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-MediumItalic-tosf-ly1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-MediumItalic-tosf-sc-ly1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-MediumItalic-tosf-sc-ot1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-MediumItalic-tosf-sc-t1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-MediumItalic-tosf-t1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-MediumItalic-tosf-ts1.vf
texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-Regular-tlf-ly1.vf
texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-Regular-tlf-sc-ly1.vf
texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-Regular-tlf-sc-ot1.vf
@@ -140218,12 +153947,6 @@ runfiles size=1236
texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-Regular-tosf-sc-t1.vf
texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-Regular-tosf-t1.vf
texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-Regular-tosf-ts1.vf
- texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-SemiBold-osf-ly1.vf
- texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-SemiBold-osf-sc-ly1.vf
- texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-SemiBold-osf-sc-ot1.vf
- texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-SemiBold-osf-sc-t1.vf
- texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-SemiBold-osf-t1.vf
- texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-SemiBold-osf-ts1.vf
texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-SemiBold-tlf-ly1.vf
texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-SemiBold-tlf-sc-ly1.vf
texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-SemiBold-tlf-sc-ot1.vf
@@ -140236,12 +153959,18 @@ runfiles size=1236
texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-SemiBold-tosf-sc-t1.vf
texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-SemiBold-tosf-t1.vf
texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-SemiBold-tosf-ts1.vf
- texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-Thin-osf-ly1.vf
- texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-Thin-osf-sc-ly1.vf
- texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-Thin-osf-sc-ot1.vf
- texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-Thin-osf-sc-t1.vf
- texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-Thin-osf-t1.vf
- texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-Thin-osf-ts1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-SemiBoldItalic-tlf-ly1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-SemiBoldItalic-tlf-sc-ly1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-SemiBoldItalic-tlf-sc-ot1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-SemiBoldItalic-tlf-sc-t1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-SemiBoldItalic-tlf-t1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-SemiBoldItalic-tlf-ts1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-SemiBoldItalic-tosf-ly1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-SemiBoldItalic-tosf-sc-ly1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-SemiBoldItalic-tosf-sc-ot1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-SemiBoldItalic-tosf-sc-t1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-SemiBoldItalic-tosf-t1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-SemiBoldItalic-tosf-ts1.vf
texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-Thin-tlf-ly1.vf
texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-Thin-tlf-sc-ly1.vf
texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-Thin-tlf-sc-ot1.vf
@@ -140254,29 +153983,32 @@ runfiles size=1236
texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-Thin-tosf-sc-t1.vf
texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-Thin-tosf-t1.vf
texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-Thin-tosf-ts1.vf
- texmf-dist/tex/latex/raleway/.sty
- texmf-dist/tex/latex/raleway/LY1-TLF.fd
- texmf-dist/tex/latex/raleway/LY1Raleway-OsF.fd
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-ThinItalic-tlf-ly1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-ThinItalic-tlf-sc-ly1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-ThinItalic-tlf-sc-ot1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-ThinItalic-tlf-sc-t1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-ThinItalic-tlf-t1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-ThinItalic-tlf-ts1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-ThinItalic-tosf-ly1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-ThinItalic-tosf-sc-ly1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-ThinItalic-tosf-sc-ot1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-ThinItalic-tosf-sc-t1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-ThinItalic-tosf-t1.vf
+ texmf-dist/fonts/vf/theleagueofmoveabletype/raleway/Raleway-ThinItalic-tosf-ts1.vf
texmf-dist/tex/latex/raleway/LY1Raleway-TLF.fd
texmf-dist/tex/latex/raleway/LY1Raleway-TOsF.fd
- texmf-dist/tex/latex/raleway/OT1-TLF.fd
- texmf-dist/tex/latex/raleway/OT1Raleway-OsF.fd
texmf-dist/tex/latex/raleway/OT1Raleway-TLF.fd
texmf-dist/tex/latex/raleway/OT1Raleway-TOsF.fd
- texmf-dist/tex/latex/raleway/T1-TLF.fd
- texmf-dist/tex/latex/raleway/T1Raleway-OsF.fd
texmf-dist/tex/latex/raleway/T1Raleway-TLF.fd
texmf-dist/tex/latex/raleway/T1Raleway-TOsF.fd
- texmf-dist/tex/latex/raleway/TS1-TLF.fd
- texmf-dist/tex/latex/raleway/TS1Raleway-OsF.fd
texmf-dist/tex/latex/raleway/TS1Raleway-TLF.fd
texmf-dist/tex/latex/raleway/TS1Raleway-TOsF.fd
texmf-dist/tex/latex/raleway/raleway-type1-autoinst.sty
texmf-dist/tex/latex/raleway/raleway.sty
catalogue-ctan /fonts/raleway
-catalogue-date 2013-05-07 12:36:07 +0200
+catalogue-date 2014-05-07 18:59:41 +0200
catalogue-license ofl
-catalogue-version 1.0
+catalogue-version 1.1
name ran_toks
category Package
@@ -140284,11 +154016,11 @@ revision 28361
shortdesc Randomise token strings.
longdesc The package provides means of randomising lists of tokens, or
longdesc lists of chunks of tokens. Two mechanisms for defining chunks
-longdesc are provided: - the macro \ranToks command accepts an argument
-longdesc containing tokens to be randomised; and - the
-longdesc \bRTVToks/\eRTVToks commands delimit a collection of tokens for
-longdesc randomising; each group inside a rtVw constitutes one of these
-longdesc (typically larger) token sets.
+longdesc are provided: the macro \ranToks command accepts an argument
+longdesc containing tokens to be randomised; and the \bRTVToks/\eRTVToks
+longdesc commands delimit a collection of tokens for randomising; each
+longdesc group inside a rtVw constitutes one of these (typically larger)
+longdesc token sets.
docfiles size=24
texmf-dist/doc/latex/ran_toks/doc/rantoks_man.pdf details="Package documentation"
texmf-dist/doc/latex/ran_toks/doc/rantoks_man.tex
@@ -140298,7 +154030,7 @@ srcfiles size=4
runfiles size=2
texmf-dist/tex/latex/ran_toks/ran_toks.sty
catalogue-ctan /macros/latex/contrib/ran_toks
-catalogue-date 2012-12-05 12:44:11 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1
catalogue-version 1.0a
@@ -140330,7 +154062,8 @@ shortdesc Random walks using TikZ.
longdesc The randomwalk package provides a user command, \RandomWalk, to
longdesc draw random walks with a given number of steps. Lengths and
longdesc angles of the steps can be customized in various ways. The
-longdesc package uses PGF/TikZ for its graphical output.
+longdesc package uses lcg for its 'random' numbers and PGF/TikZ for its
+longdesc graphical output.
docfiles size=122
texmf-dist/doc/latex/randomwalk/README details="Readme"
texmf-dist/doc/latex/randomwalk/randomwalk.pdf details="Package documentation"
@@ -140340,7 +154073,7 @@ srcfiles size=5
runfiles size=2
texmf-dist/tex/latex/randomwalk/randomwalk.sty
catalogue-ctan /macros/latex/contrib/randomwalk
-catalogue-date 2013-01-08 14:36:26 +0100
+catalogue-date 2014-01-04 14:18:29 +0100
catalogue-license lppl
catalogue-version 0.2c
@@ -140391,11 +154124,11 @@ revision 15878
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 every
-longdesc RCS field in your document - put the checkin date on the
-longdesc 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 know of. In particular, you can easily access values of every
+longdesc RCS field in your document put the checkin date on the
+longdesc titlepage put RCS fields in a footline You can typeset revision
+longdesc logs. Not in verbatim -- real LaTeX text! But you need a
+longdesc 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
@@ -140436,7 +154169,7 @@ srcfiles size=33
runfiles size=9
texmf-dist/tex/latex/rcs/rcs.sty
catalogue-ctan /macros/latex/contrib/rcs
-catalogue-date 2011-11-11 12:03:47 +0100
+catalogue-date 2013-12-13 21:21:54 +0100
catalogue-license gpl
name rcs-multi
@@ -140458,7 +154191,7 @@ srcfiles size=14
runfiles size=3
texmf-dist/tex/latex/rcs-multi/rcs-multi.sty
catalogue-ctan /macros/latex/contrib/rcs-multi
-catalogue-date 2011-11-11 12:03:47 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 0.1a
@@ -140507,7 +154240,7 @@ docfiles size=63
runfiles size=2
texmf-dist/tex/latex/readarray/readarray.sty
catalogue-ctan /macros/latex/contrib/readarray
-catalogue-date 2013-05-15 00:25:13 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.2
@@ -140559,7 +154292,7 @@ srcfiles size=5
runfiles size=2
texmf-dist/tex/latex/realscripts/realscripts.sty
catalogue-ctan /macros/latex/contrib/realscripts
-catalogue-date 2013-03-23 12:49:48 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 0.3c
@@ -140576,7 +154309,7 @@ docfiles size=68
runfiles size=10
texmf-dist/tex/latex/rec-thy/rec-thy.sty
catalogue-ctan /macros/latex/contrib/rec-thy
-catalogue-date 2012-06-21 10:44:34 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license pd
catalogue-version 1.3
@@ -140652,7 +154385,7 @@ runfiles size=8
texmf-dist/fonts/type1/public/recycle/recycle.pfb
texmf-dist/tex/latex/recycle/recycle.sty
catalogue-ctan /fonts/recycle
-catalogue-date 2012-06-03 18:15:41 +0200
+catalogue-date 2014-05-07 23:10:33 +0200
catalogue-license gpl
name refcheck
@@ -140675,6 +154408,50 @@ catalogue-date 2013-02-27 12:58:34 +0100
catalogue-license gpl
catalogue-version 1.9.1
+name refenums
+category Package
+revision 32562
+shortdesc Define reference labels items with names of their own.
+longdesc The package provides commands to define enumerable items with a
+longdesc number and a long name, which can be referenced referenced
+longdesc later with the name or just the short form. For instance,
+longdesc "Milestone M1: Specification created" can be defined and later
+longdesc on be referenced with 'M1' or 'M1 ("Specification created")'.
+longdesc The text in the references is derived from the definition and
+longdesc also rendered as hyperlink to the definition.
+docfiles size=25
+ texmf-dist/doc/latex/refenums/LICENSE
+ texmf-dist/doc/latex/refenums/README.md
+ texmf-dist/doc/latex/refenums/demo.pdf details="Package documentation"
+ texmf-dist/doc/latex/refenums/demo.tex
+ texmf-dist/doc/latex/refenums/test/demo-sec-param.tex
+runfiles size=2
+ texmf-dist/tex/latex/refenums/refenums.sty
+catalogue-ctan /macros/latex/contrib/refenums
+catalogue-date 2014-02-26 23:03:13 +0100
+catalogue-license lppl1.3
+catalogue-version 1.1.1
+
+name reflectgraphics
+category Package
+revision 32181
+shortdesc Techniques for reflecting graphics.
+longdesc The package provides a macro for reflecting images, in a number
+longdesc of different ways, in pursuit of "more striking" graphics in a
+longdesc document.
+docfiles size=170
+ texmf-dist/doc/latex/reflectgraphics/README details="Readme"
+ texmf-dist/doc/latex/reflectgraphics/reflectgraphics.pdf details="Package documentation"
+srcfiles size=8
+ texmf-dist/source/latex/reflectgraphics/reflectgraphics.dtx
+ texmf-dist/source/latex/reflectgraphics/reflectgraphics.ins
+runfiles size=2
+ texmf-dist/tex/latex/reflectgraphics/reflectgraphics.sty
+catalogue-ctan /macros/latex/contrib/reflectgraphics
+catalogue-date 2014-02-26 23:03:13 +0100
+catalogue-license lppl1.3
+catalogue-version 0.2
+
name refman
category Package
revision 15878
@@ -140753,7 +154530,7 @@ srcfiles size=4
runfiles size=1
texmf-dist/tex/latex/regcount/regcount.sty
catalogue-ctan /macros/latex/contrib/regcount
-catalogue-date 2012-06-08 07:46:14 +0200
+catalogue-date 2013-10-03 14:20:59 +0200
catalogue-license lppl
catalogue-version 1.0
@@ -140775,7 +154552,7 @@ srcfiles size=16
runfiles size=7
texmf-dist/tex/latex/regexpatch/regexpatch.sty
catalogue-ctan /macros/latex/contrib/regexpatch
-catalogue-date 2013-03-28 17:44:41 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 0.2
@@ -140828,7 +154605,7 @@ srcfiles size=15
runfiles size=4
texmf-dist/tex/latex/regstats/regstats.sty
catalogue-ctan /macros/latex/contrib/regstats
-catalogue-date 2012-06-08 07:46:14 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.0h
@@ -140897,7 +154674,7 @@ docfiles size=40
runfiles size=6
texmf-dist/tex/latex/reotex/reotex.sty
catalogue-ctan /graphics/pgf/contrib/reotex
-catalogue-date 2012-01-11 08:56:14 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.0
@@ -140919,14 +154696,52 @@ catalogue-date 2012-06-03 18:15:41 +0200
catalogue-license lppl
catalogue-version 0.01
+name repere
+category Package
+revision 32455
+shortdesc Diagrams for school mathematics
+longdesc The package simplifies drawing figures in a coordinate system;
+longdesc the specific target is support of secondary school mathematics.
+docfiles size=165
+ texmf-dist/doc/metapost/repere/README details="Readme"
+ texmf-dist/doc/metapost/repere/repere-doc.pdf details="Package documentation"
+ texmf-dist/doc/metapost/repere/repere-doc.tex
+runfiles size=13
+ texmf-dist/metapost/repere/repere.mp
+catalogue-ctan /graphics/metapost/contrib/macros/repere
+catalogue-date 2014-02-26 23:03:13 +0100
+catalogue-license lppl1.3
+catalogue-version 13.12
+
+name repltext
+category Package
+revision 33442
+shortdesc Control how text gets copied from a PDF file.
+longdesc The repltext package exposes to LaTeX a relatively obscure PDF
+longdesc feature: replacement text. When replacement text is specified
+longdesc for a piece of text, it is the replacement text, not the
+longdesc typeset text that is copied and pasted.
+docfiles size=76
+ texmf-dist/doc/latex/repltext/README details="Readme"
+ texmf-dist/doc/latex/repltext/repltext.pdf details="Package documentation"
+srcfiles size=5
+ texmf-dist/source/latex/repltext/repltext.dtx
+ texmf-dist/source/latex/repltext/repltext.ins
+runfiles size=1
+ texmf-dist/tex/latex/repltext/repltext.sty
+catalogue-ctan /macros/latex/contrib/repltext
+catalogue-date 2014-04-25 11:20:11 +0200
+catalogue-license lppl1.3
+catalogue-version 1.0
+
name resphilosophica
category Package
-revision 28799
+revision 32874
shortdesc Typeset articles for the journal Res Philosophica.
longdesc Th bundle provides a class for typesetting articles for the
longdesc journal Res Philosophica. Development was commissioned by Saint
longdesc Louis University.
-docfiles size=125
+docfiles size=134
texmf-dist/doc/latex/resphilosophica/Makefile
texmf-dist/doc/latex/resphilosophica/README details="Readme"
texmf-dist/doc/latex/resphilosophica/resphilosophica.bib
@@ -140934,16 +154749,16 @@ docfiles size=125
texmf-dist/doc/latex/resphilosophica/rpsample.bib
texmf-dist/doc/latex/resphilosophica/rpsample.pdf
texmf-dist/doc/latex/resphilosophica/rpsample.tex
-srcfiles size=13
+srcfiles size=16
texmf-dist/source/latex/resphilosophica/resphilosophica.dtx
texmf-dist/source/latex/resphilosophica/resphilosophica.ins
-runfiles size=13
+runfiles size=14
texmf-dist/bibtex/bst/resphilosophica/resphilosophica.bst
texmf-dist/tex/latex/resphilosophica/resphilosophica.cls
catalogue-ctan /macros/latex/contrib/resphilosophica
-catalogue-date 2013-01-10 19:11:35 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
-catalogue-version 1.11
+catalogue-version 1.19
name resumecls
category Package
@@ -140970,7 +154785,7 @@ srcfiles size=4
runfiles size=1
texmf-dist/tex/xelatex/resumecls/resumecls.cls
catalogue-ctan /macros/xetex/latex/resumecls
-catalogue-date 2013-03-17 10:58:10 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 0.2.1
@@ -141001,7 +154816,7 @@ docfiles size=55
texmf-dist/doc/plain/reverxii/reverxii.pdf details="Package documentation"
texmf-dist/doc/plain/reverxii/reverxii.tex
catalogue-ctan /macros/plain/contrib/reverxii
-catalogue-date 2012-06-18 18:51:38 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
name revtex
@@ -141075,7 +154890,7 @@ runfiles size=184
texmf-dist/tex/latex/revtex/revsymb4-1.sty
texmf-dist/tex/latex/revtex/revtex4-1.cls
catalogue-ctan /macros/latex/contrib/revtex
-catalogue-date 2011-11-17 08:52:38 +0100
+catalogue-date 2014-02-15 16:22:18 +0100
catalogue-license lppl1.3
catalogue-version 4.1r
@@ -141117,6 +154932,26 @@ runfiles size=75
texmf-dist/tex/latex/revtex4/revtex4.cls
texmf-dist/tex/latex/revtex4/rmp.rtx
+name ribbonproofs
+category Package
+revision 31137
+shortdesc Drawing ribbon proofs.
+longdesc The package provides a way to draw "ribbon proofs" in LaTeX. A
+longdesc ribbon proof is a diagrammatic representation of a mathematical
+longdesc proof that a computer program meets its specification. These
+longdesc diagrams are more human-readable, more scalable, and more
+longdesc easily modified than the corresponding textual proofs.
+docfiles size=93
+ texmf-dist/doc/latex/ribbonproofs/README details="Readme"
+ texmf-dist/doc/latex/ribbonproofs/ribbonproofsmanual.pdf details="Package documentation"
+ texmf-dist/doc/latex/ribbonproofs/ribbonproofsmanual.tex
+runfiles size=14
+ texmf-dist/tex/latex/ribbonproofs/ribbonproofs.sty
+catalogue-ctan /macros/latex/contrib/ribbonproofs
+catalogue-date 2014-02-26 23:03:13 +0100
+catalogue-license lppl1.3
+catalogue-version 1.0
+
name rjlparshap
category Package
revision 15878
@@ -141134,7 +154969,7 @@ srcfiles size=8
runfiles size=2
texmf-dist/tex/latex/rjlparshap/rjlpshap.sty
catalogue-ctan /macros/latex/contrib/rjlparshap
-catalogue-date 2012-06-07 12:37:31 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.2
catalogue-version 1.0
@@ -141272,7 +155107,7 @@ srcfiles size=10
runfiles size=2
texmf-dist/tex/latex/romanbar/romanbar.sty
catalogue-ctan /macros/latex/contrib/romanbar
-catalogue-date 2013-03-10 15:09:27 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.0f
@@ -141402,7 +155237,7 @@ runfiles size=281
texmf-dist/tex/latex/romande/ts1yrdaw.fd
texmf-dist/tex/latex/romande/ts1yrdw.fd
catalogue-ctan /fonts/romandeadf
-catalogue-date 2012-06-15 21:53:47 +0200
+catalogue-date 2014-05-07 23:10:33 +0200
catalogue-license lppl
catalogue-version 1.008-v7-sc
@@ -141534,7 +155369,7 @@ docfiles size=1
runfiles size=1
texmf-dist/tex/latex/roundbox/roundbox.sty
catalogue-ctan /macros/latex/contrib/roundbox
-catalogue-date 2013-04-04 11:28:51 +0200
+catalogue-date 2014-04-29 06:13:54 +0200
catalogue-license lppl1.3
catalogue-version 0.2
@@ -141625,12 +155460,12 @@ runfiles size=35
texmf-dist/fonts/type1/public/rsfs/rsfs7.pfm
texmf-dist/tex/plain/rsfs/scrload.tex
catalogue-ctan /fonts/rsfs
-catalogue-date 2012-03-14 17:52:43 +0100
+catalogue-date 2014-05-07 23:10:33 +0200
catalogue-license other-free
name rsfso
category Package
-revision 23462
+revision 32051
shortdesc A mathematical calligraphic font based on rsfs.
longdesc The package provides virtual fonts and LaTeX support files for
longdesc mathematical calligraphic fonts based on the rsfs Adobe Type 1
@@ -141641,7 +155476,7 @@ execute addMap rsfso.map
docfiles size=38
texmf-dist/doc/fonts/rsfso/README details="Readme"
texmf-dist/doc/fonts/rsfso/mh2scr0.png
- texmf-dist/doc/fonts/rsfso/rsfso-doc.pdf details="Package documentation"
+ texmf-dist/doc/fonts/rsfso/rsfso-doc.pdf
texmf-dist/doc/fonts/rsfso/rsfso-doc.tex
runfiles size=12
texmf-dist/fonts/map/dvips/rsfso/rsfso.map
@@ -141654,12 +155489,12 @@ runfiles size=12
texmf-dist/fonts/vf/public/rsfso/rsfso10.vf
texmf-dist/fonts/vf/public/rsfso/rsfso5.vf
texmf-dist/fonts/vf/public/rsfso/rsfso7.vf
- texmf-dist/tex/latex/public/rsfso/rsfso.sty
- texmf-dist/tex/latex/public/rsfso/ursfso.fd
+ texmf-dist/tex/latex/rsfso/rsfso.sty
+ texmf-dist/tex/latex/rsfso/ursfso.fd
catalogue-ctan /fonts/rsfso
-catalogue-date 2012-03-14 17:52:43 +0100
+catalogue-date 2014-05-07 23:10:33 +0200
catalogue-license lppl
-catalogue-version 1
+catalogue-version 1.01
name rterface
category Package
@@ -141675,7 +155510,7 @@ docfiles size=19
runfiles size=1
texmf-dist/tex/latex/rterface/rterface.sty
catalogue-ctan /macros/latex/contrib/rterface
-catalogue-date 2013-04-23 19:30:36 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.2
name rtkinenc
@@ -141727,6 +155562,198 @@ catalogue-ctan /macros/latex/contrib/rtklage
catalogue-date 2012-06-03 16:14:40 +0200
catalogue-license lppl
+name rubik
+category Package
+revision 32919
+shortdesc Document Rubik cube configurations and rotation sequences.
+longdesc The bundle provides two packages: rubikcube provides commands
+longdesc for typesetting Rubik cubes and their transformations; and
+longdesc rubikrotation which can process a sequence of Rubik rotation
+longdesc moves, with the help of a Perl package executed via \write18
+longdesc (shell escape) commands.
+depend rubik.ARCH
+docfiles size=270
+ texmf-dist/doc/latex/rubik/README details="Readme"
+ texmf-dist/doc/latex/rubik/Rubik_doc_figA.pdf
+ texmf-dist/doc/latex/rubik/Rubik_doc_figB.pdf
+ texmf-dist/doc/latex/rubik/Rubik_doc_figC.pdf
+ texmf-dist/doc/latex/rubik/Rubik_doc_figD.pdf
+ texmf-dist/doc/latex/rubik/Rubik_doc_figE.pdf
+ texmf-dist/doc/latex/rubik/Rubikrot_doc_figA.pdf
+ texmf-dist/doc/latex/rubik/Rubikrot_doc_figB.pdf
+ texmf-dist/doc/latex/rubik/example-cube.pdf
+ texmf-dist/doc/latex/rubik/example-cube.tex
+ texmf-dist/doc/latex/rubik/example-rot1.pdf
+ texmf-dist/doc/latex/rubik/example-rot1.sh
+ texmf-dist/doc/latex/rubik/example-rot1.tex
+ texmf-dist/doc/latex/rubik/example-rot2.pdf
+ texmf-dist/doc/latex/rubik/example-rot2.sh
+ texmf-dist/doc/latex/rubik/example-rot2.tex
+ texmf-dist/doc/latex/rubik/rubikcube.pdf details="Rubikcube package documentation"
+ texmf-dist/doc/latex/rubik/rubikrotation.pdf details="Rubikrotation package documentation"
+srcfiles size=62
+ texmf-dist/source/latex/rubik/example-rot1.bat
+ texmf-dist/source/latex/rubik/example-rot2.bat
+ texmf-dist/source/latex/rubik/rubikcube.dtx
+ texmf-dist/source/latex/rubik/rubikcube.ins
+ texmf-dist/source/latex/rubik/rubikrotation.dtx
+ texmf-dist/source/latex/rubik/rubikrotation.ins
+runfiles size=29
+ texmf-dist/scripts/rubik/rubikrotation.pl
+ texmf-dist/tex/latex/rubik/rubikcube.sty
+ texmf-dist/tex/latex/rubik/rubikrotation.sty
+catalogue-ctan /macros/latex/contrib/rubik
+catalogue-date 2014-02-26 23:03:13 +0100
+catalogue-license lppl1.3
+catalogue-version 2.0
+
+name rubik.alpha-linux
+category Package
+revision 32919
+shortdesc alpha-linux files of rubik
+binfiles arch=alpha-linux size=1
+ bin/alpha-linux/rubikrotation
+
+name rubik.amd64-freebsd
+category Package
+revision 32919
+shortdesc amd64-freebsd files of rubik
+binfiles arch=amd64-freebsd size=1
+ bin/amd64-freebsd/rubikrotation
+
+name rubik.amd64-kfreebsd
+category Package
+revision 32919
+shortdesc amd64-kfreebsd files of rubik
+binfiles arch=amd64-kfreebsd size=1
+ bin/amd64-kfreebsd/rubikrotation
+
+name rubik.amd64-netbsd
+category Package
+revision 32919
+shortdesc amd64-netbsd files of rubik
+binfiles arch=amd64-netbsd size=1
+ bin/amd64-netbsd/rubikrotation
+
+name rubik.armel-linux
+category Package
+revision 32919
+shortdesc armel-linux files of rubik
+binfiles arch=armel-linux size=1
+ bin/armel-linux/rubikrotation
+
+name rubik.armhf-linux
+category Package
+revision 32919
+shortdesc armhf-linux files of rubik
+binfiles arch=armhf-linux size=1
+ bin/armhf-linux/rubikrotation
+
+name rubik.i386-cygwin
+category Package
+revision 32919
+shortdesc i386-cygwin files of rubik
+binfiles arch=i386-cygwin size=1
+ bin/i386-cygwin/rubikrotation
+
+name rubik.i386-freebsd
+category Package
+revision 32919
+shortdesc i386-freebsd files of rubik
+binfiles arch=i386-freebsd size=1
+ bin/i386-freebsd/rubikrotation
+
+name rubik.i386-kfreebsd
+category Package
+revision 32919
+shortdesc i386-kfreebsd files of rubik
+binfiles arch=i386-kfreebsd size=1
+ bin/i386-kfreebsd/rubikrotation
+
+name rubik.i386-linux
+category Package
+revision 32919
+shortdesc i386-linux files of rubik
+binfiles arch=i386-linux size=1
+ bin/i386-linux/rubikrotation
+
+name rubik.i386-netbsd
+category Package
+revision 32919
+shortdesc i386-netbsd files of rubik
+binfiles arch=i386-netbsd size=1
+ bin/i386-netbsd/rubikrotation
+
+name rubik.i386-solaris
+category Package
+revision 32919
+shortdesc i386-solaris files of rubik
+binfiles arch=i386-solaris size=1
+ bin/i386-solaris/rubikrotation
+
+name rubik.mipsel-linux
+category Package
+revision 32919
+shortdesc mipsel-linux files of rubik
+binfiles arch=mipsel-linux size=1
+ bin/mipsel-linux/rubikrotation
+
+name rubik.powerpc-linux
+category Package
+revision 32919
+shortdesc powerpc-linux files of rubik
+binfiles arch=powerpc-linux size=1
+ bin/powerpc-linux/rubikrotation
+
+name rubik.sparc-solaris
+category Package
+revision 32919
+shortdesc sparc-solaris files of rubik
+binfiles arch=sparc-solaris size=1
+ bin/sparc-solaris/rubikrotation
+
+name rubik.universal-darwin
+category Package
+revision 32919
+shortdesc universal-darwin files of rubik
+binfiles arch=universal-darwin size=1
+ bin/universal-darwin/rubikrotation
+
+name rubik.win32
+category Package
+revision 32919
+shortdesc win32 files of rubik
+binfiles arch=win32 size=1
+ bin/win32/rubikrotation.exe
+
+name rubik.x86_64-cygwin
+category Package
+revision 33557
+shortdesc x86_64-cygwin files of rubik
+binfiles arch=x86_64-cygwin size=1
+ bin/x86_64-cygwin/rubikrotation
+
+name rubik.x86_64-darwin
+category Package
+revision 32919
+shortdesc x86_64-darwin files of rubik
+binfiles arch=x86_64-darwin size=1
+ bin/x86_64-darwin/rubikrotation
+
+name rubik.x86_64-linux
+category Package
+revision 32919
+shortdesc x86_64-linux files of rubik
+binfiles arch=x86_64-linux size=1
+ bin/x86_64-linux/rubikrotation
+
+name rubik.x86_64-solaris
+category Package
+revision 32919
+shortdesc x86_64-solaris files of rubik
+binfiles arch=x86_64-solaris size=1
+ bin/x86_64-solaris/rubikrotation
+
name ruhyphen
category Package
revision 21081
@@ -141775,6 +155802,27 @@ catalogue-date 2012-06-04 13:41:04 +0200
catalogue-license lppl
catalogue-version 1.6
+name rulercompass
+category Package
+revision 32392
+shortdesc A TikZ library for straight-edge and compass diagrams.
+longdesc The package defines some commands and styles to support drawing
+longdesc straight-edge and compass diagrams with TikZ.
+docfiles size=123
+ texmf-dist/doc/latex/rulercompass/README.txt
+ texmf-dist/doc/latex/rulercompass/rulercompass.pdf details="Code listing"
+ texmf-dist/doc/latex/rulercompass/rulercompass_doc.pdf details="Package documentation"
+ texmf-dist/doc/latex/rulercompass/rulercompass_doc.tex
+srcfiles size=7
+ texmf-dist/source/latex/rulercompass/rulercompass.dtx
+ texmf-dist/source/latex/rulercompass/rulercompass.ins
+runfiles size=4
+ texmf-dist/tex/latex/rulercompass/tikzlibraryrulercompass.code.tex
+catalogue-ctan /graphics/pgf/contrib/rulercompass
+catalogue-date 2014-02-26 23:03:13 +0100
+catalogue-license lppl1.3
+catalogue-version 1
+
name russ
category Package
revision 25209
@@ -141793,7 +155841,7 @@ docfiles size=89
runfiles size=50
texmf-dist/tex/latex/russ/russ.sty
catalogue-ctan /macros/latex/contrib/russ
-catalogue-date 2012-05-08 12:04:40 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
name rviewport
@@ -141849,18 +155897,18 @@ docfiles size=26
runfiles size=1
texmf-dist/tex/latex/rvwrite/rvwrite.sty
catalogue-ctan /macros/latex/contrib/rvwrite
-catalogue-date 2012-06-04 16:55:44 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.2
name ryethesis
category Package
-revision 21316
+revision 33945
shortdesc Class for Ryerson Unversity Graduate School requirements.
longdesc The class offers support for formatting a thesis, dissertation
longdesc or project according to Ryerson University's School of Graduate
longdesc Studies thesis formatting regulations.
-docfiles size=122
+docfiles size=123
texmf-dist/doc/latex/ryethesis/Makefile
texmf-dist/doc/latex/ryethesis/README details="Readme"
texmf-dist/doc/latex/ryethesis/figure1.pdf
@@ -141868,34 +155916,34 @@ docfiles size=122
texmf-dist/doc/latex/ryethesis/ryesample.pdf details="Example output"
texmf-dist/doc/latex/ryethesis/ryesample.tex
texmf-dist/doc/latex/ryethesis/ryethesis.pdf details="Package documentation"
-srcfiles size=12
+srcfiles size=13
texmf-dist/source/latex/ryethesis/ryethesis.dtx
texmf-dist/source/latex/ryethesis/ryethesis.ins
runfiles size=5
texmf-dist/tex/latex/ryethesis/ryethesis.cls
catalogue-ctan /macros/latex/contrib/ryethesis
-catalogue-date 2012-02-09 21:58:23 +0100
+catalogue-date 2014-05-09 11:52:57 +0200
catalogue-license lppl1.3
-catalogue-version 1.3
+catalogue-version 1.36
name sa-tikz
category Package
-revision 28714
+revision 32815
shortdesc TikZ library to draw switching architectures.
longdesc The package provides a library that offers an easy way to draw
longdesc switching architectures and to customize their aspect.
-docfiles size=208
+docfiles size=244
texmf-dist/doc/latex/sa-tikz/README details="Readme"
texmf-dist/doc/latex/sa-tikz/pgfmanual-en-macros.tex
texmf-dist/doc/latex/sa-tikz/sa-tikz-doc.pdf
texmf-dist/doc/latex/sa-tikz/sa-tikz-doc.tex
-runfiles size=22
+runfiles size=26
texmf-dist/tex/latex/sa-tikz/sa-tikz.sty
texmf-dist/tex/latex/sa-tikz/tikzlibraryswitching-architectures.code.tex
catalogue-ctan /graphics/pgf/contrib/sa-tikz
-catalogue-date 2013-01-08 10:49:23 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
-catalogue-version 0.5
+catalogue-version 0.7a
name sageep
category Package
@@ -141920,7 +155968,7 @@ runfiles size=9
texmf-dist/bibtex/bst/sageep/sageep.bst
texmf-dist/tex/latex/sageep/sageep.cls
catalogue-ctan /macros/latex/contrib/sageep
-catalogue-date 2012-06-04 20:32:11 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.0
@@ -141970,7 +156018,7 @@ runfiles size=167
texmf-dist/tex/latex/sanskrit/ot1skt.fd
texmf-dist/tex/latex/sanskrit/skt.sty
catalogue-ctan /language/sanskrit
-catalogue-date 2012-05-25 22:35:51 +0200
+catalogue-date 2014-05-07 23:23:47 +0200
catalogue-license lppl
name sansmath
@@ -142023,7 +156071,7 @@ runfiles size=19
texmf-dist/tex/latex/sansmathaccent/ot1mathkerncmss.fd
texmf-dist/tex/latex/sansmathaccent/sansmathaccent.sty
catalogue-ctan /fonts/sansmathaccent
-catalogue-date 2013-04-30 15:48:45 +0200
+catalogue-date 2014-05-07 23:23:47 +0200
catalogue-license lppl1.3
name sansmathfonts
@@ -142557,37 +156605,41 @@ runfiles size=1986
texmf-dist/tex/latex/sansmathfonts/ussmsb.fd
texmf-dist/tex/latex/sansmathfonts/uxcmss.fd
catalogue-ctan /fonts/sansmathfonts
-catalogue-date 2013-04-30 11:14:16 +0200
+catalogue-date 2014-05-07 23:23:47 +0200
catalogue-license lppl1.3
catalogue-version 1
name sapthesis
category Package
-revision 28345
+revision 31487
shortdesc Typeset theses for Sapienza-University, Rome.
longdesc The class will typeset Ph.D., Master, and Bachelor theses that
longdesc adhere to the publishing guidelines of the Sapienza-University
longdesc of Rome.
-docfiles size=154
+docfiles size=73
texmf-dist/doc/latex/sapthesis/README details="Readme"
+ texmf-dist/doc/latex/sapthesis/examples/Laurea.tex
+ texmf-dist/doc/latex/sapthesis/examples/LaureaMagistrale.tex
+ texmf-dist/doc/latex/sapthesis/examples/Master.tex
+ texmf-dist/doc/latex/sapthesis/examples/PhD.tex
+ texmf-dist/doc/latex/sapthesis/examples/Specialization.tex
+ texmf-dist/doc/latex/sapthesis/examples/TFA.tex
texmf-dist/doc/latex/sapthesis/sapthesis-doc.pdf details="Package documentation"
texmf-dist/doc/latex/sapthesis/sapthesis-doc.tex
- texmf-dist/doc/latex/sapthesis/sapthesis-example.pdf details="Example of use"
- texmf-dist/doc/latex/sapthesis/sapthesis-example.tex
texmf-dist/doc/latex/sapthesis/sapthesis.layout
-runfiles size=27
+runfiles size=29
texmf-dist/bibtex/bst/sapthesis/sapthesis.bst
texmf-dist/tex/latex/sapthesis/sapienza-MLblack-pos.pdf
texmf-dist/tex/latex/sapthesis/sapienza-MLred-pos.pdf
texmf-dist/tex/latex/sapthesis/sapthesis.cls
catalogue-ctan /macros/latex/contrib/sapthesis
-catalogue-date 2012-11-23 11:17:42 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
-catalogue-version 3.2
+catalogue-version 3.7
name sasnrdisplay
category Package
-revision 25751
+revision 33120
shortdesc Typeset SAS or R code or output.
longdesc The SASnRdisplay package serves as a front-end to the listings,
longdesc which permits statisticians and others to import source code,
@@ -142602,9 +156654,9 @@ runfiles size=7
texmf-dist/tex/latex/sasnrdisplay/SASnRdisplay.cfg
texmf-dist/tex/latex/sasnrdisplay/SASnRdisplay.sty
catalogue-ctan /macros/latex/contrib/sasnrdisplay
-catalogue-date 2012-03-27 17:23:43 +0200
+catalogue-date 2014-03-07 12:39:33 +0100
catalogue-license lppl1.3
-catalogue-version 0.91
+catalogue-version 0.93
name sauerj
category Package
@@ -142645,7 +156697,7 @@ runfiles size=8
texmf-dist/tex/latex/sauerj/processkv.sty
texmf-dist/tex/latex/sauerj/zahl2string.sty
catalogue-ctan /macros/latex/contrib/sauerj
-catalogue-date 2012-06-05 13:25:49 +0200
+catalogue-date 2014-01-13 14:46:40 +0100
catalogue-license lppl
name sauter
@@ -142704,7 +156756,7 @@ runfiles size=61
texmf-dist/fonts/source/public/sauter/c-cmtt.mf
texmf-dist/fonts/source/public/sauter/c-sigma.mf
catalogue-ctan /fonts/cm/sauter
-catalogue-date 2012-06-05 13:25:49 +0200
+catalogue-date 2014-05-08 01:33:09 +0200
catalogue-license gpl
catalogue-version 2.4
@@ -142781,7 +156833,7 @@ catalogue-version 1.0
name savesym
category Package
-revision 15878
+revision 31565
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
@@ -142793,9 +156845,9 @@ longdesc corresponds to the most recently loaded version of \XXX.
runfiles size=1
texmf-dist/tex/latex/savesym/savesym.sty
catalogue-ctan /macros/latex/contrib/savesym/savesym.sty
-catalogue-date 2012-06-04 20:50:45 +0200
+catalogue-date 2013-09-02 18:12:33 +0200
catalogue-license lppl
-catalogue-version 1.1
+catalogue-version 1.2
name savetrees
category Package
@@ -142871,7 +156923,7 @@ catalogue-version 1.0
name scalerel
category Package
-revision 30531
+revision 33145
shortdesc Constrained scaling and stretching of objects.
longdesc The package provides four commands for vertically scaling and
longdesc stretching objects. Its primary function is the ability to
@@ -142881,16 +156933,36 @@ longdesc equations and schematic diagrams. Additionally, the scaling and
longdesc stretching commands offer constraints on maximum width and/or
longdesc minimum aspect ratio, which are often used to preserve
longdesc legibility or for the sake of general appearance.
-docfiles size=67
+docfiles size=82
texmf-dist/doc/latex/scalerel/README details="README"
texmf-dist/doc/latex/scalerel/scalerel.pdf details="Package documentation"
texmf-dist/doc/latex/scalerel/scalerel.tex
runfiles size=2
texmf-dist/tex/latex/scalerel/scalerel.sty
catalogue-ctan /macros/latex/contrib/scalerel
-catalogue-date 2013-05-17 19:01:50 +0200
+catalogue-date 2014-03-10 14:38:12 +0100
catalogue-license lppl
-catalogue-version 1.5
+catalogue-version 1.6
+
+name scanpages
+category Package
+revision 34050
+shortdesc Support importing and embellishing scanned documents.
+longdesc The bundle provides support for the process of creating
+longdesc documents based on pre-TeX-era material that is available as
+longdesc scanned pages, only.
+docfiles size=20
+ texmf-dist/doc/latex/scanpages/README details="Readme"
+ texmf-dist/doc/latex/scanpages/replicate.plist
+ texmf-dist/doc/latex/scanpages/replicate.py
+ texmf-dist/doc/latex/scanpages/scanpages-doc.pdf details="Package documentation"
+ texmf-dist/doc/latex/scanpages/scanpages-doc.tex
+runfiles size=2
+ texmf-dist/tex/latex/scanpages/scanpages.sty
+catalogue-ctan /macros/latex/contrib/scanpages
+catalogue-date 2014-05-15 19:06:58 +0200
+catalogue-license lppl1.3
+catalogue-version 1.03
name schemabloc
category Package
@@ -142905,13 +156977,13 @@ docfiles size=56
runfiles size=3
texmf-dist/tex/latex/schemabloc/schemabloc.sty
catalogue-ctan /graphics/pgf/contrib/schemabloc
-catalogue-date 2012-06-17 11:01:39 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.5
name schemata
category Package
-revision 29357
+revision 31743
shortdesc Print topical diagrams.
longdesc The package facilitates the creation of topical schemata,
longdesc outlines that use braces (or facsimiles thereof) to illustrate
@@ -142927,9 +156999,9 @@ srcfiles size=15
runfiles size=2
texmf-dist/tex/generic/schemata/schemata.sty
catalogue-ctan /macros/generic/schemata
-catalogue-date 2013-03-12 20:16:10 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
-catalogue-version 0.6
+catalogue-version 0.7
name scheme-basic
category Scheme
@@ -142944,7 +157016,7 @@ depend collection-latex
name scheme-context
category Scheme
-revision 29997
+revision 32062
shortdesc ConTeXt scheme
longdesc This is the TeX Live scheme for installing ConTeXt.
depend collection-context
@@ -142957,6 +157029,7 @@ depend kurier
depend poltawski
depend xits
depend Asana-Math
+depend gentium-tug
depend txfonts
depend pxfonts
depend eulervm
@@ -142967,7 +157040,7 @@ depend ly1
name scheme-full
category Scheme
-revision 30492
+revision 33790
shortdesc full scheme (everything)
longdesc This is the full TeX Live scheme: it installs everything
longdesc available.
@@ -142986,6 +157059,7 @@ depend collection-htmlxml
depend collection-humanities
depend collection-langafrican
depend collection-langarabic
+depend collection-langchinese
depend collection-langcjk
depend collection-langcyrillic
depend collection-langczechslovak
@@ -142996,6 +157070,8 @@ depend collection-langgerman
depend collection-langgreek
depend collection-langindic
depend collection-langitalian
+depend collection-langjapanese
+depend collection-langkorean
depend collection-langother
depend collection-langpolish
depend collection-langportuguese
@@ -143101,7 +157177,7 @@ depend collection-basic
name scheme-small
category Scheme
-revision 26477
+revision 30937
shortdesc small scheme (basic + xetex, metapost, a few languages)
longdesc This is a small TeX Live scheme, corresponding to MacTeX's
longdesc BasicTeX variant. It adds XeTeX, MetaPost, various
@@ -143118,24 +157194,41 @@ depend revtex
depend synctex
depend times
depend tipa
+depend zapfding
+depend babel-basque
depend hyphen-basque
+depend babel-czech
+depend hyphen-czech
+depend babel-danish
depend hyphen-danish
+depend babel-dutch
depend hyphen-dutch
+depend babel-english
depend hyphen-english
+depend babel-finnish
depend hyphen-finnish
+depend babel-french
depend hyphen-french
+depend babel-german
depend hyphen-german
+depend babel-hungarian
depend hyphen-hungarian
+depend babel-italian
depend hyphen-italian
+depend babel-norsk
depend hyphen-norwegian
+depend babel-polish
depend hyphen-polish
+depend babel-portuges
depend hyphen-portuguese
+depend babel-spanish
depend hyphen-spanish
+depend babel-swedish
depend hyphen-swedish
name scheme-tetex
category Scheme
-revision 30457
+revision 32952
shortdesc teTeX scheme (more than medium, but nowhere near full)
longdesc TeX Live scheme nearly equivalent to the teTeX distribution
longdesc that was maintained by Thomas Esser.
@@ -143165,7 +157258,6 @@ depend eplain
depend eulervm
depend gentle
depend lshort-english
-depend mathmode
depend mltex
depend multirow
depend nomencl
@@ -143176,6 +157268,7 @@ depend supertabular
depend tamethebeast
depend tds
depend tex-refs
+depend voss-mathmode
depend collection-basic
depend collection-context
depend collection-fontsrecommended
@@ -143229,6 +157322,45 @@ depend collection-fontsrecommended
depend collection-latex
depend collection-omega
+name schule
+category Package
+revision 34107
+shortdesc Improved support for teaching technical subjects.
+longdesc The bundle provides packages and commands that may be useful in
+longdesc the context of work at schools. At the moment, the emphasis is
+longdesc on IT classes; features for physics classes are being added;
+longdesc features for other school class subjects are solicited. At the
+longdesc moment, the bundle comprises packages for IT classes (including
+longdesc syntax diagrams, structure charts, sequence diagrams, object
+longdesc diagrams, and class diagrams), as well as classes for preparing
+longdesc written exams.
+docfiles size=120
+ texmf-dist/doc/latex/schule/README details="Readme (German)" language="de"
+ texmf-dist/doc/latex/schule/schule.pdf details="Package documentation (German)" language="de"
+srcfiles size=30
+ texmf-dist/source/latex/schule/schule.dtx
+ texmf-dist/source/latex/schule/schule.ins
+runfiles size=21
+ texmf-dist/tex/latex/schule/relaycircuit.sty
+ texmf-dist/tex/latex/schule/schule.sty
+ texmf-dist/tex/latex/schule/schuleab.cls
+ texmf-dist/tex/latex/schule/schulein.cls
+ texmf-dist/tex/latex/schule/schuleit.cls
+ texmf-dist/tex/latex/schule/schulekl.cls
+ texmf-dist/tex/latex/schule/schulekl.sty
+ texmf-dist/tex/latex/schule/schuleub.cls
+ texmf-dist/tex/latex/schule/schuleue.cls
+ texmf-dist/tex/latex/schule/schulinf.sty
+ texmf-dist/tex/latex/schule/schullsg.cls
+ texmf-dist/tex/latex/schule/schullzk.cls
+ texmf-dist/tex/latex/schule/schullzk.sty
+ texmf-dist/tex/latex/schule/schulphy.sty
+ texmf-dist/tex/latex/schule/syntaxdi.sty
+catalogue-ctan /macros/latex/contrib/schule
+catalogue-date 2014-05-22 12:56:12 +0200
+catalogue-license lppl1.3
+catalogue-version 0.1
+
name schulschriften
category Package
revision 29803
@@ -143317,7 +157449,7 @@ runfiles size=171
texmf-dist/tex/latex/schulschriften/wesu.sty
texmf-dist/tex/latex/schulschriften/weva.sty
catalogue-ctan /fonts/schulschriften
-catalogue-date 2012-11-15 13:07:37 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
name schwalbe-chess
@@ -143336,7 +157468,7 @@ runfiles size=9
texmf-dist/tex/latex/schwalbe-chess/schwalbe.cls
texmf-dist/tex/latex/schwalbe-chess/schwalbe.sty
catalogue-ctan /macros/latex/contrib/schwalbe-chess
-catalogue-date 2013-04-14 18:39:07 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.2
catalogue-version 1.5.1
@@ -143445,7 +157577,7 @@ srcfiles size=5
runfiles size=2
texmf-dist/tex/latex/scrjrnl/scrjrnl.cls
catalogue-ctan /macros/latex/contrib/scrjrnl
-catalogue-date 2012-09-27 12:42:10 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 0.1
@@ -143465,7 +157597,7 @@ docfiles size=61
runfiles size=3
texmf-dist/tex/latex/sdrt/sdrt.sty
catalogue-ctan /macros/latex/contrib/sdrt
-catalogue-date 2012-06-13 15:07:38 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.0
@@ -143553,22 +157685,42 @@ catalogue-date 2012-06-13 15:07:38 +0200
catalogue-license lppl
catalogue-version 2.0.2
+name seealso
+category Package
+revision 33449
+shortdesc Improve the performance of \see macros with makeindex.
+longdesc The package amends the \see and \seealso macros that are used
+longdesc in building indexes with makeindex, to deal with repetitions,
+longdesc and to ensure page numbers are present in the actual index
+longdesc entries. on these indirecty
+docfiles size=40
+ texmf-dist/doc/latex/seealso/seealso.pdf details="Package documentation"
+srcfiles size=11
+ texmf-dist/source/latex/seealso/seealso.dtx
+ texmf-dist/source/latex/seealso/seealso.ins
+runfiles size=2
+ texmf-dist/tex/latex/seealso/seealso.sty
+catalogue-ctan /macros/latex/contrib/seealso
+catalogue-date 2014-04-25 11:20:11 +0200
+catalogue-license lppl1.3
+catalogue-version 1.1
+
name seetexk
category TLCore
-revision 29764
+revision 33818
catalogue dvibook
shortdesc Utilities for manipulating DVI files.
-longdesc The collection comprises: - dvibook, which will rearrange the
+longdesc The collection comprises: dvibook, which will rearrange the
longdesc pages of a DVI file into 'signatures' as used when printing a
-longdesc book; - dviconcat, for concatenating pages of DVI file(s); -
+longdesc book; dviconcat, for concatenating pages of DVI file(s);
longdesc dviselect, which will select pages from one DVI file to create
-longdesc a new DVI file; - dvitodvi, which will rearrange the pages of a
-longdesc DVI file to create a new file; and - libtex, a library for
+longdesc a new DVI file; dvitodvi, which will rearrange the pages of a
+longdesc DVI file to create a new file; and libtex, a library for
longdesc manipulating the files, from the old SeeTeX project. The
longdesc utilities are provided as C source with Imakefiles, and an MS-
longdesc DOS version of dvibook is also provided.
depend seetexk.ARCH
-runfiles size=14
+docfiles size=14
texmf-dist/doc/man/man1/dvibook.1
texmf-dist/doc/man/man1/dvibook.man1.pdf
texmf-dist/doc/man/man1/dviconcat.1
@@ -143578,12 +157730,12 @@ runfiles size=14
texmf-dist/doc/man/man1/dvitodvi.1
texmf-dist/doc/man/man1/dvitodvi.man1.pdf
catalogue-ctan /dviware/dvibook
-catalogue-date 2012-04-10 15:00:16 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license other-free
name seetexk.alpha-linux
category TLCore
-revision 29834
+revision 33553
shortdesc alpha-linux files of seetexk
binfiles arch=alpha-linux size=34
bin/alpha-linux/dvibook
@@ -143593,9 +157745,9 @@ binfiles arch=alpha-linux size=34
name seetexk.amd64-freebsd
category TLCore
-revision 29785
+revision 33488
shortdesc amd64-freebsd files of seetexk
-binfiles arch=amd64-freebsd size=47
+binfiles arch=amd64-freebsd size=48
bin/amd64-freebsd/dvibook
bin/amd64-freebsd/dviconcat
bin/amd64-freebsd/dviselect
@@ -143603,7 +157755,7 @@ binfiles arch=amd64-freebsd size=47
name seetexk.amd64-kfreebsd
category TLCore
-revision 30655
+revision 33864
shortdesc amd64-kfreebsd files of seetexk
binfiles arch=amd64-kfreebsd size=27
bin/amd64-kfreebsd/dvibook
@@ -143613,7 +157765,7 @@ binfiles arch=amd64-kfreebsd size=27
name seetexk.amd64-netbsd
category TLCore
-revision 30660
+revision 33726
shortdesc amd64-netbsd files of seetexk
binfiles arch=amd64-netbsd size=40
bin/amd64-netbsd/dvibook
@@ -143623,7 +157775,7 @@ binfiles arch=amd64-netbsd size=40
name seetexk.armel-linux
category TLCore
-revision 29805
+revision 33916
shortdesc armel-linux files of seetexk
binfiles arch=armel-linux size=25
bin/armel-linux/dvibook
@@ -143633,7 +157785,7 @@ binfiles arch=armel-linux size=25
name seetexk.armhf-linux
category TLCore
-revision 30015
+revision 34125
shortdesc armhf-linux files of seetexk
binfiles arch=armhf-linux size=21
bin/armhf-linux/dvibook
@@ -143643,9 +157795,9 @@ binfiles arch=armhf-linux size=21
name seetexk.i386-cygwin
category TLCore
-revision 30526
+revision 34161
shortdesc i386-cygwin files of seetexk
-binfiles arch=i386-cygwin size=28
+binfiles arch=i386-cygwin size=33
bin/i386-cygwin/dvibook.exe
bin/i386-cygwin/dviconcat.exe
bin/i386-cygwin/dviselect.exe
@@ -143653,7 +157805,7 @@ binfiles arch=i386-cygwin size=28
name seetexk.i386-freebsd
category TLCore
-revision 29785
+revision 33488
shortdesc i386-freebsd files of seetexk
binfiles arch=i386-freebsd size=43
bin/i386-freebsd/dvibook
@@ -143663,7 +157815,7 @@ binfiles arch=i386-freebsd size=43
name seetexk.i386-kfreebsd
category TLCore
-revision 30440
+revision 33864
shortdesc i386-kfreebsd files of seetexk
binfiles arch=i386-kfreebsd size=25
bin/i386-kfreebsd/dvibook
@@ -143673,7 +157825,7 @@ binfiles arch=i386-kfreebsd size=25
name seetexk.i386-linux
category TLCore
-revision 30088
+revision 33479
shortdesc i386-linux files of seetexk
binfiles arch=i386-linux size=25
bin/i386-linux/dvibook
@@ -143683,9 +157835,9 @@ binfiles arch=i386-linux size=25
name seetexk.i386-netbsd
category TLCore
-revision 30191
+revision 33562
shortdesc i386-netbsd files of seetexk
-binfiles arch=i386-netbsd size=35
+binfiles arch=i386-netbsd size=36
bin/i386-netbsd/dvibook
bin/i386-netbsd/dviconcat
bin/i386-netbsd/dviselect
@@ -143693,7 +157845,7 @@ binfiles arch=i386-netbsd size=35
name seetexk.i386-solaris
category TLCore
-revision 30112
+revision 34203
shortdesc i386-solaris files of seetexk
binfiles arch=i386-solaris size=39
bin/i386-solaris/dvibook
@@ -143701,21 +157853,11 @@ binfiles arch=i386-solaris size=39
bin/i386-solaris/dviselect
bin/i386-solaris/dvitodvi
-name seetexk.mips-irix
-category TLCore
-revision 30131
-shortdesc mips-irix files of seetexk
-binfiles arch=mips-irix size=88
- bin/mips-irix/dvibook
- bin/mips-irix/dviconcat
- bin/mips-irix/dviselect
- bin/mips-irix/dvitodvi
-
name seetexk.mipsel-linux
category TLCore
-revision 29783
+revision 33811
shortdesc mipsel-linux files of seetexk
-binfiles arch=mipsel-linux size=32
+binfiles arch=mipsel-linux size=25
bin/mipsel-linux/dvibook
bin/mipsel-linux/dviconcat
bin/mipsel-linux/dviselect
@@ -143723,7 +157865,7 @@ binfiles arch=mipsel-linux size=32
name seetexk.powerpc-linux
category TLCore
-revision 29833
+revision 33889
shortdesc powerpc-linux files of seetexk
binfiles arch=powerpc-linux size=25
bin/powerpc-linux/dvibook
@@ -143733,9 +157875,9 @@ binfiles arch=powerpc-linux size=25
name seetexk.sparc-solaris
category TLCore
-revision 29877
+revision 33871
shortdesc sparc-solaris files of seetexk
-binfiles arch=sparc-solaris size=40
+binfiles arch=sparc-solaris size=39
bin/sparc-solaris/dvibook
bin/sparc-solaris/dviconcat
bin/sparc-solaris/dviselect
@@ -143743,7 +157885,7 @@ binfiles arch=sparc-solaris size=40
name seetexk.universal-darwin
category TLCore
-revision 30764
+revision 34201
shortdesc universal-darwin files of seetexk
binfiles arch=universal-darwin size=71
bin/universal-darwin/dvibook
@@ -143753,17 +157895,27 @@ binfiles arch=universal-darwin size=71
name seetexk.win32
category TLCore
-revision 29816
+revision 33897
shortdesc win32 files of seetexk
-binfiles arch=win32 size=21
+binfiles arch=win32 size=25
bin/win32/dvibook.exe
bin/win32/dviconcat.exe
bin/win32/dviselect.exe
bin/win32/dvitodvi.exe
+name seetexk.x86_64-cygwin
+category TLCore
+revision 34161
+shortdesc x86_64-cygwin files of seetexk
+binfiles arch=x86_64-cygwin size=32
+ bin/x86_64-cygwin/dvibook.exe
+ bin/x86_64-cygwin/dviconcat.exe
+ bin/x86_64-cygwin/dviselect.exe
+ bin/x86_64-cygwin/dvitodvi.exe
+
name seetexk.x86_64-darwin
category TLCore
-revision 29809
+revision 34201
shortdesc x86_64-darwin files of seetexk
binfiles arch=x86_64-darwin size=33
bin/x86_64-darwin/dvibook
@@ -143773,9 +157925,9 @@ binfiles arch=x86_64-darwin size=33
name seetexk.x86_64-linux
category TLCore
-revision 30204
+revision 33723
shortdesc x86_64-linux files of seetexk
-binfiles arch=x86_64-linux size=28
+binfiles arch=x86_64-linux size=29
bin/x86_64-linux/dvibook
bin/x86_64-linux/dviconcat
bin/x86_64-linux/dviselect
@@ -143783,9 +157935,9 @@ binfiles arch=x86_64-linux size=28
name seetexk.x86_64-solaris
category TLCore
-revision 30112
+revision 34203
shortdesc x86_64-solaris files of seetexk
-binfiles arch=x86_64-solaris size=38
+binfiles arch=x86_64-solaris size=39
bin/x86_64-solaris/dvibook
bin/x86_64-solaris/dviconcat
bin/x86_64-solaris/dviselect
@@ -143812,7 +157964,7 @@ catalogue-version 1.0
name selnolig
category Package
-revision 30789
+revision 31544
shortdesc Selectively disable typographic ligatures.
longdesc The package suppresses typographic ligatures selectively, i.e.,
longdesc based on predefined search patterns. The search patterns focus
@@ -143832,7 +157984,7 @@ longdesc ligature suppression macros for a number of so-called
longdesc "discretionary" or "rare" ligatures such as ct, st, and sp. The
longdesc package requires use of a recent LuaLaTeX format (for example
longdesc TeXLive2012 or 2013, or MiKTeX2.9).
-docfiles size=174
+docfiles size=194
texmf-dist/doc/lualatex/selnolig/README details="Readme"
texmf-dist/doc/lualatex/selnolig/gpp-ft.fea
texmf-dist/doc/lualatex/selnolig/selnolig-bugreport.tex
@@ -143844,7 +157996,7 @@ docfiles size=174
texmf-dist/doc/lualatex/selnolig/selnolig-german-wordlist.tex
texmf-dist/doc/lualatex/selnolig/selnolig.pdf
texmf-dist/doc/lualatex/selnolig/selnolig.tex
-runfiles size=30
+runfiles size=31
texmf-dist/tex/lualatex/selnolig/selnolig-english-hyphex.sty
texmf-dist/tex/lualatex/selnolig/selnolig-english-patterns.sty
texmf-dist/tex/lualatex/selnolig/selnolig-german-hyphex.sty
@@ -143852,9 +158004,9 @@ runfiles size=30
texmf-dist/tex/lualatex/selnolig/selnolig.lua
texmf-dist/tex/lualatex/selnolig/selnolig.sty
catalogue-ctan /macros/luatex/latex/selnolig
-catalogue-date 2013-05-28 19:52:13 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
-catalogue-version 0.218
+catalogue-version 0.256
name semantic
category Package
@@ -144030,7 +158182,7 @@ catalogue-license gpl
name seminar
category Package
-revision 18322
+revision 34011
shortdesc Make overhead slides.
longdesc A class that produces overhead slides (transparencies), with
longdesc many facilities. The class requires availability of the
@@ -144041,19 +158193,28 @@ longdesc recent classes such as powerdot or beamer, both of which are
longdesc tuned to 21st-century presentation styles. Note that the
longdesc seminar distribution relies on the xcomment package, which was
longdesc once part of the bundle, but now has a separate existence.
-docfiles size=96
- 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
+docfiles size=157
+ texmf-dist/doc/latex/seminar/Changes
+ texmf-dist/doc/latex/seminar/README details="Readme"
+ texmf-dist/doc/latex/seminar/run.sh
+ texmf-dist/doc/latex/seminar/sem-code.tex
+ texmf-dist/doc/latex/seminar/sem-make.tex
+ texmf-dist/doc/latex/seminar/seminar-doc.pdf
+ texmf-dist/doc/latex/seminar/seminar-doc.tex
+ texmf-dist/doc/latex/seminar/seminar.bg3
+ texmf-dist/doc/latex/seminar/seminar.con
+ texmf-dist/doc/latex/seminar/seminar.doc
+ texmf-dist/doc/latex/seminar/semlayer.doc
+ texmf-dist/doc/latex/seminar/semsamp1.pdf
texmf-dist/doc/latex/seminar/semsamp1.tex
+ texmf-dist/doc/latex/seminar/semsamp2.pdf
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=41
+ texmf-dist/doc/latex/seminar/semsamp3.pdf
+ texmf-dist/doc/latex/seminar/semsamp3.tex
+runfiles size=48
texmf-dist/tex/latex/seminar/npsfont.sty
texmf-dist/tex/latex/seminar/sem-a4.sty
+ texmf-dist/tex/latex/seminar/sem-dem.sty
texmf-dist/tex/latex/seminar/sem-page.sty
texmf-dist/tex/latex/seminar/semcolor.sty
texmf-dist/tex/latex/seminar/semhelv.sty
@@ -144065,10 +158226,13 @@ runfiles size=41
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/tvz-code.sty
+ texmf-dist/tex/latex/seminar/tvz-hax.sty
+ texmf-dist/tex/latex/seminar/tvz-user.sty
catalogue-ctan /macros/latex/contrib/seminar
-catalogue-date 2012-02-23 00:03:38 +0100
+catalogue-date 2014-05-14 16:12:10 +0200
catalogue-license lppl1.2
-catalogue-version 1.5
+catalogue-version 1.62
name semioneside
category Package
@@ -144109,7 +158273,7 @@ docfiles size=54
runfiles size=2
texmf-dist/tex/latex/sepfootnotes/sepfootnotes.sty
catalogue-ctan /macros/latex/contrib/sepfootnotes
-catalogue-date 2013-01-19 01:10:31 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 0.2
@@ -144176,7 +158340,7 @@ docfiles size=131
runfiles size=18
texmf-dist/tex/latex/serbian-apostrophe/serbian-apostrophe.sty
catalogue-ctan /language/serbian/filipovic/serbian-apostrophe
-catalogue-date 2012-11-14 18:06:01 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
name serbian-date-lat
@@ -144195,7 +158359,7 @@ docfiles size=94
runfiles size=1
texmf-dist/tex/latex/serbian-date-lat/serbian-date-lat.sty
catalogue-ctan /language/serbian/filipovic/serbian-date-lat
-catalogue-date 2013-05-06 12:03:56 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license gpl2
name serbian-def-cyr
@@ -144232,7 +158396,7 @@ docfiles size=121
runfiles size=19
texmf-dist/tex/latex/serbian-lig/serbian-lig.sty
catalogue-ctan /macros/latex/contrib/serbian-lig
-catalogue-date 2012-11-14 18:24:53 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
name setdeck
@@ -144247,7 +158411,7 @@ docfiles size=17
runfiles size=12
texmf-dist/tex/latex/setdeck/setdeck.sty
catalogue-ctan /graphics/pgf/contrib/setdeck
-catalogue-date 2012-10-18 12:29:20 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license gpl3
catalogue-version 0.1
@@ -144273,11 +158437,12 @@ catalogue-version 6.7a
name seuthesis
category Package
-revision 29349
+revision 33042
shortdesc LaTeX template for theses at Southeastern University.
longdesc This template is for theses at Southeastern University,
longdesc Nanjing, China.
-docfiles size=1368
+docfiles size=1154
+ texmf-dist/doc/latex/seuthesis/Makefile
texmf-dist/doc/latex/seuthesis/a3cover/A3cover.tex
texmf-dist/doc/latex/seuthesis/a3cover/A4cover.tex
texmf-dist/doc/latex/seuthesis/a3cover/a3cover.bat
@@ -144287,19 +158452,19 @@ docfiles size=1368
texmf-dist/doc/latex/seuthesis/a3cover/bookspine_hor.tex
texmf-dist/doc/latex/seuthesis/a3cover/bookspine_ver.tex
texmf-dist/doc/latex/seuthesis/figures/back-cover.png
+ texmf-dist/doc/latex/seuthesis/figures/doctor-hwzs.pdf
texmf-dist/doc/latex/seuthesis/figures/doctor.png
texmf-dist/doc/latex/seuthesis/figures/engineering.png
texmf-dist/doc/latex/seuthesis/figures/front-cover.jpg
+ texmf-dist/doc/latex/seuthesis/figures/master-hwzs.pdf
texmf-dist/doc/latex/seuthesis/figures/master.png
texmf-dist/doc/latex/seuthesis/figures/seu-badge-logo.eps
texmf-dist/doc/latex/seuthesis/figures/seu-badge-logo.pdf
texmf-dist/doc/latex/seuthesis/figures/seu-color-logo.png
texmf-dist/doc/latex/seuthesis/figures/seu-text-logo.eps
texmf-dist/doc/latex/seuthesis/figures/seu-text-logo.png
- texmf-dist/doc/latex/seuthesis/gind.ist
texmf-dist/doc/latex/seuthesis/sample-bachelor.pdf
texmf-dist/doc/latex/seuthesis/sample-doctor.pdf
- texmf-dist/doc/latex/seuthesis/sample-engineering.pdf
texmf-dist/doc/latex/seuthesis/sample-master.pdf
texmf-dist/doc/latex/seuthesis/sample.tex
texmf-dist/doc/latex/seuthesis/seuthesis.bib
@@ -144309,18 +158474,14 @@ docfiles size=1368
texmf-dist/doc/latex/seuthesis/zharticle/zharticle.cfg
texmf-dist/doc/latex/seuthesis/zharticle/zharticle.cls
srcfiles size=16
- texmf-dist/source/latex/seuthesis/Makefile
texmf-dist/source/latex/seuthesis/seuthesis.dtx
texmf-dist/source/latex/seuthesis/seuthesis.ins
-runfiles size=31
+runfiles size=22
texmf-dist/bibtex/bst/seuthesis/seuthesis.bst
- texmf-dist/tex/latex/seuthesis/seuthesis-gbk.cfg
- texmf-dist/tex/latex/seuthesis/seuthesis-utf8.cfg
- texmf-dist/tex/latex/seuthesis/seuthesis.cls
catalogue-ctan /macros/latex/contrib/seuthesis
-catalogue-date 2012-02-09 21:58:23 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license gpl3
-catalogue-version 2.0.0
+catalogue-version 2.1.2
name sf298
category Package
@@ -144406,7 +158567,7 @@ catalogue-version 0.8
name sgame
category Package
-revision 15878
+revision 30959
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$
@@ -144414,7 +158575,7 @@ 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=27
+docfiles size=28
texmf-dist/doc/latex/sgame/README
texmf-dist/doc/latex/sgame/sgame.pdf details="Package documentation"
texmf-dist/doc/latex/sgame/sgame.tex
@@ -144422,9 +158583,9 @@ runfiles size=8
texmf-dist/tex/latex/sgame/sgame.sty
texmf-dist/tex/latex/sgame/sgamevar.sty
catalogue-ctan /macros/latex/contrib/sgame
-catalogue-date 2012-06-04 23:25:44 +0200
+catalogue-date 2013-06-26 19:53:21 +0200
catalogue-license lppl
-catalogue-version 2.14
+catalogue-version 2.15
name shade
category Package
@@ -144503,7 +158664,7 @@ docfiles size=38
runfiles size=1
texmf-dist/tex/latex/shadowtext/shadowtext.sty
catalogue-ctan /macros/latex/contrib/shadowtext
-catalogue-date 2012-05-18 19:11:54 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 0.3
@@ -144550,18 +158711,18 @@ longdesc bibliography style and examples and scripts for converting TeX
longdesc files. Many of the files in the collection are designed to
longdesc support field biologists and/or Russian writers, while others
longdesc have wider application. The collection includes (among others):
-longdesc - altverse, a simple verse typesetting package; - autolist,
-longdesc which provides various list formatting facilities; - biokey,
-longdesc which provides a mechanism for typesetting biological
-longdesc identification lists; - biolist, which typesets species lists;
-longdesc - boldline, which typesets heavier separating lines in tables;
-longdesc - cassete, which lays out audio cassette inserts; - classif2,
-longdesc which typesets classification lists; - drcaps, which provides
-longdesc dropped capital macros; - etiketka, a class for typesetting
-longdesc business-card-sized information (including business cards); -
-longdesc flower, for typesetting lists of flower formulae; - isyntax; -
-longdesc numerus; - punct; - sltables, which develops on the stables
-longdesc package, for use in a LaTeX context; and - starfn.
+longdesc altverse, a simple verse typesetting package; autolist, which
+longdesc provides various list formatting facilities; biokey, which
+longdesc provides a mechanism for typesetting biological identification
+longdesc lists; biolist, which typesets species lists; boldline, which
+longdesc typesets heavier separating lines in tables; cassete, which
+longdesc lays out audio cassette inserts; classif2, which typesets
+longdesc classification lists; drcaps, which provides dropped capital
+longdesc macros; etiketka, a class for typesetting business-card-sized
+longdesc information (including business cards); flower, for typesetting
+longdesc lists of flower formulae; isyntax; numerus; punct; sltables,
+longdesc which develops on the stables package, for use in a LaTeX
+longdesc context; and starfn.
docfiles size=624
texmf-dist/doc/latex/shipunov/NEWS
texmf-dist/doc/latex/shipunov/README details="Readme" language="en"
@@ -144645,7 +158806,7 @@ runfiles size=29
texmf-dist/tex/latex/shipunov/sltables.sty
texmf-dist/tex/latex/shipunov/starfn.sty
catalogue-ctan /macros/latex/contrib/shipunov
-catalogue-date 2012-06-08 00:21:14 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.1
@@ -144666,7 +158827,7 @@ srcfiles size=4
runfiles size=1
texmf-dist/tex/latex/shorttoc/shorttoc.sty
catalogue-ctan /macros/latex/contrib/shorttoc
-catalogue-date 2012-06-07 20:55:34 +0200
+catalogue-date 2013-10-03 14:20:59 +0200
catalogue-license lppl
catalogue-version 1.3
@@ -144689,7 +158850,7 @@ srcfiles size=3
runfiles size=1
texmf-dist/tex/latex/show2e/show2e.sty
catalogue-ctan /macros/latex/contrib/show2e
-catalogue-date 2012-06-07 20:55:34 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.0
@@ -144714,7 +158875,7 @@ srcfiles size=4
runfiles size=1
texmf-dist/tex/latex/showcharinbox/showcharinbox.sty
catalogue-ctan /macros/latex/contrib/showcharinbox
-catalogue-date 2013-04-08 09:07:09 +0200
+catalogue-date 2014-04-29 06:13:54 +0200
catalogue-license lppl1.3
catalogue-version 0.1
@@ -144737,7 +158898,7 @@ catalogue-version 1.2
name showexpl
category Package
-revision 29838
+revision 32737
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.
@@ -144753,9 +158914,9 @@ srcfiles size=8
runfiles size=4
texmf-dist/tex/latex/showexpl/showexpl.sty
catalogue-ctan /macros/latex/contrib/showexpl
-catalogue-date 2013-04-10 10:08:31 +0200
+catalogue-date 2014-01-20 15:14:58 +0100
catalogue-license lppl
-catalogue-version v0.3k
+catalogue-version v0.3l
name showhyphens
category Package
@@ -144777,7 +158938,7 @@ catalogue-version 0.1
name showlabels
category Package
-revision 15878
+revision 32364
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
@@ -144785,21 +158946,23 @@ 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=32
- texmf-dist/doc/latex/showlabels/LICENCE
+docfiles size=49
texmf-dist/doc/latex/showlabels/README details="Readme"
texmf-dist/doc/latex/showlabels/VERSION
+ texmf-dist/doc/latex/showlabels/lppl.txt
texmf-dist/doc/latex/showlabels/showlabels.html details="Package documentation (HTML)"
texmf-dist/doc/latex/showlabels/showlabels.pdf details="Package documentation (PDF)"
-srcfiles size=10
+ texmf-dist/doc/latex/showlabels/style.css
+srcfiles size=11
+ texmf-dist/source/latex/showlabels/showlabels.drv
texmf-dist/source/latex/showlabels/showlabels.dtx
texmf-dist/source/latex/showlabels/showlabels.ins
-runfiles size=3
+runfiles size=2
texmf-dist/tex/latex/showlabels/showlabels.sty
catalogue-ctan /macros/latex/contrib/showlabels
-catalogue-date 2012-03-13 23:16:04 +0100
+catalogue-date 2013-12-07 01:06:37 +0100
catalogue-license gpl
-catalogue-version 1.6.5
+catalogue-version 1.6.6
name showtags
category Package
@@ -144838,7 +159001,7 @@ runfiles size=9
texmf-dist/tex/latex/shuffle/Ushuffle.fd
texmf-dist/tex/latex/shuffle/shuffle.sty
catalogue-ctan /fonts/shuffle
-catalogue-date 2012-06-28 15:32:05 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license pd
catalogue-version 1.0
@@ -144872,23 +159035,26 @@ catalogue-version 1.6f
name sidenotes
category Package
-revision 28239
+revision 32970
shortdesc Typeset notes containing rich content, in the margin.
longdesc The package allows typesetting of texts with notes, figures,
longdesc citations, captions and tables in the margin. This is common
longdesc (for example) in science text books.
-docfiles size=50
+docfiles size=75
texmf-dist/doc/latex/sidenotes/README details="Readme"
+ texmf-dist/doc/latex/sidenotes/caesar_example.pdf
+ texmf-dist/doc/latex/sidenotes/caesar_example.tex
texmf-dist/doc/latex/sidenotes/sidenotes.pdf details="Package documentation"
-srcfiles size=5
+srcfiles size=6
texmf-dist/source/latex/sidenotes/sidenotes.dtx
texmf-dist/source/latex/sidenotes/sidenotes.ins
-runfiles size=2
+runfiles size=4
+ texmf-dist/tex/latex/sidenotes/caesar_book.cls
texmf-dist/tex/latex/sidenotes/sidenotes.sty
catalogue-ctan /macros/latex/contrib/sidenotes
-catalogue-date 2012-11-11 13:12:37 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
-catalogue-version 0.92
+catalogue-version 0.96a
name sides
category Package
@@ -144928,7 +159094,7 @@ srcfiles size=18
runfiles size=5
texmf-dist/tex/latex/silence/silence.sty
catalogue-ctan /macros/latex/contrib/silence
-catalogue-date 2012-07-04 10:43:54 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.5b
@@ -144952,7 +159118,7 @@ srcfiles size=25
runfiles size=9
texmf-dist/tex/latex/simplecd/simplecd.sty
catalogue-ctan /macros/latex/contrib/simplecd
-catalogue-date 2013-02-28 20:37:57 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.2
catalogue-version 1.4
@@ -144972,7 +159138,7 @@ srcfiles size=5
runfiles size=2
texmf-dist/tex/latex/simplecv/simplecv.cls
catalogue-ctan /macros/latex/contrib/simplecv
-catalogue-date 2011-09-24 18:04:24 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.6
@@ -145008,6 +159174,97 @@ catalogue-ctan /info/simplified-latex
catalogue-date 2012-04-05 18:24:08 +0200
catalogue-license lppl
+name simurgh
+category Package
+revision 31719
+shortdesc Typeset Parsi in LuaLaTeX.
+longdesc The package provides an automatic and unified interface for
+longdesc Parsi typesetting in LaTeX, using the LuaTeX engine. The
+longdesc project to produce this system is dedicated to Ferdowsi The
+longdesc Great.
+docfiles size=58
+ texmf-dist/doc/lualatex/simurgh/ChangeLog
+ texmf-dist/doc/lualatex/simurgh/README.doc
+ texmf-dist/doc/lualatex/simurgh/simurgh-doc.pdf
+ texmf-dist/doc/lualatex/simurgh/simurgh-doc.tex
+ texmf-dist/doc/lualatex/simurgh/simurgh-logo.pdf
+ texmf-dist/doc/lualatex/simurgh/simurgh-logo.tex
+runfiles size=1054
+ texmf-dist/tex/lualatex/simurgh/simurgh-abjad.sty
+ texmf-dist/tex/lualatex/simurgh/simurgh-adadi.sty
+ texmf-dist/tex/lualatex/simurgh/simurgh-algorithm.sty
+ texmf-dist/tex/lualatex/simurgh/simurgh-algorithmic.sty
+ texmf-dist/tex/lualatex/simurgh/simurgh-amsart.sty
+ texmf-dist/tex/lualatex/simurgh/simurgh-amsbook.sty
+ texmf-dist/tex/lualatex/simurgh/simurgh-amsmath.sty
+ texmf-dist/tex/lualatex/simurgh/simurgh-amstext.sty
+ texmf-dist/tex/lualatex/simurgh/simurgh-amsthm.sty
+ texmf-dist/tex/lualatex/simurgh/simurgh-array.sty
+ texmf-dist/tex/lualatex/simurgh/simurgh-article.sty
+ texmf-dist/tex/lualatex/simurgh/simurgh-artikel1.sty
+ texmf-dist/tex/lualatex/simurgh/simurgh-artikel2.sty
+ texmf-dist/tex/lualatex/simurgh/simurgh-artikel3.sty
+ texmf-dist/tex/lualatex/simurgh/simurgh-arydshln.sty
+ texmf-dist/tex/lualatex/simurgh/simurgh-backref.sty
+ texmf-dist/tex/lualatex/simurgh/simurgh-bidi.sty
+ texmf-dist/tex/lualatex/simurgh/simurgh-boek.sty
+ texmf-dist/tex/lualatex/simurgh/simurgh-boek3.sty
+ texmf-dist/tex/lualatex/simurgh/simurgh-book.sty
+ texmf-dist/tex/lualatex/simurgh/simurgh-bookest.sty
+ texmf-dist/tex/lualatex/simurgh/simurgh-caption3.sty
+ texmf-dist/tex/lualatex/simurgh/simurgh-char-def.lua
+ texmf-dist/tex/lualatex/simurgh/simurgh-char-ini.lua
+ texmf-dist/tex/lualatex/simurgh/simurgh-chkeng.sty
+ texmf-dist/tex/lualatex/simurgh/simurgh-clss.sty
+ texmf-dist/tex/lualatex/simurgh/simurgh-counters.sty
+ texmf-dist/tex/lualatex/simurgh/simurgh-cptns.sty
+ texmf-dist/tex/lualatex/simurgh/simurgh-doc.cls
+ texmf-dist/tex/lualatex/simurgh/simurgh-empheq.sty
+ texmf-dist/tex/lualatex/simurgh/simurgh-extarticle.sty
+ texmf-dist/tex/lualatex/simurgh/simurgh-extbook.sty
+ texmf-dist/tex/lualatex/simurgh/simurgh-extletter.sty
+ texmf-dist/tex/lualatex/simurgh/simurgh-extreport.sty
+ texmf-dist/tex/lualatex/simurgh/simurgh-fleqn.sty
+ texmf-dist/tex/lualatex/simurgh/simurgh-fonts.sty
+ texmf-dist/tex/lualatex/simurgh/simurgh-footnotes.sty
+ texmf-dist/tex/lualatex/simurgh/simurgh-ftnxtra.sty
+ texmf-dist/tex/lualatex/simurgh/simurgh-glossaries.sty
+ texmf-dist/tex/lualatex/simurgh/simurgh-harfi.sty
+ texmf-dist/tex/lualatex/simurgh/simurgh-jalalical.sty
+ texmf-dist/tex/lualatex/simurgh/simurgh-leqno.sty
+ texmf-dist/tex/lualatex/simurgh/simurgh-letter.sty
+ texmf-dist/tex/lualatex/simurgh/simurgh-lettrine.sty
+ texmf-dist/tex/lualatex/simurgh/simurgh-loader.sty
+ texmf-dist/tex/lualatex/simurgh/simurgh-ltx.sty
+ texmf-dist/tex/lualatex/simurgh/simurgh-mathdigitspec.sty
+ texmf-dist/tex/lualatex/simurgh/simurgh-memoir.sty
+ texmf-dist/tex/lualatex/simurgh/simurgh-minitoc.sty
+ texmf-dist/tex/lualatex/simurgh/simurgh-natbib.sty
+ texmf-dist/tex/lualatex/simurgh/simurgh-pkgs.sty
+ texmf-dist/tex/lualatex/simurgh/simurgh-poem.sty
+ texmf-dist/tex/lualatex/simurgh/simurgh-rapport1.sty
+ texmf-dist/tex/lualatex/simurgh/simurgh-rapport3.sty
+ texmf-dist/tex/lualatex/simurgh/simurgh-refrep.sty
+ texmf-dist/tex/lualatex/simurgh/simurgh-report.sty
+ texmf-dist/tex/lualatex/simurgh/simurgh-scrartcl.sty
+ texmf-dist/tex/lualatex/simurgh/simurgh-scrbook.sty
+ texmf-dist/tex/lualatex/simurgh/simurgh-scrlettr.sty
+ texmf-dist/tex/lualatex/simurgh/simurgh-scrreprt.sty
+ texmf-dist/tex/lualatex/simurgh/simurgh-shellescape.sty
+ texmf-dist/tex/lualatex/simurgh/simurgh-tags.sty
+ texmf-dist/tex/lualatex/simurgh/simurgh-tartibi.sty
+ texmf-dist/tex/lualatex/simurgh/simurgh-tools.sty
+ texmf-dist/tex/lualatex/simurgh/simurgh-unibidi-core.lua
+ texmf-dist/tex/lualatex/simurgh/simurgh-unibidi-ini.lua
+ texmf-dist/tex/lualatex/simurgh/simurgh-unibidi-math.lua
+ texmf-dist/tex/lualatex/simurgh/simurgh-unibidi.lua
+ texmf-dist/tex/lualatex/simurgh/simurgh-unibidi.sty
+ texmf-dist/tex/lualatex/simurgh/simurgh.sty
+catalogue-ctan /macros/luatex/latex/simurgh
+catalogue-date 2014-02-26 23:03:13 +0100
+catalogue-license gpl2
+catalogue-version 0.01b
+
name sitem
category Package
revision 22136
@@ -145022,13 +159279,13 @@ srcfiles size=2
runfiles size=1
texmf-dist/tex/latex/sitem/sitem.sty
catalogue-ctan /macros/latex/contrib/sitem
-catalogue-date 2012-07-20 20:39:39 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.0
name siunitx
category Package
-revision 29360
+revision 31333
shortdesc A comprehensive (SI) units package.
longdesc Typesetting values with units requires care to ensure that the
longdesc combined mathematical meaning of the value plus unit
@@ -145062,13 +159319,13 @@ runfiles size=78
texmf-dist/tex/latex/siunitx/config/siunitx-version-1.cfg
texmf-dist/tex/latex/siunitx/siunitx.sty
catalogue-ctan /macros/latex/contrib/siunitx
-catalogue-date 2013-05-16 23:23:03 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
-catalogue-version 2.5q
+catalogue-version 2.5s
name skak
category Package
-revision 16453
+revision 32758
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
@@ -145080,8 +159337,11 @@ longdesc implementation of skak's fonts is available as package skaknew;
longdesc an alternative chess notational scheme is available in package
longdesc texmate, and a general mechanism for selecting chess fonts is
longdesc provided in chessfss.
-docfiles size=125
- texmf-dist/doc/latex/skak/README
+docfiles size=439
+ texmf-dist/doc/latex/skak/ChangeLog.md
+ texmf-dist/doc/latex/skak/LICENSE
+ texmf-dist/doc/latex/skak/README.md
+ texmf-dist/doc/latex/skak/THANKS
texmf-dist/doc/latex/skak/WC-2004-S-00007.tex
texmf-dist/doc/latex/skak/_region_.tex
texmf-dist/doc/latex/skak/andreas_wilm_1.tex
@@ -145092,26 +159352,26 @@ docfiles size=125
texmf-dist/doc/latex/skak/font.tex
texmf-dist/doc/latex/skak/font2.tex
texmf-dist/doc/latex/skak/hightest.tex
- texmf-dist/doc/latex/skak/informator.pdf
+ 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/longmove_king_bug.tex
texmf-dist/doc/latex/skak/longmoves.tex
texmf-dist/doc/latex/skak/makefile
texmf-dist/doc/latex/skak/promotion_problem_Ulrike.tex
- texmf-dist/doc/latex/skak/refman.pdf
+ 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.pdf
+ texmf-dist/doc/latex/skak/skakdoc.ps
texmf-dist/doc/latex/skak/skakdoc.tex
texmf-dist/doc/latex/skak/special.map
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.pdf
+ texmf-dist/doc/latex/skak/tuggame.ps
texmf-dist/doc/latex/skak/tuggame.tex
-runfiles size=41
+runfiles size=40
texmf-dist/fonts/source/public/skak/skak10.mf
texmf-dist/fonts/source/public/skak/skak15.mf
texmf-dist/fonts/source/public/skak/skak20.mf
@@ -145128,14 +159388,13 @@ runfiles size=41
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/skak.fd
texmf-dist/tex/latex/skak/skak.sty
texmf-dist/tex/latex/skak/uskak.fd
catalogue-ctan /fonts/chess/skak
-catalogue-date 2012-07-20 23:43:44 +0200
+catalogue-date 2014-01-22 19:51:35 +0100
catalogue-license lppl
-catalogue-version 1.5
+catalogue-version 1.5.2
name skaknew
category Package
@@ -145363,13 +159622,13 @@ runfiles size=12
texmf-dist/tex/latex/skb/skblncsppt.cls
texmf-dist/tex/latex/skb/skbmoderncv.cls
catalogue-ctan /macros/latex/contrib/skb
-catalogue-date 2012-07-20 23:21:35 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 0.52
name skdoc
category Package
-revision 30697
+revision 32278
shortdesc Documentation and extraction for packages and document classes.
longdesc The class provides the functionality and implementation of
longdesc packages and document classes. It is loosely based on the ydoc
@@ -145378,17 +159637,17 @@ longdesc differences. The class defines a MacroCode environment which
longdesc offers an alternative to the the usual docstrip method of
longdesc installing packages. It has the ability to generate both
longdesc documentation and code in a single run of a single file.
-docfiles size=45
- texmf-dist/doc/latex/skdoc/README
+docfiles size=58
+ texmf-dist/doc/latex/skdoc/README details="Readme"
texmf-dist/doc/latex/skdoc/skdoc.pdf details="Package documentation"
-srcfiles size=29
+srcfiles size=30
texmf-dist/source/latex/skdoc/skdoc.dtx
-runfiles size=12
+runfiles size=13
texmf-dist/tex/latex/skdoc/skdoc.cls
catalogue-ctan /macros/latex/contrib/skdoc
-catalogue-date 2013-05-25 17:03:59 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
-catalogue-version 1.3a
+catalogue-version 1.4a
name skeycommand
category Package
@@ -145406,7 +159665,7 @@ docfiles size=100
runfiles size=5
texmf-dist/tex/latex/skeycommand/skeycommand.sty
catalogue-ctan /macros/latex/contrib/skeycommand
-catalogue-date 2012-03-13 23:16:04 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 0.4
@@ -145441,49 +159700,56 @@ runfiles size=148
texmf-dist/tex/latex/skeyval/skeyval-view.sty
texmf-dist/tex/latex/skeyval/skeyval.sty
catalogue-ctan /macros/latex/contrib/skeyval
-catalogue-date 2013-05-16 17:14:56 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.3
name skmath
category Package
-revision 30698
+revision 30941
shortdesc Extensions to the maths command repertoir.
longdesc The package provides a selection of new maths commands and
longdesc improved re-definitions of existing commands.
-docfiles size=55
+docfiles size=56
texmf-dist/doc/latex/skmath/README
texmf-dist/doc/latex/skmath/skmath.pdf details="Package documentation"
srcfiles size=7
texmf-dist/source/latex/skmath/skmath.tex
-runfiles size=2
+runfiles size=3
texmf-dist/tex/latex/skmath/skmath.sty
catalogue-ctan /macros/latex/contrib/skmath
-catalogue-date 2013-05-26 19:01:07 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
-catalogue-version 0.3
+catalogue-version 0.3a
name skrapport
category Package
-revision 29608
+revision 31718
shortdesc 'Simple' class for reports, etc.
-longdesc The class is intgended for simple documents (e.g., reports
+longdesc The class is intended for simple documents (e.g., reports
longdesc handed in as coursework and the like). The class is small and
longdesc straightforward; its design was inspired by that of the PracTeX
longdesc journal style.
-docfiles size=57
+docfiles size=56
+ texmf-dist/doc/latex/skrapport/README details="Readme"
texmf-dist/doc/latex/skrapport/skrapport.pdf details="Package documentation"
- texmf-dist/doc/latex/skrapport/skrapport.tex
-runfiles size=11
+srcfiles size=40
+ texmf-dist/source/latex/skrapport/skrapport.tex
+runfiles size=27
texmf-dist/tex/latex/skrapport/skrapport-colortheme-cruelwater.sty
texmf-dist/tex/latex/skrapport/skrapport-colortheme-default.sty
+ texmf-dist/tex/latex/skrapport/skrapport-colortheme-skdoc.sty
texmf-dist/tex/latex/skrapport/skrapport-colortheme-unscathed.sty
texmf-dist/tex/latex/skrapport/skrapport-colortheme-violet.sty
+ texmf-dist/tex/latex/skrapport/skrapport-size-common.sty
+ texmf-dist/tex/latex/skrapport/skrapport-size10pt.clo
+ texmf-dist/tex/latex/skrapport/skrapport-size11pt.clo
+ texmf-dist/tex/latex/skrapport/skrapport-size12pt.clo
texmf-dist/tex/latex/skrapport/skrapport.cls
catalogue-ctan /macros/latex/contrib/skrapport
-catalogue-date 2013-04-05 11:56:15 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
-catalogue-version 0.10b
+catalogue-version 0.12d
name skull
category Package
@@ -145590,7 +159856,7 @@ runfiles size=15
texmf-dist/tex/latex/smartdiagram/smartdiagramlibrarycore.definitions.code.tex
texmf-dist/tex/latex/smartdiagram/smartdiagramlibrarycore.styles.code.tex
catalogue-ctan /graphics/pgf/contrib/smartdiagram
-catalogue-date 2013-04-02 02:01:45 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 0.3
@@ -145665,7 +159931,7 @@ docfiles size=117
runfiles size=3
texmf-dist/tex/latex/snotez/snotez.sty
catalogue-ctan /macros/latex/contrib/snotez
-catalogue-date 2013-05-09 13:28:31 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 0.3
@@ -145729,13 +159995,13 @@ category Package
revision 30005
shortdesc Produce song books for church or fellowship.
longdesc The package provides a means of producing beautiful song books
-longdesc for church or fellowship. It offers: - a very easy chord-entry
-longdesc syntax; - multiple modes (words-only; words+chords; slides;
-longdesc handouts); - measure bars; - guitar tablatures; - automatic
-longdesc transposition; - scripture quotations; - multiple indexes
-longdesc (sorted by title, author, important lyrics, or scripture
-longdesc references); and - projector-style output generation, for
-longdesc interactive use. A set of example documents is provided.
+longdesc for church or fellowship. It offers: a very easy chord-entry
+longdesc syntax; multiple modes (words-only; words+chords; slides;
+longdesc handouts); measure bars; guitar tablatures; automatic
+longdesc transposition; scripture quotations; multiple indexes (sorted
+longdesc by title, author, important lyrics, or scripture references);
+longdesc and projector-style output generation, for interactive use. A
+longdesc set of example documents is provided.
docfiles size=343
texmf-dist/doc/latex/songs/Makefile
texmf-dist/doc/latex/songs/README details="Readme"
@@ -145770,7 +160036,7 @@ srcfiles size=99
runfiles size=25
texmf-dist/tex/latex/songs/songs.sty
catalogue-ctan /macros/latex/contrib/songs
-catalogue-date 2012-04-22 21:38:25 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license gpl
catalogue-version 2.14
@@ -145809,7 +160075,7 @@ runfiles size=2
texmf-dist/tex/latex/soton/soton-beamer.sty
texmf-dist/tex/latex/soton/soton-palette.sty
catalogue-ctan /macros/latex/contrib/soton
-catalogue-date 2012-04-22 23:24:16 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 0.1
@@ -145841,7 +160107,7 @@ catalogue-version 2.4
name sourcecodepro
category Package
-revision 30691
+revision 32006
shortdesc Use SourceCodePro with TeX(-alike) systems.
longdesc The font is an open-source Monospaced development from Adobe.
longdesc The package provides fonts (in both Adobe Type 1 and OpenType
@@ -146105,13 +160371,13 @@ runfiles size=616
texmf-dist/tex/latex/sourcecodepro/sourcecodepro-type1-autoinst.sty
texmf-dist/tex/latex/sourcecodepro/sourcecodepro.sty
catalogue-ctan /fonts/sourcecodepro
-catalogue-date 2013-05-27 20:07:27 +0200
+catalogue-date 2014-04-23 18:48:25 +0200
catalogue-license ofl
-catalogue-version 2.1
+catalogue-version 2.2
name sourcesanspro
category Package
-revision 30210
+revision 31970
shortdesc Use SourceSansPro with TeX(-alike) systems.
longdesc The font is an open-source Sans-Serif development from Adobe.
longdesc The package provides fonts (in both Adobe Type 1 and OpenType
@@ -146885,9 +161151,9 @@ runfiles size=2384
texmf-dist/tex/latex/sourcesanspro/sourcesanspro-type1-autoinst.sty
texmf-dist/tex/latex/sourcesanspro/sourcesanspro.sty
catalogue-ctan /fonts/sourcesanspro
-catalogue-date 2013-05-02 20:50:09 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license ofl
-catalogue-version 2.2
+catalogue-version 2.3
name spanglish
category Package
@@ -146907,7 +161173,7 @@ runfiles size=4
texmf-dist/tex/latex/spanglish/spanglish.ldf
texmf-dist/tex/latex/spanglish/spanglish.sty
catalogue-ctan /language/spanish/babel/contrib/spanglish
-catalogue-date 2013-03-02 07:48:35 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 0.1a
@@ -146929,7 +161195,7 @@ runfiles size=3
texmf-dist/tex/latex/spanish-mx/spanishmx.ldf
texmf-dist/tex/latex/spanish-mx/spanishmx.sty
catalogue-ctan /language/spanish/babel/contrib/mexican
-catalogue-date 2012-03-13 18:56:34 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.1a
@@ -146979,7 +161245,7 @@ runfiles size=24
texmf-dist/tex/latex/spath3/tikzlibrarycalligraphy.code.tex
texmf-dist/tex/latex/spath3/tikzlibraryknots.code.tex
catalogue-ctan /graphics/pgf/contrib/spath3
-catalogue-date 2013-04-16 11:30:34 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1
@@ -147010,7 +161276,7 @@ runfiles size=19
texmf-dist/scripts/spelling/spelling-stage-4.lua
texmf-dist/tex/luatex/spelling/spelling.sty
catalogue-ctan /macros/luatex/generic/spelling
-catalogue-date 2013-05-27 20:07:27 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 0.41
@@ -147222,13 +161488,6 @@ shortdesc i386-solaris files of splitindex
binfiles arch=i386-solaris size=1
bin/i386-solaris/splitindex
-name splitindex.mips-irix
-category Package
-revision 29949
-shortdesc mips-irix files of splitindex
-binfiles arch=mips-irix size=1
- bin/mips-irix/splitindex
-
name splitindex.mipsel-linux
category Package
revision 29946
@@ -147264,6 +161523,13 @@ shortdesc win32 files of splitindex
binfiles arch=win32 size=1
bin/win32/splitindex.exe
+name splitindex.x86_64-cygwin
+category Package
+revision 33557
+shortdesc x86_64-cygwin files of splitindex
+binfiles arch=x86_64-cygwin size=1
+ bin/x86_64-cygwin/splitindex
+
name splitindex.x86_64-darwin
category Package
revision 29688
@@ -147302,7 +161568,7 @@ srcfiles size=9
runfiles size=2
texmf-dist/tex/latex/spot/spot.sty
catalogue-ctan /macros/latex/contrib/beamer-contrib/spot
-catalogue-date 2012-03-21 11:54:29 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.1
@@ -147345,7 +161611,7 @@ docfiles size=470
runfiles size=25
texmf-dist/tex/latex/spreadtab/spreadtab.sty
catalogue-ctan /macros/latex/contrib/spreadtab
-catalogue-date 2012-05-14 12:19:39 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 0.4b
@@ -147373,6 +161639,32 @@ catalogue-date 2012-07-10 14:38:32 +0200
catalogue-license lppl
catalogue-version v1.0
+name sr-vorl
+category Package
+revision 32440
+shortdesc Class for Springer books.
+longdesc The class provides a template for books to be published at
+longdesc Springer Gabler, Vieweg or Springer Research. It may be used to
+longdesc produce monographs in different formats and "several-authors-
+longdesc books" fitting the conditions of Springer Gabler, Vieweg and
+longdesc Springer Research.
+docfiles size=113
+ texmf-dist/doc/latex/sr-vorl/README details="Readme"
+ texmf-dist/doc/latex/sr-vorl/backmatter_sr-vorl.tex
+ texmf-dist/doc/latex/sr-vorl/frontmatter_sr-vorl.tex
+ texmf-dist/doc/latex/sr-vorl/hauptdatei_sr-vorl.tex
+ texmf-dist/doc/latex/sr-vorl/mainmatter_sr-vorl.tex
+ texmf-dist/doc/latex/sr-vorl/sr-vorl.pdf details="Package documentation"
+srcfiles size=16
+ texmf-dist/source/latex/sr-vorl/sr-vorl.dtx
+ texmf-dist/source/latex/sr-vorl/sr-vorl.ins
+runfiles size=3
+ texmf-dist/tex/latex/sr-vorl/sr-vorl.cls
+catalogue-ctan /macros/latex/contrib/springer/sr-vorl
+catalogue-date 2014-02-26 23:03:13 +0100
+catalogue-license lppl1.3
+catalogue-version 1.0
+
name srbook-mem
category Package
revision 23454
@@ -147412,8 +161704,8 @@ catalogue-version 1.6
name sseq
category Package
-revision 15878
-shortdesc Spectral sequence diagrams.
+revision 31585
+shortdesc Typesetting spectral sequence charts.
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
@@ -147421,17 +161713,35 @@ longdesc built using pgf, and shares that systems large demands for TeX
longdesc system memory. Its geometric commands are based on a turtle
longdesc graphics model, and control structures such as loops and
longdesc conditionals are available.
-docfiles size=34
+docfiles size=53
texmf-dist/doc/latex/sseq/sseq.pdf details="Package documentation"
srcfiles size=17
texmf-dist/source/latex/sseq/sseq.dtx
texmf-dist/source/latex/sseq/sseq.ins
-runfiles size=9
+runfiles size=10
texmf-dist/tex/latex/sseq/sseq.sty
catalogue-ctan /macros/latex/contrib/sseq
-catalogue-date 2012-07-10 14:48:34 +0200
+catalogue-date 2013-09-06 14:59:23 +0200
catalogue-license lppl
-catalogue-version 2.0
+catalogue-version 2.01
+
+name sslides
+category Package
+revision 32293
+shortdesc Slides with headers and footers.
+longdesc The class provides a variant of the LaTeX standard slides
+longdesc class, in which the user may add headers and footers to the
+longdesc slide.
+docfiles size=12
+ texmf-dist/doc/latex/sslides/land-sample-slide.pdf details="Sample (landscape) slides"
+ texmf-dist/doc/latex/sslides/land-sample-slide.tex
+ texmf-dist/doc/latex/sslides/port-sample-slide.pdf
+ texmf-dist/doc/latex/sslides/port-sample-slide.tex
+runfiles size=1
+ texmf-dist/tex/latex/sslides/sslides.cls
+catalogue-ctan /macros/latex/contrib/sslides
+catalogue-date 2014-02-26 23:03:13 +0100
+catalogue-license lppl1.3
name stack
category Package
@@ -147453,6 +161763,25 @@ catalogue-date 2012-07-10 15:21:46 +0200
catalogue-license lppl
catalogue-version 1.00
+name stackengine
+category Package
+revision 32593
+shortdesc Highly customised stacking of objects, insets, baseline changes, etc.
+longdesc The package provides a versatile way to stack objects
+longdesc vertically in a variety of customizable ways. A number of
+longdesc useful macros are provided, all of which make use of the
+longdesc stackengine core.
+docfiles size=102
+ texmf-dist/doc/latex/stackengine/README details="Readme"
+ texmf-dist/doc/latex/stackengine/stackengine.pdf details="Package documentation"
+ texmf-dist/doc/latex/stackengine/stackengine.tex
+runfiles size=4
+ texmf-dist/tex/latex/stackengine/stackengine.sty
+catalogue-ctan /macros/latex/contrib/stackengine
+catalogue-date 2014-02-26 23:03:13 +0100
+catalogue-license lppl1.3
+catalogue-version 3.24
+
name stage
category Package
revision 15878
@@ -147493,7 +161822,7 @@ runfiles size=17
texmf-dist/tex/latex/standalone/standalone.sty
texmf-dist/tex/plain/standalone/standalone.tex
catalogue-ctan /macros/latex/contrib/standalone
-catalogue-date 2012-09-15 20:44:35 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.1b
@@ -147526,7 +161855,7 @@ runfiles size=57
texmf-dist/fonts/type1/public/starfont/strfnser.pfb
texmf-dist/tex/latex/starfont/starfont.sty
catalogue-ctan /fonts/ps-type1/starfont
-catalogue-date 2013-05-17 13:44:42 +0200
+catalogue-date 2014-04-23 18:48:25 +0200
catalogue-license pd
catalogue-version 1.2
@@ -147592,7 +161921,7 @@ docfiles size=45
runfiles size=5
texmf-dist/tex/latex/statex2/statex2.sty
catalogue-ctan /macros/latex/contrib/statex2
-catalogue-date 2012-07-10 15:21:46 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 2.1
@@ -147642,7 +161971,7 @@ runfiles size=34
texmf-dist/fonts/type1/public/staves/icelandic.pfb
texmf-dist/tex/latex/staves/staves.sty
catalogue-ctan /language/staves
-catalogue-date 2012-07-10 15:21:46 +0200
+catalogue-date 2014-04-23 18:48:25 +0200
catalogue-license lppl
name stdclsdv
@@ -147696,8 +162025,8 @@ revision 15878
shortdesc Print Steinmetz notation.
longdesc The steinmetz package provides a command for typesetting
longdesc complex numbers in the Steinmetz notation used in
-longdesc electrotechnics as: <modulus><argument or phase inside an angle
-longdesc symbol> The package makes use of pict2e.
+longdesc electrotechnics as: <modulus>;<argument or phase inside an
+longdesc angle symbol> The package makes use of pict2e.
docfiles size=31
texmf-dist/doc/latex/steinmetz/README details="Readme"
texmf-dist/doc/latex/steinmetz/steinmetz-test.tex
@@ -147708,7 +162037,7 @@ srcfiles size=4
runfiles size=1
texmf-dist/tex/latex/steinmetz/steinmetz.sty
catalogue-ctan /macros/latex/contrib/steinmetz
-catalogue-date 2012-07-10 15:51:55 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.0
@@ -148377,86 +162706,193 @@ runfiles size=110
texmf-dist/tex/latex/stex/workaddress/workaddress.sty
texmf-dist/tex/latex/stex/workaddress/workaddress.sty.ltxml
catalogue-ctan /macros/latex/contrib/stex
-catalogue-date 2012-03-31 11:15:31 +0200
+catalogue-date 2014-04-30 19:02:32 +0200
catalogue-license lppl
catalogue-version 1.4
name stix
category Package
-revision 29803
+revision 34251
shortdesc OpenType Unicode maths fonts.
longdesc The STIX fonts are a suite of unicode OpenType fonts containing
-longdesc a complete set of mathematical glyphs. The CTAN copy is a
-longdesc mirror of their official release, organised as specified by the
-longdesc TeX Directory Structure, for inclusion in standard TeX
-longdesc distributions.
-docfiles size=416
- texmf-dist/doc/fonts/stix/Glyphs/STIXGeneral.otf.pdf
- texmf-dist/doc/fonts/stix/Glyphs/STIXGeneralBol.otf.pdf
- texmf-dist/doc/fonts/stix/Glyphs/STIXGeneralBolIta.otf.pdf
- texmf-dist/doc/fonts/stix/Glyphs/STIXGeneralItalic.otf.pdf
- texmf-dist/doc/fonts/stix/Glyphs/STIXIntDBol.otf.pdf
- texmf-dist/doc/fonts/stix/Glyphs/STIXIntDReg.otf.pdf
- texmf-dist/doc/fonts/stix/Glyphs/STIXIntSmBol.otf.pdf
- texmf-dist/doc/fonts/stix/Glyphs/STIXIntSmReg.otf.pdf
- texmf-dist/doc/fonts/stix/Glyphs/STIXIntUpBol.otf.pdf
- texmf-dist/doc/fonts/stix/Glyphs/STIXIntUpDBol.otf.pdf
- texmf-dist/doc/fonts/stix/Glyphs/STIXIntUpDReg.otf.pdf
- texmf-dist/doc/fonts/stix/Glyphs/STIXIntUpReg.otf.pdf
- texmf-dist/doc/fonts/stix/Glyphs/STIXIntUpSmBol.otf.pdf
- texmf-dist/doc/fonts/stix/Glyphs/STIXIntUpSmReg.otf.pdf
- texmf-dist/doc/fonts/stix/Glyphs/STIXNonUni.otf.pdf
- texmf-dist/doc/fonts/stix/Glyphs/STIXNonUniBol.otf.pdf
- texmf-dist/doc/fonts/stix/Glyphs/STIXNonUniBolIta.otf.pdf
- texmf-dist/doc/fonts/stix/Glyphs/STIXNonUniIta.otf.pdf
- texmf-dist/doc/fonts/stix/Glyphs/STIXSizFiveSymReg.otf.pdf
- texmf-dist/doc/fonts/stix/Glyphs/STIXSizFourSymBol.otf.pdf
- texmf-dist/doc/fonts/stix/Glyphs/STIXSizFourSymReg.otf.pdf
- texmf-dist/doc/fonts/stix/Glyphs/STIXSizOneSymBol.otf.pdf
- texmf-dist/doc/fonts/stix/Glyphs/STIXSizOneSymReg.otf.pdf
- texmf-dist/doc/fonts/stix/Glyphs/STIXSizThreeSymBol.otf.pdf
- texmf-dist/doc/fonts/stix/Glyphs/STIXSizThreeSymReg.otf.pdf
- texmf-dist/doc/fonts/stix/Glyphs/STIXSizTwoSymBol.otf.pdf
- texmf-dist/doc/fonts/stix/Glyphs/STIXSizTwoSymReg.otf.pdf
- texmf-dist/doc/fonts/stix/Glyphs/STIXVar.otf.pdf
- texmf-dist/doc/fonts/stix/Glyphs/STIXVarBol.otf.pdf
+longdesc a complete set of mathematical glyphs. The CTAN package is a
+longdesc copy of the fonts' official release, organised as specified by
+longdesc the TeX Directory Structure, for inclusion in standard TeX
+longdesc distributions. A Type 1-only distribution of the fonts is
+longdesc available in the esstix bundle.
+execute addMap stix.map
+docfiles size=676
texmf-dist/doc/fonts/stix/README details="Readme"
- texmf-dist/doc/fonts/stix/README.TEXLIVE
- texmf-dist/doc/fonts/stix/STIX_Font_License_2010.pdf
-runfiles size=381
- texmf-dist/fonts/opentype/public/stix/STIXGeneral.otf
- texmf-dist/fonts/opentype/public/stix/STIXGeneralBol.otf
- texmf-dist/fonts/opentype/public/stix/STIXGeneralBolIta.otf
- texmf-dist/fonts/opentype/public/stix/STIXGeneralItalic.otf
- texmf-dist/fonts/opentype/public/stix/STIXIntDBol.otf
- texmf-dist/fonts/opentype/public/stix/STIXIntDReg.otf
- texmf-dist/fonts/opentype/public/stix/STIXIntSmBol.otf
- texmf-dist/fonts/opentype/public/stix/STIXIntSmReg.otf
- texmf-dist/fonts/opentype/public/stix/STIXIntUpBol.otf
- texmf-dist/fonts/opentype/public/stix/STIXIntUpDBol.otf
- texmf-dist/fonts/opentype/public/stix/STIXIntUpDReg.otf
- texmf-dist/fonts/opentype/public/stix/STIXIntUpReg.otf
- texmf-dist/fonts/opentype/public/stix/STIXIntUpSmBol.otf
- texmf-dist/fonts/opentype/public/stix/STIXIntUpSmReg.otf
- texmf-dist/fonts/opentype/public/stix/STIXNonUni.otf
- texmf-dist/fonts/opentype/public/stix/STIXNonUniBol.otf
- texmf-dist/fonts/opentype/public/stix/STIXNonUniBolIta.otf
- texmf-dist/fonts/opentype/public/stix/STIXNonUniIta.otf
- texmf-dist/fonts/opentype/public/stix/STIXSizFiveSymReg.otf
- texmf-dist/fonts/opentype/public/stix/STIXSizFourSymBol.otf
- texmf-dist/fonts/opentype/public/stix/STIXSizFourSymReg.otf
- texmf-dist/fonts/opentype/public/stix/STIXSizOneSymBol.otf
- texmf-dist/fonts/opentype/public/stix/STIXSizOneSymReg.otf
- texmf-dist/fonts/opentype/public/stix/STIXSizThreeSymBol.otf
- texmf-dist/fonts/opentype/public/stix/STIXSizThreeSymReg.otf
- texmf-dist/fonts/opentype/public/stix/STIXSizTwoSymBol.otf
- texmf-dist/fonts/opentype/public/stix/STIXSizTwoSymReg.otf
- texmf-dist/fonts/opentype/public/stix/STIXVar.otf
- texmf-dist/fonts/opentype/public/stix/STIXVarBol.otf
+ texmf-dist/doc/fonts/stix/STIX_Font_1.1.0-latex_Release_Documentation.doc
+ texmf-dist/doc/fonts/stix/STIX_Font_1.1.0-latex_Release_Documentation.pdf
+ texmf-dist/doc/fonts/stix/STIX_Font_1.1.1_Release_Documentation.doc
+ texmf-dist/doc/fonts/stix/STIX_Font_1.1.1_Release_Documentation.pdf
+ texmf-dist/doc/fonts/stix/STIX_Font_License_2010.txt
+ texmf-dist/doc/fonts/stix/stix.pdf
+srcfiles size=52
+ texmf-dist/source/latex/stix/stix.dtx
+ texmf-dist/source/latex/stix/stix.fdd
+runfiles size=1398
+ texmf-dist/fonts/enc/dvips/stix/stix-extra1.enc
+ texmf-dist/fonts/enc/dvips/stix/stix-extra2.enc
+ texmf-dist/fonts/enc/dvips/stix/stix-extra3.enc
+ texmf-dist/fonts/enc/dvips/stix/stix-ot1.enc
+ texmf-dist/fonts/enc/dvips/stix/stix-ot2.enc
+ texmf-dist/fonts/enc/dvips/stix/stix-t1.enc
+ texmf-dist/fonts/enc/dvips/stix/stix-ts1.enc
+ texmf-dist/fonts/map/dvips/stix/stix.map
+ texmf-dist/fonts/opentype/public/stix/STIX-Bold.otf
+ texmf-dist/fonts/opentype/public/stix/STIX-BoldItalic.otf
+ texmf-dist/fonts/opentype/public/stix/STIX-Italic.otf
+ texmf-dist/fonts/opentype/public/stix/STIX-Regular.otf
+ texmf-dist/fonts/opentype/public/stix/STIXMath-Regular.otf
+ texmf-dist/fonts/source/public/stix/ot1-stixgeneral-bold.pl
+ texmf-dist/fonts/source/public/stix/ot1-stixgeneral-bolditalic.pl
+ texmf-dist/fonts/source/public/stix/ot1-stixgeneral-italic.pl
+ texmf-dist/fonts/source/public/stix/ot1-stixgeneral.pl
+ texmf-dist/fonts/source/public/stix/ot1-stixgeneralsc-bold.vpl
+ texmf-dist/fonts/source/public/stix/ot1-stixgeneralsc.vpl
+ texmf-dist/fonts/source/public/stix/ot2-stixgeneral-bold.pl
+ texmf-dist/fonts/source/public/stix/ot2-stixgeneral-bolditalic.pl
+ texmf-dist/fonts/source/public/stix/ot2-stixgeneral-italic.pl
+ texmf-dist/fonts/source/public/stix/ot2-stixgeneral.pl
+ texmf-dist/fonts/source/public/stix/ot2-stixgeneralsc-bold.vpl
+ texmf-dist/fonts/source/public/stix/ot2-stixgeneralsc.vpl
+ texmf-dist/fonts/source/public/stix/stix-extra1-bold.pl
+ texmf-dist/fonts/source/public/stix/stix-extra1.pl
+ texmf-dist/fonts/source/public/stix/stix-extra2-bold.pl
+ texmf-dist/fonts/source/public/stix/stix-extra2.pl
+ texmf-dist/fonts/source/public/stix/stix-extra3-bold.pl
+ texmf-dist/fonts/source/public/stix/stix-extra3.pl
+ texmf-dist/fonts/source/public/stix/stix-mathbb-bold.pl
+ texmf-dist/fonts/source/public/stix/stix-mathbb.pl
+ texmf-dist/fonts/source/public/stix/stix-mathbbit-bold.pl
+ texmf-dist/fonts/source/public/stix/stix-mathbbit.pl
+ texmf-dist/fonts/source/public/stix/stix-mathcal-bold.pl
+ texmf-dist/fonts/source/public/stix/stix-mathcal.pl
+ texmf-dist/fonts/source/public/stix/stix-mathex-bold.pl
+ texmf-dist/fonts/source/public/stix/stix-mathex.pl
+ texmf-dist/fonts/source/public/stix/stix-mathfrak-bold.pl
+ texmf-dist/fonts/source/public/stix/stix-mathfrak.pl
+ texmf-dist/fonts/source/public/stix/stix-mathit-bold.pl
+ texmf-dist/fonts/source/public/stix/stix-mathit.pl
+ texmf-dist/fonts/source/public/stix/stix-mathrm-bold.pl
+ texmf-dist/fonts/source/public/stix/stix-mathrm.pl
+ texmf-dist/fonts/source/public/stix/stix-mathscr-bold.pl
+ texmf-dist/fonts/source/public/stix/stix-mathscr.pl
+ texmf-dist/fonts/source/public/stix/stix-mathsf-bold.pl
+ texmf-dist/fonts/source/public/stix/stix-mathsf.pl
+ texmf-dist/fonts/source/public/stix/stix-mathsfit-bold.pl
+ texmf-dist/fonts/source/public/stix/stix-mathsfit.pl
+ texmf-dist/fonts/source/public/stix/stix-mathtt-bold.pl
+ texmf-dist/fonts/source/public/stix/stix-mathtt.pl
+ texmf-dist/fonts/source/public/stix/t1-stixgeneral-bold.pl
+ texmf-dist/fonts/source/public/stix/t1-stixgeneral-bolditalic.pl
+ texmf-dist/fonts/source/public/stix/t1-stixgeneral-italic.pl
+ texmf-dist/fonts/source/public/stix/t1-stixgeneral.pl
+ texmf-dist/fonts/source/public/stix/t1-stixgeneralsc-bold.vpl
+ texmf-dist/fonts/source/public/stix/t1-stixgeneralsc.vpl
+ texmf-dist/fonts/source/public/stix/ts1-stixgeneral-bold.pl
+ texmf-dist/fonts/source/public/stix/ts1-stixgeneral-bolditalic.pl
+ texmf-dist/fonts/source/public/stix/ts1-stixgeneral-italic.pl
+ texmf-dist/fonts/source/public/stix/ts1-stixgeneral.pl
+ texmf-dist/fonts/tfm/public/stix/ot1-stixgeneral-bold.tfm
+ texmf-dist/fonts/tfm/public/stix/ot1-stixgeneral-bolditalic.tfm
+ texmf-dist/fonts/tfm/public/stix/ot1-stixgeneral-italic.tfm
+ texmf-dist/fonts/tfm/public/stix/ot1-stixgeneral.tfm
+ texmf-dist/fonts/tfm/public/stix/ot1-stixgeneralsc-bold.tfm
+ texmf-dist/fonts/tfm/public/stix/ot1-stixgeneralsc.tfm
+ texmf-dist/fonts/tfm/public/stix/ot2-stixgeneral-bold.tfm
+ texmf-dist/fonts/tfm/public/stix/ot2-stixgeneral-bolditalic.tfm
+ texmf-dist/fonts/tfm/public/stix/ot2-stixgeneral-italic.tfm
+ texmf-dist/fonts/tfm/public/stix/ot2-stixgeneral.tfm
+ texmf-dist/fonts/tfm/public/stix/ot2-stixgeneralsc-bold.tfm
+ texmf-dist/fonts/tfm/public/stix/ot2-stixgeneralsc.tfm
+ texmf-dist/fonts/tfm/public/stix/stix-extra1.tfm
+ texmf-dist/fonts/tfm/public/stix/stix-extra2.tfm
+ texmf-dist/fonts/tfm/public/stix/stix-extra3.tfm
+ texmf-dist/fonts/tfm/public/stix/stix-mathbb-bold.tfm
+ texmf-dist/fonts/tfm/public/stix/stix-mathbb.tfm
+ texmf-dist/fonts/tfm/public/stix/stix-mathbbit-bold.tfm
+ texmf-dist/fonts/tfm/public/stix/stix-mathbbit.tfm
+ texmf-dist/fonts/tfm/public/stix/stix-mathcal-bold.tfm
+ texmf-dist/fonts/tfm/public/stix/stix-mathcal.tfm
+ texmf-dist/fonts/tfm/public/stix/stix-mathex-bold.tfm
+ texmf-dist/fonts/tfm/public/stix/stix-mathex.tfm
+ texmf-dist/fonts/tfm/public/stix/stix-mathfrak-bold.tfm
+ texmf-dist/fonts/tfm/public/stix/stix-mathfrak.tfm
+ texmf-dist/fonts/tfm/public/stix/stix-mathit-bold.tfm
+ texmf-dist/fonts/tfm/public/stix/stix-mathit.tfm
+ texmf-dist/fonts/tfm/public/stix/stix-mathrm-bold.tfm
+ texmf-dist/fonts/tfm/public/stix/stix-mathrm.tfm
+ texmf-dist/fonts/tfm/public/stix/stix-mathscr-bold.tfm
+ texmf-dist/fonts/tfm/public/stix/stix-mathscr.tfm
+ texmf-dist/fonts/tfm/public/stix/stix-mathsf-bold.tfm
+ texmf-dist/fonts/tfm/public/stix/stix-mathsf.tfm
+ texmf-dist/fonts/tfm/public/stix/stix-mathsfit-bold.tfm
+ texmf-dist/fonts/tfm/public/stix/stix-mathsfit.tfm
+ texmf-dist/fonts/tfm/public/stix/stix-mathtt-bold.tfm
+ texmf-dist/fonts/tfm/public/stix/stix-mathtt.tfm
+ texmf-dist/fonts/tfm/public/stix/t1-stixgeneral-bold.tfm
+ texmf-dist/fonts/tfm/public/stix/t1-stixgeneral-bolditalic.tfm
+ texmf-dist/fonts/tfm/public/stix/t1-stixgeneral-italic.tfm
+ texmf-dist/fonts/tfm/public/stix/t1-stixgeneral.tfm
+ texmf-dist/fonts/tfm/public/stix/t1-stixgeneralsc-bold.tfm
+ texmf-dist/fonts/tfm/public/stix/t1-stixgeneralsc.tfm
+ texmf-dist/fonts/tfm/public/stix/ts1-stixgeneral-bold.tfm
+ texmf-dist/fonts/tfm/public/stix/ts1-stixgeneral-bolditalic.tfm
+ texmf-dist/fonts/tfm/public/stix/ts1-stixgeneral-italic.tfm
+ texmf-dist/fonts/tfm/public/stix/ts1-stixgeneral.tfm
+ texmf-dist/fonts/type1/public/stix/STIXGeneral-Bold.pfb
+ texmf-dist/fonts/type1/public/stix/STIXGeneral-BoldItalic.pfb
+ texmf-dist/fonts/type1/public/stix/STIXGeneral-Italic.pfb
+ texmf-dist/fonts/type1/public/stix/STIXGeneral-Regular.pfb
+ texmf-dist/fonts/type1/public/stix/stix-mathbb-bold.pfb
+ texmf-dist/fonts/type1/public/stix/stix-mathbb.pfb
+ texmf-dist/fonts/type1/public/stix/stix-mathbbit-bold.pfb
+ texmf-dist/fonts/type1/public/stix/stix-mathbbit.pfb
+ texmf-dist/fonts/type1/public/stix/stix-mathcal-bold.pfb
+ texmf-dist/fonts/type1/public/stix/stix-mathcal.pfb
+ texmf-dist/fonts/type1/public/stix/stix-mathex-bold.pfb
+ texmf-dist/fonts/type1/public/stix/stix-mathex.pfb
+ texmf-dist/fonts/type1/public/stix/stix-mathfrak-bold.pfb
+ texmf-dist/fonts/type1/public/stix/stix-mathfrak.pfb
+ texmf-dist/fonts/type1/public/stix/stix-mathit-bold.pfb
+ texmf-dist/fonts/type1/public/stix/stix-mathit.pfb
+ texmf-dist/fonts/type1/public/stix/stix-mathrm-bold.pfb
+ texmf-dist/fonts/type1/public/stix/stix-mathrm.pfb
+ texmf-dist/fonts/type1/public/stix/stix-mathscr-bold.pfb
+ texmf-dist/fonts/type1/public/stix/stix-mathscr.pfb
+ texmf-dist/fonts/type1/public/stix/stix-mathsf-bold.pfb
+ texmf-dist/fonts/type1/public/stix/stix-mathsf.pfb
+ texmf-dist/fonts/type1/public/stix/stix-mathsfit-bold.pfb
+ texmf-dist/fonts/type1/public/stix/stix-mathsfit.pfb
+ texmf-dist/fonts/type1/public/stix/stix-mathtt-bold.pfb
+ texmf-dist/fonts/type1/public/stix/stix-mathtt.pfb
+ texmf-dist/fonts/vf/public/stix/ot1-stixgeneralsc-bold.vf
+ texmf-dist/fonts/vf/public/stix/ot1-stixgeneralsc.vf
+ texmf-dist/fonts/vf/public/stix/ot2-stixgeneralsc-bold.vf
+ texmf-dist/fonts/vf/public/stix/ot2-stixgeneralsc.vf
+ texmf-dist/fonts/vf/public/stix/t1-stixgeneralsc-bold.vf
+ texmf-dist/fonts/vf/public/stix/t1-stixgeneralsc.vf
+ texmf-dist/tex/latex/stix/ls1stix.fd
+ texmf-dist/tex/latex/stix/ls1stixbb.fd
+ texmf-dist/tex/latex/stix/ls1stixfrak.fd
+ texmf-dist/tex/latex/stix/ls1stixscr.fd
+ texmf-dist/tex/latex/stix/ls1stixsf.fd
+ texmf-dist/tex/latex/stix/ls2stix.fd
+ texmf-dist/tex/latex/stix/ls2stixcal.fd
+ texmf-dist/tex/latex/stix/ls2stixex.fd
+ texmf-dist/tex/latex/stix/ls2stixtt.fd
+ texmf-dist/tex/latex/stix/ot1stix.fd
+ texmf-dist/tex/latex/stix/ot2stix.fd
+ texmf-dist/tex/latex/stix/stix.sty
+ texmf-dist/tex/latex/stix/t1stix.fd
+ texmf-dist/tex/latex/stix/ts1stix.fd
catalogue-ctan /fonts/stix
-catalogue-date 2011-12-20 12:56:09 +0100
+catalogue-date 2014-05-01 09:39:56 +0200
catalogue-license ofl
-catalogue-version 1.0
+catalogue-version 2014-01-01
name stmaryrd
category Package
@@ -148516,7 +162952,7 @@ runfiles size=98
texmf-dist/tex/latex/stmaryrd/Ustmry.fd
texmf-dist/tex/latex/stmaryrd/stmaryrd.sty
catalogue-ctan /fonts/stmaryrd
-catalogue-date 2012-04-10 22:53:22 +0200
+catalogue-date 2014-04-11 12:20:27 +0200
catalogue-license lppl
name storebox
@@ -148539,7 +162975,7 @@ runfiles size=4
texmf-dist/tex/latex/storebox/storebox-pgf.sty
texmf-dist/tex/latex/storebox/storebox.sty
catalogue-ctan /macros/latex/contrib/storebox
-catalogue-date 2012-11-14 18:24:53 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.3a
@@ -148559,7 +162995,7 @@ docfiles size=71
runfiles size=3
texmf-dist/tex/latex/storecmd/storecmd.sty
catalogue-ctan /macros/latex/contrib/storecmd
-catalogue-date 2012-03-14 12:23:07 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 0.0.2
@@ -148586,7 +163022,7 @@ srcfiles size=40
runfiles size=15
texmf-dist/tex/latex/stringstrings/stringstrings.sty
catalogue-ctan /macros/latex/contrib/stringstrings
-catalogue-date 2013-04-25 12:06:29 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lgpl
catalogue-version 1.22
@@ -148632,18 +163068,16 @@ catalogue-version 141
name sttools
category Package
-revision 28013
+revision 33669
shortdesc Various macros.
-longdesc A collection of tools and macros, including: - miscellaneous
-longdesc float control, - page styles for floats, - multipage tabulars,
-longdesc - even columns at end of twocolumn region, - switching between
-longdesc one- and two-column anywhere, - getting more mileage from
-longdesc \marginpar, - simulating the effect of "midfloats", - create a
-longdesc bounding box, - a package to manipulate numerical lists and
-longdesc arrays.
-docfiles size=295
- texmf-dist/doc/latex/sttools/README details="README"
- texmf-dist/doc/latex/sttools/boundbox.pdf
+longdesc A collection of tools and macros, providing: miscellaneous
+longdesc float control, page styles for floats, multipage tabulars, even
+longdesc columns at end of twocolumn region, switching between one- and
+longdesc two-column anywhere, getting more mileage from \marginpar,
+longdesc simulating the effect of "midfloats", a package to manipulate
+longdesc numerical lists and arrays.
+docfiles size=262
+ texmf-dist/doc/latex/sttools/README details="Readme"
texmf-dist/doc/latex/sttools/cuted.pdf
texmf-dist/doc/latex/sttools/floatpag.pdf
texmf-dist/doc/latex/sttools/flushend.pdf
@@ -148651,10 +163085,9 @@ docfiles size=295
texmf-dist/doc/latex/sttools/midfloat.pdf
texmf-dist/doc/latex/sttools/stabular.pdf
texmf-dist/doc/latex/sttools/stfloats.pdf
- texmf-dist/doc/latex/sttools/sttools.pdf details="Overview"
+ texmf-dist/doc/latex/sttools/sttools.pdf details="Overview of the bundle"
texmf-dist/doc/latex/sttools/texsort.pdf
srcfiles size=34
- texmf-dist/source/latex/sttools/boundbox.dtx
texmf-dist/source/latex/sttools/cuted.dtx
texmf-dist/source/latex/sttools/floatpag.dtx
texmf-dist/source/latex/sttools/flushend.dtx
@@ -148665,8 +163098,7 @@ srcfiles size=34
texmf-dist/source/latex/sttools/sttools.dtx
texmf-dist/source/latex/sttools/sttools.ins
texmf-dist/source/latex/sttools/texsort.dtx
-runfiles size=22
- texmf-dist/tex/latex/sttools/boundbox.sty
+runfiles size=24
texmf-dist/tex/latex/sttools/cuted.sty
texmf-dist/tex/latex/sttools/floatpag.sty
texmf-dist/tex/latex/sttools/flushend.sty
@@ -148676,9 +163108,9 @@ runfiles size=22
texmf-dist/tex/latex/sttools/stfloats.sty
texmf-dist/tex/latex/sttools/texsort.sty
catalogue-ctan /macros/latex/contrib/sttools
-catalogue-date 2012-10-19 11:22:15 +0200
-catalogue-license collection
-catalogue-version 1.1
+catalogue-date 2014-04-24 17:19:19 +0200
+catalogue-license lppl1.3
+catalogue-version 1.5
name stubs
category Package
@@ -148727,7 +163159,7 @@ docfiles size=43
runfiles size=8
texmf-dist/scripts/sty2dtx/sty2dtx.pl
catalogue-ctan /support/sty2dtx
-catalogue-date 2012-11-07 20:43:20 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license gpl3
catalogue-version 2.3
@@ -148815,13 +163247,6 @@ shortdesc i386-solaris files of sty2dtx
binfiles arch=i386-solaris size=1
bin/i386-solaris/sty2dtx
-name sty2dtx.mips-irix
-category Package
-revision 29949
-shortdesc mips-irix files of sty2dtx
-binfiles arch=mips-irix size=1
- bin/mips-irix/sty2dtx
-
name sty2dtx.mipsel-linux
category Package
revision 29946
@@ -148857,6 +163282,13 @@ shortdesc win32 files of sty2dtx
binfiles arch=win32 size=1
bin/win32/sty2dtx.exe
+name sty2dtx.x86_64-cygwin
+category Package
+revision 33557
+shortdesc x86_64-cygwin files of sty2dtx
+binfiles arch=x86_64-cygwin size=1
+ bin/x86_64-cygwin/sty2dtx
+
name sty2dtx.x86_64-darwin
category Package
revision 21215
@@ -148913,7 +163345,7 @@ srcfiles size=4
runfiles size=1
texmf-dist/tex/latex/subdepth/subdepth.sty
catalogue-ctan /macros/latex/contrib/subdepth
-catalogue-date 2012-06-01 21:24:39 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 0.1
@@ -148981,7 +163413,7 @@ 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 is longer maintained). The name
+longdesc the subfigure package (which is no longer maintained). The name
longdesc was changed since the package is completely backward compatible
longdesc with the older package The major advantage to the new package
longdesc is that the user interface is keyword/value driven and easier
@@ -149009,7 +163441,7 @@ runfiles size=8
texmf-dist/tex/latex/subfig/altsf.cfg
texmf-dist/tex/latex/subfig/subfig.sty
catalogue-ctan /macros/latex/contrib/subfig
-catalogue-date 2013-02-22 13:03:09 +0100
+catalogue-date 2014-03-31 11:43:09 +0200
catalogue-license lppl
catalogue-version 1.3
@@ -149131,47 +163563,48 @@ runfiles size=5
texmf-dist/tex/latex/substances/substances-default.def
texmf-dist/tex/latex/substances/substances.sty
catalogue-ctan /macros/latex/contrib/substances
-catalogue-date 2012-08-13 12:34:19 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 0.1
name substitutefont
category Package
-revision 26981
+revision 32066
shortdesc Easy font substitution.
longdesc Many free fonts are extensions of a basic font family with new
longdesc glyphs or shapes. Such fonts may be given a new name due to
longdesc licence reasons or to the creator's preference. The package
longdesc facilitates the task of setting up a font family as substitute
longdesc for another one, using its \substitutefont command.
-docfiles size=228
+docfiles size=374
texmf-dist/doc/latex/substitutefont/README details="Readme"
- texmf-dist/doc/latex/substitutefont/README.html
texmf-dist/doc/latex/substitutefont/cyrillic-lm-lgc.pdf
texmf-dist/doc/latex/substitutefont/cyrillic-lm-lgc.tex
- texmf-dist/doc/latex/substitutefont/cyrillic-times-paratype.pdf
- texmf-dist/doc/latex/substitutefont/cyrillic-times-paratype.tex
+ texmf-dist/doc/latex/substitutefont/cyrillic-paratype.pdf
+ texmf-dist/doc/latex/substitutefont/cyrillic-paratype.tex
texmf-dist/doc/latex/substitutefont/greek-palatino-didot.pdf
texmf-dist/doc/latex/substitutefont/greek-palatino-didot.tex
- texmf-dist/doc/latex/substitutefont/greek-times-bodoni.pdf
- texmf-dist/doc/latex/substitutefont/greek-times-bodoni.tex
+ texmf-dist/doc/latex/substitutefont/greek-times-artemisia.pdf
+ texmf-dist/doc/latex/substitutefont/greek-times-artemisia.tex
+ texmf-dist/doc/latex/substitutefont/substitutefont-doc.html
+ texmf-dist/doc/latex/substitutefont/substitutefont-test.pdf
+ texmf-dist/doc/latex/substitutefont/substitutefont-test.tex
texmf-dist/doc/latex/substitutefont/substitutefont.sty.html
- texmf-dist/doc/latex/substitutefont/substitutefont.sty.txt
runfiles size=1
texmf-dist/tex/latex/substitutefont/substitutefont.sty
catalogue-ctan /macros/latex/contrib/substitutefont
-catalogue-date 2012-07-08 14:35:29 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
-catalogue-version 0.1.3
+catalogue-version 0.1.4
name substr
category Package
revision 16117
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 a
-longdesc substring of another, - return the parts of a string before or
-longdesc after a substring and - count the number of occurrences of a
+longdesc The package provides commands to deal with substrings of
+longdesc strings. Macros are provided to: determine if one string is a
+longdesc substring of another, return the parts of a string before or
+longdesc after a substring, and count the number of occurrences of a
longdesc substring.
docfiles size=8
texmf-dist/doc/latex/substr/ChangeLog
@@ -149181,7 +163614,7 @@ docfiles size=8
runfiles size=2
texmf-dist/tex/latex/substr/substr.sty
catalogue-ctan /macros/latex/contrib/substr
-catalogue-date 2012-05-27 21:37:20 +0200
+catalogue-date 2014-01-13 14:38:45 +0100
catalogue-license lppl1
catalogue-version 1.2
@@ -149199,7 +163632,7 @@ docfiles size=31
runfiles size=1
texmf-dist/tex/latex/subsupscripts/subsupscripts.sty
catalogue-ctan /macros/latex/contrib/subsupscripts
-catalogue-date 2012-06-01 21:24:39 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.0
@@ -149234,13 +163667,13 @@ name sudokubundle
category Package
revision 15878
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 package
-longdesc to generate a puzzle according to a bunch of parameters that
-longdesc the user sets via macros. The bundle comes with a set of ready-
+longdesc The bundle provides three packages: printsudoku, which provides
+longdesc a command \sudoku whose argument is the name of a file
+longdesc containing a puzzle specification; solvesudoku, which attempts
+longdesc to find a solution to the puzzle in the file named in the
+longdesc argument; and createsudoku, which uses the random package to
+longdesc generate a puzzle according to a bunch of parameters that the
+longdesc user sets via macros. The bundle comes with a set of ready-
longdesc prepared puzzle files.
docfiles size=97
texmf-dist/doc/latex/sudokubundle/README details="Readme"
@@ -149254,45 +163687,28 @@ runfiles size=14
texmf-dist/tex/latex/sudokubundle/printsudoku.sty
texmf-dist/tex/latex/sudokubundle/solvesudoku.sty
catalogue-ctan /macros/latex/contrib/sudokubundle
-catalogue-date 2012-05-27 23:10:31 +0200
+catalogue-date 2014-01-13 14:38:45 +0100
catalogue-license lppl
catalogue-version 1.0a
name suftesi
category Package
-revision 30000
+revision 33382
shortdesc A document class for typesetting theses, books and articles.
longdesc The class is specifically designed for use with theses in the
longdesc humanities.
-docfiles size=564
+docfiles size=278
texmf-dist/doc/latex/suftesi/README details="Readme"
texmf-dist/doc/latex/suftesi/suftesi.pdf details="Package documentation" language="en"
- texmf-dist/doc/latex/suftesi/templates/tesi-magistrale/Capitoli/primo.tex
- texmf-dist/doc/latex/suftesi/templates/tesi-magistrale/Capitoli/secondo.tex
- texmf-dist/doc/latex/suftesi/templates/tesi-magistrale/Capitoli/terzo.tex
- texmf-dist/doc/latex/suftesi/templates/tesi-magistrale/MaterialeInizialeFinale/Introduzione.tex
- texmf-dist/doc/latex/suftesi/templates/tesi-magistrale/MaterialeInizialeFinale/Ringraziamenti.tex
- texmf-dist/doc/latex/suftesi/templates/tesi-magistrale/immagini/don.png
- texmf-dist/doc/latex/suftesi/templates/tesi-magistrale/immagini/lamport.jpg
- texmf-dist/doc/latex/suftesi/templates/tesi-magistrale/immagini/logo.png
- texmf-dist/doc/latex/suftesi/templates/tesi-magistrale/nome-tesi.bib
- texmf-dist/doc/latex/suftesi/templates/tesi-magistrale/nome-tesi.pdf
- texmf-dist/doc/latex/suftesi/templates/tesi-magistrale/nome-tesi.tex
- texmf-dist/doc/latex/suftesi/templates/tesi-triennale/immagini/don.png
- texmf-dist/doc/latex/suftesi/templates/tesi-triennale/immagini/lamport.jpg
- texmf-dist/doc/latex/suftesi/templates/tesi-triennale/immagini/logo.png
- texmf-dist/doc/latex/suftesi/templates/tesi-triennale/nome-tesi.bib
- texmf-dist/doc/latex/suftesi/templates/tesi-triennale/nome-tesi.pdf
- texmf-dist/doc/latex/suftesi/templates/tesi-triennale/nome-tesi.tex
-srcfiles size=36
+ texmf-dist/doc/latex/suftesi/templates.zip
+srcfiles size=42
texmf-dist/source/latex/suftesi/suftesi.dtx
- texmf-dist/source/latex/suftesi/suftesi.ins
-runfiles size=15
+runfiles size=19
texmf-dist/tex/latex/suftesi/suftesi.cls
catalogue-ctan /macros/latex/contrib/suftesi
-catalogue-date 2013-04-17 17:07:05 +0200
+catalogue-date 2014-04-05 12:34:01 +0200
catalogue-license lppl
-catalogue-version 1.6
+catalogue-version 1.9c
name sugconf
category Package
@@ -149319,7 +163735,7 @@ catalogue-license lppl
name superiors
category Package
-revision 29169
+revision 32716
shortdesc Attach superior figures to a font family.
longdesc The package allows the attachment of an arbitrary superior
longdesc figures font to a font family that lacks one. (Superior figures
@@ -149327,7 +163743,7 @@ longdesc are commonly used as footnote markers.) Two superior figures
longdesc fonts are provided--one matching Times, the other matching
longdesc Libertine.
execute addMap superiors.map
-docfiles size=108
+docfiles size=89
texmf-dist/doc/fonts/superiors/README details="Readme"
texmf-dist/doc/fonts/superiors/libfoot0-crop.pdf
texmf-dist/doc/fonts/superiors/libfoot1-crop.pdf
@@ -149340,11 +163756,11 @@ runfiles size=7
texmf-dist/fonts/map/dvips/superiors/superiors.map
texmf-dist/fonts/tfm/public/superiors/libertinesups.tfm
texmf-dist/fonts/type1/public/superiors/libertinesups.pfb
- texmf-dist/tex/latex/public/superiors/superiors.sty
+ texmf-dist/tex/latex/superiors/superiors.sty
catalogue-ctan /fonts/superiors
-catalogue-date 2013-02-18 23:06:04 +0100
+catalogue-date 2014-04-24 21:17:57 +0200
catalogue-license lppl
-catalogue-version 1.02
+catalogue-version 1.04
name supertabular
category Package
@@ -149386,16 +163802,16 @@ catalogue-license lppl
name svg
category Package
-revision 27643
+revision 33063
shortdesc Include and extract SVG pictures using Inkscape.
longdesc The package provides a command similar to \includegraphics
longdesc command of the graphicx package, which enables the inclusion of
-longdesc SVG images using Inkscape. \includesvg[options]{svg filename} A
-longdesc variety of options is available, including width, height, and
-longdesc path of the SVG. The image is converted to an appropriate
-longdesc format, using the \write18 mechanism to execute a shell
-longdesc command, and the package also offers the means of saving a PDF,
-longdesc EPS, or PNG copy of the image, at the same time. The
+longdesc SVG images using Inkscape. \includesvg[<options>]{<svg
+longdesc filename>} A variety of options is available, including width,
+longdesc height, and path of the SVG. The image is converted to an
+longdesc appropriate format, using the \write18 mechanism to execute a
+longdesc shell command, and the package also offers the means of saving
+longdesc a PDF, EPS, or PNG copy of the image, at the same time. The
longdesc documentation shows an example using an SVG created from the
longdesc high energy particle physics analysis package ROOT.
docfiles size=450
@@ -149418,13 +163834,13 @@ srcfiles size=8
runfiles size=3
texmf-dist/tex/latex/svg/svg.sty
catalogue-ctan /graphics/svg
-catalogue-date 2013-01-29 15:50:53 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.0
name svg-inkscape
category Package
-revision 19788
+revision 32199
shortdesc How to include an SVG image in LaTeX using Inkscape.
longdesc The document demonstrates the use of SVG images in LaTeX
longdesc documents. Using the "PDF+LaTeX output" option of Inkscape, it
@@ -149435,7 +163851,7 @@ longdesc LaTeX commands may be used in the image's text, providing such
longdesc things as mathematics and references. The document also
longdesc describes how to automate the conversion from SVG to PDF+LaTeX
longdesc using Inkscape.
-docfiles size=82
+docfiles size=90
texmf-dist/doc/latex/svg-inkscape/InkscapePDFLaTeX.pdf details="The document itself"
texmf-dist/doc/latex/svg-inkscape/InkscapePDFLaTeX.tex
texmf-dist/doc/latex/svg-inkscape/README details="Readme"
@@ -149444,7 +163860,7 @@ docfiles size=82
texmf-dist/doc/latex/svg-inkscape/image.pdf_tex
texmf-dist/doc/latex/svg-inkscape/image.svg
catalogue-ctan /info/svg-inkscape
-catalogue-date 2012-05-27 23:10:31 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
name svgcolor
@@ -149458,7 +163874,7 @@ docfiles size=1
runfiles size=4
texmf-dist/tex/latex/svgcolor/svgcolor.sty
catalogue-ctan /macros/latex/contrib/svgcolor
-catalogue-date 2006-08-27 16:41:02 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.0
@@ -149601,13 +164017,6 @@ shortdesc i386-solaris files of svn-multi
binfiles arch=i386-solaris size=1
bin/i386-solaris/svn-multi
-name svn-multi.mips-irix
-category Package
-revision 29949
-shortdesc mips-irix files of svn-multi
-binfiles arch=mips-irix size=1
- bin/mips-irix/svn-multi
-
name svn-multi.mipsel-linux
category Package
revision 29946
@@ -149643,6 +164052,13 @@ shortdesc win32 files of svn-multi
binfiles arch=win32 size=1
bin/win32/svn-multi.exe
+name svn-multi.x86_64-cygwin
+category Package
+revision 33557
+shortdesc x86_64-cygwin files of svn-multi
+binfiles arch=x86_64-cygwin size=1
+ bin/x86_64-cygwin/svn-multi
+
name svn-multi.x86_64-darwin
category Package
revision 18441
@@ -149682,7 +164098,7 @@ srcfiles size=10
runfiles size=2
texmf-dist/tex/latex/svn-prov/svn-prov.sty
catalogue-ctan /macros/latex/contrib/svn-prov
-catalogue-date 2012-02-09 13:03:06 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 3.1862
@@ -149805,13 +164221,13 @@ docfiles size=95
runfiles size=3
texmf-dist/tex/latex/syllogism/syllogism.sty
catalogue-ctan /macros/latex/contrib/syllogism
-catalogue-date 2012-06-11 14:51:53 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.2
name symbol
category Package
-revision 28614
+revision 31835
catalogue urw-base35
shortdesc URW "Base 35" font pack for LaTeX.
longdesc A set of fonts for use as "drop-in" replacements for Adobe's
@@ -149825,6 +164241,7 @@ longdesc Symbol); - URW Bookman; - URW Chancery L Medium Italic
longdesc (substituting for Adobe's Zapf Chancery); - URW Gothic L Book
longdesc (substituting for Adobe's Avant Garde); and - URW Palladio L
longdesc (substituting for Adobe's Palatino).
+execute addMap usy.map
runfiles size=25
texmf-dist/dvips/symbol/config.usy
texmf-dist/fonts/afm/adobe/symbol/psyb.afm
@@ -149841,9 +164258,23 @@ catalogue-ctan /fonts/urw/base35
catalogue-date 2012-06-06 22:57:48 +0200
catalogue-license gpl
+name sympytexpackage
+category Package
+revision 34176
+docfiles size=191
+ texmf-dist/doc/latex/sympytexpackage/README
+ texmf-dist/doc/latex/sympytexpackage/example.pdf
+ texmf-dist/doc/latex/sympytexpackage/sympytexpackage.pdf
+srcfiles size=15
+ texmf-dist/source/latex/sympytexpackage/sympytexpackage.dtx
+ texmf-dist/source/latex/sympytexpackage/sympytexpackage.ins
+runfiles size=4
+ texmf-dist/scripts/sympytexpackage/sympytex.py
+ texmf-dist/tex/latex/sympytexpackage/sympytex.sty
+
name synctex
category TLCore
-revision 29764
+revision 33736
depend synctex.ARCH
docfiles size=8
texmf-dist/doc/man/man1/synctex.1
@@ -149853,147 +164284,147 @@ docfiles size=8
name synctex.alpha-linux
category TLCore
-revision 29834
+revision 33553
shortdesc alpha-linux files of synctex
binfiles arch=alpha-linux size=44
bin/alpha-linux/synctex
name synctex.amd64-freebsd
category TLCore
-revision 29785
+revision 33488
shortdesc amd64-freebsd files of synctex
binfiles arch=amd64-freebsd size=34
bin/amd64-freebsd/synctex
name synctex.amd64-kfreebsd
category TLCore
-revision 30655
+revision 33529
shortdesc amd64-kfreebsd files of synctex
binfiles arch=amd64-kfreebsd size=36
bin/amd64-kfreebsd/synctex
name synctex.amd64-netbsd
category TLCore
-revision 30660
+revision 33726
shortdesc amd64-netbsd files of synctex
binfiles arch=amd64-netbsd size=35
bin/amd64-netbsd/synctex
name synctex.armel-linux
category TLCore
-revision 29888
+revision 33508
shortdesc armel-linux files of synctex
binfiles arch=armel-linux size=34
bin/armel-linux/synctex
name synctex.armhf-linux
category TLCore
-revision 30443
+revision 33545
shortdesc armhf-linux files of synctex
binfiles arch=armhf-linux size=32
bin/armhf-linux/synctex
name synctex.i386-cygwin
category TLCore
-revision 30526
+revision 34161
shortdesc i386-cygwin files of synctex
-binfiles arch=i386-cygwin size=30
+binfiles arch=i386-cygwin size=35
bin/i386-cygwin/synctex.exe
name synctex.i386-freebsd
category TLCore
-revision 29785
+revision 33488
shortdesc i386-freebsd files of synctex
binfiles arch=i386-freebsd size=31
bin/i386-freebsd/synctex
name synctex.i386-kfreebsd
category TLCore
-revision 30440
+revision 33529
shortdesc i386-kfreebsd files of synctex
binfiles arch=i386-kfreebsd size=35
bin/i386-kfreebsd/synctex
name synctex.i386-linux
category TLCore
-revision 30088
+revision 33479
shortdesc i386-linux files of synctex
-binfiles arch=i386-linux size=34
+binfiles arch=i386-linux size=37
bin/i386-linux/synctex
name synctex.i386-netbsd
category TLCore
-revision 30191
+revision 33562
shortdesc i386-netbsd files of synctex
binfiles arch=i386-netbsd size=30
bin/i386-netbsd/synctex
name synctex.i386-solaris
category TLCore
-revision 30112
+revision 34203
shortdesc i386-solaris files of synctex
binfiles arch=i386-solaris size=42
bin/i386-solaris/synctex
-name synctex.mips-irix
-category TLCore
-revision 29949
-shortdesc mips-irix files of synctex
-binfiles arch=mips-irix size=62
- bin/mips-irix/synctex
-
name synctex.mipsel-linux
category TLCore
-revision 29995
+revision 33811
shortdesc mipsel-linux files of synctex
-binfiles arch=mipsel-linux size=42
+binfiles arch=mipsel-linux size=37
bin/mipsel-linux/synctex
name synctex.powerpc-linux
category TLCore
-revision 30114
+revision 33561
shortdesc powerpc-linux files of synctex
-binfiles arch=powerpc-linux size=37
+binfiles arch=powerpc-linux size=35
bin/powerpc-linux/synctex
name synctex.sparc-solaris
category TLCore
-revision 29877
+revision 33871
shortdesc sparc-solaris files of synctex
binfiles arch=sparc-solaris size=36
bin/sparc-solaris/synctex
name synctex.universal-darwin
category TLCore
-revision 30764
+revision 34201
shortdesc universal-darwin files of synctex
binfiles arch=universal-darwin size=72
bin/universal-darwin/synctex
name synctex.win32
category TLCore
-revision 29816
+revision 33897
shortdesc win32 files of synctex
-binfiles arch=win32 size=26
+binfiles arch=win32 size=27
bin/win32/synctex.exe
+name synctex.x86_64-cygwin
+category TLCore
+revision 34161
+shortdesc x86_64-cygwin files of synctex
+binfiles arch=x86_64-cygwin size=34
+ bin/x86_64-cygwin/synctex.exe
+
name synctex.x86_64-darwin
category TLCore
-revision 29809
+revision 34201
shortdesc x86_64-darwin files of synctex
binfiles arch=x86_64-darwin size=38
bin/x86_64-darwin/synctex
name synctex.x86_64-linux
category TLCore
-revision 30204
+revision 33723
shortdesc x86_64-linux files of synctex
-binfiles arch=x86_64-linux size=36
+binfiles arch=x86_64-linux size=37
bin/x86_64-linux/synctex
name synctex.x86_64-solaris
category TLCore
-revision 30112
+revision 34203
shortdesc x86_64-solaris files of synctex
binfiles arch=x86_64-solaris size=51
bin/x86_64-solaris/synctex
@@ -150014,7 +164445,7 @@ docfiles size=21
runfiles size=2
texmf-dist/tex/latex/synproof/synproof.sty
catalogue-ctan /macros/latex/contrib/synproof
-catalogue-date 2012-06-11 14:51:53 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.0
@@ -150080,7 +164511,7 @@ catalogue-version 1.4.2
name systeme
category Package
-revision 23336
+revision 32473
shortdesc Format systems of equations.
longdesc The package allows you to enter systems of equations or
longdesc inequalities in an intuitive way, and produces typeset output
@@ -150089,17 +164520,16 @@ longdesc works with plain TeX or LaTeX, but e-TeX is required. Cette
longdesc petite extension permet de saisir des systemes d'equations ou
longdesc inequations de facon intuitive, et produit un affichage ou les
longdesc termes et les signes sont alignes verticalement.
-docfiles size=165
- texmf-dist/doc/generic/systeme/README details="Readme"
+docfiles size=124
texmf-dist/doc/generic/systeme/systeme_doc_fr.pdf details="Package documentation (French)" language="fr"
texmf-dist/doc/generic/systeme/systeme_doc_fr.tex
runfiles size=8
texmf-dist/tex/generic/systeme/systeme.sty
texmf-dist/tex/generic/systeme/systeme.tex
catalogue-ctan /macros/generic/systeme
-catalogue-date 2012-06-11 15:46:15 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
-catalogue-version 0.2b
+catalogue-version 0.3
name t-angles
category Package
@@ -150123,7 +164553,7 @@ catalogue-license gpl
name t1utils
category TLCore
-revision 29764
+revision 33736
shortdesc Simple Type 1 font manipulation programs.
longdesc A collection of simple programs for manipulating Adobe Type 1
longdesc fonts, comprising: - t1ascii: convert PFB (binary) to PFA
@@ -150154,7 +164584,7 @@ catalogue-version 1.36
name t1utils.alpha-linux
category TLCore
-revision 26413
+revision 33553
shortdesc alpha-linux files of t1utils
binfiles arch=alpha-linux size=70
bin/alpha-linux/t1ascii
@@ -150166,7 +164596,7 @@ binfiles arch=alpha-linux size=70
name t1utils.amd64-freebsd
category TLCore
-revision 26601
+revision 33488
shortdesc amd64-freebsd files of t1utils
binfiles arch=amd64-freebsd size=62
bin/amd64-freebsd/t1ascii
@@ -150178,7 +164608,7 @@ binfiles arch=amd64-freebsd size=62
name t1utils.amd64-kfreebsd
category TLCore
-revision 30655
+revision 33529
shortdesc amd64-kfreebsd files of t1utils
binfiles arch=amd64-kfreebsd size=60
bin/amd64-kfreebsd/t1ascii
@@ -150190,7 +164620,7 @@ binfiles arch=amd64-kfreebsd size=60
name t1utils.amd64-netbsd
category TLCore
-revision 30660
+revision 33726
shortdesc amd64-netbsd files of t1utils
binfiles arch=amd64-netbsd size=60
bin/amd64-netbsd/t1ascii
@@ -150202,7 +164632,7 @@ binfiles arch=amd64-netbsd size=60
name t1utils.armel-linux
category TLCore
-revision 29805
+revision 33508
shortdesc armel-linux files of t1utils
binfiles arch=armel-linux size=47
bin/armel-linux/t1ascii
@@ -150214,7 +164644,7 @@ binfiles arch=armel-linux size=47
name t1utils.armhf-linux
category TLCore
-revision 30015
+revision 33545
shortdesc armhf-linux files of t1utils
binfiles arch=armhf-linux size=47
bin/armhf-linux/t1ascii
@@ -150226,9 +164656,9 @@ binfiles arch=armhf-linux size=47
name t1utils.i386-cygwin
category TLCore
-revision 30526
+revision 34161
shortdesc i386-cygwin files of t1utils
-binfiles arch=i386-cygwin size=48
+binfiles arch=i386-cygwin size=59
bin/i386-cygwin/t1ascii.exe
bin/i386-cygwin/t1asm.exe
bin/i386-cygwin/t1binary.exe
@@ -150238,7 +164668,7 @@ binfiles arch=i386-cygwin size=48
name t1utils.i386-freebsd
category TLCore
-revision 26601
+revision 33488
shortdesc i386-freebsd files of t1utils
binfiles arch=i386-freebsd size=53
bin/i386-freebsd/t1ascii
@@ -150250,7 +164680,7 @@ binfiles arch=i386-freebsd size=53
name t1utils.i386-kfreebsd
category TLCore
-revision 30440
+revision 33529
shortdesc i386-kfreebsd files of t1utils
binfiles arch=i386-kfreebsd size=53
bin/i386-kfreebsd/t1ascii
@@ -150262,9 +164692,9 @@ binfiles arch=i386-kfreebsd size=53
name t1utils.i386-linux
category TLCore
-revision 30088
+revision 33479
shortdesc i386-linux files of t1utils
-binfiles arch=i386-linux size=53
+binfiles arch=i386-linux size=58
bin/i386-linux/t1ascii
bin/i386-linux/t1asm
bin/i386-linux/t1binary
@@ -150274,7 +164704,7 @@ binfiles arch=i386-linux size=53
name t1utils.i386-netbsd
category TLCore
-revision 30191
+revision 33562
shortdesc i386-netbsd files of t1utils
binfiles arch=i386-netbsd size=49
bin/i386-netbsd/t1ascii
@@ -150286,9 +164716,9 @@ binfiles arch=i386-netbsd size=49
name t1utils.i386-solaris
category TLCore
-revision 30112
+revision 34203
shortdesc i386-solaris files of t1utils
-binfiles arch=i386-solaris size=61
+binfiles arch=i386-solaris size=63
bin/i386-solaris/t1ascii
bin/i386-solaris/t1asm
bin/i386-solaris/t1binary
@@ -150296,23 +164726,11 @@ binfiles arch=i386-solaris size=61
bin/i386-solaris/t1mac
bin/i386-solaris/t1unmac
-name t1utils.mips-irix
-category TLCore
-revision 29949
-shortdesc mips-irix files of t1utils
-binfiles arch=mips-irix size=128
- bin/mips-irix/t1ascii
- bin/mips-irix/t1asm
- bin/mips-irix/t1binary
- bin/mips-irix/t1disasm
- bin/mips-irix/t1mac
- bin/mips-irix/t1unmac
-
name t1utils.mipsel-linux
category TLCore
-revision 29783
+revision 33811
shortdesc mipsel-linux files of t1utils
-binfiles arch=mipsel-linux size=63
+binfiles arch=mipsel-linux size=58
bin/mipsel-linux/t1ascii
bin/mipsel-linux/t1asm
bin/mipsel-linux/t1binary
@@ -150322,9 +164740,9 @@ binfiles arch=mipsel-linux size=63
name t1utils.powerpc-linux
category TLCore
-revision 29833
+revision 33561
shortdesc powerpc-linux files of t1utils
-binfiles arch=powerpc-linux size=59
+binfiles arch=powerpc-linux size=53
bin/powerpc-linux/t1ascii
bin/powerpc-linux/t1asm
bin/powerpc-linux/t1binary
@@ -150334,9 +164752,9 @@ binfiles arch=powerpc-linux size=59
name t1utils.sparc-solaris
category TLCore
-revision 29877
+revision 33871
shortdesc sparc-solaris files of t1utils
-binfiles arch=sparc-solaris size=54
+binfiles arch=sparc-solaris size=57
bin/sparc-solaris/t1ascii
bin/sparc-solaris/t1asm
bin/sparc-solaris/t1binary
@@ -150346,7 +164764,7 @@ binfiles arch=sparc-solaris size=54
name t1utils.universal-darwin
category TLCore
-revision 30764
+revision 34201
shortdesc universal-darwin files of t1utils
binfiles arch=universal-darwin size=127
bin/universal-darwin/t1ascii
@@ -150358,9 +164776,9 @@ binfiles arch=universal-darwin size=127
name t1utils.win32
category TLCore
-revision 29816
+revision 33513
shortdesc win32 files of t1utils
-binfiles arch=win32 size=35
+binfiles arch=win32 size=46
bin/win32/t1ascii.exe
bin/win32/t1asm.exe
bin/win32/t1binary.exe
@@ -150368,9 +164786,21 @@ binfiles arch=win32 size=35
bin/win32/t1mac.exe
bin/win32/t1unmac.exe
+name t1utils.x86_64-cygwin
+category TLCore
+revision 34161
+shortdesc x86_64-cygwin files of t1utils
+binfiles arch=x86_64-cygwin size=55
+ bin/x86_64-cygwin/t1ascii.exe
+ bin/x86_64-cygwin/t1asm.exe
+ bin/x86_64-cygwin/t1binary.exe
+ bin/x86_64-cygwin/t1disasm.exe
+ bin/x86_64-cygwin/t1mac.exe
+ bin/x86_64-cygwin/t1unmac.exe
+
name t1utils.x86_64-darwin
category TLCore
-revision 29809
+revision 34201
shortdesc x86_64-darwin files of t1utils
binfiles arch=x86_64-darwin size=65
bin/x86_64-darwin/t1ascii
@@ -150382,7 +164812,7 @@ binfiles arch=x86_64-darwin size=65
name t1utils.x86_64-linux
category TLCore
-revision 30204
+revision 33723
shortdesc x86_64-linux files of t1utils
binfiles arch=x86_64-linux size=59
bin/x86_64-linux/t1ascii
@@ -150394,9 +164824,9 @@ binfiles arch=x86_64-linux size=59
name t1utils.x86_64-solaris
category TLCore
-revision 30112
+revision 34203
shortdesc x86_64-solaris files of t1utils
-binfiles arch=x86_64-solaris size=75
+binfiles arch=x86_64-solaris size=76
bin/x86_64-solaris/t1ascii
bin/x86_64-solaris/t1asm
bin/x86_64-solaris/t1binary
@@ -150548,7 +164978,7 @@ srcfiles size=5
runfiles size=2
texmf-dist/tex/latex/tabfigures/tabfigures.sty
catalogue-ctan /macros/latex/contrib/tabfigures
-catalogue-date 2012-04-27 17:21:29 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.1
@@ -150574,27 +165004,27 @@ catalogue-license lppl
name tablefootnote
category Package
-revision 27256
+revision 32804
shortdesc Permit footnotes in tables.
longdesc The package provides the command \tablefootnote to be used in a
-longdesc table or sidewaystableenvironment, where \footnote will not
+longdesc table or sidewaystable environment, where \footnote will not
longdesc work (and when using \footnotemark and \footnotetext, and
-longdesc adjusting the counter as necessary, is too much work.
-docfiles size=125
+longdesc adjusting the counter as necessary, is too much work).
+docfiles size=128
texmf-dist/doc/latex/tablefootnote/README details="Readme"
texmf-dist/doc/latex/tablefootnote/tablefootnote-example.pdf details="Demonstration and outline of use"
texmf-dist/doc/latex/tablefootnote/tablefootnote-example.tex
texmf-dist/doc/latex/tablefootnote/tablefootnote.pdf details="Package documentation"
-srcfiles size=18
+srcfiles size=20
texmf-dist/source/latex/tablefootnote/tablefootnote.drv
texmf-dist/source/latex/tablefootnote/tablefootnote.dtx
texmf-dist/source/latex/tablefootnote/tablefootnote.ins
-runfiles size=3
+runfiles size=5
texmf-dist/tex/latex/tablefootnote/tablefootnote.sty
catalogue-ctan /macros/latex/contrib/tablefootnote
-catalogue-date 2012-07-30 11:22:32 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
-catalogue-version 1.0h
+catalogue-version 1.1c
name tableof
category Package
@@ -150640,13 +165070,13 @@ srcfiles size=8
runfiles size=2
texmf-dist/tex/latex/tablists/tablists.sty
catalogue-ctan /macros/latex/contrib/tablists
-catalogue-date 2012-06-21 12:24:18 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 0.0e
name tablor
category Package
-revision 25433
+revision 31855
shortdesc Create tables of signs and of variations.
longdesc The package allows the user to use the computer algebra system
longdesc XCAS to generate tables of signs and of variations (the actual
@@ -150655,7 +165085,7 @@ longdesc tableauVariations). Tables with forbidden regions may be
longdesc developed using the package. A configuration file permits some
longdesc configuration of the language to be used in the diagrams. The
longdesc tablor package requires that shell escape be enabled.
-docfiles size=291
+docfiles size=293
texmf-dist/doc/latex/tablor/Figures/TSav-105.mp
texmf-dist/doc/latex/tablor/Figures/capture.eps
texmf-dist/doc/latex/tablor/Figures/tablor_Tab.0
@@ -150718,6 +165148,8 @@ docfiles size=291
texmf-dist/doc/latex/tablor/Figures/tablor_Tab.mp
texmf-dist/doc/latex/tablor/README details="Readme (English)" language="en"
texmf-dist/doc/latex/tablor/README-fr.txt details="Readme (French)" language="fr"
+ texmf-dist/doc/latex/tablor/auto/tablor-xetex.el
+ texmf-dist/doc/latex/tablor/auto/tablor.el
texmf-dist/doc/latex/tablor/tablor.html
texmf-dist/doc/latex/tablor/tablor.pdf details="Package documentation (French)" language="fr"
texmf-dist/doc/latex/tablor/tablor.tex
@@ -150726,9 +165158,9 @@ runfiles size=48
texmf-dist/tex/latex/tablor/tablor.cfg
texmf-dist/tex/latex/tablor/tablor.sty
catalogue-ctan /macros/latex/contrib/tablor
-catalogue-date 2012-04-10 17:31:04 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
-catalogue-version 4.07-f
+catalogue-version 4.07-g
name tabls
category Package
@@ -150774,10 +165206,32 @@ docfiles size=85
runfiles size=3
texmf-dist/tex/latex/tabriz-thesis/tabriz-thesis.cls
catalogue-ctan /macros/latex/contrib/tabriz-thesis
-catalogue-date 2013-03-22 19:54:09 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.1
+name tabstackengine
+category Package
+revision 33006
+shortdesc "Tabbing" front-end to stackengine.
+longdesc The package provides a front end to the stackengine package, to
+longdesc allow tabbed stacking. In most cases, an existing stackengine
+longdesc command may be prepended with the word "tabbed", "align" or
+longdesc "tabular" to create a new tabbed version of a stacking macro.
+longdesc In addition, hooks in the package's parser, that tabbed strings
+longdesc of data may be parsed, extracted and reconstituted (not
+longdesc requiring use of any stacking constructions).
+docfiles size=83
+ texmf-dist/doc/latex/tabstackengine/README details="Readme"
+ texmf-dist/doc/latex/tabstackengine/tabstackengine.pdf details="Package documentation"
+ texmf-dist/doc/latex/tabstackengine/tabstackengine.tex
+runfiles size=3
+ texmf-dist/tex/latex/tabstackengine/tabstackengine.sty
+catalogue-ctan /macros/latex/contrib/tabstackengine
+catalogue-date 2014-02-26 23:03:13 +0100
+catalogue-license lppl
+catalogue-version 1.10
+
name tabto-generic
category Package
revision 15878
@@ -150809,7 +165263,7 @@ docfiles size=30
runfiles size=2
texmf-dist/tex/latex/tabto-ltx/tabto.sty
catalogue-ctan /macros/latex/contrib/tabto
-catalogue-date 2013-05-25 17:03:59 +0200
+catalogue-date 2013-09-30 15:04:43 +0200
catalogue-license lppl
catalogue-version 1.3
@@ -150847,7 +165301,7 @@ srcfiles size=90
runfiles size=29
texmf-dist/tex/latex/tabu/tabu.sty
catalogue-ctan /macros/latex/contrib/tabu
-catalogue-date 2011-12-30 16:30:48 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 2.8
@@ -150891,7 +165345,7 @@ docfiles size=261
runfiles size=5
texmf-dist/tex/latex/tabularcalc/tabularcalc.sty
catalogue-ctan /macros/latex/contrib/tabularcalc
-catalogue-date 2011-09-27 11:41:05 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 0.2
@@ -150911,7 +165365,7 @@ srcfiles size=7
runfiles size=2
texmf-dist/tex/latex/tabularew/tabularew.sty
catalogue-ctan /macros/latex/contrib/tabularew
-catalogue-date 2011-09-27 11:22:45 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 0.1
@@ -151272,7 +165726,7 @@ docfiles size=350
texmf-dist/doc/latex/tabulars-e/README details="Readme"
texmf-dist/doc/latex/tabulars-e/din8.eps
catalogue-ctan /info/examples/tabulars-e
-catalogue-date 2012-06-21 14:54:52 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.0
@@ -151345,7 +165799,7 @@ docfiles size=26
runfiles size=1
texmf-dist/tex/latex/tagging/tagging.sty
catalogue-ctan /macros/latex/contrib/tagging
-catalogue-date 2012-06-21 14:54:52 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
name talk
@@ -151436,40 +165890,40 @@ catalogue-version 1.4
name tap
category Package
-revision 15878
+revision 31731
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 package
longdesc allows shaded/coloured tables, diagonal rules, etc. The package
longdesc is supposed to work with both Plain and LaTeX. An AWK converter
longdesc from ASCII semigraphic tables to TAP notation is included.
-docfiles size=24
+docfiles size=46
texmf-dist/doc/generic/tap/0README.TAP
- texmf-dist/doc/generic/tap/0tabdoc.inf
+ texmf-dist/doc/generic/tap/0tapdoc.inf
texmf-dist/doc/generic/tap/circ.eps
texmf-dist/doc/generic/tap/circmag.eps
+ texmf-dist/doc/generic/tap/epsfx.tex
texmf-dist/doc/generic/tap/tapanch.100
texmf-dist/doc/generic/tap/tapanch.mp
+ texmf-dist/doc/generic/tap/tapcv/sampdos/0sampdos.inf
+ texmf-dist/doc/generic/tap/tapcv/sampdos/post1.tex
+ texmf-dist/doc/generic/tap/tapcv/sampdos/post2.tex
+ texmf-dist/doc/generic/tap/tapcv/sampdos/prea1.tex
+ texmf-dist/doc/generic/tap/tapcv/sampdos/prea2.tex
+ texmf-dist/doc/generic/tap/tapcv/sampdos/prea3.tex
+ texmf-dist/doc/generic/tap/tapcv/sampdos/tapcv0.raw
+ texmf-dist/doc/generic/tap/tapcv/sampdos/tapcv1.raw
+ texmf-dist/doc/generic/tap/tapcv/sampdos/tapcv2.raw
+ texmf-dist/doc/generic/tap/tapcv/sampdos/tapcv3.raw
+ texmf-dist/doc/generic/tap/tapcv/sampdos/tapcv4.raw
+ texmf-dist/doc/generic/tap/tapcv/sampdos/tapcv5.raw
+ texmf-dist/doc/generic/tap/tapcv/sampdos/tapcv6.raw
+ texmf-dist/doc/generic/tap/tapcv/sampdos/tcv.bat
+ texmf-dist/doc/generic/tap/tapcv/sampdos/tcv_.bat
+ texmf-dist/doc/generic/tap/tapcv/tapcv.awk
texmf-dist/doc/generic/tap/tapdoc.tex
texmf-dist/doc/generic/tap/tapxamp1.tex
texmf-dist/doc/generic/tap/tapxamp2.tex
-srcfiles size=18
- 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=9
texmf-dist/tex/generic/tap/tap.tex
catalogue-ctan /macros/generic/tables/tap077.zip
@@ -151538,7 +165992,7 @@ catalogue-version 2.40
name tcolorbox
category Package
-revision 30508
+revision 34108
shortdesc Coloured boxes, for LaTeX examples and theorems, etc.
longdesc The package provides an environment for coloured and framed
longdesc text boxes with a heading line. Optionally, such a box can be
@@ -151548,11 +166002,16 @@ longdesc box displays the source code and the other part shows the
longdesc output. Another common use case is the setting of theorems. The
longdesc package supports saving and reuse of source code and text
longdesc parts.
-docfiles size=589
+docfiles size=1347
texmf-dist/doc/latex/tcolorbox/Basilica_5.png
texmf-dist/doc/latex/tcolorbox/CHANGES
texmf-dist/doc/latex/tcolorbox/README details="Readme"
- texmf-dist/doc/latex/tcolorbox/tcolorbox-example.pdf
+ texmf-dist/doc/latex/tcolorbox/blueshade.png
+ texmf-dist/doc/latex/tcolorbox/crinklepaper.png
+ texmf-dist/doc/latex/tcolorbox/goldshade.png
+ texmf-dist/doc/latex/tcolorbox/lichtspiel.jpg
+ texmf-dist/doc/latex/tcolorbox/pink_marble.png
+ texmf-dist/doc/latex/tcolorbox/tcolorbox-example.pdf details="Examples of use" language="en"
texmf-dist/doc/latex/tcolorbox/tcolorbox-example.tex
texmf-dist/doc/latex/tcolorbox/tcolorbox.doc.abstract.tex
texmf-dist/doc/latex/tcolorbox/tcolorbox.doc.bib
@@ -151560,37 +166019,49 @@ docfiles size=589
texmf-dist/doc/latex/tcolorbox/tcolorbox.doc.coremacros.tex
texmf-dist/doc/latex/tcolorbox/tcolorbox.doc.coreoptions.tex
texmf-dist/doc/latex/tcolorbox/tcolorbox.doc.documentation.tex
+ texmf-dist/doc/latex/tcolorbox/tcolorbox.doc.filling.tex
+ texmf-dist/doc/latex/tcolorbox/tcolorbox.doc.fitting.tex
texmf-dist/doc/latex/tcolorbox/tcolorbox.doc.hooks.tex
texmf-dist/doc/latex/tcolorbox/tcolorbox.doc.index.tex
+ texmf-dist/doc/latex/tcolorbox/tcolorbox.doc.initoptions.tex
texmf-dist/doc/latex/tcolorbox/tcolorbox.doc.intro.tex
texmf-dist/doc/latex/tcolorbox/tcolorbox.doc.listings.tex
+ texmf-dist/doc/latex/tcolorbox/tcolorbox.doc.picturecredits.tex
texmf-dist/doc/latex/tcolorbox/tcolorbox.doc.references.tex
texmf-dist/doc/latex/tcolorbox/tcolorbox.doc.skins.tex
+ texmf-dist/doc/latex/tcolorbox/tcolorbox.doc.technical.tex
texmf-dist/doc/latex/tcolorbox/tcolorbox.doc.theorems.tex
texmf-dist/doc/latex/tcolorbox/tcolorbox.doc.verbatim.tex
+ texmf-dist/doc/latex/tcolorbox/tcolorbox.doc.xparse.tex
texmf-dist/doc/latex/tcolorbox/tcolorbox.pdf details="Package documentation (English)" language="en"
texmf-dist/doc/latex/tcolorbox/tcolorbox.tex
-runfiles size=28
+runfiles size=58
texmf-dist/tex/latex/tcolorbox/tcbbreakable.code.tex
texmf-dist/tex/latex/tcolorbox/tcbdocumentation.code.tex
+ texmf-dist/tex/latex/tcolorbox/tcbfitting.code.tex
texmf-dist/tex/latex/tcolorbox/tcbhooks.code.tex
texmf-dist/tex/latex/tcolorbox/tcblistings.code.tex
+ texmf-dist/tex/latex/tcolorbox/tcblistingscore.code.tex
texmf-dist/tex/latex/tcolorbox/tcblistingsutf8.code.tex
+ texmf-dist/tex/latex/tcolorbox/tcbminted.code.tex
texmf-dist/tex/latex/tcolorbox/tcbskins.code.tex
+ texmf-dist/tex/latex/tcolorbox/tcbskinsjigsaw.code.tex
texmf-dist/tex/latex/tcolorbox/tcbtheorems.code.tex
+ texmf-dist/tex/latex/tcolorbox/tcbxparse.code.tex
texmf-dist/tex/latex/tcolorbox/tcolorbox.sty
catalogue-ctan /macros/latex/contrib/tcolorbox
-catalogue-date 2013-05-16 19:39:08 +0200
+catalogue-date 2014-05-18 15:54:57 +0200
catalogue-license lppl1.3
-catalogue-version 2.22
+catalogue-version 3.04
name tdclock
category Package
-revision 15878
+revision 33043
shortdesc A ticking digital clock package for PDF output.
longdesc A ticking digital clock package to be used in Pdf-LaTeX
longdesc documents, for example in presentations.
-docfiles size=74
+docfiles size=70
+ texmf-dist/doc/latex/tdclock/Changelog
texmf-dist/doc/latex/tdclock/README details="Readme"
texmf-dist/doc/latex/tdclock/tdclock-beamer-example.pdf details="Example Usage"
texmf-dist/doc/latex/tdclock/tdclock-beamer-example.tex
@@ -151599,9 +166070,9 @@ docfiles size=74
runfiles size=5
texmf-dist/tex/latex/tdclock/tdclock.sty
catalogue-ctan /macros/latex/contrib/tdclock
-catalogue-date 2012-06-22 13:21:57 +0200
+catalogue-date 2014-02-24 19:15:41 +0100
catalogue-license gpl2
-catalogue-version v2.2
+catalogue-version v2.5
name tds
category Package
@@ -151648,7 +166119,7 @@ runfiles size=7
texmf-dist/tex/latex/tdsfrmath/taupe.sto
texmf-dist/tex/latex/tdsfrmath/tdsfrmath.sty
catalogue-ctan /macros/latex/contrib/tdsfrmath
-catalogue-date 2012-06-22 13:21:57 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.3
@@ -151699,7 +166170,7 @@ srcfiles size=13
runfiles size=3
texmf-dist/tex/latex/ted/ted.sty
catalogue-ctan /macros/latex/contrib/ted
-catalogue-date 2012-06-22 15:48:59 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.06
@@ -151727,7 +166198,7 @@ docfiles size=10
texmf-dist/doc/latex/templates-fenn/templates-fenn-en.txt details="Package documentation (English)" language="en"
texmf-dist/doc/latex/templates-fenn/vermerk.tex
catalogue-ctan /info/templates/fenn
-catalogue-date 2012-06-22 15:48:59 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
name templates-sommer
@@ -151914,13 +166385,13 @@ srcfiles size=4
runfiles size=1
texmf-dist/tex/latex/termlist/termlist.sty
catalogue-ctan /macros/latex/contrib/termlist
-catalogue-date 2012-04-13 17:04:28 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.1
name tetex
category TLCore
-revision 30480
+revision 34229
shortdesc scripts and files originally written for or included in teTeX
longdesc teTeX was a comprehensive distribution of TeX, LaTeX and
longdesc family, designed for ease of compilation, installation and
@@ -151969,7 +166440,7 @@ docfiles size=142
texmf-dist/doc/man/man5/updmap.cfg.man5.pdf
texmf-dist/doc/tetex/TETEXDOC.pdf
texmf-dist/doc/tetex/teTeX-FAQ
-runfiles size=88
+runfiles size=95
texmf-dist/dvips/tetex/config.builtin35
texmf-dist/dvips/tetex/config.dfaxhigh
texmf-dist/dvips/tetex/config.dfaxlo
@@ -151992,7 +166463,10 @@ runfiles size=88
texmf-dist/fonts/enc/dvips/tetex/d9b29452.enc
texmf-dist/fonts/enc/dvips/tetex/f7b6d320.enc
texmf-dist/fonts/enc/dvips/tetex/mtex.enc
+ texmf-dist/fonts/map/dvips/tetex/Makefile
texmf-dist/fonts/map/dvips/tetex/README
+ texmf-dist/fonts/map/dvips/tetex/base14flags.ltx
+ texmf-dist/fonts/map/dvips/tetex/base14flags.tex
texmf-dist/fonts/map/dvips/tetex/dvipdfm35.map
texmf-dist/fonts/map/dvips/tetex/dvips35.map
texmf-dist/fonts/map/dvips/tetex/mathpple.map
@@ -152281,28 +166755,6 @@ binfiles arch=i386-solaris size=16
bin/i386-solaris/updmap
bin/i386-solaris/updmap-sys
-name tetex.mips-irix
-category TLCore
-revision 29949
-shortdesc mips-irix files of tetex
-binfiles arch=mips-irix size=16
- 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/kpsepath
- bin/mips-irix/kpsetool
- bin/mips-irix/kpsewhere
- bin/mips-irix/kpsexpand
- bin/mips-irix/texconfig-dialog
- bin/mips-irix/texconfig-sys
- bin/mips-irix/texlinks
- bin/mips-irix/updmap
- bin/mips-irix/updmap-sys
-
name tetex.mipsel-linux
category TLCore
revision 29946
@@ -152393,14 +166845,36 @@ binfiles arch=universal-darwin size=16
name tetex.win32
category TLCore
-revision 29816
+revision 33897
shortdesc win32 files of tetex
-binfiles arch=win32 size=8
+binfiles arch=win32 size=9
bin/win32/fmtutil-sys.exe
bin/win32/fmtutil.exe
bin/win32/updmap-sys.exe
bin/win32/updmap.exe
+name tetex.x86_64-cygwin
+category TLCore
+revision 33557
+shortdesc x86_64-cygwin files of tetex
+binfiles arch=x86_64-cygwin size=16
+ bin/x86_64-cygwin/allcm
+ bin/x86_64-cygwin/allec
+ bin/x86_64-cygwin/allneeded
+ bin/x86_64-cygwin/dvi2fax
+ bin/x86_64-cygwin/dvired
+ bin/x86_64-cygwin/fmtutil
+ bin/x86_64-cygwin/fmtutil-sys
+ bin/x86_64-cygwin/kpsepath
+ bin/x86_64-cygwin/kpsetool
+ bin/x86_64-cygwin/kpsewhere
+ bin/x86_64-cygwin/kpsexpand
+ bin/x86_64-cygwin/texconfig-dialog
+ bin/x86_64-cygwin/texconfig-sys
+ bin/x86_64-cygwin/texlinks
+ bin/x86_64-cygwin/updmap
+ bin/x86_64-cygwin/updmap-sys
+
name tetex.x86_64-darwin
category TLCore
revision 29809
@@ -152469,7 +166943,7 @@ binfiles arch=x86_64-solaris size=16
name teubner
category Package
-revision 30813
+revision 32527
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
@@ -152478,26 +166952,25 @@ longdesc from that of the fonts used in printers' shops in Lispia. The
longdesc package name honours the publisher B.G. Teubner
longdesc Verlaggesellschaft whose Greek text publications are of high
longdesc quality.
-docfiles size=271
+docfiles size=263
texmf-dist/doc/latex/teubner/README details="Readme"
texmf-dist/doc/latex/teubner/teubner-doc.pdf details="User manual"
texmf-dist/doc/latex/teubner/teubner-doc.tex
texmf-dist/doc/latex/teubner/teubner.pdf details="Package documentation"
texmf-dist/doc/latex/teubner/teubner.txt
-srcfiles size=44
+srcfiles size=43
texmf-dist/source/latex/teubner/teubner.dtx
-runfiles size=20
- texmf-dist/tex/latex/teubner/LGRaccents-glyphs.def
+runfiles size=15
texmf-dist/tex/latex/teubner/teubner.sty
texmf-dist/tex/latex/teubner/teubnertx.sty
catalogue-ctan /macros/latex/contrib/teubner
-catalogue-date 2013-05-29 00:49:00 +0200
+catalogue-date 2013-12-31 15:44:59 +0100
catalogue-license lppl
-catalogue-version 3.4b
+catalogue-version 4.2
name tex
category TLCore
-revision 29764
+revision 33736
shortdesc A sophisticated typesetting engine.
longdesc TeX is a typesetting system that incorporates a macro
longdesc processor. A TeX source document specifies or incorporates a
@@ -152519,9 +166992,9 @@ docfiles size=9
texmf-dist/doc/man/man1/tex.1
texmf-dist/doc/man/man1/tex.man1.pdf
catalogue-ctan /systems/knuth/dist/tex
-catalogue-date 2011-11-09 15:33:34 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license knuth
-catalogue-version 3.1415926
+catalogue-version 3.14159265
name tex-ewd
category Package
@@ -153496,50 +167969,74 @@ runfiles size=6213
texmf-dist/tex/latex/tex-gyre/ts1qtm.fd
texmf-dist/tex/latex/tex-gyre/ts1qzc.fd
catalogue-ctan /fonts/tex-gyre
-catalogue-date 2012-06-24 15:32:36 +0200
+catalogue-date 2014-05-22 16:13:18 +0200
catalogue-license gfsl
catalogue-version 2.004
name tex-gyre-math
category Package
-revision 29045
+revision 34089
shortdesc Maths fonts to match tex-gyre text fonts.
longdesc TeX-Gyre-Math is to be a collection of maths fonts to match the
longdesc text fonts of the TeX-Gyre collection. The collection will be
longdesc made available in OpenType format, only; fonts will conform to
longdesc the developing standards for OpenType maths fonts. TeX-Gyre-
-longdesc Math-Pagella (to match Tex-Gyre-Pagella) and TeX-Gyre-Math-
-longdesc Termes (to match Tex-Gyre-Termes) fonts are provided.
-docfiles size=69
+longdesc Math-Pagella (to match Tex-Gyre-Pagella), TeX-Gyre-Math-Pagella
+longdesc (to match Tex-Gyre-Pagella) and TeX-Gyre-Math-Termes (to match
+longdesc Tex-Gyre-Termes) fonts are provided.
+docfiles size=131
texmf-dist/doc/fonts/tex-gyre-math/GUST-FONT-LICENSE.txt
texmf-dist/doc/fonts/tex-gyre-math/INSTALL.txt
+ texmf-dist/doc/fonts/tex-gyre-math/MANIFEST-TeX-Gyre-Bonum-Math.txt
texmf-dist/doc/fonts/tex-gyre-math/MANIFEST-TeX-Gyre-Pagella-Math.txt
+ texmf-dist/doc/fonts/tex-gyre-math/MANIFEST-TeX-Gyre-Schola-Math.txt
texmf-dist/doc/fonts/tex-gyre-math/MANIFEST-TeX-Gyre-Termes-Math.txt
+ texmf-dist/doc/fonts/tex-gyre-math/README details="Readme"
+ texmf-dist/doc/fonts/tex-gyre-math/README-TeX-Gyre-Bonum-Math.txt
texmf-dist/doc/fonts/tex-gyre-math/README-TeX-Gyre-Pagella-Math.txt
+ texmf-dist/doc/fonts/tex-gyre-math/README-TeX-Gyre-Schola-Math.txt
texmf-dist/doc/fonts/tex-gyre-math/README-TeX-Gyre-Termes-Math.txt
texmf-dist/doc/fonts/tex-gyre-math/math-test-context.tex
texmf-dist/doc/fonts/tex-gyre-math/math-test.tex
+ texmf-dist/doc/fonts/tex-gyre-math/test-context-texgyre_bonum_math.pdf
+ texmf-dist/doc/fonts/tex-gyre-math/test-context-texgyre_bonum_math.tex
texmf-dist/doc/fonts/tex-gyre-math/test-context-texgyre_pagella_math.pdf
texmf-dist/doc/fonts/tex-gyre-math/test-context-texgyre_pagella_math.tex
+ texmf-dist/doc/fonts/tex-gyre-math/test-context-texgyre_schola_math.pdf
+ texmf-dist/doc/fonts/tex-gyre-math/test-context-texgyre_schola_math.tex
texmf-dist/doc/fonts/tex-gyre-math/test-context-texgyre_termes_math.pdf
texmf-dist/doc/fonts/tex-gyre-math/test-context-texgyre_termes_math.tex
+ texmf-dist/doc/fonts/tex-gyre-math/test-lualatex-texgyre_bonum_math.pdf
+ texmf-dist/doc/fonts/tex-gyre-math/test-lualatex-texgyre_bonum_math.tex
texmf-dist/doc/fonts/tex-gyre-math/test-lualatex-texgyre_pagella_math.pdf
texmf-dist/doc/fonts/tex-gyre-math/test-lualatex-texgyre_pagella_math.tex
+ texmf-dist/doc/fonts/tex-gyre-math/test-lualatex-texgyre_schola_math.pdf
+ texmf-dist/doc/fonts/tex-gyre-math/test-lualatex-texgyre_schola_math.tex
texmf-dist/doc/fonts/tex-gyre-math/test-lualatex-texgyre_termes_math.pdf
texmf-dist/doc/fonts/tex-gyre-math/test-lualatex-texgyre_termes_math.tex
+ texmf-dist/doc/fonts/tex-gyre-math/test-word-texgyre_bonum_math.docx
+ texmf-dist/doc/fonts/tex-gyre-math/test-word-texgyre_bonum_math.pdf
texmf-dist/doc/fonts/tex-gyre-math/test-word-texgyre_pagella_math.docx
texmf-dist/doc/fonts/tex-gyre-math/test-word-texgyre_pagella_math.pdf
+ texmf-dist/doc/fonts/tex-gyre-math/test-word-texgyre_schola_math.docx
+ texmf-dist/doc/fonts/tex-gyre-math/test-word-texgyre_schola_math.pdf
texmf-dist/doc/fonts/tex-gyre-math/test-word-texgyre_termes_math.docx
texmf-dist/doc/fonts/tex-gyre-math/test-word-texgyre_termes_math.pdf
+ texmf-dist/doc/fonts/tex-gyre-math/test-xelatex-texgyre_bonum_math.pdf
+ texmf-dist/doc/fonts/tex-gyre-math/test-xelatex-texgyre_bonum_math.tex
texmf-dist/doc/fonts/tex-gyre-math/test-xelatex-texgyre_pagella_math.pdf
texmf-dist/doc/fonts/tex-gyre-math/test-xelatex-texgyre_pagella_math.tex
+ texmf-dist/doc/fonts/tex-gyre-math/test-xelatex-texgyre_schola_math.pdf
+ texmf-dist/doc/fonts/tex-gyre-math/test-xelatex-texgyre_schola_math.tex
texmf-dist/doc/fonts/tex-gyre-math/test-xelatex-texgyre_termes_math.pdf
texmf-dist/doc/fonts/tex-gyre-math/test-xelatex-texgyre_termes_math.tex
-runfiles size=277
+runfiles size=552
+ texmf-dist/fonts/opentype/public/tex-gyre-math/texgyrebonum-math.otf
texmf-dist/fonts/opentype/public/tex-gyre-math/texgyrepagella-math.otf
+ texmf-dist/fonts/opentype/public/tex-gyre-math/texgyreschola-math.otf
texmf-dist/fonts/opentype/public/tex-gyre-math/texgyretermes-math.otf
catalogue-ctan /fonts/tex-gyre-math
-catalogue-date 2013-02-06 11:14:35 +0100
+catalogue-date 2014-05-22 15:22:51 +0200
catalogue-license lppl
name tex-label
@@ -153559,7 +168056,7 @@ srcfiles size=1
runfiles size=1
texmf-dist/tex/latex/tex-label/tex-label.sty
catalogue-ctan /macros/latex/contrib/tex-label
-catalogue-date 2012-06-27 18:41:20 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
name tex-overview
@@ -153574,7 +168071,7 @@ docfiles size=82
texmf-dist/doc/latex/tex-overview/tex-overview.pdf details="The document itself"
texmf-dist/doc/latex/tex-overview/tex-overview.tex
catalogue-ctan /info/tex-overview
-catalogue-date 2012-09-16 19:39:43 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 0.1f
@@ -153615,29 +168112,30 @@ catalogue-license pd
name tex-refs
category Package
-revision 15878
+revision 31946
catalogue tex-references
shortdesc References for TeX and Friends
longdesc This is an ongoing project with the aim of providing a help
longdesc file for LaTeX (and its friends like ConTeXt, Metapost,
longdesc Metafont, etc.) using a state-of-the-art source format, aka
longdesc DocBook/XML.
-docfiles size=186
+docfiles size=314
texmf-dist/doc/generic/tex-refs/README details="Readme"
- texmf-dist/doc/generic/tex-refs/tex-refs-source.tar.gz
+ texmf-dist/doc/generic/tex-refs/tex-refs-0.4.1.tar.bz2
texmf-dist/doc/generic/tex-refs/tex-refs.css
+ texmf-dist/doc/generic/tex-refs/tex-refs.epub
texmf-dist/doc/generic/tex-refs/tex-refs.html details="The references themselves"
+ texmf-dist/doc/generic/tex-refs/tex-refs.txt
catalogue-ctan /info/tex-references
-catalogue-date 2012-06-26 14:36:07 +0200
+catalogue-date 2013-10-24 16:44:11 +0200
catalogue-license other-free
-catalogue-version 0.3.8
+catalogue-version 0.4.8
name tex-virtual-academy-pl
category Package
-revision 15878
-docfiles size=838
- texmf-dist/doc/generic/tex-virtual-academy-pl/TeX-pub.html
- texmf-dist/doc/generic/tex-virtual-academy-pl/context/cont-ins.html
+revision 34177
+docfiles size=837
+ texmf-dist/doc/generic/tex-virtual-academy-pl/README
texmf-dist/doc/generic/tex-virtual-academy-pl/context/context.html
texmf-dist/doc/generic/tex-virtual-academy-pl/context/tytuly.html
texmf-dist/doc/generic/tex-virtual-academy-pl/cototex.html
@@ -153716,6 +168214,9 @@ docfiles size=838
texmf-dist/doc/generic/tex-virtual-academy-pl/latex2e/macro/3parttab.gif
texmf-dist/doc/generic/tex-virtual-academy-pl/latex2e/macro/3parttable.html
texmf-dist/doc/generic/tex-virtual-academy-pl/latex2e/macro/BAhhline.png
+ texmf-dist/doc/generic/tex-virtual-academy-pl/latex2e/macro/EASYEQN2.PNG
+ texmf-dist/doc/generic/tex-virtual-academy-pl/latex2e/macro/EASYEQN5.PNG
+ texmf-dist/doc/generic/tex-virtual-academy-pl/latex2e/macro/EASYEQN7.PNG
texmf-dist/doc/generic/tex-virtual-academy-pl/latex2e/macro/accent.gif
texmf-dist/doc/generic/tex-virtual-academy-pl/latex2e/macro/accents.html
texmf-dist/doc/generic/tex-virtual-academy-pl/latex2e/macro/acromake.gif
@@ -153772,6 +168273,7 @@ docfiles size=838
texmf-dist/doc/generic/tex-virtual-academy-pl/latex2e/macro/color.png
texmf-dist/doc/generic/tex-virtual-academy-pl/latex2e/macro/colortbl.html
texmf-dist/doc/generic/tex-virtual-academy-pl/latex2e/macro/comma.html
+ texmf-dist/doc/generic/tex-virtual-academy-pl/latex2e/macro/cute.html
texmf-dist/doc/generic/tex-virtual-academy-pl/latex2e/macro/cute1.png
texmf-dist/doc/generic/tex-virtual-academy-pl/latex2e/macro/cuted.html
texmf-dist/doc/generic/tex-virtual-academy-pl/latex2e/macro/dblcol.gif
@@ -153812,14 +168314,12 @@ docfiles size=838
texmf-dist/doc/generic/tex-virtual-academy-pl/latex2e/macro/easyeqn15.png
texmf-dist/doc/generic/tex-virtual-academy-pl/latex2e/macro/easyeqn16.png
texmf-dist/doc/generic/tex-virtual-academy-pl/latex2e/macro/easyeqn17.png
- texmf-dist/doc/generic/tex-virtual-academy-pl/latex2e/macro/easyeqn2.png
texmf-dist/doc/generic/tex-virtual-academy-pl/latex2e/macro/easyeqn3.png
texmf-dist/doc/generic/tex-virtual-academy-pl/latex2e/macro/easyeqn4.png
- texmf-dist/doc/generic/tex-virtual-academy-pl/latex2e/macro/easyeqn5.png
texmf-dist/doc/generic/tex-virtual-academy-pl/latex2e/macro/easyeqn6.png
- texmf-dist/doc/generic/tex-virtual-academy-pl/latex2e/macro/easyeqn7.png
texmf-dist/doc/generic/tex-virtual-academy-pl/latex2e/macro/easyeqn8.png
texmf-dist/doc/generic/tex-virtual-academy-pl/latex2e/macro/easyeqn9.png
+ texmf-dist/doc/generic/tex-virtual-academy-pl/latex2e/macro/ellipsis.html
texmf-dist/doc/generic/tex-virtual-academy-pl/latex2e/macro/endfloat.html
texmf-dist/doc/generic/tex-virtual-academy-pl/latex2e/macro/enum.gif
texmf-dist/doc/generic/tex-virtual-academy-pl/latex2e/macro/enumerate.html
@@ -153859,6 +168359,7 @@ docfiles size=838
texmf-dist/doc/generic/tex-virtual-academy-pl/latex2e/macro/footmisc2.png
texmf-dist/doc/generic/tex-virtual-academy-pl/latex2e/macro/footnpag.html
texmf-dist/doc/generic/tex-virtual-academy-pl/latex2e/macro/fp.html
+ texmf-dist/doc/generic/tex-virtual-academy-pl/latex2e/macro/framed.html
texmf-dist/doc/generic/tex-virtual-academy-pl/latex2e/macro/ftnright.html
texmf-dist/doc/generic/tex-virtual-academy-pl/latex2e/macro/geom1.gif
texmf-dist/doc/generic/tex-virtual-academy-pl/latex2e/macro/geom1.png
@@ -153929,6 +168430,7 @@ docfiles size=838
texmf-dist/doc/generic/tex-virtual-academy-pl/latex2e/macro/overbrace.html
texmf-dist/doc/generic/tex-virtual-academy-pl/latex2e/macro/overbrace1.gif
texmf-dist/doc/generic/tex-virtual-academy-pl/latex2e/macro/pdfscreen.html
+ texmf-dist/doc/generic/tex-virtual-academy-pl/latex2e/macro/pdfslide.html
texmf-dist/doc/generic/tex-virtual-academy-pl/latex2e/macro/pfnote.html
texmf-dist/doc/generic/tex-virtual-academy-pl/latex2e/macro/plain.html
texmf-dist/doc/generic/tex-virtual-academy-pl/latex2e/macro/printtim.html
@@ -153938,7 +168440,7 @@ docfiles size=838
texmf-dist/doc/generic/tex-virtual-academy-pl/latex2e/macro/ragged2e.html
texmf-dist/doc/generic/tex-virtual-academy-pl/latex2e/macro/regcount.html
texmf-dist/doc/generic/tex-virtual-academy-pl/latex2e/macro/relsize.html
- texmf-dist/doc/generic/tex-virtual-academy-pl/latex2e/macro/remreset.html
+ texmf-dist/doc/generic/tex-virtual-academy-pl/latex2e/macro/removefromreset.html
texmf-dist/doc/generic/tex-virtual-academy-pl/latex2e/macro/rotate.html
texmf-dist/doc/generic/tex-virtual-academy-pl/latex2e/macro/rotating.html
texmf-dist/doc/generic/tex-virtual-academy-pl/latex2e/macro/rotbox.png
@@ -154008,7 +168510,6 @@ docfiles size=838
texmf-dist/doc/generic/tex-virtual-academy-pl/latex2e/macro/xspace1.gif
texmf-dist/doc/generic/tex-virtual-academy-pl/latex2e/macro/xspace2.gif
texmf-dist/doc/generic/tex-virtual-academy-pl/latex2e/macro/xtab.html
- texmf-dist/doc/generic/tex-virtual-academy-pl/latex2e/pagina/pagina.html
texmf-dist/doc/generic/tex-virtual-academy-pl/latex2e/spisy/chap.html
texmf-dist/doc/generic/tex-virtual-academy-pl/latex2e/spisy/l_chap.html
texmf-dist/doc/generic/tex-virtual-academy-pl/latex2e/spisy/l_sec.html
@@ -154045,15 +168546,9 @@ docfiles size=838
texmf-dist/doc/generic/tex-virtual-academy-pl/latex2e/tytuly/tx.html
texmf-dist/doc/generic/tex-virtual-academy-pl/latex2e/tytuly/txx.gif
texmf-dist/doc/generic/tex-virtual-academy-pl/latex2e/tytuly/txx.html
- texmf-dist/doc/generic/tex-virtual-academy-pl/manifest.html
- texmf-dist/doc/generic/tex-virtual-academy-pl/poczatki/cont-pl.html
- texmf-dist/doc/generic/tex-virtual-academy-pl/poczatki/emtex.html
- texmf-dist/doc/generic/tex-virtual-academy-pl/poczatki/implementacje.html
texmf-dist/doc/generic/tex-virtual-academy-pl/poczatki/index.html
- texmf-dist/doc/generic/tex-virtual-academy-pl/poczatki/inst-mik.html
texmf-dist/doc/generic/tex-virtual-academy-pl/poczatki/latex-pl.html
texmf-dist/doc/generic/tex-virtual-academy-pl/poczatki/mex.html
- texmf-dist/doc/generic/tex-virtual-academy-pl/poczatki/miktex.html
texmf-dist/doc/generic/tex-virtual-academy-pl/poczatki/spw.html
texmf-dist/doc/generic/tex-virtual-academy-pl/poczatki/tetex.html
texmf-dist/doc/generic/tex-virtual-academy-pl/poczatki/web2c.html
@@ -154089,7 +168584,7 @@ docfiles size=838
name tex.alpha-linux
category TLCore
-revision 29891
+revision 33553
shortdesc alpha-linux files of tex
binfiles arch=alpha-linux size=112
bin/alpha-linux/initex
@@ -154097,7 +168592,7 @@ binfiles arch=alpha-linux size=112
name tex.amd64-freebsd
category TLCore
-revision 29874
+revision 33488
shortdesc amd64-freebsd files of tex
binfiles arch=amd64-freebsd size=92
bin/amd64-freebsd/initex
@@ -154105,7 +168600,7 @@ binfiles arch=amd64-freebsd size=92
name tex.amd64-kfreebsd
category TLCore
-revision 30655
+revision 34100
shortdesc amd64-kfreebsd files of tex
binfiles arch=amd64-kfreebsd size=92
bin/amd64-kfreebsd/initex
@@ -154113,7 +168608,7 @@ binfiles arch=amd64-kfreebsd size=92
name tex.amd64-netbsd
category TLCore
-revision 30660
+revision 33726
shortdesc amd64-netbsd files of tex
binfiles arch=amd64-netbsd size=92
bin/amd64-netbsd/initex
@@ -154121,7 +168616,7 @@ binfiles arch=amd64-netbsd size=92
name tex.armel-linux
category TLCore
-revision 29888
+revision 33916
shortdesc armel-linux files of tex
binfiles arch=armel-linux size=88
bin/armel-linux/initex
@@ -154129,7 +168624,7 @@ binfiles arch=armel-linux size=88
name tex.armhf-linux
category TLCore
-revision 30443
+revision 34125
shortdesc armhf-linux files of tex
binfiles arch=armhf-linux size=85
bin/armhf-linux/initex
@@ -154137,15 +168632,15 @@ binfiles arch=armhf-linux size=85
name tex.i386-cygwin
category TLCore
-revision 30526
+revision 34161
shortdesc i386-cygwin files of tex
-binfiles arch=i386-cygwin size=83
+binfiles arch=i386-cygwin size=92
bin/i386-cygwin/initex
bin/i386-cygwin/tex.exe
name tex.i386-freebsd
category TLCore
-revision 29874
+revision 33488
shortdesc i386-freebsd files of tex
binfiles arch=i386-freebsd size=86
bin/i386-freebsd/initex
@@ -154153,7 +168648,7 @@ binfiles arch=i386-freebsd size=86
name tex.i386-kfreebsd
category TLCore
-revision 30440
+revision 34100
shortdesc i386-kfreebsd files of tex
binfiles arch=i386-kfreebsd size=90
bin/i386-kfreebsd/initex
@@ -154161,15 +168656,15 @@ binfiles arch=i386-kfreebsd size=90
name tex.i386-linux
category TLCore
-revision 30088
+revision 33479
shortdesc i386-linux files of tex
-binfiles arch=i386-linux size=90
+binfiles arch=i386-linux size=96
bin/i386-linux/initex
bin/i386-linux/tex
name tex.i386-netbsd
category TLCore
-revision 30191
+revision 33562
shortdesc i386-netbsd files of tex
binfiles arch=i386-netbsd size=82
bin/i386-netbsd/initex
@@ -154177,39 +168672,31 @@ binfiles arch=i386-netbsd size=82
name tex.i386-solaris
category TLCore
-revision 30112
+revision 34203
shortdesc i386-solaris files of tex
binfiles arch=i386-solaris size=105
bin/i386-solaris/initex
bin/i386-solaris/tex
-name tex.mips-irix
-category TLCore
-revision 30131
-shortdesc mips-irix files of tex
-binfiles arch=mips-irix size=175
- bin/mips-irix/initex
- bin/mips-irix/tex
-
name tex.mipsel-linux
category TLCore
-revision 29995
+revision 34099
shortdesc mipsel-linux files of tex
-binfiles arch=mipsel-linux size=119
+binfiles arch=mipsel-linux size=98
bin/mipsel-linux/initex
bin/mipsel-linux/tex
name tex.powerpc-linux
category TLCore
-revision 30114
+revision 34101
shortdesc powerpc-linux files of tex
-binfiles arch=powerpc-linux size=99
+binfiles arch=powerpc-linux size=92
bin/powerpc-linux/initex
bin/powerpc-linux/tex
name tex.sparc-solaris
category TLCore
-revision 29877
+revision 33871
shortdesc sparc-solaris files of tex
binfiles arch=sparc-solaris size=100
bin/sparc-solaris/initex
@@ -154217,7 +168704,7 @@ binfiles arch=sparc-solaris size=100
name tex.universal-darwin
category TLCore
-revision 30764
+revision 34201
shortdesc universal-darwin files of tex
binfiles arch=universal-darwin size=187
bin/universal-darwin/initex
@@ -154225,16 +168712,24 @@ binfiles arch=universal-darwin size=187
name tex.win32
category TLCore
-revision 29816
+revision 33897
shortdesc win32 files of tex
-binfiles arch=win32 size=69
+binfiles arch=win32 size=75
bin/win32/initex.exe
bin/win32/tex.dll
bin/win32/tex.exe
+name tex.x86_64-cygwin
+category TLCore
+revision 34161
+shortdesc x86_64-cygwin files of tex
+binfiles arch=x86_64-cygwin size=93
+ bin/x86_64-cygwin/initex
+ bin/x86_64-cygwin/tex.exe
+
name tex.x86_64-darwin
category TLCore
-revision 29879
+revision 34201
shortdesc x86_64-darwin files of tex
binfiles arch=x86_64-darwin size=102
bin/x86_64-darwin/initex
@@ -154242,23 +168737,23 @@ binfiles arch=x86_64-darwin size=102
name tex.x86_64-linux
category TLCore
-revision 30204
+revision 33723
shortdesc x86_64-linux files of tex
-binfiles arch=x86_64-linux size=92
+binfiles arch=x86_64-linux size=93
bin/x86_64-linux/initex
bin/x86_64-linux/tex
name tex.x86_64-solaris
category TLCore
-revision 30112
+revision 34203
shortdesc x86_64-solaris files of tex
-binfiles arch=x86_64-solaris size=123
+binfiles arch=x86_64-solaris size=122
bin/x86_64-solaris/initex
bin/x86_64-solaris/tex
name tex4ht
category Package
-revision 29725
+revision 33926
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
@@ -154347,7 +168842,7 @@ docfiles size=195
texmf-dist/doc/generic/tex4ht/mn7.html
texmf-dist/doc/generic/tex4ht/mn8.html
texmf-dist/doc/generic/tex4ht/mn9.html
-runfiles size=6520
+runfiles size=6521
texmf-dist/scripts/tex4ht/ht.sh
texmf-dist/scripts/tex4ht/htcontext.sh
texmf-dist/scripts/tex4ht/htcopy.pl
@@ -158099,12 +172594,12 @@ runfiles size=6520
texmf-dist/tex4ht/xtpipes/xtpipes-map.dtd
texmf-dist/tex4ht/xtpipes/xtpipes.dtd
catalogue-ctan /obsolete/support/TeX4ht
-catalogue-date 2012-02-23 17:06:23 +0100
+catalogue-date 2014-01-03 12:07:14 +0100
catalogue-license lppl
name tex4ht.alpha-linux
category Package
-revision 29891
+revision 33553
shortdesc alpha-linux files of tex4ht
binfiles arch=alpha-linux size=89
bin/alpha-linux/ht
@@ -158121,7 +172616,7 @@ binfiles arch=alpha-linux size=89
name tex4ht.amd64-freebsd
category Package
-revision 29874
+revision 33488
shortdesc amd64-freebsd files of tex4ht
binfiles arch=amd64-freebsd size=73
bin/amd64-freebsd/ht
@@ -158138,7 +172633,7 @@ binfiles arch=amd64-freebsd size=73
name tex4ht.amd64-kfreebsd
category Package
-revision 30655
+revision 33864
shortdesc amd64-kfreebsd files of tex4ht
binfiles arch=amd64-kfreebsd size=69
bin/amd64-kfreebsd/ht
@@ -158155,7 +172650,7 @@ binfiles arch=amd64-kfreebsd size=69
name tex4ht.amd64-netbsd
category Package
-revision 30660
+revision 33726
shortdesc amd64-netbsd files of tex4ht
binfiles arch=amd64-netbsd size=69
bin/amd64-netbsd/ht
@@ -158172,7 +172667,7 @@ binfiles arch=amd64-netbsd size=69
name tex4ht.armel-linux
category Package
-revision 29888
+revision 33916
shortdesc armel-linux files of tex4ht
binfiles arch=armel-linux size=64
bin/armel-linux/ht
@@ -158189,7 +172684,7 @@ binfiles arch=armel-linux size=64
name tex4ht.armhf-linux
category Package
-revision 30443
+revision 34125
shortdesc armhf-linux files of tex4ht
binfiles arch=armhf-linux size=62
bin/armhf-linux/ht
@@ -158206,9 +172701,9 @@ binfiles arch=armhf-linux size=62
name tex4ht.i386-cygwin
category Package
-revision 30526
+revision 34161
shortdesc i386-cygwin files of tex4ht
-binfiles arch=i386-cygwin size=64
+binfiles arch=i386-cygwin size=71
bin/i386-cygwin/ht
bin/i386-cygwin/htcontext
bin/i386-cygwin/htlatex
@@ -158223,7 +172718,7 @@ binfiles arch=i386-cygwin size=64
name tex4ht.i386-freebsd
category Package
-revision 29874
+revision 33488
shortdesc i386-freebsd files of tex4ht
binfiles arch=i386-freebsd size=67
bin/i386-freebsd/ht
@@ -158240,9 +172735,9 @@ binfiles arch=i386-freebsd size=67
name tex4ht.i386-kfreebsd
category Package
-revision 30440
+revision 33864
shortdesc i386-kfreebsd files of tex4ht
-binfiles arch=i386-kfreebsd size=68
+binfiles arch=i386-kfreebsd size=69
bin/i386-kfreebsd/ht
bin/i386-kfreebsd/htcontext
bin/i386-kfreebsd/htlatex
@@ -158257,9 +172752,9 @@ binfiles arch=i386-kfreebsd size=68
name tex4ht.i386-linux
category Package
-revision 30088
+revision 33479
shortdesc i386-linux files of tex4ht
-binfiles arch=i386-linux size=68
+binfiles arch=i386-linux size=72
bin/i386-linux/ht
bin/i386-linux/htcontext
bin/i386-linux/htlatex
@@ -158274,7 +172769,7 @@ binfiles arch=i386-linux size=68
name tex4ht.i386-netbsd
category Package
-revision 30191
+revision 33562
shortdesc i386-netbsd files of tex4ht
binfiles arch=i386-netbsd size=63
bin/i386-netbsd/ht
@@ -158291,9 +172786,9 @@ binfiles arch=i386-netbsd size=63
name tex4ht.i386-solaris
category Package
-revision 30112
+revision 34203
shortdesc i386-solaris files of tex4ht
-binfiles arch=i386-solaris size=84
+binfiles arch=i386-solaris size=82
bin/i386-solaris/ht
bin/i386-solaris/htcontext
bin/i386-solaris/htlatex
@@ -158306,28 +172801,11 @@ binfiles arch=i386-solaris size=84
bin/i386-solaris/t4ht
bin/i386-solaris/tex4ht
-name tex4ht.mips-irix
-category Package
-revision 30131
-shortdesc mips-irix files of tex4ht
-binfiles arch=mips-irix size=135
- 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/htxelatex
- bin/mips-irix/htxetex
- bin/mips-irix/mk4ht
- bin/mips-irix/t4ht
- bin/mips-irix/tex4ht
-
name tex4ht.mipsel-linux
category Package
-revision 29995
+revision 33811
shortdesc mipsel-linux files of tex4ht
-binfiles arch=mipsel-linux size=85
+binfiles arch=mipsel-linux size=72
bin/mipsel-linux/ht
bin/mipsel-linux/htcontext
bin/mipsel-linux/htlatex
@@ -158342,9 +172820,9 @@ binfiles arch=mipsel-linux size=85
name tex4ht.powerpc-linux
category Package
-revision 30114
+revision 33889
shortdesc powerpc-linux files of tex4ht
-binfiles arch=powerpc-linux size=71
+binfiles arch=powerpc-linux size=67
bin/powerpc-linux/ht
bin/powerpc-linux/htcontext
bin/powerpc-linux/htlatex
@@ -158359,7 +172837,7 @@ binfiles arch=powerpc-linux size=71
name tex4ht.sparc-solaris
category Package
-revision 29877
+revision 33871
shortdesc sparc-solaris files of tex4ht
binfiles arch=sparc-solaris size=71
bin/sparc-solaris/ht
@@ -158376,7 +172854,7 @@ binfiles arch=sparc-solaris size=71
name tex4ht.universal-darwin
category Package
-revision 30764
+revision 34201
shortdesc universal-darwin files of tex4ht
binfiles arch=universal-darwin size=136
bin/universal-darwin/ht
@@ -158393,9 +172871,9 @@ binfiles arch=universal-darwin size=136
name tex4ht.win32
category Package
-revision 29816
+revision 33897
shortdesc win32 files of tex4ht
-binfiles arch=win32 size=43
+binfiles arch=win32 size=49
bin/win32/ht.bat
bin/win32/ht.exe
bin/win32/htcontext.bat
@@ -158416,9 +172894,26 @@ binfiles arch=win32 size=43
bin/win32/t4ht.exe
bin/win32/tex4ht.exe
+name tex4ht.x86_64-cygwin
+category Package
+revision 34161
+shortdesc x86_64-cygwin files of tex4ht
+binfiles arch=x86_64-cygwin size=69
+ bin/x86_64-cygwin/ht
+ bin/x86_64-cygwin/htcontext
+ bin/x86_64-cygwin/htlatex
+ bin/x86_64-cygwin/htmex
+ bin/x86_64-cygwin/httex
+ bin/x86_64-cygwin/httexi
+ bin/x86_64-cygwin/htxelatex
+ bin/x86_64-cygwin/htxetex
+ bin/x86_64-cygwin/mk4ht
+ bin/x86_64-cygwin/t4ht.exe
+ bin/x86_64-cygwin/tex4ht.exe
+
name tex4ht.x86_64-darwin
category Package
-revision 29879
+revision 34201
shortdesc x86_64-darwin files of tex4ht
binfiles arch=x86_64-darwin size=75
bin/x86_64-darwin/ht
@@ -158435,7 +172930,7 @@ binfiles arch=x86_64-darwin size=75
name tex4ht.x86_64-linux
category Package
-revision 30204
+revision 33723
shortdesc x86_64-linux files of tex4ht
binfiles arch=x86_64-linux size=70
bin/x86_64-linux/ht
@@ -158452,9 +172947,9 @@ binfiles arch=x86_64-linux size=70
name tex4ht.x86_64-solaris
category Package
-revision 30112
+revision 34203
shortdesc x86_64-solaris files of tex4ht
-binfiles arch=x86_64-solaris size=96
+binfiles arch=x86_64-solaris size=94
bin/x86_64-solaris/ht
bin/x86_64-solaris/htcontext
bin/x86_64-solaris/htlatex
@@ -158486,7 +172981,7 @@ docfiles size=48
runfiles size=8
texmf-dist/tex/generic/texapi/texapi.tex
catalogue-ctan /macros/generic/texapi
-catalogue-date 2012-03-14 12:23:07 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.04
@@ -158511,12 +173006,12 @@ docfiles size=559
texmf-dist/doc/plain/texbytopic/tables.tex
texmf-dist/doc/plain/texbytopic/tex.bib
catalogue-ctan /info/texbytopic
-catalogue-date 2013-01-10 00:25:08 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license fdl
name texconfig
category TLCore
-revision 29764
+revision 33736
depend texconfig.ARCH
docfiles size=9
texmf-dist/doc/man/man1/texconfig-sys.1
@@ -158616,13 +173111,6 @@ shortdesc i386-solaris files of texconfig
binfiles arch=i386-solaris size=1
bin/i386-solaris/texconfig
-name texconfig.mips-irix
-category TLCore
-revision 29949
-shortdesc mips-irix files of texconfig
-binfiles arch=mips-irix size=1
- bin/mips-irix/texconfig
-
name texconfig.mipsel-linux
category TLCore
revision 29946
@@ -158651,6 +173139,13 @@ shortdesc universal-darwin files of texconfig
binfiles arch=universal-darwin size=1
bin/universal-darwin/texconfig
+name texconfig.x86_64-cygwin
+category TLCore
+revision 33557
+shortdesc x86_64-cygwin files of texconfig
+binfiles arch=x86_64-cygwin size=1
+ bin/x86_64-cygwin/texconfig
+
name texconfig.x86_64-darwin
category TLCore
revision 29809
@@ -158674,7 +173169,7 @@ binfiles arch=x86_64-solaris size=1
name texcount
category Package
-revision 26313
+revision 31323
shortdesc Count words in a LaTeX document.
longdesc TeXcount is a Perl script that counts words in the text of
longdesc LaTeX files. It has rules for handling most of the common
@@ -158682,22 +173177,24 @@ longdesc macros, and can provide colour-coded output showing which parts
longdesc of the text have been counted. The package script is available
longdesc as a Web service via its home page.
depend texcount.ARCH
-docfiles size=113
+docfiles size=189
texmf-dist/doc/support/texcount/QuickReference.pdf details="Quick reference"
texmf-dist/doc/support/texcount/QuickReference.tex
texmf-dist/doc/support/texcount/README details="Readme"
texmf-dist/doc/support/texcount/TeXcount.pdf details="Package documentation"
texmf-dist/doc/support/texcount/TeXcount.tex
+ texmf-dist/doc/support/texcount/TechDoc.pdf
+ texmf-dist/doc/support/texcount/TechDoc.tex
texmf-dist/doc/support/texcount/macros.tex
texmf-dist/doc/support/texcount/sub_addrules.tex
texmf-dist/doc/support/texcount/sub_options.tex
texmf-dist/doc/support/texcount/sub_tc_other.tex
-runfiles size=23
+runfiles size=32
texmf-dist/scripts/texcount/texcount.pl
catalogue-ctan /support/texcount
-catalogue-date 2012-06-27 20:43:57 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
-catalogue-version 2.3
+catalogue-version 3.0
name texcount.alpha-linux
category Package
@@ -158783,13 +173280,6 @@ shortdesc i386-solaris files of texcount
binfiles arch=i386-solaris size=1
bin/i386-solaris/texcount
-name texcount.mips-irix
-category Package
-revision 29949
-shortdesc mips-irix files of texcount
-binfiles arch=mips-irix size=1
- bin/mips-irix/texcount
-
name texcount.mipsel-linux
category Package
revision 29946
@@ -158825,6 +173315,13 @@ shortdesc win32 files of texcount
binfiles arch=win32 size=1
bin/win32/texcount.exe
+name texcount.x86_64-cygwin
+category Package
+revision 33557
+shortdesc x86_64-cygwin files of texcount
+binfiles arch=x86_64-cygwin size=1
+ bin/x86_64-cygwin/texcount
+
name texcount.x86_64-darwin
category Package
revision 18441
@@ -158876,7 +173373,7 @@ srcfiles size=3
runfiles size=8
texmf-dist/scripts/texdef/texdef.pl
catalogue-ctan /support/texdef
-catalogue-date 2012-06-27 20:44:39 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license gpl3
catalogue-version 1.7b
@@ -158964,13 +173461,6 @@ shortdesc i386-solaris files of texdef
binfiles arch=i386-solaris size=1
bin/i386-solaris/texdef
-name texdef.mips-irix
-category Package
-revision 29949
-shortdesc mips-irix files of texdef
-binfiles arch=mips-irix size=1
- bin/mips-irix/texdef
-
name texdef.mipsel-linux
category Package
revision 29946
@@ -159006,6 +173496,13 @@ shortdesc win32 files of texdef
binfiles arch=win32 size=1
bin/win32/texdef.exe
+name texdef.x86_64-cygwin
+category Package
+revision 33557
+shortdesc x86_64-cygwin files of texdef
+binfiles arch=x86_64-cygwin size=1
+ bin/x86_64-cygwin/texdef
+
name texdef.x86_64-darwin
category Package
revision 21802
@@ -159044,7 +173541,7 @@ docfiles size=6
runfiles size=5
texmf-dist/scripts/texdiff/texdiff
catalogue-ctan /support/texdiff
-catalogue-date 2012-06-27 20:43:57 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license artistic
catalogue-version 0.4
@@ -159132,13 +173629,6 @@ shortdesc i386-solaris files of texdiff
binfiles arch=i386-solaris size=1
bin/i386-solaris/texdiff
-name texdiff.mips-irix
-category Package
-revision 29949
-shortdesc mips-irix files of texdiff
-binfiles arch=mips-irix size=1
- bin/mips-irix/texdiff
-
name texdiff.mipsel-linux
category Package
revision 29946
@@ -159174,6 +173664,13 @@ shortdesc win32 files of texdiff
binfiles arch=win32 size=1
bin/win32/texdiff.exe
+name texdiff.x86_64-cygwin
+category Package
+revision 33557
+shortdesc x86_64-cygwin files of texdiff
+binfiles arch=x86_64-cygwin size=1
+ bin/x86_64-cygwin/texdiff
+
name texdiff.x86_64-darwin
category Package
revision 18441
@@ -159211,7 +173708,7 @@ docfiles size=4
runfiles size=2
texmf-dist/scripts/texdirflatten/texdirflatten
catalogue-ctan /support/texdirflatten
-catalogue-date 2012-01-12 19:29:56 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license artistic
catalogue-version 1.1
@@ -159299,13 +173796,6 @@ shortdesc i386-solaris files of texdirflatten
binfiles arch=i386-solaris size=1
bin/i386-solaris/texdirflatten
-name texdirflatten.mips-irix
-category Package
-revision 29949
-shortdesc mips-irix files of texdirflatten
-binfiles arch=mips-irix size=1
- bin/mips-irix/texdirflatten
-
name texdirflatten.mipsel-linux
category Package
revision 29946
@@ -159341,6 +173831,13 @@ shortdesc win32 files of texdirflatten
binfiles arch=win32 size=1
bin/win32/texdirflatten.exe
+name texdirflatten.x86_64-cygwin
+category Package
+revision 33557
+shortdesc x86_64-cygwin files of texdirflatten
+binfiles arch=x86_64-cygwin size=1
+ bin/x86_64-cygwin/texdirflatten
+
name texdirflatten.x86_64-darwin
category Package
revision 18441
@@ -159364,7 +173861,7 @@ binfiles arch=x86_64-solaris size=1
name texdoc
category TLCore
-revision 29764
+revision 34180
shortdesc Documentation access for TeX distributions.
longdesc TeXdoc is an application for easy access to the package
longdesc documentation of a TeX distributions (i.e., .dvi, .pdf or .ps
@@ -159399,7 +173896,7 @@ runfiles size=325
texmf-dist/texdoctk/texdocrc-win32.defaults
texmf-dist/texdoctk/texdocrc.defaults
texmf-dist/texdoctk/texdoctk.dat
-catalogue-date 2012-06-27 22:19:02 +0200
+catalogue-date 2014-01-03 12:07:14 +0100
catalogue-license gpl
name texdoc.alpha-linux
@@ -159498,14 +173995,6 @@ binfiles arch=i386-solaris size=2
bin/i386-solaris/texdoc
bin/i386-solaris/texdoctk
-name texdoc.mips-irix
-category TLCore
-revision 29949
-shortdesc mips-irix files of texdoc
-binfiles arch=mips-irix size=2
- bin/mips-irix/texdoc
- bin/mips-irix/texdoctk
-
name texdoc.mipsel-linux
category TLCore
revision 29946
@@ -159546,6 +174035,14 @@ binfiles arch=win32 size=3
bin/win32/texdoc.exe
bin/win32/texdoctk.exe
+name texdoc.x86_64-cygwin
+category TLCore
+revision 33557
+shortdesc x86_64-cygwin files of texdoc
+binfiles arch=x86_64-cygwin size=2
+ bin/x86_64-cygwin/texdoc
+ bin/x86_64-cygwin/texdoctk
+
name texdoc.x86_64-darwin
category TLCore
revision 29809
@@ -159572,7 +174069,7 @@ binfiles arch=x86_64-solaris size=2
name texdraw
category Package
-revision 29725
+revision 31894
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.
@@ -159583,41 +174080,193 @@ longdesc in PostScript, drawing segments allow for local changes to the
longdesc scaling and line parameters. Using TeX's macro definition
longdesc capability, new drawing commands can be constructed from
longdesc drawing segments.
-docfiles size=189
+docfiles size=160
texmf-dist/doc/info/texdraw.info
- texmf-dist/doc/support/texdraw/getopt.c
- texmf-dist/doc/support/texdraw/getopt.h
+ texmf-dist/doc/support/texdraw/ChangeLog
+ texmf-dist/doc/support/texdraw/README details="Readme"
texmf-dist/doc/support/texdraw/texdraw.cps
texmf-dist/doc/support/texdraw/texdraw.fns
- texmf-dist/doc/support/texdraw/texdraw.pdf
+ texmf-dist/doc/support/texdraw/texdraw.ps
texmf-dist/doc/support/texdraw/texdraw.texi
- texmf-dist/doc/support/texdraw/texdraw_1.html
- texmf-dist/doc/support/texdraw/texdraw_10.html
- texmf-dist/doc/support/texdraw/texdraw_11.html
- texmf-dist/doc/support/texdraw/texdraw_2.html
- texmf-dist/doc/support/texdraw/texdraw_3.html
- texmf-dist/doc/support/texdraw/texdraw_4.html
- texmf-dist/doc/support/texdraw/texdraw_5.html
- texmf-dist/doc/support/texdraw/texdraw_6.html
- texmf-dist/doc/support/texdraw/texdraw_7.html
- texmf-dist/doc/support/texdraw/texdraw_8.html
- texmf-dist/doc/support/texdraw/texdraw_9.html
- texmf-dist/doc/support/texdraw/texdraw_foot.html
- texmf-dist/doc/support/texdraw/texdraw_toc.html
- texmf-dist/doc/support/texdraw/texi2dvi
- texmf-dist/doc/support/texdraw/texindex.c
- texmf-dist/doc/support/texdraw/txdexamp.latex
- texmf-dist/doc/support/texdraw/txdexamp.tex
-runfiles size=9
+ texmf-dist/doc/support/texdraw/txi-src.tgz
+runfiles size=26
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/txdexamp.latex
+ texmf-dist/tex/generic/texdraw/txdexamp.tex
texmf-dist/tex/generic/texdraw/txdps.tex
texmf-dist/tex/generic/texdraw/txdtools.tex
catalogue-ctan /graphics/texdraw
catalogue-date 2012-06-05 21:37:17 +0200
catalogue-license other-free
+name texfot
+category Package
+revision 33155
+shortdesc Filter clutter from the output of a TeX run.
+longdesc The package provides a small Perl script to filter the online
+longdesc output from a TeX run, attempting to show only those messages
+longdesc which probably deserve some change in the source. The TeX
+longdesc invocation itself need not change.
+depend texfot.ARCH
+docfiles size=7
+ texmf-dist/doc/man/man1/texfot.1
+ texmf-dist/doc/man/man1/texfot.man1.pdf
+ texmf-dist/doc/support/texfot/README details="Readme"
+runfiles size=3
+ texmf-dist/scripts/texfot/texfot.pl
+catalogue-ctan /support/texfot
+catalogue-date 2014-03-17 11:47:57 +0100
+catalogue-license pd
+
+name texfot.alpha-linux
+category Package
+revision 33155
+shortdesc alpha-linux files of texfot
+binfiles arch=alpha-linux size=1
+ bin/alpha-linux/texfot
+
+name texfot.amd64-freebsd
+category Package
+revision 33155
+shortdesc amd64-freebsd files of texfot
+binfiles arch=amd64-freebsd size=1
+ bin/amd64-freebsd/texfot
+
+name texfot.amd64-kfreebsd
+category Package
+revision 33155
+shortdesc amd64-kfreebsd files of texfot
+binfiles arch=amd64-kfreebsd size=1
+ bin/amd64-kfreebsd/texfot
+
+name texfot.amd64-netbsd
+category Package
+revision 33155
+shortdesc amd64-netbsd files of texfot
+binfiles arch=amd64-netbsd size=1
+ bin/amd64-netbsd/texfot
+
+name texfot.armel-linux
+category Package
+revision 33155
+shortdesc armel-linux files of texfot
+binfiles arch=armel-linux size=1
+ bin/armel-linux/texfot
+
+name texfot.armhf-linux
+category Package
+revision 33155
+shortdesc armhf-linux files of texfot
+binfiles arch=armhf-linux size=1
+ bin/armhf-linux/texfot
+
+name texfot.i386-cygwin
+category Package
+revision 33155
+shortdesc i386-cygwin files of texfot
+binfiles arch=i386-cygwin size=1
+ bin/i386-cygwin/texfot
+
+name texfot.i386-freebsd
+category Package
+revision 33155
+shortdesc i386-freebsd files of texfot
+binfiles arch=i386-freebsd size=1
+ bin/i386-freebsd/texfot
+
+name texfot.i386-kfreebsd
+category Package
+revision 33155
+shortdesc i386-kfreebsd files of texfot
+binfiles arch=i386-kfreebsd size=1
+ bin/i386-kfreebsd/texfot
+
+name texfot.i386-linux
+category Package
+revision 33155
+shortdesc i386-linux files of texfot
+binfiles arch=i386-linux size=1
+ bin/i386-linux/texfot
+
+name texfot.i386-netbsd
+category Package
+revision 33155
+shortdesc i386-netbsd files of texfot
+binfiles arch=i386-netbsd size=1
+ bin/i386-netbsd/texfot
+
+name texfot.i386-solaris
+category Package
+revision 33155
+shortdesc i386-solaris files of texfot
+binfiles arch=i386-solaris size=1
+ bin/i386-solaris/texfot
+
+name texfot.mipsel-linux
+category Package
+revision 33155
+shortdesc mipsel-linux files of texfot
+binfiles arch=mipsel-linux size=1
+ bin/mipsel-linux/texfot
+
+name texfot.powerpc-linux
+category Package
+revision 33155
+shortdesc powerpc-linux files of texfot
+binfiles arch=powerpc-linux size=1
+ bin/powerpc-linux/texfot
+
+name texfot.sparc-solaris
+category Package
+revision 33155
+shortdesc sparc-solaris files of texfot
+binfiles arch=sparc-solaris size=1
+ bin/sparc-solaris/texfot
+
+name texfot.universal-darwin
+category Package
+revision 33155
+shortdesc universal-darwin files of texfot
+binfiles arch=universal-darwin size=1
+ bin/universal-darwin/texfot
+
+name texfot.win32
+category Package
+revision 33155
+shortdesc win32 files of texfot
+binfiles arch=win32 size=1
+ bin/win32/texfot.exe
+
+name texfot.x86_64-cygwin
+category Package
+revision 33557
+shortdesc x86_64-cygwin files of texfot
+binfiles arch=x86_64-cygwin size=1
+ bin/x86_64-cygwin/texfot
+
+name texfot.x86_64-darwin
+category Package
+revision 33155
+shortdesc x86_64-darwin files of texfot
+binfiles arch=x86_64-darwin size=1
+ bin/x86_64-darwin/texfot
+
+name texfot.x86_64-linux
+category Package
+revision 33155
+shortdesc x86_64-linux files of texfot
+binfiles arch=x86_64-linux size=1
+ bin/x86_64-linux/texfot
+
+name texfot.x86_64-solaris
+category Package
+revision 33155
+shortdesc x86_64-solaris files of texfot
+binfiles arch=x86_64-solaris size=1
+ bin/x86_64-solaris/texfot
+
name texilikechaps
category Package
revision 28553
@@ -159629,7 +174278,7 @@ longdesc internal commands.
runfiles size=1
texmf-dist/tex/latex/texilikechaps/texilikechaps.sty
catalogue-ctan /macros/latex/contrib/misc/texilikechaps.sty
-catalogue-date 2012-12-16 19:31:26 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.0a
@@ -159642,13 +174291,13 @@ longdesc TeXinfo produces.
runfiles size=1
texmf-dist/tex/latex/texilikecover/texilikecover.sty
catalogue-ctan /macros/latex/contrib/misc/texilikecover.sty
-catalogue-date 2012-06-27 18:03:45 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 0.1
name texinfo
category Package
-revision 29349
+revision 34228
shortdesc Texinfo documentation system.
longdesc Texinfo is the preferred format for documentation in the GNU
longdesc project; the format may be used to produce online or printed
@@ -159658,7 +174307,7 @@ longdesc distribution offer online interactive use (with hypertext
longdesc linkages in some cases). Note that a developers' snapshot of
longdesc the latest release of the Texinfo macros may be found in the
longdesc Texinfo 'latest' package.
-runfiles size=95
+runfiles size=96
texmf-dist/tex/texinfo/texinfo.ini
texmf-dist/tex/texinfo/texinfo.tex
texmf-dist/tex/texinfo/txi-cs.tex
@@ -159677,16 +174326,16 @@ runfiles size=95
texmf-dist/tex/texinfo/txi-tr.tex
texmf-dist/tex/texinfo/txi-uk.tex
catalogue-ctan /macros/texinfo/texinfo
-catalogue-date 2013-03-17 00:29:52 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license gpl
catalogue-version 5.1
name texlive-common
category TLCore
-revision 30524
+revision 34047
shortdesc TeX Live documentation (common elements)
postaction shortcut type=menu name="TeX Live documentation" cmd=TEXDIR/texmf-dist/doc/texlive/index.html
-docfiles size=88
+docfiles size=84
texmf-dist/doc/texlive/index.html
texmf-dist/doc/texlive/texlive-common/examples/ex5.tex
texmf-dist/doc/texlive/texlive-common/examples/ex6.tex
@@ -159694,6 +174343,7 @@ docfiles size=88
texmf-dist/doc/texlive/texlive-common/examples/ex6b.tex
texmf-dist/doc/texlive/texlive-common/examples/ex6c.tex
texmf-dist/doc/texlive/texlive-common/install-lnx-main.png
+ texmf-dist/doc/texlive/texlive-common/nsis_installer.png
texmf-dist/doc/texlive/texlive-common/psview.png
texmf-dist/doc/texlive/texlive-common/stdcoll.png
texmf-dist/doc/texlive/texlive-common/tlmgr-general-options.png
@@ -159704,9 +174354,9 @@ docfiles size=88
name texlive-cz
category TLCore
-revision 30808
+revision 33936
shortdesc TeX Live manual (Czech/Slovak)
-docfiles size=371
+docfiles size=372
texmf-dist/doc/texlive/texlive-cz/Makefile
texmf-dist/doc/texlive/texlive-cz/csquote.sty
texmf-dist/doc/texlive/texlive-cz/ec-lmr10-19.png
@@ -159719,12 +174369,13 @@ docfiles size=371
name texlive-de
category TLCore
-revision 30775
+revision 34153
shortdesc TeX Live manual (German)
-docfiles size=403
+docfiles size=321
texmf-dist/doc/texlive/texlive-de/Makefile
texmf-dist/doc/texlive/texlive-de/install-lnx-main.png
texmf-dist/doc/texlive/texlive-de/lmsy10-40.png
+ texmf-dist/doc/texlive/texlive-de/nsisinstaller.png
texmf-dist/doc/texlive/texlive-de/psview.png
texmf-dist/doc/texlive/texlive-de/stdcoll.png
texmf-dist/doc/texlive/texlive-de/texlive-de-html.css
@@ -159741,21 +174392,22 @@ docfiles size=403
name texlive-docindex
category TLCore
-revision 30794
+revision 34245
shortdesc top-level TeX Live doc.html, etc.
longdesc These files are regenerated as needed, which is often, so we
longdesc make them a separate package. See the tl-update-auto script
longdesc for the process.
-docfiles size=166
+docfiles size=174
doc.html
runfiles size=270
texmf-dist/scripts/texlive/var/texcatalogue.keywords
name texlive-en
category TLCore
-revision 30632
+revision 34205
shortdesc TeX Live manual (English)
-docfiles size=768
+docfiles size=1074
+ texmf-dist/doc/info/tlbuild.info
texmf-dist/doc/texlive/texlive-en/Makefile
texmf-dist/doc/texlive/texlive-en/README
texmf-dist/doc/texlive/texlive-en/archive/bv-live.tex
@@ -159771,6 +174423,7 @@ docfiles size=768
texmf-dist/doc/texlive/texlive-en/archive/live-2010.tex
texmf-dist/doc/texlive/texlive-en/archive/live-2011.tex
texmf-dist/doc/texlive/texlive-en/archive/live-2012.tex
+ texmf-dist/doc/texlive/texlive-en/archive/live-2013.tex
texmf-dist/doc/texlive/texlive-en/archive/live-tl7.tex
texmf-dist/doc/texlive/texlive-en/archive/live4ht.cfg-2004
texmf-dist/doc/texlive/texlive-en/archive/mod.pl
@@ -159795,6 +174448,8 @@ docfiles size=768
texmf-dist/doc/texlive/texlive-en/texlive-en.html
texmf-dist/doc/texlive/texlive-en/texlive-en.pdf
texmf-dist/doc/texlive/texlive-en/texlive-en.tex
+ texmf-dist/doc/texlive/tlbuild/tlbuild.html
+ texmf-dist/doc/texlive/tlbuild/tlbuild.pdf
name texlive-fr
category TLCore
@@ -159822,13 +174477,13 @@ docfiles size=373
name texlive-msg-translations
category TLCore
-revision 30801
+revision 34248
shortdesc translations of the TeX Live installer and TeX Live Manager
longdesc This package contains the translated messages of the TeX Live
longdesc installer and TeX Live Manager. For information on creating or
longdesc updating translations, see
longdesc http://tug.org/texlive/doc.html#install-tl-xlate.
-runfiles size=265
+runfiles size=287
tlpkg/translations/cs.po
tlpkg/translations/de.po
tlpkg/translations/es.po
@@ -159844,19 +174499,19 @@ runfiles size=265
tlpkg/translations/sl.po
tlpkg/translations/sr.po
tlpkg/translations/translators
+ tlpkg/translations/uk.po
tlpkg/translations/vi.po
tlpkg/translations/zh_CN.po
tlpkg/translations/zh_TW.po
name texlive-pl
category TLCore
-revision 30749
+revision 34122
shortdesc TeX Live manual (Polish)
-docfiles size=411
+docfiles size=402
texmf-dist/doc/texlive/texlive-pl/Makefile
texmf-dist/doc/texlive/texlive-pl/live4ht.cfg
texmf-dist/doc/texlive/texlive-pl/tex-live.css
- texmf-dist/doc/texlive/texlive-pl/tex-livep.sty
texmf-dist/doc/texlive/texlive-pl/texlive-pl.css
texmf-dist/doc/texlive/texlive-pl/texlive-pl.html
texmf-dist/doc/texlive/texlive-pl/texlive-pl.pdf
@@ -159864,9 +174519,9 @@ docfiles size=411
name texlive-ru
category TLCore
-revision 30630
+revision 34060
shortdesc TeX Live manual (Russian)
-docfiles size=515
+docfiles size=499
texmf-dist/doc/texlive/texlive-ru/Makefile
texmf-dist/doc/texlive/texlive-ru/live4ht.cfg
texmf-dist/doc/texlive/texlive-ru/t2almdh.fd
@@ -159881,7 +174536,7 @@ docfiles size=515
name texlive-scripts
category TLCore
-revision 30676
+revision 34093
shortdesc TeX Live infrastructure programs
longdesc Includes install-tl, tl-portable, rungs, etc.; not needed for
longdesc tlmgr to run but still ours. Not included in tlcritical.
@@ -159891,7 +174546,7 @@ postaction shortcut type=menu name="TeX Live command-line" cmd=TEXDIR/tlpkg/in
docfiles size=10
texmf-dist/doc/man/man1/install-tl.1
texmf-dist/doc/man/man1/install-tl.man1.pdf
-runfiles size=62
+runfiles size=65
install-tl
texmf-dist/scripts/texlive/lua/texlive/getopt.tlu
texmf-dist/scripts/texlive/lua/texlive/tlpdb.tlu
@@ -159903,6 +174558,7 @@ runfiles size=62
tlpkg/installer/install-menu-perltk.pl
tlpkg/installer/install-menu-text.pl
tlpkg/installer/install-menu-wizard.pl
+ tlpkg/installer/texlive.png
name texlive-scripts.alpha-linux
category TLCore
@@ -160000,14 +174656,6 @@ binfiles arch=i386-solaris size=2
bin/i386-solaris/man
bin/i386-solaris/rungs
-name texlive-scripts.mips-irix
-category TLCore
-revision 29949
-shortdesc mips-irix files of texlive-scripts
-binfiles arch=mips-irix size=2
- bin/mips-irix/man
- bin/mips-irix/rungs
-
name texlive-scripts.mipsel-linux
category TLCore
revision 29946
@@ -160042,7 +174690,7 @@ binfiles arch=universal-darwin size=2
name texlive-scripts.win32
category TLCore
-revision 30421
+revision 33766
shortdesc win32 files of texlive-scripts
binfiles arch=win32 size=18
bin/win32/rungs.exe
@@ -160050,11 +174698,19 @@ binfiles arch=win32 size=18
bin/win32/runscript.exe
bin/win32/runscript.tlu
install-tl-advanced.bat
- install-tl.bat
+ install-tl-windows.bat
tl-tray-menu.exe
tlpkg/installer/tl-cmd.bat
tlpkg/installer/tl-tray-menu.ini
+name texlive-scripts.x86_64-cygwin
+category TLCore
+revision 33557
+shortdesc x86_64-cygwin files of texlive-scripts
+binfiles arch=x86_64-cygwin size=2
+ bin/x86_64-cygwin/man
+ bin/x86_64-cygwin/rungs
+
name texlive-scripts.x86_64-darwin
category TLCore
revision 29809
@@ -160081,17 +174737,18 @@ binfiles arch=x86_64-solaris size=2
name texlive-sr
category TLCore
-revision 30653
+revision 34072
shortdesc TeX Live manual (Serbian)
-docfiles size=381
+docfiles size=419
texmf-dist/doc/texlive/texlive-sr/Makefile
texmf-dist/doc/texlive/texlive-sr/README-SR.txt
- texmf-dist/doc/texlive/texlive-sr/images/tl2013-install-tl-collections-freebsd-sr.png
- texmf-dist/doc/texlive/texlive-sr/images/tl2013-install-tl-expert-gui-freebsd-sr.png
- texmf-dist/doc/texlive/texlive-sr/images/tl2013-install-tl-wizard-win32-sr.png
- texmf-dist/doc/texlive/texlive-sr/images/tl2013-tlmgr-main-screen-freebsd-sr.png
- texmf-dist/doc/texlive/texlive-sr/images/tl2013-tlmgr-options-freebsd-sr.png
- texmf-dist/doc/texlive/texlive-sr/images/tl2013-tlmgr-paper-options-freebsd-sr.png
+ texmf-dist/doc/texlive/texlive-sr/images/tl2014-install-tl-collections-freebsd-sr.png
+ texmf-dist/doc/texlive/texlive-sr/images/tl2014-install-tl-expert-gui-freebsd-sr.png
+ texmf-dist/doc/texlive/texlive-sr/images/tl2014-install-tl-first.stage-win32-sr.png
+ texmf-dist/doc/texlive/texlive-sr/images/tl2014-install-tl-wizard-win32-sr.png
+ texmf-dist/doc/texlive/texlive-sr/images/tl2014-tlmgr-main-screen-freebsd-sr.png
+ texmf-dist/doc/texlive/texlive-sr/images/tl2014-tlmgr-options-freebsd-sr.png
+ texmf-dist/doc/texlive/texlive-sr/images/tl2014-tlmgr-paper-options-freebsd-sr.png
texmf-dist/doc/texlive/texlive-sr/texlive-sr.css
texmf-dist/doc/texlive/texlive-sr/texlive-sr.html
texmf-dist/doc/texlive/texlive-sr/texlive-sr.pdf
@@ -160100,7 +174757,7 @@ docfiles size=381
name texlive-zh-cn
category TLCore
-revision 30732
+revision 34118
shortdesc TeX Live manual (Chinese)
docfiles size=239
texmf-dist/doc/texlive/texlive-zh-cn/Makefile
@@ -160111,7 +174768,7 @@ docfiles size=239
name texlive.infra
category TLCore
-revision 30804
+revision 34227
shortdesc basic TeX Live infrastructure
longdesc This package contains the files needed to get the TeX Live
longdesc tools (notably tlmgr) running: perl modules, xz binaries, plus
@@ -160125,7 +174782,7 @@ docfiles size=46
texmf-dist/scripts/texlive/NEWS
tlpkg/README
tlpkg/installer/COPYING.MinGW-runtime.txt
-runfiles size=260
+runfiles size=258
LICENSE.CTAN
LICENSE.TL
README
@@ -160162,7 +174819,6 @@ runfiles size=260
texmf-dist/scripts/texlive/uninstall-win32.pl
texmf-dist/web2c/fmtutil-hdr.cnf
texmf-dist/web2c/updmap-hdr.cfg
- tlpkg/TeXLive/Splashscreen.pm
tlpkg/TeXLive/TLConfFile.pm
tlpkg/TeXLive/TLConfig.pm
tlpkg/TeXLive/TLDownload.pm
@@ -160175,7 +174831,6 @@ runfiles size=260
tlpkg/TeXLive/TLWinGoo.pm
tlpkg/TeXLive/TeXCatalogue.pm
tlpkg/TeXLive/trans.pl
- tlpkg/TeXLive/waitVariableX.pm
tlpkg/installer/config.guess
name texlive.infra.alpha-linux
@@ -160189,9 +174844,9 @@ binfiles arch=alpha-linux size=78
name texlive.infra.amd64-freebsd
category TLCore
-revision 29785
+revision 33680
shortdesc amd64-freebsd files of texlive.infra
-binfiles arch=amd64-freebsd size=115
+binfiles arch=amd64-freebsd size=170
bin/amd64-freebsd/tlmgr
tlpkg/installer/wget/wget.amd64-freebsd
tlpkg/installer/xz/xz.amd64-freebsd
@@ -160199,19 +174854,18 @@ binfiles arch=amd64-freebsd size=115
name texlive.infra.amd64-kfreebsd
category TLCore
-revision 29811
+revision 33612
shortdesc amd64-kfreebsd files of texlive.infra
-binfiles arch=amd64-kfreebsd size=145
+binfiles arch=amd64-kfreebsd size=63
bin/amd64-kfreebsd/tlmgr
- tlpkg/installer/wget/wget.amd64-kfreebsd
tlpkg/installer/xz/xz.amd64-kfreebsd
tlpkg/installer/xz/xzdec.amd64-kfreebsd
name texlive.infra.amd64-netbsd
category TLCore
-revision 30191
+revision 33528
shortdesc amd64-netbsd files of texlive.infra
-binfiles arch=amd64-netbsd size=134
+binfiles arch=amd64-netbsd size=169
bin/amd64-netbsd/tlmgr
tlpkg/installer/wget/wget.amd64-netbsd
tlpkg/installer/xz/xz.amd64-netbsd
@@ -160228,7 +174882,7 @@ binfiles arch=armel-linux size=5
name texlive.infra.armhf-linux
category TLCore
-revision 30015
+revision 33545
shortdesc armhf-linux files of texlive.infra
binfiles arch=armhf-linux size=57
bin/armhf-linux/tlmgr
@@ -160237,18 +174891,18 @@ binfiles arch=armhf-linux size=57
name texlive.infra.i386-cygwin
category TLCore
-revision 29836
+revision 33555
shortdesc i386-cygwin files of texlive.infra
-binfiles arch=i386-cygwin size=59
+binfiles arch=i386-cygwin size=67
bin/i386-cygwin/tlmgr
tlpkg/installer/xz/xz.i386-cygwin.exe
tlpkg/installer/xz/xzdec.i386-cygwin.exe
name texlive.infra.i386-freebsd
category TLCore
-revision 29785
+revision 33680
shortdesc i386-freebsd files of texlive.infra
-binfiles arch=i386-freebsd size=109
+binfiles arch=i386-freebsd size=161
bin/i386-freebsd/tlmgr
tlpkg/installer/wget/wget.i386-freebsd
tlpkg/installer/xz/xz.i386-freebsd
@@ -160256,28 +174910,27 @@ binfiles arch=i386-freebsd size=109
name texlive.infra.i386-kfreebsd
category TLCore
-revision 29810
+revision 33612
shortdesc i386-kfreebsd files of texlive.infra
-binfiles arch=i386-kfreebsd size=142
+binfiles arch=i386-kfreebsd size=65
bin/i386-kfreebsd/tlmgr
- tlpkg/installer/wget/wget.i386-kfreebsd
tlpkg/installer/xz/xz.i386-kfreebsd
tlpkg/installer/xz/xzdec.i386-kfreebsd
name texlive.infra.i386-linux
category TLCore
-revision 29741
+revision 33484
shortdesc i386-linux files of texlive.infra
-binfiles arch=i386-linux size=60
+binfiles arch=i386-linux size=80
bin/i386-linux/tlmgr
tlpkg/installer/xz/xz.i386-linux
tlpkg/installer/xz/xzdec.i386-linux
name texlive.infra.i386-netbsd
category TLCore
-revision 30191
+revision 33562
shortdesc i386-netbsd files of texlive.infra
-binfiles arch=i386-netbsd size=121
+binfiles arch=i386-netbsd size=156
bin/i386-netbsd/tlmgr
tlpkg/installer/wget/wget.i386-netbsd
tlpkg/installer/xz/xz.i386-netbsd
@@ -160285,46 +174938,36 @@ binfiles arch=i386-netbsd size=121
name texlive.infra.i386-solaris
category TLCore
-revision 29806
+revision 33560
shortdesc i386-solaris files of texlive.infra
binfiles arch=i386-solaris size=71
bin/i386-solaris/tlmgr
tlpkg/installer/xz/xz.i386-solaris
tlpkg/installer/xz/xzdec.i386-solaris
-name texlive.infra.mips-irix
-category TLCore
-revision 29982
-shortdesc mips-irix files of texlive.infra
-binfiles arch=mips-irix size=631
- bin/mips-irix/tlmgr
- tlpkg/installer/wget/wget.mips-irix
- tlpkg/installer/xz/xz.mips-irix
- tlpkg/installer/xz/xzdec.mips-irix
-
name texlive.infra.mipsel-linux
category TLCore
-revision 29946
+revision 33773
shortdesc mipsel-linux files of texlive.infra
-binfiles arch=mipsel-linux size=75
+binfiles arch=mipsel-linux size=253
bin/mipsel-linux/tlmgr
tlpkg/installer/xz/xz.mipsel-linux
tlpkg/installer/xz/xzdec.mipsel-linux
name texlive.infra.powerpc-linux
category TLCore
-revision 29833
+revision 33561
shortdesc powerpc-linux files of texlive.infra
-binfiles arch=powerpc-linux size=66
+binfiles arch=powerpc-linux size=62
bin/powerpc-linux/tlmgr
tlpkg/installer/xz/xz.powerpc-linux
tlpkg/installer/xz/xzdec.powerpc-linux
name texlive.infra.sparc-solaris
category TLCore
-revision 29812
+revision 34197
shortdesc sparc-solaris files of texlive.infra
-binfiles arch=sparc-solaris size=135
+binfiles arch=sparc-solaris size=224
bin/sparc-solaris/tlmgr
tlpkg/installer/wget/wget.sparc-solaris
tlpkg/installer/xz/xz.sparc-solaris
@@ -160332,9 +174975,9 @@ binfiles arch=sparc-solaris size=135
name texlive.infra.universal-darwin
category TLCore
-revision 29808
+revision 33484
shortdesc universal-darwin files of texlive.infra
-binfiles arch=universal-darwin size=239
+binfiles arch=universal-darwin size=240
bin/universal-darwin/tlmgr
tlpkg/installer/wget/wget.universal-darwin
tlpkg/installer/xz/xz.universal-darwin
@@ -160342,9 +174985,9 @@ binfiles arch=universal-darwin size=239
name texlive.infra.win32
category TLCore
-revision 29865
+revision 34173
shortdesc win32 files of texlive.infra
-binfiles arch=win32 size=222
+binfiles arch=win32 size=511
bin/win32/tlmgr-gui.exe
bin/win32/tlmgr.bat
tlpkg/installer/tar.exe
@@ -160352,11 +174995,20 @@ binfiles arch=win32 size=222
tlpkg/installer/xz/xz.exe
tlpkg/installer/xz/xzdec.exe
+name texlive.infra.x86_64-cygwin
+category TLCore
+revision 33582
+shortdesc x86_64-cygwin files of texlive.infra
+binfiles arch=x86_64-cygwin size=61
+ bin/x86_64-cygwin/tlmgr
+ tlpkg/installer/xz/xz.x86_64-cygwin.exe
+ tlpkg/installer/xz/xzdec.x86_64-cygwin.exe
+
name texlive.infra.x86_64-darwin
category TLCore
-revision 29809
+revision 33484
shortdesc x86_64-darwin files of texlive.infra
-binfiles arch=x86_64-darwin size=244
+binfiles arch=x86_64-darwin size=178
bin/x86_64-darwin/tlmgr
tlpkg/installer/wget/wget.x86_64-darwin
tlpkg/installer/xz/xz.x86_64-darwin
@@ -160364,7 +175016,7 @@ binfiles arch=x86_64-darwin size=244
name texlive.infra.x86_64-linux
category TLCore
-revision 29820
+revision 33743
shortdesc x86_64-linux files of texlive.infra
binfiles arch=x86_64-linux size=64
bin/x86_64-linux/tlmgr
@@ -160373,7 +175025,7 @@ binfiles arch=x86_64-linux size=64
name texlive.infra.x86_64-solaris
category TLCore
-revision 29807
+revision 33560
shortdesc x86_64-solaris files of texlive.infra
binfiles arch=x86_64-solaris size=89
bin/x86_64-solaris/tlmgr
@@ -160398,7 +175050,7 @@ docfiles size=1
runfiles size=5
texmf-dist/scripts/texliveonfly/texliveonfly.py
catalogue-ctan /support/texliveonfly
-catalogue-date 2012-10-22 13:22:38 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license gpl3
name texliveonfly.alpha-linux
@@ -160485,13 +175137,6 @@ shortdesc i386-solaris files of texliveonfly
binfiles arch=i386-solaris size=1
bin/i386-solaris/texliveonfly
-name texliveonfly.mips-irix
-category Package
-revision 29949
-shortdesc mips-irix files of texliveonfly
-binfiles arch=mips-irix size=1
- bin/mips-irix/texliveonfly
-
name texliveonfly.mipsel-linux
category Package
revision 29946
@@ -160527,6 +175172,13 @@ shortdesc win32 files of texliveonfly
binfiles arch=win32 size=1
bin/win32/texliveonfly.exe
+name texliveonfly.x86_64-cygwin
+category Package
+revision 33557
+shortdesc x86_64-cygwin files of texliveonfly
+binfiles arch=x86_64-cygwin size=1
+ bin/x86_64-cygwin/texliveonfly
+
name texliveonfly.x86_64-darwin
category Package
revision 24062
@@ -160560,7 +175212,7 @@ docfiles size=1
runfiles size=3
texmf-dist/scripts/texloganalyser/texloganalyser
catalogue-ctan /support/texloganalyser
-catalogue-date 2012-06-27 16:40:35 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license other-free
catalogue-version 0.7
@@ -160648,13 +175300,6 @@ shortdesc i386-solaris files of texloganalyser
binfiles arch=i386-solaris size=1
bin/i386-solaris/texloganalyser
-name texloganalyser.mips-irix
-category Package
-revision 29949
-shortdesc mips-irix files of texloganalyser
-binfiles arch=mips-irix size=1
- bin/mips-irix/texloganalyser
-
name texloganalyser.mipsel-linux
category Package
revision 29946
@@ -160690,6 +175335,13 @@ shortdesc win32 files of texloganalyser
binfiles arch=win32 size=1
bin/win32/texloganalyser.exe
+name texloganalyser.x86_64-cygwin
+category Package
+revision 33557
+shortdesc x86_64-cygwin files of texloganalyser
+binfiles arch=x86_64-cygwin size=1
+ bin/x86_64-cygwin/texloganalyser
+
name texloganalyser.x86_64-darwin
category Package
revision 18441
@@ -160908,7 +175560,7 @@ catalogue-version 1.24
name texsis
category Package
-revision 22650
+revision 31958
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
@@ -160929,7 +175581,9 @@ longdesc completely compatible with Plain TeX.
depend tex
depend texsis.ARCH
execute AddFormat name=texsis engine=pdftex options="-translate-file=cp227.tcx texsis.ini"
-docfiles size=132
+docfiles size=135
+ texmf-dist/doc/man/man1/texsis.1
+ texmf-dist/doc/man/man1/texsis.man1.pdf
texmf-dist/doc/otherformats/texsis/base/COPYING
texmf-dist/doc/otherformats/texsis/base/Example.tex
texmf-dist/doc/otherformats/texsis/base/Fonts.tex
@@ -160970,7 +175624,6 @@ docfiles size=132
texmf-dist/doc/otherformats/texsis/base/letr
texmf-dist/doc/otherformats/texsis/base/penguin.eps
texmf-dist/doc/otherformats/texsis/base/penguin2.eps
- texmf-dist/doc/otherformats/texsis/base/texsis.1
texmf-dist/doc/otherformats/texsis/base/texsis.el
texmf-dist/doc/otherformats/texsis/base/texsis.lsm
runfiles size=142
@@ -161103,13 +175756,6 @@ shortdesc i386-solaris files of texsis
binfiles arch=i386-solaris size=1
bin/i386-solaris/texsis
-name texsis.mips-irix
-category Package
-revision 29975
-shortdesc mips-irix files of texsis
-binfiles arch=mips-irix size=1
- bin/mips-irix/texsis
-
name texsis.mipsel-linux
category Package
revision 29946
@@ -161140,11 +175786,18 @@ binfiles arch=universal-darwin size=1
name texsis.win32
category Package
-revision 8086
+revision 33512
shortdesc win32 files of texsis
binfiles arch=win32 size=1
bin/win32/texsis.exe
+name texsis.x86_64-cygwin
+category Package
+revision 33557
+shortdesc x86_64-cygwin files of texsis
+binfiles arch=x86_64-cygwin size=1
+ bin/x86_64-cygwin/texsis
+
name texsis.x86_64-darwin
category Package
revision 18441
@@ -161220,15 +175873,25 @@ catalogue-version 5
name textglos
category Package
revision 30788
+shortdesc Typeset and index linguistic gloss abbreviations.
+longdesc The package provides a set of macros for in-line linguistic
+longdesc examples (as opposed to interlinear glossing, set apart from
+longdesc the main text). It prevents hyphenated examples from breaking
+longdesc across lines and consistently formats phonemic examples,
+longdesc orthographic examples, and more.
docfiles size=105
- texmf-dist/doc/latex/textglos/README
+ texmf-dist/doc/latex/textglos/README details="Readme"
texmf-dist/doc/latex/textglos/README.txt
- texmf-dist/doc/latex/textglos/textglos.pdf
+ texmf-dist/doc/latex/textglos/textglos.pdf details="Package documentation"
srcfiles size=6
texmf-dist/source/latex/textglos/textglos.dtx
texmf-dist/source/latex/textglos/textglos.ins
runfiles size=1
texmf-dist/tex/latex/textglos/textglos.sty
+catalogue-ctan /macros/latex/contrib/textglos
+catalogue-date 2013-06-19 00:57:02 +0200
+catalogue-license lppl1.3
+catalogue-version 1.0
name textgreek
category Package
@@ -161327,7 +175990,7 @@ catalogue-version 1.6
name textpos
category Package
-revision 28261
+revision 32571
shortdesc Place boxes at arbitrary 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
@@ -161336,8 +175999,8 @@ longdesc large-format conference posters.
docfiles size=90
texmf-dist/doc/latex/textpos/LICENCE
texmf-dist/doc/latex/textpos/README details="Package README"
- texmf-dist/doc/latex/textpos/VERSION-1.7i
- texmf-dist/doc/latex/textpos/examples/README details="Package README"
+ texmf-dist/doc/latex/textpos/VERSION-1.7j
+ texmf-dist/doc/latex/textpos/examples/README-examples
texmf-dist/doc/latex/textpos/examples/t1.tex
texmf-dist/doc/latex/textpos/examples/t2.tex
texmf-dist/doc/latex/textpos/examples/t3.tex
@@ -161358,13 +176021,13 @@ srcfiles size=17
runfiles size=3
texmf-dist/tex/latex/textpos/textpos.sty
catalogue-ctan /macros/latex/contrib/textpos
-catalogue-date 2012-11-17 01:32:51 +0100
+catalogue-date 2014-01-04 08:41:38 +0100
catalogue-license gpl
-catalogue-version 1.7i
+catalogue-version 1.7j
name texware
category TLCore
-revision 29764
+revision 33736
shortdesc Utility programs for use with TeX.
longdesc Basic utitility programs, comprising: - dvitype, which converts
longdesc a TeX output (DVI) file to a plain text file (see also the DVI
@@ -161379,12 +176042,12 @@ docfiles size=5
texmf-dist/doc/man/man1/pooltype.1
texmf-dist/doc/man/man1/pooltype.man1.pdf
catalogue-ctan /systems/knuth/dist/texware
-catalogue-date 2012-06-27 22:19:02 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license knuth
name texware.alpha-linux
category TLCore
-revision 29891
+revision 33553
shortdesc alpha-linux files of texware
binfiles arch=alpha-linux size=41
bin/alpha-linux/dvitype
@@ -161392,7 +176055,7 @@ binfiles arch=alpha-linux size=41
name texware.amd64-freebsd
category TLCore
-revision 29874
+revision 33488
shortdesc amd64-freebsd files of texware
binfiles arch=amd64-freebsd size=34
bin/amd64-freebsd/dvitype
@@ -161400,7 +176063,7 @@ binfiles arch=amd64-freebsd size=34
name texware.amd64-kfreebsd
category TLCore
-revision 30655
+revision 33864
shortdesc amd64-kfreebsd files of texware
binfiles arch=amd64-kfreebsd size=31
bin/amd64-kfreebsd/dvitype
@@ -161408,7 +176071,7 @@ binfiles arch=amd64-kfreebsd size=31
name texware.amd64-netbsd
category TLCore
-revision 30660
+revision 33726
shortdesc amd64-netbsd files of texware
binfiles arch=amd64-netbsd size=34
bin/amd64-netbsd/dvitype
@@ -161416,7 +176079,7 @@ binfiles arch=amd64-netbsd size=34
name texware.armel-linux
category TLCore
-revision 29888
+revision 33916
shortdesc armel-linux files of texware
binfiles arch=armel-linux size=28
bin/armel-linux/dvitype
@@ -161424,7 +176087,7 @@ binfiles arch=armel-linux size=28
name texware.armhf-linux
category TLCore
-revision 30443
+revision 34125
shortdesc armhf-linux files of texware
binfiles arch=armhf-linux size=27
bin/armhf-linux/dvitype
@@ -161432,15 +176095,15 @@ binfiles arch=armhf-linux size=27
name texware.i386-cygwin
category TLCore
-revision 30526
+revision 34161
shortdesc i386-cygwin files of texware
-binfiles arch=i386-cygwin size=30
+binfiles arch=i386-cygwin size=36
bin/i386-cygwin/dvitype.exe
bin/i386-cygwin/pooltype.exe
name texware.i386-freebsd
category TLCore
-revision 29874
+revision 33488
shortdesc i386-freebsd files of texware
binfiles arch=i386-freebsd size=32
bin/i386-freebsd/dvitype
@@ -161448,23 +176111,23 @@ binfiles arch=i386-freebsd size=32
name texware.i386-kfreebsd
category TLCore
-revision 30440
+revision 33864
shortdesc i386-kfreebsd files of texware
-binfiles arch=i386-kfreebsd size=30
+binfiles arch=i386-kfreebsd size=31
bin/i386-kfreebsd/dvitype
bin/i386-kfreebsd/pooltype
name texware.i386-linux
category TLCore
-revision 30088
+revision 33479
shortdesc i386-linux files of texware
-binfiles arch=i386-linux size=30
+binfiles arch=i386-linux size=33
bin/i386-linux/dvitype
bin/i386-linux/pooltype
name texware.i386-netbsd
category TLCore
-revision 30191
+revision 33562
shortdesc i386-netbsd files of texware
binfiles arch=i386-netbsd size=30
bin/i386-netbsd/dvitype
@@ -161472,47 +176135,39 @@ binfiles arch=i386-netbsd size=30
name texware.i386-solaris
category TLCore
-revision 30112
+revision 34203
shortdesc i386-solaris files of texware
-binfiles arch=i386-solaris size=38
+binfiles arch=i386-solaris size=37
bin/i386-solaris/dvitype
bin/i386-solaris/pooltype
-name texware.mips-irix
-category TLCore
-revision 30131
-shortdesc mips-irix files of texware
-binfiles arch=mips-irix size=76
- bin/mips-irix/dvitype
- bin/mips-irix/pooltype
-
name texware.mipsel-linux
category TLCore
-revision 29995
+revision 33811
shortdesc mipsel-linux files of texware
-binfiles arch=mipsel-linux size=39
+binfiles arch=mipsel-linux size=32
bin/mipsel-linux/dvitype
bin/mipsel-linux/pooltype
name texware.powerpc-linux
category TLCore
-revision 30114
+revision 33889
shortdesc powerpc-linux files of texware
-binfiles arch=powerpc-linux size=32
+binfiles arch=powerpc-linux size=31
bin/powerpc-linux/dvitype
bin/powerpc-linux/pooltype
name texware.sparc-solaris
category TLCore
-revision 29877
+revision 33871
shortdesc sparc-solaris files of texware
-binfiles arch=sparc-solaris size=36
+binfiles arch=sparc-solaris size=35
bin/sparc-solaris/dvitype
bin/sparc-solaris/pooltype
name texware.universal-darwin
category TLCore
-revision 30764
+revision 34201
shortdesc universal-darwin files of texware
binfiles arch=universal-darwin size=71
bin/universal-darwin/dvitype
@@ -161520,15 +176175,23 @@ binfiles arch=universal-darwin size=71
name texware.win32
category TLCore
-revision 29816
+revision 33897
shortdesc win32 files of texware
-binfiles arch=win32 size=10
+binfiles arch=win32 size=12
bin/win32/dvitype.exe
bin/win32/pooltype.exe
+name texware.x86_64-cygwin
+category TLCore
+revision 34161
+shortdesc x86_64-cygwin files of texware
+binfiles arch=x86_64-cygwin size=34
+ bin/x86_64-cygwin/dvitype.exe
+ bin/x86_64-cygwin/pooltype.exe
+
name texware.x86_64-darwin
category TLCore
-revision 29879
+revision 34201
shortdesc x86_64-darwin files of texware
binfiles arch=x86_64-darwin size=38
bin/x86_64-darwin/dvitype
@@ -161536,7 +176199,7 @@ binfiles arch=x86_64-darwin size=38
name texware.x86_64-linux
category TLCore
-revision 30204
+revision 33723
shortdesc x86_64-linux files of texware
binfiles arch=x86_64-linux size=31
bin/x86_64-linux/dvitype
@@ -161544,7 +176207,7 @@ binfiles arch=x86_64-linux size=31
name texware.x86_64-solaris
category TLCore
-revision 30112
+revision 34203
shortdesc x86_64-solaris files of texware
binfiles arch=x86_64-solaris size=44
bin/x86_64-solaris/dvitype
@@ -161944,10 +176607,31 @@ runfiles size=191
texmf-dist/fonts/type1/public/tfrupee/tfrupee.pfb
texmf-dist/tex/latex/tfrupee/tfrupee.sty
catalogue-ctan /fonts/tfrupee
-catalogue-date 2012-07-10 15:51:55 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license gpl3
catalogue-version 1.02
+name thalie
+category Package
+revision 31018
+shortdesc Typeset drama plays.
+longdesc The package provides tools to typeset drama plays. It defines
+longdesc commands to introduce characters' lines, to render stage
+longdesc directions, to divide a play into acts and scenes and to build
+longdesc the dramatis personae automatically.
+docfiles size=92
+ texmf-dist/doc/latex/thalie/README details="Readme"
+ texmf-dist/doc/latex/thalie/thalie.pdf details="Package documentation"
+srcfiles size=14
+ texmf-dist/source/latex/thalie/thalie.dtx
+ texmf-dist/source/latex/thalie/thalie.ins
+runfiles size=4
+ texmf-dist/tex/latex/thalie/thalie.sty
+catalogue-ctan /macros/latex/contrib/thalie
+catalogue-date 2014-02-26 23:03:13 +0100
+catalogue-license lppl1.3
+catalogue-version 0.5
+
name theoremref
category Package
revision 30640
@@ -161966,8 +176650,34 @@ docfiles size=94
runfiles size=3
texmf-dist/tex/latex/theoremref/theoremref.sty
catalogue-ctan /macros/latex/contrib/theoremref
-catalogue-date 2013-05-26 19:01:07 +0200
-catalogue-license lppl
+catalogue-date 2014-02-26 23:03:13 +0100
+catalogue-license lppl
+
+name thesis-ekf
+category Package
+revision 34208
+shortdesc Thesis class for Eszterhazy Karoly College.
+longdesc The distribution contains the files to generate the thesis
+longdesc class, only.
+docfiles size=910
+ texmf-dist/doc/latex/thesis-ekf/README details="Readme"
+ texmf-dist/doc/latex/thesis-ekf/images/ekf-logo1.png
+ texmf-dist/doc/latex/thesis-ekf/images/ekf-logo2.pdf
+ texmf-dist/doc/latex/thesis-ekf/magyar.ldf
+ texmf-dist/doc/latex/thesis-ekf/szakdolgozat1.pdf
+ texmf-dist/doc/latex/thesis-ekf/szakdolgozat1.tex
+ texmf-dist/doc/latex/thesis-ekf/szakdolgozat2.pdf
+ texmf-dist/doc/latex/thesis-ekf/szakdolgozat2.tex
+ texmf-dist/doc/latex/thesis-ekf/thesis-ekf.pdf details="Package documentation"
+srcfiles size=5
+ texmf-dist/source/latex/thesis-ekf/thesis-ekf.dtx
+ texmf-dist/source/latex/thesis-ekf/thesis-ekf.ins
+runfiles size=1
+ texmf-dist/tex/latex/thesis-ekf/thesis-ekf.cls
+catalogue-ctan /macros/latex/contrib/thesis-ekf
+catalogue-date 2014-05-22 00:39:42 +0200
+catalogue-license lppl1.2
+catalogue-version 1.0
name thesis-titlepage-fhac
category Package
@@ -162015,7 +176725,7 @@ docfiles size=93
runfiles size=1
texmf-dist/tex/latex/thinsp/thinsp.sty
catalogue-ctan /macros/latex/contrib/thinsp
-catalogue-date 2012-04-27 11:57:13 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license gpl
catalogue-version 0.1
@@ -162041,15 +176751,15 @@ catalogue-license lppl
name thmtools
category Package
-revision 26251
+revision 33624
shortdesc Extensions to theorem environments.
longdesc The bundle provides several packages for commonly-needed
longdesc support for typesetting theorems. The packages should work with
longdesc kernel theorems (theorems 'out of the box' with LaTeX), and the
-longdesc theorem and amsthm packages. Features of the bundle include: -
-longdesc a key-value interface to \newtheorem; - a \listoftheorems
-longdesc command; - hyperref and autoref compatibility; - a mechanism
-longdesc for restating entire theorems in a single macro call.
+longdesc theorem and amsthm packages. Features of the bundle include: a
+longdesc key-value interface to \newtheorem; a \listoftheorems command;
+longdesc hyperref and autoref compatibility; a mechanism for restating
+longdesc entire theorems in a single macro call.
docfiles size=75
texmf-dist/doc/latex/thmtools/COPYING
texmf-dist/doc/latex/thmtools/README details="Readme"
@@ -162093,9 +176803,9 @@ runfiles size=23
texmf-dist/tex/latex/thmtools/thmtools.sty
texmf-dist/tex/latex/thmtools/unique.sty
catalogue-ctan /macros/latex/exptl/thmtools
-catalogue-date 2012-05-08 15:13:49 +0200
-catalogue-license lppl
-catalogue-version 63
+catalogue-date 2014-04-21 21:11:50 +0200
+catalogue-license lppl1.3
+catalogue-version 66
name threadcol
category Package
@@ -162120,7 +176830,7 @@ srcfiles size=28
runfiles size=1
texmf-dist/tex/latex/threadcol/threadcol.sty
catalogue-ctan /macros/latex/contrib/threadcol
-catalogue-date 2013-01-08 10:49:23 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.0
@@ -162139,7 +176849,7 @@ docfiles size=32
runfiles size=2
texmf-dist/metapost/threeddice/threeddice.mp
catalogue-ctan /graphics/metapost/contrib/macros/threeddice
-catalogue-date 2012-04-27 11:57:13 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.0
@@ -162166,20 +176876,20 @@ catalogue-license other-free
name threeparttablex
category Package
-revision 30085
+revision 34206
shortdesc Notes in longtables.
longdesc The package provides the functionality of the threeparttable
longdesc package to tables created using the longtable package.
-docfiles size=18
+docfiles size=19
texmf-dist/doc/latex/threeparttablex/README details="Readme"
texmf-dist/doc/latex/threeparttablex/threeparttablex.pdf details="Package documentation"
texmf-dist/doc/latex/threeparttablex/threeparttablex.tex
runfiles size=2
texmf-dist/tex/latex/threeparttablex/threeparttablex.sty
catalogue-ctan /macros/latex/contrib/threeparttablex
-catalogue-date 2013-04-21 12:55:17 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
-catalogue-version 0.25
+catalogue-version 0.3
name thumb
category Package
@@ -162307,13 +177017,6 @@ shortdesc i386-solaris files of thumbpdf
binfiles arch=i386-solaris size=1
bin/i386-solaris/thumbpdf
-name thumbpdf.mips-irix
-category Package
-revision 29949
-shortdesc mips-irix files of thumbpdf
-binfiles arch=mips-irix size=1
- bin/mips-irix/thumbpdf
-
name thumbpdf.mipsel-linux
category Package
revision 29946
@@ -162349,6 +177052,13 @@ shortdesc win32 files of thumbpdf
binfiles arch=win32 size=1
bin/win32/thumbpdf.exe
+name thumbpdf.x86_64-cygwin
+category Package
+revision 33557
+shortdesc x86_64-cygwin files of thumbpdf
+binfiles arch=x86_64-cygwin size=1
+ bin/x86_64-cygwin/thumbpdf
+
name thumbpdf.x86_64-darwin
category Package
revision 18441
@@ -162372,7 +177082,7 @@ binfiles arch=x86_64-solaris size=1
name thumbs
category Package
-revision 25506
+revision 33134
shortdesc Create thumb indexes.
longdesc The package puts running, customizable thumb marks in the outer
longdesc margin, moving downward as the chapter number (or whatever
@@ -162383,21 +177093,21 @@ longdesc the object/thumb mark first appears, and the thumb mark itself
longdesc at its correct position. The thumb marks are useful for large
longdesc documents (such as reference guides, anthologies, etc.), where
longdesc a quick and easy way to find (for example) a chapter is needed.
-docfiles size=175
+docfiles size=182
texmf-dist/doc/latex/thumbs/README details="Readme"
texmf-dist/doc/latex/thumbs/thumbs-example.pdf details="Package examples"
texmf-dist/doc/latex/thumbs/thumbs-example.tex
texmf-dist/doc/latex/thumbs/thumbs.pdf details="Package documentation"
-srcfiles size=38
+srcfiles size=41
texmf-dist/source/latex/thumbs/thumbs.drv
texmf-dist/source/latex/thumbs/thumbs.dtx
texmf-dist/source/latex/thumbs/thumbs.ins
-runfiles size=13
+runfiles size=14
texmf-dist/tex/latex/thumbs/thumbs.sty
catalogue-ctan /macros/latex/contrib/thumbs
-catalogue-date 2012-04-27 12:20:53 +0200
+catalogue-date 2014-03-12 00:15:37 +0100
catalogue-license lppl1.3
-catalogue-version 1.0n
+catalogue-version 1.0q
name thumby
category Package
@@ -162420,7 +177130,7 @@ docfiles size=52
runfiles size=3
texmf-dist/tex/latex/thumby/thumby.sty
catalogue-ctan /macros/latex/contrib/thumby
-catalogue-date 2012-04-27 17:21:29 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license gpl3
catalogue-version 0.1
@@ -162522,165 +177232,165 @@ catalogue-version 0.4b
name tie
category TLCore
-revision 29764
+revision 33736
shortdesc Allow multiple web change files.
longdesc Tie was originally developed to allow web programmers to apply
longdesc more than one change file to their source. The program may also
-longdesc be used to create a new version of a web file that incorporates
-longdesc existing changes.
+longdesc be used to create a new version of a .web file that
+longdesc incorporates existing changes.
depend kpathsea
depend tie.ARCH
docfiles size=3
texmf-dist/doc/man/man1/tie.1
texmf-dist/doc/man/man1/tie.man1.pdf
catalogue-ctan /web/tie
-catalogue-date 2012-04-27 12:20:53 +0200
+catalogue-date 2014-01-03 12:10:34 +0100
catalogue-license other-free
catalogue-version 2.4
name tie.alpha-linux
category TLCore
-revision 29891
+revision 33553
shortdesc alpha-linux files of tie
binfiles arch=alpha-linux size=25
bin/alpha-linux/tie
name tie.amd64-freebsd
category TLCore
-revision 29874
+revision 33488
shortdesc amd64-freebsd files of tie
binfiles arch=amd64-freebsd size=19
bin/amd64-freebsd/tie
name tie.amd64-kfreebsd
category TLCore
-revision 30655
+revision 33864
shortdesc amd64-kfreebsd files of tie
binfiles arch=amd64-kfreebsd size=19
bin/amd64-kfreebsd/tie
name tie.amd64-netbsd
category TLCore
-revision 30660
+revision 33726
shortdesc amd64-netbsd files of tie
binfiles arch=amd64-netbsd size=18
bin/amd64-netbsd/tie
name tie.armel-linux
category TLCore
-revision 29888
+revision 33916
shortdesc armel-linux files of tie
binfiles arch=armel-linux size=17
bin/armel-linux/tie
name tie.armhf-linux
category TLCore
-revision 30443
+revision 34125
shortdesc armhf-linux files of tie
binfiles arch=armhf-linux size=16
bin/armhf-linux/tie
name tie.i386-cygwin
category TLCore
-revision 30526
+revision 34161
shortdesc i386-cygwin files of tie
-binfiles arch=i386-cygwin size=17
+binfiles arch=i386-cygwin size=20
bin/i386-cygwin/tie.exe
name tie.i386-freebsd
category TLCore
-revision 29874
+revision 33488
shortdesc i386-freebsd files of tie
binfiles arch=i386-freebsd size=17
bin/i386-freebsd/tie
name tie.i386-kfreebsd
category TLCore
-revision 30440
+revision 33864
shortdesc i386-kfreebsd files of tie
binfiles arch=i386-kfreebsd size=19
bin/i386-kfreebsd/tie
name tie.i386-linux
category TLCore
-revision 30088
+revision 33479
shortdesc i386-linux files of tie
-binfiles arch=i386-linux size=19
+binfiles arch=i386-linux size=20
bin/i386-linux/tie
name tie.i386-netbsd
category TLCore
-revision 30191
+revision 33562
shortdesc i386-netbsd files of tie
binfiles arch=i386-netbsd size=17
bin/i386-netbsd/tie
name tie.i386-solaris
category TLCore
-revision 30112
+revision 34203
shortdesc i386-solaris files of tie
binfiles arch=i386-solaris size=21
bin/i386-solaris/tie
-name tie.mips-irix
-category TLCore
-revision 30131
-shortdesc mips-irix files of tie
-binfiles arch=mips-irix size=40
- bin/mips-irix/tie
-
name tie.mipsel-linux
category TLCore
-revision 29995
+revision 33811
shortdesc mipsel-linux files of tie
-binfiles arch=mipsel-linux size=23
+binfiles arch=mipsel-linux size=19
bin/mipsel-linux/tie
name tie.powerpc-linux
category TLCore
-revision 30114
+revision 33889
shortdesc powerpc-linux files of tie
-binfiles arch=powerpc-linux size=19
+binfiles arch=powerpc-linux size=18
bin/powerpc-linux/tie
name tie.sparc-solaris
category TLCore
-revision 29877
+revision 33871
shortdesc sparc-solaris files of tie
binfiles arch=sparc-solaris size=19
bin/sparc-solaris/tie
name tie.universal-darwin
category TLCore
-revision 30764
+revision 34201
shortdesc universal-darwin files of tie
binfiles arch=universal-darwin size=39
bin/universal-darwin/tie
name tie.win32
category TLCore
-revision 29816
+revision 33897
shortdesc win32 files of tie
-binfiles arch=win32 size=2
+binfiles arch=win32 size=3
bin/win32/tie.exe
+name tie.x86_64-cygwin
+category TLCore
+revision 34161
+shortdesc x86_64-cygwin files of tie
+binfiles arch=x86_64-cygwin size=19
+ bin/x86_64-cygwin/tie.exe
+
name tie.x86_64-darwin
category TLCore
-revision 29879
+revision 34201
shortdesc x86_64-darwin files of tie
binfiles arch=x86_64-darwin size=21
bin/x86_64-darwin/tie
name tie.x86_64-linux
category TLCore
-revision 30204
+revision 33723
shortdesc x86_64-linux files of tie
binfiles arch=x86_64-linux size=19
bin/x86_64-linux/tie
name tie.x86_64-solaris
category TLCore
-revision 30112
+revision 34203
shortdesc x86_64-solaris files of tie
binfiles arch=x86_64-solaris size=25
bin/x86_64-solaris/tie
@@ -162709,7 +177419,7 @@ docfiles size=139
runfiles size=8
texmf-dist/tex/latex/tikz-3dplot/tikz-3dplot.sty
catalogue-ctan /graphics/pgf/contrib/tikz-3dplot
-catalogue-date 2012-04-27 12:20:53 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
name tikz-bayesnet
@@ -162730,13 +177440,13 @@ docfiles size=21
texmf-dist/doc/latex/tikz-bayesnet/model_pca2.tex
texmf-dist/doc/latex/tikz-bayesnet/tikzlibrarybayesnet.code.tex
catalogue-ctan /graphics/pgf/contrib/tikz-bayesnet
-catalogue-date 2013-04-30 11:14:16 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 0.1
name tikz-cd
category Package
-revision 28695
+revision 33126
shortdesc Create commutative diagrams with TikZ
longdesc The general-purpose drawing package TiKZ can be used to typeset
longdesc commutative diagrams and other kinds of mathematical pictures,
@@ -162746,16 +177456,17 @@ longdesc providing a convenient set of macros and reasonable default
longdesc settings. This package also includes an arrow tip library that
longdesc match closely the arrows present in the Computer Modern
longdesc typeface.
-docfiles size=70
+docfiles size=99
texmf-dist/doc/latex/tikz-cd/README details="Readme"
texmf-dist/doc/latex/tikz-cd/tikz-cd-doc.pdf details="Package documentation"
texmf-dist/doc/latex/tikz-cd/tikz-cd-doc.tex
runfiles size=7
+ texmf-dist/tex/generic/tikz-cd/tikzlibrarycd.code.tex
texmf-dist/tex/latex/tikz-cd/tikz-cd.sty
catalogue-ctan /graphics/pgf/contrib/tikz-cd
-catalogue-date 2013-01-02 18:01:12 +0100
-catalogue-license lppl
-catalogue-version 0.3c
+catalogue-date 2014-03-08 06:15:50 +0100
+catalogue-license gpl3
+catalogue-version 0.9b
name tikz-dependency
category Package
@@ -162780,7 +177491,7 @@ docfiles size=225
runfiles size=3
texmf-dist/tex/latex/tikz-dependency/tikz-dependency.sty
catalogue-ctan /graphics/pgf/contrib/tikz-dependency
-catalogue-date 2012-07-10 17:27:46 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.1
@@ -162796,10 +177507,26 @@ docfiles size=38
runfiles size=4
texmf-dist/tex/latex/tikz-inet/tikz-inet.sty
catalogue-ctan /graphics/pgf/contrib/tikz-inet
-catalogue-date 2012-07-10 17:27:46 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 0.1
+name tikz-opm
+category Package
+revision 32769
+shortdesc Typeset OPM diagrams.
+longdesc Typeset OPM (Object-Process Methodology) diagrams using LaTeX
+longdesc and pgf/TikZ.
+docfiles size=20
+ texmf-dist/doc/latex/tikz-opm/README details="Readme"
+ texmf-dist/doc/latex/tikz-opm/tikz-opm.pdf details="Package documentation"
+runfiles size=2
+ texmf-dist/tex/latex/tikz-opm/tikz-opm.sty
+catalogue-ctan /graphics/pgf/contrib/tikz-opm
+catalogue-date 2014-02-26 23:03:13 +0100
+catalogue-license lppl1.3
+catalogue-version 0.1.1
+
name tikz-qtree
category Package
revision 26108
@@ -162824,7 +177551,7 @@ runfiles size=11
texmf-dist/tex/latex/tikz-qtree/tikz-qtree.sty
texmf-dist/tex/latex/tikz-qtree/tikz-qtree.tex
catalogue-ctan /graphics/pgf/contrib/tikz-qtree
-catalogue-date 2012-04-23 11:23:52 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license gpl
catalogue-version 1.2
@@ -162859,7 +177586,7 @@ runfiles size=39
texmf-dist/tex/latex/tikz-timing/tikz-timing-overlays.sty
texmf-dist/tex/latex/tikz-timing/tikz-timing.sty
catalogue-ctan /graphics/pgf/contrib/tikz-timing
-catalogue-date 2012-07-24 16:30:52 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 0.7d
@@ -162878,7 +177605,7 @@ srcfiles size=3
runfiles size=1
texmf-dist/tex/latex/tikzinclude/tikzinclude.sty
catalogue-ctan /graphics/pgf/contrib/tikzinclude
-catalogue-date 2013-01-08 10:49:23 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.0
@@ -162899,7 +177626,7 @@ runfiles size=3
texmf-dist/tex/latex/tikzmark/tikzlibrarytikzmark.code.tex
texmf-dist/tex/latex/tikzmark/tikzmarklibrarylistings.code.tex
catalogue-ctan /graphics/pgf/contrib/tikzmark
-catalogue-date 2013-04-23 11:12:19 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.0
@@ -162915,13 +177642,13 @@ docfiles size=52
runfiles size=4
texmf-dist/tex/latex/tikzorbital/tikzorbital.sty
catalogue-ctan /graphics/pgf/contrib/tikzorbital
-catalogue-date 2012-12-21 17:35:00 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
name tikzpagenodes
category Package
revision 27723
-shortdesc Create commutative diagrams with TikZ
+shortdesc A single TikZ node for the whole page.
longdesc The package provides special PGF/TikZ nodes for the text,
longdesc marginpar, footer and header area of the current page. They are
longdesc inspired by the 'current page' node defined by PGF/TikZ itself.
@@ -162934,7 +177661,7 @@ srcfiles size=5
runfiles size=2
texmf-dist/tex/latex/tikzpagenodes/tikzpagenodes.sty
catalogue-ctan /graphics/pgf/contrib/tikzpagenodes
-catalogue-date 2012-09-27 12:42:10 +0200
+catalogue-date 2014-01-09 12:53:44 +0100
catalogue-license lppl
catalogue-version 1.1
@@ -162956,37 +177683,40 @@ srcfiles size=4
runfiles size=2
texmf-dist/tex/latex/tikzpfeile/tikzpfeile.sty
catalogue-ctan /graphics/pgf/contrib/tikzpfeile
-catalogue-date 2012-04-05 11:02:37 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.0
name tikzposter
category Package
-revision 29942
+revision 32732
shortdesc Create scientific posters using TikZ.
longdesc A document class provides a simple way of using TikZ for
longdesc generating posters. Several formatting options are available,
longdesc and spacing and layout of the poster is to a large extent
longdesc automated.
-docfiles size=72
+docfiles size=77
texmf-dist/doc/latex/tikzposter/README details="Readme"
- texmf-dist/doc/latex/tikzposter/logo.png
- texmf-dist/doc/latex/tikzposter/logoL.png
- texmf-dist/doc/latex/tikzposter/logoR.png
texmf-dist/doc/latex/tikzposter/tikzposter-example.tex
texmf-dist/doc/latex/tikzposter/tikzposter-template.tex
texmf-dist/doc/latex/tikzposter/tikzposter.pdf details="Package documentation"
-srcfiles size=17
+srcfiles size=36
texmf-dist/source/latex/tikzposter/tikzposter.dtx
texmf-dist/source/latex/tikzposter/tikzposter.ins
-runfiles size=10
- texmf-dist/tex/latex/tikzposter/tikzposter-colorthemes.tex
- texmf-dist/tex/latex/tikzposter/tikzposter-layoutstyles.tex
+runfiles size=25
texmf-dist/tex/latex/tikzposter/tikzposter.cls
+ texmf-dist/tex/latex/tikzposter/tikzposterBackgroundstyles.tex
+ texmf-dist/tex/latex/tikzposter/tikzposterBlockstyles.tex
+ texmf-dist/tex/latex/tikzposter/tikzposterColorpalettes.tex
+ texmf-dist/tex/latex/tikzposter/tikzposterColorstyles.tex
+ texmf-dist/tex/latex/tikzposter/tikzposterInnerblockstyles.tex
+ texmf-dist/tex/latex/tikzposter/tikzposterLayoutthemes.tex
+ texmf-dist/tex/latex/tikzposter/tikzposterNotestyles.tex
+ texmf-dist/tex/latex/tikzposter/tikzposterTitlestyles.tex
catalogue-ctan /graphics/pgf/contrib/tikzposter
-catalogue-date 2013-04-04 11:28:51 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.2
-catalogue-version 1.1
+catalogue-version 2.0
name tikzscale
category Package
@@ -163023,32 +177753,32 @@ srcfiles size=22
runfiles size=5
texmf-dist/tex/latex/tikzscale/tikzscale.sty
catalogue-ctan /graphics/pgf/contrib/tikzscale
-catalogue-date 2013-05-22 10:58:45 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 0.2.6
name tikzsymbols
category Package
-revision 30022
+revision 31297
shortdesc Some symbols created using TikZ.
longdesc The package provides various emoticons, cooking symbols and
longdesc trees.
-docfiles size=155
+docfiles size=201
texmf-dist/doc/latex/tikzsymbols/README details="Readme"
texmf-dist/doc/latex/tikzsymbols/tikzsymbols.pdf details="Package documentation"
-srcfiles size=24
+srcfiles size=33
texmf-dist/source/latex/tikzsymbols/tikzsymbols.dtx
texmf-dist/source/latex/tikzsymbols/tikzsymbols.ins
-runfiles size=15
+runfiles size=19
texmf-dist/tex/latex/tikzsymbols/tikzsymbols.sty
catalogue-ctan /graphics/pgf/contrib/tikzsymbols
-catalogue-date 2013-04-18 13:35:59 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
-catalogue-version 2.5
+catalogue-version 3.0
name times
category Package
-revision 28614
+revision 31835
catalogue urw-base35
shortdesc URW "Base 35" font pack for LaTeX.
longdesc A set of fonts for use as "drop-in" replacements for Adobe's
@@ -163062,6 +177792,7 @@ longdesc Symbol); - URW Bookman; - URW Chancery L Medium Italic
longdesc (substituting for Adobe's Zapf Chancery); - URW Gothic L Book
longdesc (substituting for Adobe's Avant Garde); and - URW Palladio L
longdesc (substituting for Adobe's Palatino).
+execute addMap utm.map
runfiles size=455
texmf-dist/dvips/times/config.utm
texmf-dist/fonts/afm/adobe/times/ptmb8a.afm
@@ -163291,6 +178022,25 @@ catalogue-ctan /macros/plain/contrib/timetable/timetable.tex
catalogue-date 2012-07-10 17:27:46 +0200
catalogue-license lppl
+name timing-diagrams
+category Package
+revision 31491
+shortdesc Draw timing diagrams.
+longdesc The package provides commands to draw and annotate various
+longdesc kinds of timing diagrams, using Tikz. Documentation is sparse,
+longdesc but the source and the examples file should be of some use.
+docfiles size=30
+ texmf-dist/doc/latex/timing-diagrams/Makefile
+ texmf-dist/doc/latex/timing-diagrams/README details="Readme"
+ texmf-dist/doc/latex/timing-diagrams/diagrams-examples.pdf details="Examples of use"
+ texmf-dist/doc/latex/timing-diagrams/diagrams-examples.tex
+ texmf-dist/doc/latex/timing-diagrams/version.txt
+runfiles size=2
+ texmf-dist/tex/latex/timing-diagrams/timing-diagrams.sty
+catalogue-ctan /graphics/pgf/contrib/timing-diagrams
+catalogue-date 2014-04-27 13:42:31 +0200
+catalogue-license lppl1.3
+
name tipa
category Package
revision 29349
@@ -163596,13 +178346,13 @@ docfiles size=986
texmf-dist/doc/latex/tipa-de/tipaman3-de.tex
texmf-dist/doc/latex/tipa-de/tipaman4-de.tex
catalogue-ctan /info/translations/tipa/de
-catalogue-date 2012-02-22 12:31:25 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.3
name titlecaps
category Package
-revision 29902
+revision 30911
shortdesc Setting rich-text input into Titling Caps.
longdesc The package is intended for setting rich text into titling
longdesc capitals (in which the first character of words are
@@ -163619,9 +178369,9 @@ docfiles size=74
runfiles size=4
texmf-dist/tex/latex/titlecaps/titlecaps.sty
catalogue-ctan /macros/latex/contrib/titlecaps
-catalogue-date 2013-04-16 11:30:34 +0200
+catalogue-date 2013-06-24 13:30:48 +0200
catalogue-license lppl
-catalogue-version 1.0
+catalogue-version 1.1
name titlefoot
category Package
@@ -163650,7 +178400,7 @@ docfiles size=270
texmf-dist/doc/latex/titlepages/titlepages.pdf details="The document itself"
texmf-dist/doc/latex/titlepages/titlepages.tex
catalogue-ctan /info/latex-samples/TitlePages
-catalogue-date 2012-07-24 20:02:06 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 2010-07-14
@@ -163671,7 +178421,7 @@ docfiles size=17
runfiles size=1
texmf-dist/tex/latex/titlepic/titlepic.sty
catalogue-ctan /macros/latex/contrib/titlepic
-catalogue-date 2012-07-24 20:02:06 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license pd
catalogue-version 1.1
@@ -163966,7 +178716,7 @@ runfiles size=24
texmf-dist/tex/latex/tkz-berge/tkz-arith.sty
texmf-dist/tex/latex/tkz-berge/tkz-berge.sty
catalogue-ctan /macros/latex/contrib/tkz/tkz-berge
-catalogue-date 2012-06-24 19:27:06 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.00c
@@ -163983,7 +178733,7 @@ runfiles size=9
texmf-dist/tex/latex/tkz-doc/tkz-doc.cls
texmf-dist/tex/latex/tkz-doc/tkzexample.sty
catalogue-ctan /macros/latex/contrib/tkz-doc
-catalogue-date 2012-06-25 01:24:05 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.1c
@@ -164194,7 +178944,7 @@ docfiles size=112
runfiles size=12
texmf-dist/tex/latex/tkz-graph/tkz-graph.sty
catalogue-ctan /macros/latex/contrib/tkz/tkz-graph
-catalogue-date 2012-06-24 19:27:06 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.00
@@ -164219,7 +178969,7 @@ docfiles size=50
runfiles size=3
texmf-dist/tex/latex/tkz-kiviat/tkz-kiviat.sty
catalogue-ctan /macros/latex/contrib/tkz/tkz-kiviat
-catalogue-date 2012-06-24 19:27:06 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 0.1
@@ -164246,7 +178996,7 @@ docfiles size=107
runfiles size=3
texmf-dist/tex/latex/tkz-linknodes/tkz-linknodes.sty
catalogue-ctan /macros/latex/contrib/tkz/tkz-linknodes
-catalogue-date 2012-06-24 19:27:06 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.0c
@@ -164267,7 +179017,7 @@ docfiles size=84
runfiles size=6
texmf-dist/tex/latex/tkz-orm/tkz-orm.sty
catalogue-ctan /graphics/pgf/contrib/tkz-orm
-catalogue-date 2012-06-24 19:27:06 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license gpl
catalogue-version 0.1
@@ -164301,7 +179051,7 @@ docfiles size=150
runfiles size=12
texmf-dist/tex/latex/tkz-tab/tkz-tab.sty
catalogue-ctan /macros/latex/contrib/tkz/tkz-tab
-catalogue-date 2012-04-10 17:31:04 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.3c
@@ -165189,7 +179939,7 @@ catalogue-license lppl
name tlgs.win32
category TLCore
-revision 30483
+revision 33453
catalogue ghostscript
shortdesc Freely available PostScript interpreter.
longdesc Ghostscript is a freely available PostScript interpreter which
@@ -165198,7 +179948,7 @@ longdesc complement to a TeX installation, used in many utilities,
longdesc including PostScript/PDF viewers such as gv and GSview.
longdesc Ghostscript is no longer held on CTAN: please see the home page
longdesc for downloads.
-binfiles arch=win32 size=3882
+binfiles arch=win32 size=3919
bin/win32/eps2eps.exe
bin/win32/pdf2dsc.exe
bin/win32/pdfopt.exe
@@ -165334,6 +180084,7 @@ binfiles arch=win32 size=3882
tlpkg/tlgs/lib/cat.ps
tlpkg/tlgs/lib/cid2code.ps
tlpkg/tlgs/lib/cidfmap
+ tlpkg/tlgs/lib/cidfmap.TeXLive
tlpkg/tlgs/lib/decrypt.ps
tlpkg/tlgs/lib/docie.ps
tlpkg/tlgs/lib/dumphint.ps
@@ -165411,22 +180162,24 @@ catalogue-license collection
name tlperl.win32
category TLCore
-revision 30567
+revision 33854
shortdesc Internal Perl for Windows.
longdesc TeX Live includes Perl for Windows, but it is intended only for
longdesc internal use by TeX Live programs, and should not be used as a
longdesc general system program. Installing your own Perl for that.
longdesc See http://perl.org.
-runfiles size=13043
+runfiles size=11049
tlpkg/tlperl/README.TEXLIVE
tlpkg/tlperl/bin/a2p.exe
- tlpkg/tlperl/bin/libgcc_s_dw2-1.dll
+ tlpkg/tlperl/bin/libgcc_s_sjlj-1.dll
+ tlpkg/tlperl/bin/libpng16-16_.dll
tlpkg/tlperl/bin/libstdc++-6.dll
tlpkg/tlperl/bin/perl.exe
- tlpkg/tlperl/bin/perl5.16.2.exe
- tlpkg/tlperl/bin/perl516.dll
+ tlpkg/tlperl/bin/perl5.18.2.exe
+ tlpkg/tlperl/bin/perl518.dll
tlpkg/tlperl/bin/perlglob.exe
tlpkg/tlperl/bin/wperl.exe
+ tlpkg/tlperl/bin/zlib1_.dll
tlpkg/tlperl/lib/.packlist
tlpkg/tlperl/lib/AnyDBM_File.pm
tlpkg/tlperl/lib/App/Cpan.pm
@@ -165460,7 +180213,6 @@ runfiles size=13043
tlpkg/tlperl/lib/CGI/Push.pm
tlpkg/tlperl/lib/CGI/Switch.pm
tlpkg/tlperl/lib/CGI/Util.pm
- tlpkg/tlperl/lib/CORE.pod
tlpkg/tlperl/lib/CORE/EXTERN.h
tlpkg/tlperl/lib/CORE/INTERN.h
tlpkg/tlperl/lib/CORE/XSUB.h
@@ -165483,11 +180235,13 @@ runfiles size=13043
tlpkg/tlperl/lib/CORE/gv.h
tlpkg/tlperl/lib/CORE/handy.h
tlpkg/tlperl/lib/CORE/hv.h
+ tlpkg/tlperl/lib/CORE/hv_func.h
+ tlpkg/tlperl/lib/CORE/inline.h
tlpkg/tlperl/lib/CORE/intrpvar.h
tlpkg/tlperl/lib/CORE/iperlsys.h
tlpkg/tlperl/lib/CORE/keywords.h
tlpkg/tlperl/lib/CORE/l1_char_class_tab.h
- tlpkg/tlperl/lib/CORE/libperl516.a
+ tlpkg/tlperl/lib/CORE/libperl518.a
tlpkg/tlperl/lib/CORE/malloc_ctl.h
tlpkg/tlperl/lib/CORE/metaconfig.h
tlpkg/tlperl/lib/CORE/mg.h
@@ -165529,6 +180283,7 @@ runfiles size=13043
tlpkg/tlperl/lib/CORE/time64.h
tlpkg/tlperl/lib/CORE/time64_config.h
tlpkg/tlperl/lib/CORE/uconfig.h
+ tlpkg/tlperl/lib/CORE/unicode_constants.h
tlpkg/tlperl/lib/CORE/unixish.h
tlpkg/tlperl/lib/CORE/utf8.h
tlpkg/tlperl/lib/CORE/utfebcdic.h
@@ -165543,7 +180298,6 @@ runfiles size=13043
tlpkg/tlperl/lib/CORE/win32thread.h
tlpkg/tlperl/lib/CORE/wince.h
tlpkg/tlperl/lib/CPAN.pm
- tlpkg/tlperl/lib/CPAN/API/HOWTO.pod
tlpkg/tlperl/lib/CPAN/Author.pm
tlpkg/tlperl/lib/CPAN/Bundle.pm
tlpkg/tlperl/lib/CPAN/CacheMgr.pm
@@ -165591,6 +180345,7 @@ runfiles size=13043
tlpkg/tlperl/lib/CPANPLUS/Backend.pm
tlpkg/tlperl/lib/CPANPLUS/Backend/RV.pm
tlpkg/tlperl/lib/CPANPLUS/Config.pm
+ tlpkg/tlperl/lib/CPANPLUS/Config/HomeEnv.pm
tlpkg/tlperl/lib/CPANPLUS/Configure.pm
tlpkg/tlperl/lib/CPANPLUS/Configure/Setup.pm
tlpkg/tlperl/lib/CPANPLUS/Dist.pm
@@ -165601,8 +180356,6 @@ runfiles size=13043
tlpkg/tlperl/lib/CPANPLUS/Dist/MM.pm
tlpkg/tlperl/lib/CPANPLUS/Dist/Sample.pm
tlpkg/tlperl/lib/CPANPLUS/Error.pm
- tlpkg/tlperl/lib/CPANPLUS/FAQ.pod
- tlpkg/tlperl/lib/CPANPLUS/Hacking.pod
tlpkg/tlperl/lib/CPANPLUS/Internals.pm
tlpkg/tlperl/lib/CPANPLUS/Internals/Constants.pm
tlpkg/tlperl/lib/CPANPLUS/Internals/Constants/Report.pm
@@ -165627,7 +180380,6 @@ runfiles size=13043
tlpkg/tlperl/lib/CPANPLUS/Shell/Classic.pm
tlpkg/tlperl/lib/CPANPLUS/Shell/Default.pm
tlpkg/tlperl/lib/CPANPLUS/Shell/Default/Plugins/CustomSource.pm
- tlpkg/tlperl/lib/CPANPLUS/Shell/Default/Plugins/HOWTO.pod
tlpkg/tlperl/lib/CPANPLUS/Shell/Default/Plugins/Remote.pm
tlpkg/tlperl/lib/CPANPLUS/Shell/Default/Plugins/Source.pm
tlpkg/tlperl/lib/Carp.pm
@@ -165638,8 +180390,8 @@ runfiles size=13043
tlpkg/tlperl/lib/Compress/Zlib.pm
tlpkg/tlperl/lib/Config.pm
tlpkg/tlperl/lib/Config.pm.orig
- tlpkg/tlperl/lib/Config.pod
tlpkg/tlperl/lib/Config/Extensions.pm
+ tlpkg/tlperl/lib/Config/Perl/V.pm
tlpkg/tlperl/lib/Config_git.pl
tlpkg/tlperl/lib/Config_heavy.pl
tlpkg/tlperl/lib/Config_heavy.pl.orig
@@ -165689,9 +180441,7 @@ runfiles size=13043
tlpkg/tlperl/lib/Encode/MIME/Header/ISO_2022_JP.pm
tlpkg/tlperl/lib/Encode/MIME/Name.pm
tlpkg/tlperl/lib/Encode/Makefile_PL.e2x
- tlpkg/tlperl/lib/Encode/PerlIO.pod
tlpkg/tlperl/lib/Encode/README.e2x
- tlpkg/tlperl/lib/Encode/Supported.pod
tlpkg/tlperl/lib/Encode/Symbol.pm
tlpkg/tlperl/lib/Encode/TW.pm
tlpkg/tlperl/lib/Encode/Unicode.pm
@@ -165750,15 +180500,12 @@ runfiles size=13043
tlpkg/tlperl/lib/ExtUtils/MY.pm
tlpkg/tlperl/lib/ExtUtils/MakeMaker.pm
tlpkg/tlperl/lib/ExtUtils/MakeMaker/Config.pm
- tlpkg/tlperl/lib/ExtUtils/MakeMaker/FAQ.pod
- tlpkg/tlperl/lib/ExtUtils/MakeMaker/Tutorial.pod
tlpkg/tlperl/lib/ExtUtils/Manifest.pm
tlpkg/tlperl/lib/ExtUtils/Miniperl.pm
tlpkg/tlperl/lib/ExtUtils/Mkbootstrap.pm
tlpkg/tlperl/lib/ExtUtils/Mksymlists.pm
tlpkg/tlperl/lib/ExtUtils/Packlist.pm
tlpkg/tlperl/lib/ExtUtils/ParseXS.pm
- tlpkg/tlperl/lib/ExtUtils/ParseXS.pod
tlpkg/tlperl/lib/ExtUtils/ParseXS/Constants.pm
tlpkg/tlperl/lib/ExtUtils/ParseXS/CountLines.pm
tlpkg/tlperl/lib/ExtUtils/ParseXS/Utilities.pm
@@ -165840,7 +180587,6 @@ runfiles size=13043
tlpkg/tlperl/lib/IO/Compress/Base/Common.pm
tlpkg/tlperl/lib/IO/Compress/Bzip2.pm
tlpkg/tlperl/lib/IO/Compress/Deflate.pm
- tlpkg/tlperl/lib/IO/Compress/FAQ.pod
tlpkg/tlperl/lib/IO/Compress/Gzip.pm
tlpkg/tlperl/lib/IO/Compress/Gzip/Constants.pm
tlpkg/tlperl/lib/IO/Compress/RawDeflate.pm
@@ -165850,6 +180596,7 @@ runfiles size=13043
tlpkg/tlperl/lib/IO/Compress/Zlib/Extra.pm
tlpkg/tlperl/lib/IO/Dir.pm
tlpkg/tlperl/lib/IO/File.pm
+ tlpkg/tlperl/lib/IO/HTML.pm
tlpkg/tlperl/lib/IO/Handle.pm
tlpkg/tlperl/lib/IO/Pipe.pm
tlpkg/tlperl/lib/IO/Poll.pm
@@ -165893,6 +180640,7 @@ runfiles size=13043
tlpkg/tlperl/lib/LWP/Protocol/ftp.pm
tlpkg/tlperl/lib/LWP/Protocol/gopher.pm
tlpkg/tlperl/lib/LWP/Protocol/http.pm
+ tlpkg/tlperl/lib/LWP/Protocol/https.pm
tlpkg/tlperl/lib/LWP/Protocol/loopback.pm
tlpkg/tlperl/lib/LWP/Protocol/mailto.pm
tlpkg/tlperl/lib/LWP/Protocol/nntp.pm
@@ -165904,54 +180652,36 @@ runfiles size=13043
tlpkg/tlperl/lib/List/Util.pm
tlpkg/tlperl/lib/List/Util/XS.pm
tlpkg/tlperl/lib/Locale/Codes.pm
- tlpkg/tlperl/lib/Locale/Codes.pod
- tlpkg/tlperl/lib/Locale/Codes/API.pod
- tlpkg/tlperl/lib/Locale/Codes/Changes.pod
tlpkg/tlperl/lib/Locale/Codes/Constants.pm
- tlpkg/tlperl/lib/Locale/Codes/Constants.pod
tlpkg/tlperl/lib/Locale/Codes/Country.pm
- tlpkg/tlperl/lib/Locale/Codes/Country.pod
tlpkg/tlperl/lib/Locale/Codes/Country_Codes.pm
tlpkg/tlperl/lib/Locale/Codes/Country_Retired.pm
tlpkg/tlperl/lib/Locale/Codes/Currency.pm
- tlpkg/tlperl/lib/Locale/Codes/Currency.pod
tlpkg/tlperl/lib/Locale/Codes/Currency_Codes.pm
tlpkg/tlperl/lib/Locale/Codes/Currency_Retired.pm
tlpkg/tlperl/lib/Locale/Codes/LangExt.pm
- tlpkg/tlperl/lib/Locale/Codes/LangExt.pod
tlpkg/tlperl/lib/Locale/Codes/LangExt_Codes.pm
tlpkg/tlperl/lib/Locale/Codes/LangExt_Retired.pm
tlpkg/tlperl/lib/Locale/Codes/LangFam.pm
- tlpkg/tlperl/lib/Locale/Codes/LangFam.pod
tlpkg/tlperl/lib/Locale/Codes/LangFam_Codes.pm
tlpkg/tlperl/lib/Locale/Codes/LangFam_Retired.pm
tlpkg/tlperl/lib/Locale/Codes/LangVar.pm
- tlpkg/tlperl/lib/Locale/Codes/LangVar.pod
tlpkg/tlperl/lib/Locale/Codes/LangVar_Codes.pm
tlpkg/tlperl/lib/Locale/Codes/LangVar_Retired.pm
tlpkg/tlperl/lib/Locale/Codes/Language.pm
- tlpkg/tlperl/lib/Locale/Codes/Language.pod
tlpkg/tlperl/lib/Locale/Codes/Language_Codes.pm
tlpkg/tlperl/lib/Locale/Codes/Language_Retired.pm
tlpkg/tlperl/lib/Locale/Codes/Script.pm
- tlpkg/tlperl/lib/Locale/Codes/Script.pod
tlpkg/tlperl/lib/Locale/Codes/Script_Codes.pm
tlpkg/tlperl/lib/Locale/Codes/Script_Retired.pm
tlpkg/tlperl/lib/Locale/Country.pm
- tlpkg/tlperl/lib/Locale/Country.pod
tlpkg/tlperl/lib/Locale/Currency.pm
- tlpkg/tlperl/lib/Locale/Currency.pod
tlpkg/tlperl/lib/Locale/Language.pm
- tlpkg/tlperl/lib/Locale/Language.pod
tlpkg/tlperl/lib/Locale/Maketext.pm
- tlpkg/tlperl/lib/Locale/Maketext.pod
- tlpkg/tlperl/lib/Locale/Maketext/Cookbook.pod
tlpkg/tlperl/lib/Locale/Maketext/Guts.pm
tlpkg/tlperl/lib/Locale/Maketext/GutsLoader.pm
tlpkg/tlperl/lib/Locale/Maketext/Simple.pm
- tlpkg/tlperl/lib/Locale/Maketext/TPJ13.pod
tlpkg/tlperl/lib/Locale/Script.pm
- tlpkg/tlperl/lib/Locale/Script.pod
tlpkg/tlperl/lib/Log/Message.pm
tlpkg/tlperl/lib/Log/Message/Config.pm
tlpkg/tlperl/lib/Log/Message/Handlers.pm
@@ -165968,7 +180698,11 @@ runfiles size=13043
tlpkg/tlperl/lib/Math/BigInt/Trace.pm
tlpkg/tlperl/lib/Math/BigRat.pm
tlpkg/tlperl/lib/Math/Complex.pm
+ tlpkg/tlperl/lib/Math/Int64.pm
+ tlpkg/tlperl/lib/Math/Int64/die_on_overflow.pm
+ tlpkg/tlperl/lib/Math/Int64/native_if_available.pm
tlpkg/tlperl/lib/Math/Trig.pm
+ tlpkg/tlperl/lib/Math/UInt64.pm
tlpkg/tlperl/lib/Memoize.pm
tlpkg/tlperl/lib/Memoize/AnyDBM_File.pm
tlpkg/tlperl/lib/Memoize/Expire.pm
@@ -165978,10 +180712,7 @@ runfiles size=13043
tlpkg/tlperl/lib/Memoize/SDBM_File.pm
tlpkg/tlperl/lib/Memoize/Storable.pm
tlpkg/tlperl/lib/Module/Build.pm
- tlpkg/tlperl/lib/Module/Build/API.pod
- tlpkg/tlperl/lib/Module/Build/Authoring.pod
tlpkg/tlperl/lib/Module/Build/Base.pm
- tlpkg/tlperl/lib/Module/Build/Bundling.pod
tlpkg/tlperl/lib/Module/Build/Compat.pm
tlpkg/tlperl/lib/Module/Build/Config.pm
tlpkg/tlperl/lib/Module/Build/ConfigData.pm
@@ -166008,8 +180739,8 @@ runfiles size=13043
tlpkg/tlperl/lib/Module/Build/Version.pm
tlpkg/tlperl/lib/Module/Build/YAML.pm
tlpkg/tlperl/lib/Module/CoreList.pm
- tlpkg/tlperl/lib/Module/CoreList.pod
tlpkg/tlperl/lib/Module/CoreList/TieHashDelta.pm
+ tlpkg/tlperl/lib/Module/CoreList/Utils.pm
tlpkg/tlperl/lib/Module/Load.pm
tlpkg/tlperl/lib/Module/Load/Conditional.pm
tlpkg/tlperl/lib/Module/Loaded.pm
@@ -166037,15 +180768,14 @@ runfiles size=13043
tlpkg/tlperl/lib/Net/SMTP.pm
tlpkg/tlperl/lib/Net/Time.pm
tlpkg/tlperl/lib/Net/hostent.pm
- tlpkg/tlperl/lib/Net/libnetFAQ.pod
tlpkg/tlperl/lib/Net/netent.pm
tlpkg/tlperl/lib/Net/protoent.pm
tlpkg/tlperl/lib/Net/servent.pm
tlpkg/tlperl/lib/O.pm
+ tlpkg/tlperl/lib/OLE.pm
tlpkg/tlperl/lib/Object/Accessor.pm
tlpkg/tlperl/lib/Opcode.pm
tlpkg/tlperl/lib/POSIX.pm
- tlpkg/tlperl/lib/POSIX.pod
tlpkg/tlperl/lib/Package/Constants.pm
tlpkg/tlperl/lib/Params/Check.pm
tlpkg/tlperl/lib/Parse/CPAN/Meta.pm
@@ -166083,7 +180813,6 @@ runfiles size=13043
tlpkg/tlperl/lib/Pod/PlainText.pm
tlpkg/tlperl/lib/Pod/Select.pm
tlpkg/tlperl/lib/Pod/Simple.pm
- tlpkg/tlperl/lib/Pod/Simple.pod
tlpkg/tlperl/lib/Pod/Simple/BlackBox.pm
tlpkg/tlperl/lib/Pod/Simple/Checker.pm
tlpkg/tlperl/lib/Pod/Simple/Debug.pm
@@ -166103,7 +180832,6 @@ runfiles size=13043
tlpkg/tlperl/lib/Pod/Simple/RTF.pm
tlpkg/tlperl/lib/Pod/Simple/Search.pm
tlpkg/tlperl/lib/Pod/Simple/SimpleTree.pm
- tlpkg/tlperl/lib/Pod/Simple/Subclassing.pod
tlpkg/tlperl/lib/Pod/Simple/Text.pm
tlpkg/tlperl/lib/Pod/Simple/TextContent.pm
tlpkg/tlperl/lib/Pod/Simple/TiedOutFH.pm
@@ -166137,7 +180865,6 @@ runfiles size=13043
tlpkg/tlperl/lib/TAP/Formatter/File/Session.pm
tlpkg/tlperl/lib/TAP/Formatter/Session.pm
tlpkg/tlperl/lib/TAP/Harness.pm
- tlpkg/tlperl/lib/TAP/Harness/Beyond.pod
tlpkg/tlperl/lib/TAP/Object.pm
tlpkg/tlperl/lib/TAP/Parser.pm
tlpkg/tlperl/lib/TAP/Parser/Aggregator.pm
@@ -166185,7 +180912,6 @@ runfiles size=13043
tlpkg/tlperl/lib/Test/Harness.pm
tlpkg/tlperl/lib/Test/More.pm
tlpkg/tlperl/lib/Test/Simple.pm
- tlpkg/tlperl/lib/Test/Tutorial.pod
tlpkg/tlperl/lib/Text/Abbrev.pm
tlpkg/tlperl/lib/Text/Balanced.pm
tlpkg/tlperl/lib/Text/ParseWords.pm
@@ -166215,49 +180941,31 @@ runfiles size=13043
tlpkg/tlperl/lib/Time/localtime.pm
tlpkg/tlperl/lib/Time/tm.pm
tlpkg/tlperl/lib/Tk.pm
- tlpkg/tlperl/lib/Tk.pod
- tlpkg/tlperl/lib/Tk/804delta.pod
tlpkg/tlperl/lib/Tk/Adjuster.pm
- tlpkg/tlperl/lib/Tk/Adjuster.pod
tlpkg/tlperl/lib/Tk/After.pm
tlpkg/tlperl/lib/Tk/Animation.pm
- tlpkg/tlperl/lib/Tk/Animation.pod
tlpkg/tlperl/lib/Tk/Balloon.pm
- tlpkg/tlperl/lib/Tk/Balloon.pod
tlpkg/tlperl/lib/Tk/Bitmap.pm
- tlpkg/tlperl/lib/Tk/Bitmap.pod
tlpkg/tlperl/lib/Tk/BrowseEntry.pm
- tlpkg/tlperl/lib/Tk/BrowseEntry.pod
tlpkg/tlperl/lib/Tk/Button.pm
- tlpkg/tlperl/lib/Tk/Button.pod
tlpkg/tlperl/lib/Tk/Camel.xpm
tlpkg/tlperl/lib/Tk/Canvas.pm
- tlpkg/tlperl/lib/Tk/Canvas.pod
tlpkg/tlperl/lib/Tk/Checkbutton.pm
- tlpkg/tlperl/lib/Tk/Checkbutton.pod
tlpkg/tlperl/lib/Tk/Clipboard.pm
- tlpkg/tlperl/lib/Tk/Clipboard.pod
tlpkg/tlperl/lib/Tk/CmdLine.pm
- tlpkg/tlperl/lib/Tk/CmdLine.pod
+ tlpkg/tlperl/lib/Tk/ColorDialog.pm
tlpkg/tlperl/lib/Tk/ColorEdit.xpm
tlpkg/tlperl/lib/Tk/ColorEditor.pm
- tlpkg/tlperl/lib/Tk/ColorEditor.pod
- tlpkg/tlperl/lib/Tk/Common.pod
+ tlpkg/tlperl/lib/Tk/ColorSelect.pm
tlpkg/tlperl/lib/Tk/Compound.pm
- tlpkg/tlperl/lib/Tk/Compound.pod
tlpkg/tlperl/lib/Tk/Config.pm
- tlpkg/tlperl/lib/Tk/ConfigSpecs.pod
tlpkg/tlperl/lib/Tk/Configure.pm
tlpkg/tlperl/lib/Tk/Credits
- tlpkg/tlperl/lib/Tk/DItem.pod
tlpkg/tlperl/lib/Tk/Derived.pm
- tlpkg/tlperl/lib/Tk/Derived.pod
tlpkg/tlperl/lib/Tk/Dialog.pm
- tlpkg/tlperl/lib/Tk/Dialog.pod
tlpkg/tlperl/lib/Tk/DialogBox.pm
- tlpkg/tlperl/lib/Tk/DialogBox.pod
+ tlpkg/tlperl/lib/Tk/DirSelect.pm
tlpkg/tlperl/lib/Tk/DirTree.pm
- tlpkg/tlperl/lib/Tk/DirTree.pod
tlpkg/tlperl/lib/Tk/Dirlist.pm
tlpkg/tlperl/lib/Tk/DragDrop.pm
tlpkg/tlperl/lib/Tk/DragDrop/Common.pm
@@ -166271,132 +180979,80 @@ runfiles size=13043
tlpkg/tlperl/lib/Tk/DragDrop/XDNDDrop.pm
tlpkg/tlperl/lib/Tk/DragDrop/XDNDSite.pm
tlpkg/tlperl/lib/Tk/DropSite.pm
- tlpkg/tlperl/lib/Tk/DropSite.pod
tlpkg/tlperl/lib/Tk/DummyEncode.pm
tlpkg/tlperl/lib/Tk/English.pm
tlpkg/tlperl/lib/Tk/Entry.pm
- tlpkg/tlperl/lib/Tk/Entry.pod
- tlpkg/tlperl/lib/Tk/Error.pod
tlpkg/tlperl/lib/Tk/ErrorDialog.pm
tlpkg/tlperl/lib/Tk/Event.pm
tlpkg/tlperl/lib/Tk/Event/IO.pm
- tlpkg/tlperl/lib/Tk/Eventloop.pod
tlpkg/tlperl/lib/Tk/FBox.pm
- tlpkg/tlperl/lib/Tk/FBox.pod
tlpkg/tlperl/lib/Tk/FileSelect.pm
- tlpkg/tlperl/lib/Tk/FileSelect.pod
tlpkg/tlperl/lib/Tk/FloatEntry.pm
tlpkg/tlperl/lib/Tk/Font.pm
- tlpkg/tlperl/lib/Tk/Font.pod
tlpkg/tlperl/lib/Tk/Frame.pm
- tlpkg/tlperl/lib/Tk/Frame.pod
tlpkg/tlperl/lib/Tk/HList.pm
- tlpkg/tlperl/lib/Tk/HList.pod
tlpkg/tlperl/lib/Tk/IO.pm
- tlpkg/tlperl/lib/Tk/IO.pod
tlpkg/tlperl/lib/Tk/IconList.pm
- tlpkg/tlperl/lib/Tk/IconList.pod
tlpkg/tlperl/lib/Tk/Image.pm
- tlpkg/tlperl/lib/Tk/Image.pod
- tlpkg/tlperl/lib/Tk/InputO.pod
- tlpkg/tlperl/lib/Tk/Internals.pod
tlpkg/tlperl/lib/Tk/ItemStyle.pm
tlpkg/tlperl/lib/Tk/JPEG.pm
tlpkg/tlperl/lib/Tk/LabEntry.pm
tlpkg/tlperl/lib/Tk/LabFrame.pm
- tlpkg/tlperl/lib/Tk/LabFrame.pod
tlpkg/tlperl/lib/Tk/LabRadio.pm
tlpkg/tlperl/lib/Tk/Label.pm
- tlpkg/tlperl/lib/Tk/Label.pod
tlpkg/tlperl/lib/Tk/Labelframe.pm
- tlpkg/tlperl/lib/Tk/Labelframe.pod
tlpkg/tlperl/lib/Tk/Listbox.pm
- tlpkg/tlperl/lib/Tk/Listbox.pod
tlpkg/tlperl/lib/Tk/MMtry.pm
tlpkg/tlperl/lib/Tk/MMutil.pm
tlpkg/tlperl/lib/Tk/MainWindow.pm
- tlpkg/tlperl/lib/Tk/MainWindow.pod
tlpkg/tlperl/lib/Tk/MakeDepend.pm
tlpkg/tlperl/lib/Tk/Menu.pm
- tlpkg/tlperl/lib/Tk/Menu.pod
tlpkg/tlperl/lib/Tk/Menu/Item.pm
- tlpkg/tlperl/lib/Tk/Menu/Item.pod
tlpkg/tlperl/lib/Tk/Menubar.pm
tlpkg/tlperl/lib/Tk/Menubutton.pm
- tlpkg/tlperl/lib/Tk/Menubutton.pod
tlpkg/tlperl/lib/Tk/Message.pm
- tlpkg/tlperl/lib/Tk/Message.pod
tlpkg/tlperl/lib/Tk/MsgBox.pm
- tlpkg/tlperl/lib/Tk/MsgBox.pod
- tlpkg/tlperl/lib/Tk/Mwm.pod
tlpkg/tlperl/lib/Tk/NBFrame.pm
tlpkg/tlperl/lib/Tk/NoteBook.pm
- tlpkg/tlperl/lib/Tk/NoteBook.pod
tlpkg/tlperl/lib/Tk/Optionmenu.pm
- tlpkg/tlperl/lib/Tk/Optionmenu.pod
tlpkg/tlperl/lib/Tk/PNG.pm
tlpkg/tlperl/lib/Tk/Pane.pm
tlpkg/tlperl/lib/Tk/Panedwindow.pm
- tlpkg/tlperl/lib/Tk/Panedwindow.pod
tlpkg/tlperl/lib/Tk/Photo.pm
- tlpkg/tlperl/lib/Tk/Photo.pod
tlpkg/tlperl/lib/Tk/Pixmap.pm
- tlpkg/tlperl/lib/Tk/Pixmap.pod
- tlpkg/tlperl/lib/Tk/Popup.pod
tlpkg/tlperl/lib/Tk/Pretty.pm
tlpkg/tlperl/lib/Tk/ProgressBar.pm
tlpkg/tlperl/lib/Tk/README.Adjust
tlpkg/tlperl/lib/Tk/ROText.pm
- tlpkg/tlperl/lib/Tk/ROText.pod
tlpkg/tlperl/lib/Tk/Radiobutton.pm
- tlpkg/tlperl/lib/Tk/Radiobutton.pod
tlpkg/tlperl/lib/Tk/Region.pm
tlpkg/tlperl/lib/Tk/Reindex.pm
tlpkg/tlperl/lib/Tk/ReindexedROText.pm
tlpkg/tlperl/lib/Tk/ReindexedText.pm
tlpkg/tlperl/lib/Tk/Scale.pm
- tlpkg/tlperl/lib/Tk/Scale.pod
tlpkg/tlperl/lib/Tk/Scrollbar.pm
- tlpkg/tlperl/lib/Tk/Scrollbar.pod
- tlpkg/tlperl/lib/Tk/Scrolled.pod
tlpkg/tlperl/lib/Tk/Spinbox.pm
- tlpkg/tlperl/lib/Tk/Spinbox.pod
tlpkg/tlperl/lib/Tk/Stats.pm
tlpkg/tlperl/lib/Tk/Submethods.pm
- tlpkg/tlperl/lib/Tk/Submethods.pod
- tlpkg/tlperl/lib/Tk/SunConst.pod
tlpkg/tlperl/lib/Tk/TList.pm
- tlpkg/tlperl/lib/Tk/TList.pod
tlpkg/tlperl/lib/Tk/Table.pm
- tlpkg/tlperl/lib/Tk/Table.pod
- tlpkg/tlperl/lib/Tk/Tcl-perl.pod
tlpkg/tlperl/lib/Tk/Text.pm
- tlpkg/tlperl/lib/Tk/Text.pod
tlpkg/tlperl/lib/Tk/Text/Tag.pm
tlpkg/tlperl/lib/Tk/TextEdit.pm
tlpkg/tlperl/lib/Tk/TextList.pm
tlpkg/tlperl/lib/Tk/TextUndo.pm
- tlpkg/tlperl/lib/Tk/TextUndo.pod
tlpkg/tlperl/lib/Tk/Tiler.pm
- tlpkg/tlperl/lib/Tk/Tiler.pod
tlpkg/tlperl/lib/Tk/TixGrid.pm
- tlpkg/tlperl/lib/Tk/TixGrid.pod
+ tlpkg/tlperl/lib/Tk/Tk.def
tlpkg/tlperl/lib/Tk/Tk.xbm
tlpkg/tlperl/lib/Tk/Tk.xpm
tlpkg/tlperl/lib/Tk/TkXSUB.def
tlpkg/tlperl/lib/Tk/Toplevel.pm
- tlpkg/tlperl/lib/Tk/Toplevel.pod
tlpkg/tlperl/lib/Tk/Trace.pm
tlpkg/tlperl/lib/Tk/Tree.pm
- tlpkg/tlperl/lib/Tk/Tree.pod
- tlpkg/tlperl/lib/Tk/UserGuide.pod
tlpkg/tlperl/lib/Tk/Widget.pm
- tlpkg/tlperl/lib/Tk/Widget.pod
- tlpkg/tlperl/lib/Tk/WidgetDemo.pod
tlpkg/tlperl/lib/Tk/Wm.pm
- tlpkg/tlperl/lib/Tk/Wm.pod
tlpkg/tlperl/lib/Tk/X.pm
- tlpkg/tlperl/lib/Tk/X.pod
tlpkg/tlperl/lib/Tk/X11/X.h
tlpkg/tlperl/lib/Tk/X11/Xatom.h
tlpkg/tlperl/lib/Tk/X11/Xfuncproto.h
@@ -166407,24 +181063,15 @@ runfiles size=13043
tlpkg/tlperl/lib/Tk/X11/keysymdef.h
tlpkg/tlperl/lib/Tk/X11/license.terms
tlpkg/tlperl/lib/Tk/X11Font.pm
- tlpkg/tlperl/lib/Tk/X11Font.pod
tlpkg/tlperl/lib/Tk/Xcamel.gif
tlpkg/tlperl/lib/Tk/Xlib.pm
tlpkg/tlperl/lib/Tk/Xrm.pm
- tlpkg/tlperl/lib/Tk/Xrm.pod
tlpkg/tlperl/lib/Tk/act_folder.xbm
tlpkg/tlperl/lib/Tk/act_folder.xpm
- tlpkg/tlperl/lib/Tk/after.pod
tlpkg/tlperl/lib/Tk/anim.gif
tlpkg/tlperl/lib/Tk/arrowdownwin.xbm
tlpkg/tlperl/lib/Tk/balArrow.xbm
- tlpkg/tlperl/lib/Tk/bind.pod
- tlpkg/tlperl/lib/Tk/bindtags.pod
- tlpkg/tlperl/lib/Tk/callbacks.pod
tlpkg/tlperl/lib/Tk/cbxarrow.xbm
- tlpkg/tlperl/lib/Tk/chooseColor.pod
- tlpkg/tlperl/lib/Tk/chooseDirectory.pod
- tlpkg/tlperl/lib/Tk/composite.pod
tlpkg/tlperl/lib/Tk/demos/LabEnLabRad.pm
tlpkg/tlperl/lib/Tk/demos/images/QuitPB.xpm
tlpkg/tlperl/lib/Tk/demos/images/QuitPBa.xpm
@@ -166526,30 +181173,16 @@ runfiles size=13043
tlpkg/tlperl/lib/Tk/demos/widtrib/lib/npuz/Xcamel.npuz
tlpkg/tlperl/lib/Tk/demos/widtrib/npuz.pl
tlpkg/tlperl/lib/Tk/demos/widtrib/plop.pl
- tlpkg/tlperl/lib/Tk/event.pod
- tlpkg/tlperl/lib/Tk/exit.pod
tlpkg/tlperl/lib/Tk/file.xbm
tlpkg/tlperl/lib/Tk/file.xpm
- tlpkg/tlperl/lib/Tk/fileevent.pod
- tlpkg/tlperl/lib/Tk/focus.pod
tlpkg/tlperl/lib/Tk/folder.xbm
tlpkg/tlperl/lib/Tk/folder.xpm
- tlpkg/tlperl/lib/Tk/form.pod
- tlpkg/tlperl/lib/Tk/getOpenFile.pod
- tlpkg/tlperl/lib/Tk/grab.pod
- tlpkg/tlperl/lib/Tk/grid.pod
tlpkg/tlperl/lib/Tk/icon.gif
tlpkg/tlperl/lib/Tk/install.pm
tlpkg/tlperl/lib/Tk/license.terms
- tlpkg/tlperl/lib/Tk/mega.pod
- tlpkg/tlperl/lib/Tk/messageBox.pod
tlpkg/tlperl/lib/Tk/openfile.xbm
tlpkg/tlperl/lib/Tk/openfolder.xbm
tlpkg/tlperl/lib/Tk/openfolder.xpm
- tlpkg/tlperl/lib/Tk/option.pod
- tlpkg/tlperl/lib/Tk/options.pod
- tlpkg/tlperl/lib/Tk/overview.pod
- tlpkg/tlperl/lib/Tk/pTk.pod
tlpkg/tlperl/lib/Tk/pTk/Lang.h
tlpkg/tlperl/lib/Tk/pTk/Lang.m
tlpkg/tlperl/lib/Tk/pTk/Lang.t
@@ -166668,26 +181301,18 @@ runfiles size=13043
tlpkg/tlperl/lib/Tk/pTk/tkXrm.h
tlpkg/tlperl/lib/Tk/pTk/tk_f.h
tlpkg/tlperl/lib/Tk/pTk/xbytes.h
- tlpkg/tlperl/lib/Tk/pack.pod
- tlpkg/tlperl/lib/Tk/palette.pod
- tlpkg/tlperl/lib/Tk/place.pod
tlpkg/tlperl/lib/Tk/prolog.ps
- tlpkg/tlperl/lib/Tk/selection.pod
- tlpkg/tlperl/lib/Tk/send.pod
tlpkg/tlperl/lib/Tk/srcfile.xpm
tlpkg/tlperl/lib/Tk/textfile.xpm
- tlpkg/tlperl/lib/Tk/tixWm.pod
tlpkg/tlperl/lib/Tk/tkGlue.def
tlpkg/tlperl/lib/Tk/tkGlue.h
tlpkg/tlperl/lib/Tk/tkGlue.m
tlpkg/tlperl/lib/Tk/tkGlue.t
tlpkg/tlperl/lib/Tk/tkGlue_f.h
- tlpkg/tlperl/lib/Tk/tkvars.pod
tlpkg/tlperl/lib/Tk/tranicon.gif
tlpkg/tlperl/lib/Tk/typemap
tlpkg/tlperl/lib/Tk/vtab.def
tlpkg/tlperl/lib/Tk/widgets.pm
- tlpkg/tlperl/lib/Tk/widgets.pod
tlpkg/tlperl/lib/Tk/win.xbm
tlpkg/tlperl/lib/Tk/winfolder.xpm
tlpkg/tlperl/lib/Tk/wintext.xpm
@@ -166751,6 +181376,7 @@ runfiles size=13043
tlpkg/tlperl/lib/Unicode/Collate/CJK/Korean.pm
tlpkg/tlperl/lib/Unicode/Collate/CJK/Pinyin.pm
tlpkg/tlperl/lib/Unicode/Collate/CJK/Stroke.pm
+ tlpkg/tlperl/lib/Unicode/Collate/CJK/Zhuyin.pm
tlpkg/tlperl/lib/Unicode/Collate/Locale.pm
tlpkg/tlperl/lib/Unicode/Collate/Locale/af.pl
tlpkg/tlperl/lib/Unicode/Collate/Locale/ar.pl
@@ -166764,6 +181390,7 @@ runfiles size=13043
tlpkg/tlperl/lib/Unicode/Collate/Locale/cy.pl
tlpkg/tlperl/lib/Unicode/Collate/Locale/da.pl
tlpkg/tlperl/lib/Unicode/Collate/Locale/de_phone.pl
+ tlpkg/tlperl/lib/Unicode/Collate/Locale/ee.pl
tlpkg/tlperl/lib/Unicode/Collate/Locale/eo.pl
tlpkg/tlperl/lib/Unicode/Collate/Locale/es.pl
tlpkg/tlperl/lib/Unicode/Collate/Locale/es_trad.pl
@@ -166832,6 +181459,7 @@ runfiles size=13043
tlpkg/tlperl/lib/Unicode/Collate/Locale/zh_gb.pl
tlpkg/tlperl/lib/Unicode/Collate/Locale/zh_pin.pl
tlpkg/tlperl/lib/Unicode/Collate/Locale/zh_strk.pl
+ tlpkg/tlperl/lib/Unicode/Collate/Locale/zh_zhu.pl
tlpkg/tlperl/lib/Unicode/Collate/allkeys.txt
tlpkg/tlperl/lib/Unicode/Collate/keys.txt
tlpkg/tlperl/lib/Unicode/Normalize.pm
@@ -166850,9 +181478,7 @@ runfiles size=13043
tlpkg/tlperl/lib/Win32/OLE/Const.pm
tlpkg/tlperl/lib/Win32/OLE/Enum.pm
tlpkg/tlperl/lib/Win32/OLE/Lite.pm
- tlpkg/tlperl/lib/Win32/OLE/NEWS.pod
tlpkg/tlperl/lib/Win32/OLE/NLS.pm
- tlpkg/tlperl/lib/Win32/OLE/TPJ.pod
tlpkg/tlperl/lib/Win32/OLE/TypeInfo.pm
tlpkg/tlperl/lib/Win32/OLE/Variant.pm
tlpkg/tlperl/lib/Win32/Process/Info.pm
@@ -166914,6 +181540,8 @@ runfiles size=13043
tlpkg/tlperl/lib/auto/Encode/Unicode/Unicode.dll
tlpkg/tlperl/lib/auto/Fcntl/Fcntl.bs
tlpkg/tlperl/lib/auto/Fcntl/Fcntl.dll
+ tlpkg/tlperl/lib/auto/File/DosGlob/DosGlob.bs
+ tlpkg/tlperl/lib/auto/File/DosGlob/DosGlob.dll
tlpkg/tlperl/lib/auto/File/Glob/Glob.bs
tlpkg/tlperl/lib/auto/File/Glob/Glob.dll
tlpkg/tlperl/lib/auto/File/Listing/.packlist
@@ -166932,17 +181560,22 @@ runfiles size=13043
tlpkg/tlperl/lib/auto/Hash/Util/FieldHash/FieldHash.dll
tlpkg/tlperl/lib/auto/Hash/Util/Util.bs
tlpkg/tlperl/lib/auto/Hash/Util/Util.dll
+ tlpkg/tlperl/lib/auto/IO/HTML/.packlist
tlpkg/tlperl/lib/auto/IO/IO.bs
tlpkg/tlperl/lib/auto/IO/IO.dll
tlpkg/tlperl/lib/auto/IO/String/.packlist
tlpkg/tlperl/lib/auto/LWP/.packlist
tlpkg/tlperl/lib/auto/LWP/MediaTypes/.packlist
+ tlpkg/tlperl/lib/auto/LWP/Protocol/https/.packlist
tlpkg/tlperl/lib/auto/List/Util/Util.bs
tlpkg/tlperl/lib/auto/List/Util/Util.dll
tlpkg/tlperl/lib/auto/MIME/Base64/Base64.bs
tlpkg/tlperl/lib/auto/MIME/Base64/Base64.dll
tlpkg/tlperl/lib/auto/Math/BigInt/FastCalc/FastCalc.bs
tlpkg/tlperl/lib/auto/Math/BigInt/FastCalc/FastCalc.dll
+ tlpkg/tlperl/lib/auto/Math/Int64/.packlist
+ tlpkg/tlperl/lib/auto/Math/Int64/Int64.bs
+ tlpkg/tlperl/lib/auto/Math/Int64/Int64.dll
tlpkg/tlperl/lib/auto/Net/HTTP/.packlist
tlpkg/tlperl/lib/auto/Opcode/Opcode.bs
tlpkg/tlperl/lib/auto/Opcode/Opcode.dll
@@ -166980,6 +181613,7 @@ runfiles size=13043
tlpkg/tlperl/lib/auto/Tk/Clipboard/getSelected.al
tlpkg/tlperl/lib/auto/Tk/Compound/Compound.bs
tlpkg/tlperl/lib/auto/Tk/Compound/Compound.dll
+ tlpkg/tlperl/lib/auto/Tk/DirSelect/.packlist
tlpkg/tlperl/lib/auto/Tk/DragDrop/Win32Site/Win32Site.bs
tlpkg/tlperl/lib/auto/Tk/DragDrop/Win32Site/Win32Site.dll
tlpkg/tlperl/lib/auto/Tk/EnterFocus.al
@@ -167216,8 +181850,6 @@ runfiles size=13043
tlpkg/tlperl/lib/less.pm
tlpkg/tlperl/lib/lib.pm
tlpkg/tlperl/lib/locale.pm
- tlpkg/tlperl/lib/lwpcook.pod
- tlpkg/tlperl/lib/lwptut.pod
tlpkg/tlperl/lib/mro.pm
tlpkg/tlperl/lib/open.pm
tlpkg/tlperl/lib/ops.pm
@@ -167227,180 +181859,6 @@ runfiles size=13043
tlpkg/tlperl/lib/parent.pm
tlpkg/tlperl/lib/perl5db.pl
tlpkg/tlperl/lib/perlfaq.pm
- tlpkg/tlperl/lib/perllocal.pod
- tlpkg/tlperl/lib/pods/a2p.pod
- tlpkg/tlperl/lib/pods/perl.pod
- tlpkg/tlperl/lib/pods/perl5004delta.pod
- tlpkg/tlperl/lib/pods/perl5005delta.pod
- tlpkg/tlperl/lib/pods/perl5100delta.pod
- tlpkg/tlperl/lib/pods/perl5101delta.pod
- tlpkg/tlperl/lib/pods/perl5120delta.pod
- tlpkg/tlperl/lib/pods/perl5121delta.pod
- tlpkg/tlperl/lib/pods/perl5122delta.pod
- tlpkg/tlperl/lib/pods/perl5123delta.pod
- tlpkg/tlperl/lib/pods/perl5124delta.pod
- tlpkg/tlperl/lib/pods/perl5140delta.pod
- tlpkg/tlperl/lib/pods/perl5141delta.pod
- tlpkg/tlperl/lib/pods/perl5142delta.pod
- tlpkg/tlperl/lib/pods/perl5143delta.pod
- tlpkg/tlperl/lib/pods/perl5160delta.pod
- tlpkg/tlperl/lib/pods/perl5161delta.pod
- tlpkg/tlperl/lib/pods/perl5162delta.pod
- tlpkg/tlperl/lib/pods/perl561delta.pod
- tlpkg/tlperl/lib/pods/perl56delta.pod
- tlpkg/tlperl/lib/pods/perl581delta.pod
- tlpkg/tlperl/lib/pods/perl582delta.pod
- tlpkg/tlperl/lib/pods/perl583delta.pod
- tlpkg/tlperl/lib/pods/perl584delta.pod
- tlpkg/tlperl/lib/pods/perl585delta.pod
- tlpkg/tlperl/lib/pods/perl586delta.pod
- tlpkg/tlperl/lib/pods/perl587delta.pod
- tlpkg/tlperl/lib/pods/perl588delta.pod
- tlpkg/tlperl/lib/pods/perl589delta.pod
- tlpkg/tlperl/lib/pods/perl58delta.pod
- tlpkg/tlperl/lib/pods/perlaix.pod
- tlpkg/tlperl/lib/pods/perlamiga.pod
- tlpkg/tlperl/lib/pods/perlapi.pod
- tlpkg/tlperl/lib/pods/perlapio.pod
- tlpkg/tlperl/lib/pods/perlartistic.pod
- tlpkg/tlperl/lib/pods/perlbeos.pod
- tlpkg/tlperl/lib/pods/perlbook.pod
- tlpkg/tlperl/lib/pods/perlboot.pod
- tlpkg/tlperl/lib/pods/perlbot.pod
- tlpkg/tlperl/lib/pods/perlbs2000.pod
- tlpkg/tlperl/lib/pods/perlcall.pod
- tlpkg/tlperl/lib/pods/perlce.pod
- tlpkg/tlperl/lib/pods/perlcheat.pod
- tlpkg/tlperl/lib/pods/perlclib.pod
- tlpkg/tlperl/lib/pods/perlcn.pod
- tlpkg/tlperl/lib/pods/perlcommunity.pod
- tlpkg/tlperl/lib/pods/perlcygwin.pod
- tlpkg/tlperl/lib/pods/perldata.pod
- tlpkg/tlperl/lib/pods/perldbmfilter.pod
- tlpkg/tlperl/lib/pods/perldebguts.pod
- tlpkg/tlperl/lib/pods/perldebtut.pod
- tlpkg/tlperl/lib/pods/perldebug.pod
- tlpkg/tlperl/lib/pods/perldelta.pod
- tlpkg/tlperl/lib/pods/perldgux.pod
- tlpkg/tlperl/lib/pods/perldiag.pod
- tlpkg/tlperl/lib/pods/perldoc.pod
- tlpkg/tlperl/lib/pods/perldos.pod
- tlpkg/tlperl/lib/pods/perldsc.pod
- tlpkg/tlperl/lib/pods/perldtrace.pod
- tlpkg/tlperl/lib/pods/perlebcdic.pod
- tlpkg/tlperl/lib/pods/perlembed.pod
- tlpkg/tlperl/lib/pods/perlepoc.pod
- tlpkg/tlperl/lib/pods/perlexperiment.pod
- tlpkg/tlperl/lib/pods/perlfaq.pod
- tlpkg/tlperl/lib/pods/perlfaq1.pod
- tlpkg/tlperl/lib/pods/perlfaq2.pod
- tlpkg/tlperl/lib/pods/perlfaq3.pod
- tlpkg/tlperl/lib/pods/perlfaq4.pod
- tlpkg/tlperl/lib/pods/perlfaq5.pod
- tlpkg/tlperl/lib/pods/perlfaq6.pod
- tlpkg/tlperl/lib/pods/perlfaq7.pod
- tlpkg/tlperl/lib/pods/perlfaq8.pod
- tlpkg/tlperl/lib/pods/perlfaq9.pod
- tlpkg/tlperl/lib/pods/perlfilter.pod
- tlpkg/tlperl/lib/pods/perlfork.pod
- tlpkg/tlperl/lib/pods/perlform.pod
- tlpkg/tlperl/lib/pods/perlfreebsd.pod
- tlpkg/tlperl/lib/pods/perlfunc.pod
- tlpkg/tlperl/lib/pods/perlgit.pod
- tlpkg/tlperl/lib/pods/perlglossary.pod
- tlpkg/tlperl/lib/pods/perlgpl.pod
- tlpkg/tlperl/lib/pods/perlguts.pod
- tlpkg/tlperl/lib/pods/perlhack.pod
- tlpkg/tlperl/lib/pods/perlhacktips.pod
- tlpkg/tlperl/lib/pods/perlhacktut.pod
- tlpkg/tlperl/lib/pods/perlhaiku.pod
- tlpkg/tlperl/lib/pods/perlhist.pod
- tlpkg/tlperl/lib/pods/perlhpux.pod
- tlpkg/tlperl/lib/pods/perlhurd.pod
- tlpkg/tlperl/lib/pods/perlintern.pod
- tlpkg/tlperl/lib/pods/perlinterp.pod
- tlpkg/tlperl/lib/pods/perlintro.pod
- tlpkg/tlperl/lib/pods/perliol.pod
- tlpkg/tlperl/lib/pods/perlipc.pod
- tlpkg/tlperl/lib/pods/perlirix.pod
- tlpkg/tlperl/lib/pods/perljp.pod
- tlpkg/tlperl/lib/pods/perlko.pod
- tlpkg/tlperl/lib/pods/perllexwarn.pod
- tlpkg/tlperl/lib/pods/perllinux.pod
- tlpkg/tlperl/lib/pods/perllocale.pod
- tlpkg/tlperl/lib/pods/perllol.pod
- tlpkg/tlperl/lib/pods/perlmacos.pod
- tlpkg/tlperl/lib/pods/perlmacosx.pod
- tlpkg/tlperl/lib/pods/perlmod.pod
- tlpkg/tlperl/lib/pods/perlmodinstall.pod
- tlpkg/tlperl/lib/pods/perlmodlib.pod
- tlpkg/tlperl/lib/pods/perlmodstyle.pod
- tlpkg/tlperl/lib/pods/perlmpeix.pod
- tlpkg/tlperl/lib/pods/perlmroapi.pod
- tlpkg/tlperl/lib/pods/perlnetware.pod
- tlpkg/tlperl/lib/pods/perlnewmod.pod
- tlpkg/tlperl/lib/pods/perlnumber.pod
- tlpkg/tlperl/lib/pods/perlobj.pod
- tlpkg/tlperl/lib/pods/perlootut.pod
- tlpkg/tlperl/lib/pods/perlop.pod
- tlpkg/tlperl/lib/pods/perlopenbsd.pod
- tlpkg/tlperl/lib/pods/perlopentut.pod
- tlpkg/tlperl/lib/pods/perlos2.pod
- tlpkg/tlperl/lib/pods/perlos390.pod
- tlpkg/tlperl/lib/pods/perlos400.pod
- tlpkg/tlperl/lib/pods/perlpacktut.pod
- tlpkg/tlperl/lib/pods/perlperf.pod
- tlpkg/tlperl/lib/pods/perlplan9.pod
- tlpkg/tlperl/lib/pods/perlpod.pod
- tlpkg/tlperl/lib/pods/perlpodspec.pod
- tlpkg/tlperl/lib/pods/perlpodstyle.pod
- tlpkg/tlperl/lib/pods/perlpolicy.pod
- tlpkg/tlperl/lib/pods/perlport.pod
- tlpkg/tlperl/lib/pods/perlpragma.pod
- tlpkg/tlperl/lib/pods/perlqnx.pod
- tlpkg/tlperl/lib/pods/perlre.pod
- tlpkg/tlperl/lib/pods/perlreapi.pod
- tlpkg/tlperl/lib/pods/perlrebackslash.pod
- tlpkg/tlperl/lib/pods/perlrecharclass.pod
- tlpkg/tlperl/lib/pods/perlref.pod
- tlpkg/tlperl/lib/pods/perlreftut.pod
- tlpkg/tlperl/lib/pods/perlreguts.pod
- tlpkg/tlperl/lib/pods/perlrequick.pod
- tlpkg/tlperl/lib/pods/perlreref.pod
- tlpkg/tlperl/lib/pods/perlretut.pod
- tlpkg/tlperl/lib/pods/perlriscos.pod
- tlpkg/tlperl/lib/pods/perlrun.pod
- tlpkg/tlperl/lib/pods/perlsec.pod
- tlpkg/tlperl/lib/pods/perlsolaris.pod
- tlpkg/tlperl/lib/pods/perlsource.pod
- tlpkg/tlperl/lib/pods/perlstyle.pod
- tlpkg/tlperl/lib/pods/perlsub.pod
- tlpkg/tlperl/lib/pods/perlsymbian.pod
- tlpkg/tlperl/lib/pods/perlsyn.pod
- tlpkg/tlperl/lib/pods/perlthrtut.pod
- tlpkg/tlperl/lib/pods/perltie.pod
- tlpkg/tlperl/lib/pods/perltoc.pod
- tlpkg/tlperl/lib/pods/perltodo.pod
- tlpkg/tlperl/lib/pods/perltooc.pod
- tlpkg/tlperl/lib/pods/perltoot.pod
- tlpkg/tlperl/lib/pods/perltrap.pod
- tlpkg/tlperl/lib/pods/perltru64.pod
- tlpkg/tlperl/lib/pods/perltw.pod
- tlpkg/tlperl/lib/pods/perlunicode.pod
- tlpkg/tlperl/lib/pods/perlunifaq.pod
- tlpkg/tlperl/lib/pods/perluniintro.pod
- tlpkg/tlperl/lib/pods/perluniprops.pod
- tlpkg/tlperl/lib/pods/perlunitut.pod
- tlpkg/tlperl/lib/pods/perlutil.pod
- tlpkg/tlperl/lib/pods/perluts.pod
- tlpkg/tlperl/lib/pods/perlvar.pod
- tlpkg/tlperl/lib/pods/perlvmesa.pod
- tlpkg/tlperl/lib/pods/perlvms.pod
- tlpkg/tlperl/lib/pods/perlvos.pod
- tlpkg/tlperl/lib/pods/perlwin32.pod
- tlpkg/tlperl/lib/pods/perlxs.pod
- tlpkg/tlperl/lib/pods/perlxstut.pod
- tlpkg/tlperl/lib/pods/perlxstypemap.pod
tlpkg/tlperl/lib/re.pm
tlpkg/tlperl/lib/sigtrap.pm
tlpkg/tlperl/lib/sort.pm
@@ -167409,7 +181867,6 @@ runfiles size=13043
tlpkg/tlperl/lib/threads.pm
tlpkg/tlperl/lib/threads/shared.pm
tlpkg/tlperl/lib/unicore/Blocks.txt
- tlpkg/tlperl/lib/unicore/CaseFolding.txt
tlpkg/tlperl/lib/unicore/CombiningClass.pl
tlpkg/tlperl/lib/unicore/Decomposition.pl
tlpkg/tlperl/lib/unicore/Heavy.pl
@@ -167467,6 +181924,7 @@ runfiles size=13043
tlpkg/tlperl/lib/unicore/lib/Age/V52.pl
tlpkg/tlperl/lib/unicore/lib/Age/V60.pl
tlpkg/tlperl/lib/unicore/lib/Age/V61.pl
+ tlpkg/tlperl/lib/unicore/lib/Age/V62.pl
tlpkg/tlperl/lib/unicore/lib/Alpha/Y.pl
tlpkg/tlperl/lib/unicore/lib/Bc/AL.pl
tlpkg/tlperl/lib/unicore/lib/Bc/AN.pl
@@ -167515,6 +181973,7 @@ runfiles size=13043
tlpkg/tlperl/lib/unicore/lib/Blk/Bopomofo.pl
tlpkg/tlperl/lib/unicore/lib/Blk/BoxDrawi.pl
tlpkg/tlperl/lib/unicore/lib/Blk/Brahmi.pl
+ tlpkg/tlperl/lib/unicore/lib/Blk/Braille.pl
tlpkg/tlperl/lib/unicore/lib/Blk/Buginese.pl
tlpkg/tlperl/lib/unicore/lib/Blk/Buhid.pl
tlpkg/tlperl/lib/unicore/lib/Blk/Byzantin.pl
@@ -167546,6 +182005,7 @@ runfiles size=13043
tlpkg/tlperl/lib/unicore/lib/Blk/Cyrilli3.pl
tlpkg/tlperl/lib/unicore/lib/Blk/Cyrilli4.pl
tlpkg/tlperl/lib/unicore/lib/Blk/Cyrillic.pl
+ tlpkg/tlperl/lib/unicore/lib/Blk/Deseret.pl
tlpkg/tlperl/lib/unicore/lib/Blk/Devanag2.pl
tlpkg/tlperl/lib/unicore/lib/Blk/Devanaga.pl
tlpkg/tlperl/lib/unicore/lib/Blk/Diacrit2.pl
@@ -167597,6 +182057,7 @@ runfiles size=13043
tlpkg/tlperl/lib/unicore/lib/Blk/Kannada.pl
tlpkg/tlperl/lib/unicore/lib/Blk/Katakan2.pl
tlpkg/tlperl/lib/unicore/lib/Blk/Katakana.pl
+ tlpkg/tlperl/lib/unicore/lib/Blk/KayahLi.pl
tlpkg/tlperl/lib/unicore/lib/Blk/Kharosht.pl
tlpkg/tlperl/lib/unicore/lib/Blk/Khmer.pl
tlpkg/tlperl/lib/unicore/lib/Blk/KhmerSym.pl
@@ -167612,6 +182073,7 @@ runfiles size=13043
tlpkg/tlperl/lib/unicore/lib/Blk/Limbu.pl
tlpkg/tlperl/lib/unicore/lib/Blk/LinearBI.pl
tlpkg/tlperl/lib/unicore/lib/Blk/LinearBS.pl
+ tlpkg/tlperl/lib/unicore/lib/Blk/Lisu.pl
tlpkg/tlperl/lib/unicore/lib/Blk/LowSurro.pl
tlpkg/tlperl/lib/unicore/lib/Blk/Lycian.pl
tlpkg/tlperl/lib/unicore/lib/Blk/Lydian.pl
@@ -167622,6 +182084,7 @@ runfiles size=13043
tlpkg/tlperl/lib/unicore/lib/Blk/MathOper.pl
tlpkg/tlperl/lib/unicore/lib/Blk/MeeteiM2.pl
tlpkg/tlperl/lib/unicore/lib/Blk/MeeteiMa.pl
+ tlpkg/tlperl/lib/unicore/lib/Blk/Meroiti2.pl
tlpkg/tlperl/lib/unicore/lib/Blk/Meroitic.pl
tlpkg/tlperl/lib/unicore/lib/Blk/Miao.pl
tlpkg/tlperl/lib/unicore/lib/Blk/MiscArro.pl
@@ -167642,8 +182105,10 @@ runfiles size=13043
tlpkg/tlperl/lib/unicore/lib/Blk/NumberFo.pl
tlpkg/tlperl/lib/unicore/lib/Blk/OCR.pl
tlpkg/tlperl/lib/unicore/lib/Blk/Ogham.pl
+ tlpkg/tlperl/lib/unicore/lib/Blk/OlChiki.pl
tlpkg/tlperl/lib/unicore/lib/Blk/OldItali.pl
tlpkg/tlperl/lib/unicore/lib/Blk/OldPersi.pl
+ tlpkg/tlperl/lib/unicore/lib/Blk/OldSouth.pl
tlpkg/tlperl/lib/unicore/lib/Blk/OldTurki.pl
tlpkg/tlperl/lib/unicore/lib/Blk/Oriya.pl
tlpkg/tlperl/lib/unicore/lib/Blk/Osmanya.pl
@@ -167661,6 +182126,7 @@ runfiles size=13043
tlpkg/tlperl/lib/unicore/lib/Blk/Samarita.pl
tlpkg/tlperl/lib/unicore/lib/Blk/Saurasht.pl
tlpkg/tlperl/lib/unicore/lib/Blk/Sharada.pl
+ tlpkg/tlperl/lib/unicore/lib/Blk/Shavian.pl
tlpkg/tlperl/lib/unicore/lib/Blk/Sinhala.pl
tlpkg/tlperl/lib/unicore/lib/Blk/SmallFor.pl
tlpkg/tlperl/lib/unicore/lib/Blk/SoraSomp.pl
@@ -167782,21 +182248,22 @@ runfiles size=13043
tlpkg/tlperl/lib/unicore/lib/Dt/Nar.pl
tlpkg/tlperl/lib/unicore/lib/Dt/Nb.pl
tlpkg/tlperl/lib/unicore/lib/Dt/NonCanon.pl
- tlpkg/tlperl/lib/unicore/lib/Dt/None.pl
tlpkg/tlperl/lib/unicore/lib/Dt/Sml.pl
tlpkg/tlperl/lib/unicore/lib/Dt/Sqr.pl
tlpkg/tlperl/lib/unicore/lib/Dt/Sub.pl
tlpkg/tlperl/lib/unicore/lib/Dt/Sup.pl
tlpkg/tlperl/lib/unicore/lib/Dt/Vert.pl
+ tlpkg/tlperl/lib/unicore/lib/Dt/Wide.pl
tlpkg/tlperl/lib/unicore/lib/Ea/A.pl
- tlpkg/tlperl/lib/unicore/lib/Ea/F.pl
tlpkg/tlperl/lib/unicore/lib/Ea/H.pl
tlpkg/tlperl/lib/unicore/lib/Ea/N.pl
tlpkg/tlperl/lib/unicore/lib/Ea/Na.pl
tlpkg/tlperl/lib/unicore/lib/Ea/W.pl
tlpkg/tlperl/lib/unicore/lib/Ext/Y.pl
tlpkg/tlperl/lib/unicore/lib/GCB/CN.pl
+ tlpkg/tlperl/lib/unicore/lib/GCB/CR.pl
tlpkg/tlperl/lib/unicore/lib/GCB/EX.pl
+ tlpkg/tlperl/lib/unicore/lib/GCB/LF.pl
tlpkg/tlperl/lib/unicore/lib/GCB/SM.pl
tlpkg/tlperl/lib/unicore/lib/GCB/XX.pl
tlpkg/tlperl/lib/unicore/lib/Gc/C.pl
@@ -167820,7 +182287,6 @@ runfiles size=13043
tlpkg/tlperl/lib/unicore/lib/Gc/Nl.pl
tlpkg/tlperl/lib/unicore/lib/Gc/No.pl
tlpkg/tlperl/lib/unicore/lib/Gc/P.pl
- tlpkg/tlperl/lib/unicore/lib/Gc/Pc.pl
tlpkg/tlperl/lib/unicore/lib/Gc/Pd.pl
tlpkg/tlperl/lib/unicore/lib/Gc/Pe.pl
tlpkg/tlperl/lib/unicore/lib/Gc/Pf.pl
@@ -167857,6 +182323,7 @@ runfiles size=13043
tlpkg/tlperl/lib/unicore/lib/In/5_2.pl
tlpkg/tlperl/lib/unicore/lib/In/6_0.pl
tlpkg/tlperl/lib/unicore/lib/In/6_1.pl
+ tlpkg/tlperl/lib/unicore/lib/In/6_2.pl
tlpkg/tlperl/lib/unicore/lib/Jg/Ain.pl
tlpkg/tlperl/lib/unicore/lib/Jg/Alaph.pl
tlpkg/tlperl/lib/unicore/lib/Jg/Alef.pl
@@ -167933,23 +182400,15 @@ runfiles size=13043
tlpkg/tlperl/lib/unicore/lib/Lb/CL.pl
tlpkg/tlperl/lib/unicore/lib/Lb/CM.pl
tlpkg/tlperl/lib/unicore/lib/Lb/CP.pl
- tlpkg/tlperl/lib/unicore/lib/Lb/CR.pl
tlpkg/tlperl/lib/unicore/lib/Lb/EX.pl
tlpkg/tlperl/lib/unicore/lib/Lb/GL.pl
- tlpkg/tlperl/lib/unicore/lib/Lb/H2.pl
- tlpkg/tlperl/lib/unicore/lib/Lb/H3.pl
tlpkg/tlperl/lib/unicore/lib/Lb/HL.pl
tlpkg/tlperl/lib/unicore/lib/Lb/HY.pl
tlpkg/tlperl/lib/unicore/lib/Lb/ID.pl
tlpkg/tlperl/lib/unicore/lib/Lb/IN.pl
tlpkg/tlperl/lib/unicore/lib/Lb/IS.pl
- tlpkg/tlperl/lib/unicore/lib/Lb/JL.pl
- tlpkg/tlperl/lib/unicore/lib/Lb/JT.pl
- tlpkg/tlperl/lib/unicore/lib/Lb/JV.pl
- tlpkg/tlperl/lib/unicore/lib/Lb/LF.pl
tlpkg/tlperl/lib/unicore/lib/Lb/NL.pl
tlpkg/tlperl/lib/unicore/lib/Lb/NS.pl
- tlpkg/tlperl/lib/unicore/lib/Lb/NU.pl
tlpkg/tlperl/lib/unicore/lib/Lb/OP.pl
tlpkg/tlperl/lib/unicore/lib/Lb/PO.pl
tlpkg/tlperl/lib/unicore/lib/Lb/PR.pl
@@ -167964,14 +182423,16 @@ runfiles size=13043
tlpkg/tlperl/lib/unicore/lib/Lower/Y.pl
tlpkg/tlperl/lib/unicore/lib/Math/Y.pl
tlpkg/tlperl/lib/unicore/lib/NChar/Y.pl
+ tlpkg/tlperl/lib/unicore/lib/NFCQC/M.pl
tlpkg/tlperl/lib/unicore/lib/NFCQC/Y.pl
tlpkg/tlperl/lib/unicore/lib/NFDQC/N.pl
tlpkg/tlperl/lib/unicore/lib/NFDQC/Y.pl
- tlpkg/tlperl/lib/unicore/lib/NFKCQC/M.pl
tlpkg/tlperl/lib/unicore/lib/NFKCQC/N.pl
tlpkg/tlperl/lib/unicore/lib/NFKCQC/Y.pl
tlpkg/tlperl/lib/unicore/lib/NFKDQC/N.pl
+ tlpkg/tlperl/lib/unicore/lib/NFKDQC/Y.pl
tlpkg/tlperl/lib/unicore/lib/Nt/Di.pl
+ tlpkg/tlperl/lib/unicore/lib/Nt/None.pl
tlpkg/tlperl/lib/unicore/lib/Nt/Nu.pl
tlpkg/tlperl/lib/unicore/lib/Nv/0.pl
tlpkg/tlperl/lib/unicore/lib/Nv/1.pl
@@ -168011,6 +182472,7 @@ runfiles size=13043
tlpkg/tlperl/lib/unicore/lib/Nv/2000.pl
tlpkg/tlperl/lib/unicore/lib/Nv/20000.pl
tlpkg/tlperl/lib/unicore/lib/Nv/21.pl
+ tlpkg/tlperl/lib/unicore/lib/Nv/216000.pl
tlpkg/tlperl/lib/unicore/lib/Nv/22.pl
tlpkg/tlperl/lib/unicore/lib/Nv/23.pl
tlpkg/tlperl/lib/unicore/lib/Nv/24.pl
@@ -168048,6 +182510,7 @@ runfiles size=13043
tlpkg/tlperl/lib/unicore/lib/Nv/41.pl
tlpkg/tlperl/lib/unicore/lib/Nv/42.pl
tlpkg/tlperl/lib/unicore/lib/Nv/43.pl
+ tlpkg/tlperl/lib/unicore/lib/Nv/432000.pl
tlpkg/tlperl/lib/unicore/lib/Nv/44.pl
tlpkg/tlperl/lib/unicore/lib/Nv/45.pl
tlpkg/tlperl/lib/unicore/lib/Nv/46.pl
@@ -168086,7 +182549,7 @@ runfiles size=13043
tlpkg/tlperl/lib/unicore/lib/Nv/9000.pl
tlpkg/tlperl/lib/unicore/lib/Nv/90000.pl
tlpkg/tlperl/lib/unicore/lib/Nv/9_2.pl
- tlpkg/tlperl/lib/unicore/lib/Nv/NaN.pl
+ tlpkg/tlperl/lib/unicore/lib/Nv/_1.pl
tlpkg/tlperl/lib/unicore/lib/Nv/_1_2.pl
tlpkg/tlperl/lib/unicore/lib/PatSyn/Y.pl
tlpkg/tlperl/lib/unicore/lib/PatWS/Y.pl
@@ -168106,7 +182569,6 @@ runfiles size=13043
tlpkg/tlperl/lib/unicore/lib/Perl/PosixLow.pl
tlpkg/tlperl/lib/unicore/lib/Perl/PosixPri.pl
tlpkg/tlperl/lib/unicore/lib/Perl/PosixPun.pl
- tlpkg/tlperl/lib/unicore/lib/Perl/PosixSpa.pl
tlpkg/tlperl/lib/unicore/lib/Perl/PosixUpp.pl
tlpkg/tlperl/lib/unicore/lib/Perl/Print.pl
tlpkg/tlperl/lib/unicore/lib/Perl/SpacePer.pl
@@ -168114,12 +182576,22 @@ runfiles size=13043
tlpkg/tlperl/lib/unicore/lib/Perl/VertSpac.pl
tlpkg/tlperl/lib/unicore/lib/Perl/Word.pl
tlpkg/tlperl/lib/unicore/lib/Perl/XPosixPu.pl
+ tlpkg/tlperl/lib/unicore/lib/Perl/_PerlAny.pl
+ tlpkg/tlperl/lib/unicore/lib/Perl/_PerlCh2.pl
+ tlpkg/tlperl/lib/unicore/lib/Perl/_PerlCha.pl
+ tlpkg/tlperl/lib/unicore/lib/Perl/_PerlIDC.pl
tlpkg/tlperl/lib/unicore/lib/Perl/_PerlIDS.pl
- tlpkg/tlperl/lib/unicore/lib/Perl/_PerlNon.pl
tlpkg/tlperl/lib/unicore/lib/Perl/_PerlQuo.pl
- tlpkg/tlperl/lib/unicore/lib/Perl/_XBegin.pl
tlpkg/tlperl/lib/unicore/lib/Perl/_XExtend.pl
+ tlpkg/tlperl/lib/unicore/lib/Perl/_XGCBL.pl
+ tlpkg/tlperl/lib/unicore/lib/Perl/_XGCBLV.pl
+ tlpkg/tlperl/lib/unicore/lib/Perl/_XGCBLVT.pl
+ tlpkg/tlperl/lib/unicore/lib/Perl/_XGCBT.pl
+ tlpkg/tlperl/lib/unicore/lib/Perl/_XGCBV.pl
tlpkg/tlperl/lib/unicore/lib/Perl/_XLVLVTV.pl
+ tlpkg/tlperl/lib/unicore/lib/Perl/_XRI.pl
+ tlpkg/tlperl/lib/unicore/lib/Perl/_XRegula.pl
+ tlpkg/tlperl/lib/unicore/lib/Perl/_XSpecia.pl
tlpkg/tlperl/lib/unicore/lib/QMark/Y.pl
tlpkg/tlperl/lib/unicore/lib/Radical/Y.pl
tlpkg/tlperl/lib/unicore/lib/SB/AT.pl
@@ -168128,6 +182600,7 @@ runfiles size=13043
tlpkg/tlperl/lib/unicore/lib/SB/FO.pl
tlpkg/tlperl/lib/unicore/lib/SB/LE.pl
tlpkg/tlperl/lib/unicore/lib/SB/LO.pl
+ tlpkg/tlperl/lib/unicore/lib/SB/NU.pl
tlpkg/tlperl/lib/unicore/lib/SB/SC.pl
tlpkg/tlperl/lib/unicore/lib/SB/SE.pl
tlpkg/tlperl/lib/unicore/lib/SB/ST.pl
@@ -168137,142 +182610,137 @@ runfiles size=13043
tlpkg/tlperl/lib/unicore/lib/SD/Y.pl
tlpkg/tlperl/lib/unicore/lib/STerm/Y.pl
tlpkg/tlperl/lib/unicore/lib/Sc/Arab.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Armi.pl
tlpkg/tlperl/lib/unicore/lib/Sc/Armn.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Avst.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Bali.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Bamu.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Batk.pl
tlpkg/tlperl/lib/unicore/lib/Sc/Beng.pl
tlpkg/tlperl/lib/unicore/lib/Sc/Bopo.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Brah.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Bugi.pl
tlpkg/tlperl/lib/unicore/lib/Sc/Buhd.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Cakm.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Cans.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Cari.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Cham.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Cher.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Copt.pl
tlpkg/tlperl/lib/unicore/lib/Sc/Cprt.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Cyrl.pl
tlpkg/tlperl/lib/unicore/lib/Sc/Deva.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Egyp.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Ethi.pl
tlpkg/tlperl/lib/unicore/lib/Sc/Geor.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Glag.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Goth.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Grek.pl
tlpkg/tlperl/lib/unicore/lib/Sc/Gujr.pl
tlpkg/tlperl/lib/unicore/lib/Sc/Guru.pl
tlpkg/tlperl/lib/unicore/lib/Sc/Han.pl
tlpkg/tlperl/lib/unicore/lib/Sc/Hang.pl
tlpkg/tlperl/lib/unicore/lib/Sc/Hano.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Hebr.pl
tlpkg/tlperl/lib/unicore/lib/Sc/Hira.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Ital.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Java.pl
tlpkg/tlperl/lib/unicore/lib/Sc/Kana.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Khar.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Khmr.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Knda.pl
tlpkg/tlperl/lib/unicore/lib/Sc/Kthi.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Lana.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Lao.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Latn.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Lepc.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Limb.pl
tlpkg/tlperl/lib/unicore/lib/Sc/Linb.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Lyci.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Lydi.pl
tlpkg/tlperl/lib/unicore/lib/Sc/Mand.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Merc.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Miao.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Mlym.pl
tlpkg/tlperl/lib/unicore/lib/Sc/Mong.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Mtei.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Mymr.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Nko.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Ogam.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Orkh.pl
tlpkg/tlperl/lib/unicore/lib/Sc/Orya.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Osma.pl
tlpkg/tlperl/lib/unicore/lib/Sc/Phag.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Phli.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Phnx.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Prti.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Rjng.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Runr.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Samr.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Saur.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Shrd.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Sinh.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Sora.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Sund.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Sylo.pl
tlpkg/tlperl/lib/unicore/lib/Sc/Syrc.pl
tlpkg/tlperl/lib/unicore/lib/Sc/Tagb.pl
tlpkg/tlperl/lib/unicore/lib/Sc/Takr.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Tale.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Talu.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Taml.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Tavt.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Telu.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Tfng.pl
tlpkg/tlperl/lib/unicore/lib/Sc/Tglg.pl
tlpkg/tlperl/lib/unicore/lib/Sc/Thaa.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Thai.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Tibt.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Ugar.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Vai.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Xpeo.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Xsux.pl
tlpkg/tlperl/lib/unicore/lib/Sc/Yi.pl
tlpkg/tlperl/lib/unicore/lib/Sc/Zinh.pl
tlpkg/tlperl/lib/unicore/lib/Sc/Zyyy.pl
+ tlpkg/tlperl/lib/unicore/lib/Sc/Zzzz.pl
tlpkg/tlperl/lib/unicore/lib/Scx/Arab.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Armi.pl
tlpkg/tlperl/lib/unicore/lib/Scx/Armn.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Avst.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Bali.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Bamu.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Batk.pl
tlpkg/tlperl/lib/unicore/lib/Scx/Beng.pl
tlpkg/tlperl/lib/unicore/lib/Scx/Bopo.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Brah.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Brai.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Bugi.pl
tlpkg/tlperl/lib/unicore/lib/Scx/Buhd.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Cakm.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Cans.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Cari.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Cham.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Cher.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Copt.pl
tlpkg/tlperl/lib/unicore/lib/Scx/Cprt.pl
tlpkg/tlperl/lib/unicore/lib/Scx/Cyrl.pl
tlpkg/tlperl/lib/unicore/lib/Scx/Deva.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Dsrt.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Egyp.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Ethi.pl
tlpkg/tlperl/lib/unicore/lib/Scx/Geor.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Glag.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Goth.pl
tlpkg/tlperl/lib/unicore/lib/Scx/Grek.pl
tlpkg/tlperl/lib/unicore/lib/Scx/Gujr.pl
tlpkg/tlperl/lib/unicore/lib/Scx/Guru.pl
tlpkg/tlperl/lib/unicore/lib/Scx/Han.pl
tlpkg/tlperl/lib/unicore/lib/Scx/Hang.pl
tlpkg/tlperl/lib/unicore/lib/Scx/Hano.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Hebr.pl
tlpkg/tlperl/lib/unicore/lib/Scx/Hira.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Ital.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Java.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Kali.pl
tlpkg/tlperl/lib/unicore/lib/Scx/Kana.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Khar.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Khmr.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Knda.pl
tlpkg/tlperl/lib/unicore/lib/Scx/Kthi.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Lana.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Lao.pl
tlpkg/tlperl/lib/unicore/lib/Scx/Latn.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Lepc.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Limb.pl
tlpkg/tlperl/lib/unicore/lib/Scx/Linb.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Lisu.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Lyci.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Lydi.pl
tlpkg/tlperl/lib/unicore/lib/Scx/Mand.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Merc.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Mero.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Miao.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Mlym.pl
tlpkg/tlperl/lib/unicore/lib/Scx/Mong.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Mtei.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Mymr.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Nko.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Ogam.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Olck.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Orkh.pl
tlpkg/tlperl/lib/unicore/lib/Scx/Orya.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Osma.pl
tlpkg/tlperl/lib/unicore/lib/Scx/Phag.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Phli.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Phnx.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Prti.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Rjng.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Runr.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Samr.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Sarb.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Saur.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Shaw.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Shrd.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Sinh.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Sora.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Sund.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Sylo.pl
tlpkg/tlperl/lib/unicore/lib/Scx/Syrc.pl
tlpkg/tlperl/lib/unicore/lib/Scx/Tagb.pl
tlpkg/tlperl/lib/unicore/lib/Scx/Takr.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Tale.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Talu.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Taml.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Tavt.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Telu.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Tfng.pl
tlpkg/tlperl/lib/unicore/lib/Scx/Tglg.pl
tlpkg/tlperl/lib/unicore/lib/Scx/Thaa.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Thai.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Tibt.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Ugar.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Vai.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Xpeo.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Xsux.pl
tlpkg/tlperl/lib/unicore/lib/Scx/Yi.pl
tlpkg/tlperl/lib/unicore/lib/Scx/Zinh.pl
tlpkg/tlperl/lib/unicore/lib/Scx/Zyyy.pl
- tlpkg/tlperl/lib/unicore/lib/Scx/Zzzz.pl
- tlpkg/tlperl/lib/unicore/lib/Space/Y.pl
tlpkg/tlperl/lib/unicore/lib/Term/Y.pl
tlpkg/tlperl/lib/unicore/lib/UIdeo/Y.pl
tlpkg/tlperl/lib/unicore/lib/Upper/Y.pl
tlpkg/tlperl/lib/unicore/lib/VS/Y.pl
+ tlpkg/tlperl/lib/unicore/lib/WB/EX.pl
tlpkg/tlperl/lib/unicore/lib/WB/FO.pl
tlpkg/tlperl/lib/unicore/lib/WB/KA.pl
tlpkg/tlperl/lib/unicore/lib/WB/LE.pl
@@ -168289,9 +182757,6 @@ runfiles size=13043
tlpkg/tlperl/lib/utf8_heavy.pl
tlpkg/tlperl/lib/vars.pm
tlpkg/tlperl/lib/version.pm
- tlpkg/tlperl/lib/version.pod
- tlpkg/tlperl/lib/version/Internals.pod
- tlpkg/tlperl/lib/version/Requirements.pm
tlpkg/tlperl/lib/vmsish.pm
tlpkg/tlperl/lib/warnings.pm
tlpkg/tlperl/lib/warnings/register.pm
@@ -168368,7 +182833,7 @@ catalogue-version 2.3f
name tocvsec2
category Package
-revision 23444
+revision 33146
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
@@ -168383,9 +182848,9 @@ srcfiles size=8
runfiles size=2
texmf-dist/tex/latex/tocvsec2/tocvsec2.sty
catalogue-ctan /macros/latex/contrib/tocvsec2
-catalogue-date 2012-08-28 12:10:31 +0200
+catalogue-date 2014-03-10 12:04:22 +0100
catalogue-license lppl1.3
-catalogue-version 1.3
+catalogue-version 1.3a
name todo
category Package
@@ -168427,7 +182892,7 @@ srcfiles size=17
runfiles size=5
texmf-dist/tex/latex/todonotes/todonotes.sty
catalogue-ctan /macros/latex/contrib/todonotes
-catalogue-date 2012-11-25 12:17:34 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
name tokenizer
@@ -168437,7 +182902,7 @@ 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 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
@@ -168448,22 +182913,23 @@ docfiles size=22
runfiles size=2
texmf-dist/tex/latex/tokenizer/tokenizer.sty
catalogue-ctan /macros/latex/contrib/tokenizer
-catalogue-date 2012-08-24 15:51:53 +0200
+catalogue-date 2013-11-21 21:33:57 +0100
catalogue-license lppl
catalogue-version 1.1.0
name toolbox
category Package
-revision 15878
-shortdesc Macros for writing indices, glossaries.
+revision 32260
+shortdesc Tool macros.
longdesc A package for (La)TeX which provides some macros which are
longdesc convenient for writing indexes, 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=11
+docfiles size=49
texmf-dist/doc/latex/toolbox/README details="Readme"
+ texmf-dist/doc/latex/toolbox/toolbox.pdf
texmf-dist/doc/latex/toolbox/toolbox.tex
texmf-dist/doc/latex/toolbox/toolbox.txt
srcfiles size=29
@@ -168472,21 +182938,22 @@ srcfiles size=29
runfiles size=3
texmf-dist/tex/latex/toolbox/toolbox.sty
catalogue-ctan /macros/latex/contrib/toolbox
-catalogue-date 2012-08-24 15:51:53 +0200
+catalogue-date 2013-11-27 01:19:45 +0100
catalogue-license lppl
catalogue-version 5.1
name tools
category Package
-revision 29849
+revision 34051
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, bm, calc, dcolumn, delarray, enumerate, fileerr,
-longdesc fontsmpl, ftnright, hhline, indentfirst, layout, longtable,
-longdesc multicol, rawfonts, showkeys, somedefs, tabularx, theorem,
-longdesc trace, varioref, verbatim, xr, and xspace.
-docfiles size=742
+longdesc the LaTeX required tools distribution, comprising the packages:
+longdesc afterpage, array, bm, calc, dcolumn, delarray, enumerate,
+longdesc fileerr, fontsmpl, ftnright, hhline, indentfirst, layout,
+longdesc longtable, multicol, rawfonts, showkeys, somedefs, tabularx,
+longdesc theorem, trace, varioref, verbatim, xr, and xspace.
+docfiles size=787
+ texmf-dist/doc/latex/tools/00readme.txt details="Readme"
texmf-dist/doc/latex/tools/afterpage.pdf
texmf-dist/doc/latex/tools/array.pdf
texmf-dist/doc/latex/tools/bm.pdf
@@ -168505,7 +182972,6 @@ docfiles size=742
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
@@ -168516,10 +182982,12 @@ docfiles size=742
texmf-dist/doc/latex/tools/verbatim.pdf
texmf-dist/doc/latex/tools/xr.pdf
texmf-dist/doc/latex/tools/xspace.pdf
-srcfiles size=240
+srcfiles size=249
texmf-dist/source/latex/tools/afterpage.dtx
+ texmf-dist/source/latex/tools/afterpage.ins
texmf-dist/source/latex/tools/array.dtx
texmf-dist/source/latex/tools/bm.dtx
+ texmf-dist/source/latex/tools/bm.ins
texmf-dist/source/latex/tools/calc.dtx
texmf-dist/source/latex/tools/dcolumn.dtx
texmf-dist/source/latex/tools/delarray.dtx
@@ -168531,19 +182999,23 @@ srcfiles size=240
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/longtable.ins
texmf-dist/source/latex/tools/multicol.dtx
+ texmf-dist/source/latex/tools/multicol.ins
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/tabularx.ins
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/varioref.ins
texmf-dist/source/latex/tools/verbatim.dtx
texmf-dist/source/latex/tools/xr.dtx
texmf-dist/source/latex/tools/xspace.dtx
-runfiles size=76
+runfiles size=77
texmf-dist/tex/latex/tools/.tex
texmf-dist/tex/latex/tools/afterpage.sty
texmf-dist/tex/latex/tools/array.sty
@@ -168584,8 +183056,8 @@ runfiles size=76
texmf-dist/tex/latex/tools/xr.sty
texmf-dist/tex/latex/tools/xspace.sty
catalogue-ctan /macros/latex/required/tools
-catalogue-date 2012-06-06 12:15:04 +0200
-catalogue-license lppl
+catalogue-date 2014-05-14 23:49:31 +0200
+catalogue-license lppl1.3
name topfloat
category Package
@@ -168602,7 +183074,7 @@ catalogue-license gpl
name toptesi
category Package
-revision 29803
+revision 32081
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
@@ -168616,21 +183088,30 @@ longdesc more and more frequent thanks to the double degree programs of
longdesc the European Community Socrates programs. Toptesi is designed
longdesc to save the PDF version of a thesis in PDF/A-1b compliant mode
longdesc and with all the necessary metadata.
-docfiles size=908
+docfiles size=816
texmf-dist/doc/latex/toptesi/FrontespiziAssemblati.pdf
+ texmf-dist/doc/latex/toptesi/FrontespiziAssemblati.tex
texmf-dist/doc/latex/toptesi/LPPL.tex
+ texmf-dist/doc/latex/toptesi/LoghiFinti.pdf
+ texmf-dist/doc/latex/toptesi/LoghiFinti.tex
texmf-dist/doc/latex/toptesi/README details="Readme" language="en"
+ texmf-dist/doc/latex/toptesi/README.TEXLIVE
texmf-dist/doc/latex/toptesi/manifest.txt
+ texmf-dist/doc/latex/toptesi/topfront-example.pdf
+ texmf-dist/doc/latex/toptesi/topfront-example.tex
+ texmf-dist/doc/latex/toptesi/toptesi-doc-xetex-Acrobat.pdf
texmf-dist/doc/latex/toptesi/toptesi-doc-xetex-a.pdf
texmf-dist/doc/latex/toptesi/toptesi-doc-xetex-def.ps
texmf-dist/doc/latex/toptesi/toptesi-doc-xetex.pdf details="Class documentation (Italian)" language="it"
texmf-dist/doc/latex/toptesi/toptesi-doc-xetex.tex
+ texmf-dist/doc/latex/toptesi/toptesi-example-Acrobat.pdf
texmf-dist/doc/latex/toptesi/toptesi-example-xetex.pdf
texmf-dist/doc/latex/toptesi/toptesi-example-xetex.tex
texmf-dist/doc/latex/toptesi/toptesi-example.pdf
texmf-dist/doc/latex/toptesi/toptesi-example.tex
texmf-dist/doc/latex/toptesi/toptesi-example.xmpdata
-srcfiles size=35
+ texmf-dist/doc/latex/toptesi/toptesi.pdf
+srcfiles size=37
texmf-dist/source/latex/toptesi/toptesi.dtx
runfiles size=14
texmf-dist/tex/latex/toptesi/topcoman.sty
@@ -168639,9 +183120,9 @@ runfiles size=14
texmf-dist/tex/latex/toptesi/toptesi.cls
texmf-dist/tex/latex/toptesi/toptesi.sty
catalogue-ctan /macros/latex/contrib/toptesi
-catalogue-date 2013-03-28 10:14:09 +0100
+catalogue-date 2013-11-05 18:25:42 +0100
catalogue-license lppl1.3
-catalogue-version 5.71
+catalogue-version 5.76
name totcount
category Package
@@ -168662,7 +183143,7 @@ srcfiles size=8
runfiles size=2
texmf-dist/tex/latex/totcount/totcount.sty
catalogue-ctan /macros/latex/contrib/totcount
-catalogue-date 2012-08-24 15:51:53 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.2
@@ -168691,7 +183172,7 @@ catalogue-version 2.00
name tpic2pdftex
category TLCore
-revision 29764
+revision 33736
shortdesc Use tpic commands in PDFTeX.
longdesc The AWK script converts pic language, embedded inline
longdesc (delimited by .PS and .PE markers), to \pdfliteral commands.
@@ -168705,7 +183186,7 @@ docfiles size=23
texmf-dist/doc/tpic2pdftex/example.pdf
texmf-dist/doc/tpic2pdftex/example.pic
catalogue-ctan /graphics/tpic2pdftex
-catalogue-date 2012-08-24 00:56:38 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license gpl
catalogue-version 1.97
@@ -168793,13 +183274,6 @@ shortdesc i386-solaris files of tpic2pdftex
binfiles arch=i386-solaris size=4
bin/i386-solaris/tpic2pdftex
-name tpic2pdftex.mips-irix
-category TLCore
-revision 29949
-shortdesc mips-irix files of tpic2pdftex
-binfiles arch=mips-irix size=4
- bin/mips-irix/tpic2pdftex
-
name tpic2pdftex.mipsel-linux
category TLCore
revision 29783
@@ -168828,6 +183302,13 @@ shortdesc universal-darwin files of tpic2pdftex
binfiles arch=universal-darwin size=4
bin/universal-darwin/tpic2pdftex
+name tpic2pdftex.x86_64-cygwin
+category TLCore
+revision 33557
+shortdesc x86_64-cygwin files of tpic2pdftex
+binfiles arch=x86_64-cygwin size=4
+ bin/x86_64-cygwin/tpic2pdftex
+
name tpic2pdftex.x86_64-darwin
category TLCore
revision 29809
@@ -168884,25 +183365,26 @@ catalogue-version 0.6
name tqft
category Package
-revision 24169
+revision 33411
shortdesc Drawing TQFT diagrams with TikZ/PGF.
longdesc The package defines some node shapes useful for drawing TQFT
longdesc diagrams with TikZ/PGF. That is, it defines highly customisable
longdesc shapes that look like cobordisms between circles, such as those
longdesc used in TQFT and other mathematical diagrams.
-docfiles size=84
- texmf-dist/doc/latex/tqft/README.txt
+docfiles size=116
+ texmf-dist/doc/latex/tqft/README details="Readme"
texmf-dist/doc/latex/tqft/tqft_doc.pdf details="Package documentation"
texmf-dist/doc/latex/tqft/tqft_doc.tex
-srcfiles size=12
+srcfiles size=21
texmf-dist/source/latex/tqft/tqft.dtx
texmf-dist/source/latex/tqft/tqft.ins
-runfiles size=7
+runfiles size=13
+ texmf-dist/tex/latex/tqft/tikzlibrarytqft.code.tex
texmf-dist/tex/latex/tqft/tqft.sty
catalogue-ctan /macros/latex/contrib/tqft
-catalogue-date 2011-10-05 08:29:57 +0200
+catalogue-date 2014-04-08 15:56:54 +0200
catalogue-license lppl1.3
-catalogue-version 1.0
+catalogue-version 2.0
name trajan
category Package
@@ -168954,7 +183436,7 @@ runfiles size=2
texmf-dist/fonts/source/public/tram/tram.mf
texmf-dist/tex/latex/tram/tram.sty
catalogue-ctan /macros/latex/contrib/tram
-catalogue-date 2013-04-05 13:20:40 +0200
+catalogue-date 2014-04-29 06:13:54 +0200
catalogue-license lppl
catalogue-version 0.2
@@ -168970,7 +183452,7 @@ docfiles size=188
texmf-dist/doc/latex/translation-array-fr/f-array.pdf details="The translation"
texmf-dist/doc/latex/translation-array-fr/ltxdoc.cfg
catalogue-ctan /info/translations/array/fr
-catalogue-date 2012-08-24 00:56:38 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
name translation-arsclassica-de
@@ -168995,7 +183477,7 @@ docfiles size=394
texmf-dist/doc/latex/translation-biblatex-de/biblatex-de.pdf details="The translation"
texmf-dist/doc/latex/translation-biblatex-de/biblatex-de.tex
catalogue-ctan /info/translations/biblatex/de
-catalogue-date 2012-02-22 12:31:25 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.0
@@ -169023,7 +183505,7 @@ docfiles size=88
texmf-dist/doc/latex/translation-dcolumn-fr/f-dcolumn.dtx
texmf-dist/doc/latex/translation-dcolumn-fr/f-dcolumn.pdf details="The translation"
catalogue-ctan /info/translations/dcolumn/fr
-catalogue-date 2012-02-17 14:35:03 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
name translation-ecv-de
@@ -169035,7 +183517,7 @@ docfiles size=108
texmf-dist/doc/latex/translation-ecv-de/ecvde.dtx.pdf details="Package documentation" language="de"
texmf-dist/doc/latex/translation-ecv-de/ecvde.dtx.tex
catalogue-ctan /info/translations/ecv/de
-catalogue-date 2012-08-23 23:34:30 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
name translation-enumitem-de
@@ -169047,7 +183529,7 @@ docfiles size=160
texmf-dist/doc/latex/translation-enumitem-de/enumitem-de.pdf details="The translation itself" language="de"
texmf-dist/doc/latex/translation-enumitem-de/enumitem-de.tex
catalogue-ctan /info/translations/enumitem/de
-catalogue-date 2012-08-23 23:34:30 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
name translation-europecv-de
@@ -169115,7 +183597,7 @@ docfiles size=207
texmf-dist/doc/latex/translation-natbib-fr/f-natbib.dtx
texmf-dist/doc/latex/translation-natbib-fr/f-natbib.pdf details="Translated documentation"
catalogue-ctan /info/translations/natbib/fr
-catalogue-date 2012-08-23 23:34:30 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
name translation-tabbing-fr
@@ -169129,9 +183611,37 @@ docfiles size=89
texmf-dist/doc/latex/translation-tabbing-fr/f-Tabbing.pdf details="The document itself" language="fr"
texmf-dist/doc/latex/translation-tabbing-fr/ltxdoc.cfg
catalogue-ctan /info/translations/Tabbing/fr
-catalogue-date 2012-08-23 23:34:30 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1
+name translations
+category Package
+revision 32779
+shortdesc Internationalisation of LaTeX2e packages.
+longdesc This package (once part of the exsheets package), provides a
+longdesc framework for providing multilingual features to a LaTeX
+longdesc package. The package has its own basic dictionaries for
+longdesc English, French, German and Spanish; it aims to use translation
+longdesc material for English, French, German, Italian, Spanish,
+longdesc Catalan, Turkish, Croatian, Hungarian, Danish and Portuguese
+longdesc from babel or polyglossia if either is in use in the document.
+longdesc (Additional languages from the multilingual packages may be
+longdesc possible: ask the author.)
+docfiles size=143
+ texmf-dist/doc/latex/translations/README details="Readme"
+ texmf-dist/doc/latex/translations/translations_en.pdf details="Package documentation (English)" language="en"
+ texmf-dist/doc/latex/translations/translations_en.tex
+runfiles size=17
+ texmf-dist/tex/latex/translations/translations-basic-dictionary-english.trsl
+ texmf-dist/tex/latex/translations/translations-basic-dictionary-french.trsl
+ texmf-dist/tex/latex/translations/translations-basic-dictionary-german.trsl
+ texmf-dist/tex/latex/translations/translations-basic-dictionary-spanish.trsl
+ texmf-dist/tex/latex/translations/translations.sty
+catalogue-ctan /macros/latex/contrib/translations
+catalogue-date 2014-02-26 23:03:13 +0100
+catalogue-license lppl1.3
+catalogue-version 1.2a
+
name tree-dvips
category Package
revision 21751
@@ -169221,7 +183731,7 @@ srcfiles size=3
runfiles size=1
texmf-dist/tex/latex/trimspaces/trimspaces.sty
catalogue-ctan /macros/latex/contrib/trimspaces
-catalogue-date 2012-04-05 21:57:49 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.1
@@ -169243,7 +183753,7 @@ srcfiles size=7
runfiles size=2
texmf-dist/tex/latex/trivfloat/trivfloat.sty
catalogue-ctan /macros/latex/contrib/trivfloat
-catalogue-date 2012-04-05 21:57:49 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.3b
@@ -169304,13 +183814,13 @@ longdesc TikZ.
runfiles size=1
texmf-dist/tex/latex/tsemlines/tsemlines.sty
catalogue-ctan /macros/latex/contrib/tsemlines/tsemlines.sty
-catalogue-date 2012-08-23 23:37:14 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license pd
catalogue-version 1.0
name ttfutils
category TLCore
-revision 29764
+revision 33736
depend ttfutils.ARCH
docfiles size=45
texmf-dist/doc/man/man1/ttf2afm.1
@@ -169344,9 +183854,9 @@ runfiles size=219
name ttfutils.alpha-linux
category TLCore
-revision 29891
+revision 33553
shortdesc alpha-linux files of ttfutils
-binfiles arch=alpha-linux size=254
+binfiles arch=alpha-linux size=460
bin/alpha-linux/ttf2afm
bin/alpha-linux/ttf2pk
bin/alpha-linux/ttf2tfm
@@ -169354,9 +183864,9 @@ binfiles arch=alpha-linux size=254
name ttfutils.amd64-freebsd
category TLCore
-revision 29874
+revision 33488
shortdesc amd64-freebsd files of ttfutils
-binfiles arch=amd64-freebsd size=196
+binfiles arch=amd64-freebsd size=379
bin/amd64-freebsd/ttf2afm
bin/amd64-freebsd/ttf2pk
bin/amd64-freebsd/ttf2tfm
@@ -169364,9 +183874,9 @@ binfiles arch=amd64-freebsd size=196
name ttfutils.amd64-kfreebsd
category TLCore
-revision 30655
+revision 33864
shortdesc amd64-kfreebsd files of ttfutils
-binfiles arch=amd64-kfreebsd size=199
+binfiles arch=amd64-kfreebsd size=390
bin/amd64-kfreebsd/ttf2afm
bin/amd64-kfreebsd/ttf2pk
bin/amd64-kfreebsd/ttf2tfm
@@ -169374,9 +183884,9 @@ binfiles arch=amd64-kfreebsd size=199
name ttfutils.amd64-netbsd
category TLCore
-revision 30660
+revision 33726
shortdesc amd64-netbsd files of ttfutils
-binfiles arch=amd64-netbsd size=197
+binfiles arch=amd64-netbsd size=385
bin/amd64-netbsd/ttf2afm
bin/amd64-netbsd/ttf2pk
bin/amd64-netbsd/ttf2tfm
@@ -169384,9 +183894,9 @@ binfiles arch=amd64-netbsd size=197
name ttfutils.armel-linux
category TLCore
-revision 29888
+revision 33916
shortdesc armel-linux files of ttfutils
-binfiles arch=armel-linux size=171
+binfiles arch=armel-linux size=327
bin/armel-linux/ttf2afm
bin/armel-linux/ttf2pk
bin/armel-linux/ttf2tfm
@@ -169394,9 +183904,9 @@ binfiles arch=armel-linux size=171
name ttfutils.armhf-linux
category TLCore
-revision 30443
+revision 34125
shortdesc armhf-linux files of ttfutils
-binfiles arch=armhf-linux size=162
+binfiles arch=armhf-linux size=317
bin/armhf-linux/ttf2afm
bin/armhf-linux/ttf2pk
bin/armhf-linux/ttf2tfm
@@ -169404,9 +183914,9 @@ binfiles arch=armhf-linux size=162
name ttfutils.i386-cygwin
category TLCore
-revision 30526
+revision 34161
shortdesc i386-cygwin files of ttfutils
-binfiles arch=i386-cygwin size=173
+binfiles arch=i386-cygwin size=378
bin/i386-cygwin/ttf2afm.exe
bin/i386-cygwin/ttf2pk.exe
bin/i386-cygwin/ttf2tfm.exe
@@ -169414,9 +183924,9 @@ binfiles arch=i386-cygwin size=173
name ttfutils.i386-freebsd
category TLCore
-revision 29874
+revision 33488
shortdesc i386-freebsd files of ttfutils
-binfiles arch=i386-freebsd size=176
+binfiles arch=i386-freebsd size=341
bin/i386-freebsd/ttf2afm
bin/i386-freebsd/ttf2pk
bin/i386-freebsd/ttf2tfm
@@ -169424,9 +183934,9 @@ binfiles arch=i386-freebsd size=176
name ttfutils.i386-kfreebsd
category TLCore
-revision 30440
+revision 33864
shortdesc i386-kfreebsd files of ttfutils
-binfiles arch=i386-kfreebsd size=189
+binfiles arch=i386-kfreebsd size=378
bin/i386-kfreebsd/ttf2afm
bin/i386-kfreebsd/ttf2pk
bin/i386-kfreebsd/ttf2tfm
@@ -169434,9 +183944,9 @@ binfiles arch=i386-kfreebsd size=189
name ttfutils.i386-linux
category TLCore
-revision 30088
+revision 33479
shortdesc i386-linux files of ttfutils
-binfiles arch=i386-linux size=190
+binfiles arch=i386-linux size=398
bin/i386-linux/ttf2afm
bin/i386-linux/ttf2pk
bin/i386-linux/ttf2tfm
@@ -169444,9 +183954,9 @@ binfiles arch=i386-linux size=190
name ttfutils.i386-netbsd
category TLCore
-revision 30191
+revision 33562
shortdesc i386-netbsd files of ttfutils
-binfiles arch=i386-netbsd size=166
+binfiles arch=i386-netbsd size=327
bin/i386-netbsd/ttf2afm
bin/i386-netbsd/ttf2pk
bin/i386-netbsd/ttf2tfm
@@ -169454,29 +183964,19 @@ binfiles arch=i386-netbsd size=166
name ttfutils.i386-solaris
category TLCore
-revision 30112
+revision 34203
shortdesc i386-solaris files of ttfutils
-binfiles arch=i386-solaris size=219
+binfiles arch=i386-solaris size=425
bin/i386-solaris/ttf2afm
bin/i386-solaris/ttf2pk
bin/i386-solaris/ttf2tfm
bin/i386-solaris/ttfdump
-name ttfutils.mips-irix
-category TLCore
-revision 30131
-shortdesc mips-irix files of ttfutils
-binfiles arch=mips-irix size=404
- bin/mips-irix/ttf2afm
- bin/mips-irix/ttf2pk
- bin/mips-irix/ttf2tfm
- bin/mips-irix/ttfdump
-
name ttfutils.mipsel-linux
category TLCore
-revision 29995
+revision 33811
shortdesc mipsel-linux files of ttfutils
-binfiles arch=mipsel-linux size=239
+binfiles arch=mipsel-linux size=378
bin/mipsel-linux/ttf2afm
bin/mipsel-linux/ttf2pk
bin/mipsel-linux/ttf2tfm
@@ -169484,9 +183984,9 @@ binfiles arch=mipsel-linux size=239
name ttfutils.powerpc-linux
category TLCore
-revision 30114
+revision 33889
shortdesc powerpc-linux files of ttfutils
-binfiles arch=powerpc-linux size=195
+binfiles arch=powerpc-linux size=355
bin/powerpc-linux/ttf2afm
bin/powerpc-linux/ttf2pk
bin/powerpc-linux/ttf2tfm
@@ -169494,9 +183994,9 @@ binfiles arch=powerpc-linux size=195
name ttfutils.sparc-solaris
category TLCore
-revision 29877
+revision 33871
shortdesc sparc-solaris files of ttfutils
-binfiles arch=sparc-solaris size=198
+binfiles arch=sparc-solaris size=360
bin/sparc-solaris/ttf2afm
bin/sparc-solaris/ttf2pk
bin/sparc-solaris/ttf2tfm
@@ -169504,9 +184004,9 @@ binfiles arch=sparc-solaris size=198
name ttfutils.universal-darwin
category TLCore
-revision 30764
+revision 34201
shortdesc universal-darwin files of ttfutils
-binfiles arch=universal-darwin size=371
+binfiles arch=universal-darwin size=724
bin/universal-darwin/ttf2afm
bin/universal-darwin/ttf2pk
bin/universal-darwin/ttf2tfm
@@ -169514,19 +184014,29 @@ binfiles arch=universal-darwin size=371
name ttfutils.win32
category TLCore
-revision 29816
+revision 33897
shortdesc win32 files of ttfutils
-binfiles arch=win32 size=90
+binfiles arch=win32 size=259
bin/win32/ttf2afm.exe
bin/win32/ttf2pk.exe
bin/win32/ttf2tfm.exe
bin/win32/ttfdump.exe
+name ttfutils.x86_64-cygwin
+category TLCore
+revision 34161
+shortdesc x86_64-cygwin files of ttfutils
+binfiles arch=x86_64-cygwin size=376
+ bin/x86_64-cygwin/ttf2afm.exe
+ bin/x86_64-cygwin/ttf2pk.exe
+ bin/x86_64-cygwin/ttf2tfm.exe
+ bin/x86_64-cygwin/ttfdump.exe
+
name ttfutils.x86_64-darwin
category TLCore
-revision 29879
+revision 34201
shortdesc x86_64-darwin files of ttfutils
-binfiles arch=x86_64-darwin size=214
+binfiles arch=x86_64-darwin size=415
bin/x86_64-darwin/ttf2afm
bin/x86_64-darwin/ttf2pk
bin/x86_64-darwin/ttf2tfm
@@ -169534,9 +184044,9 @@ binfiles arch=x86_64-darwin size=214
name ttfutils.x86_64-linux
category TLCore
-revision 30204
+revision 33723
shortdesc x86_64-linux files of ttfutils
-binfiles arch=x86_64-linux size=198
+binfiles arch=x86_64-linux size=389
bin/x86_64-linux/ttf2afm
bin/x86_64-linux/ttf2pk
bin/x86_64-linux/ttf2tfm
@@ -169544,9 +184054,9 @@ binfiles arch=x86_64-linux size=198
name ttfutils.x86_64-solaris
category TLCore
-revision 30112
+revision 34203
shortdesc x86_64-solaris files of ttfutils
-binfiles arch=x86_64-solaris size=274
+binfiles arch=x86_64-solaris size=539
bin/x86_64-solaris/ttf2afm
bin/x86_64-solaris/ttf2pk
bin/x86_64-solaris/ttf2tfm
@@ -169576,10 +184086,116 @@ srcfiles size=5
runfiles size=1
texmf-dist/tex/latex/tucv/tucv.sty
catalogue-ctan /macros/latex/contrib/tucv
-catalogue-date 2012-04-17 08:39:03 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license other-free
catalogue-version 1.0
+name tudscr
+category Package
+revision 33755
+shortdesc Typeset documents in the corporate style of TU Dresden.
+longdesc The bundle provides classes and packages, whose aim is to
+longdesc typeset LaTeX documents in the Corporate Design of the
+longdesc Technische Universitat Dresden. It bases on the KOMA-Script
+longdesc document classes. The fonts Univers and DIN-Bold are necessary.
+longdesc (The fonts are available on request for staff and students of
+longdesc the Technische Universitat Dresden.) The bundle offers: the
+longdesc three document classes tudscrartcl, tudscrreprt and tudscrbook
+longdesc which serve as drop-in replacements for scrartcl, scrreprt and
+longdesc scrreprt. the package tudscrsupervisor, which provides
+longdesc environments and macros to create tasks, evaluations and
+longdesc notices for scientific theses, the package mathswap for
+longdesc swapping math delimiters within numbers (cf. ionumbers), and
+longdesc the package twocolfix that the position of headings in two
+longdesc column layout.
+docfiles size=713
+ texmf-dist/doc/latex/tudscr/README details="Readme"
+ texmf-dist/doc/latex/tudscr/doc/examples/dissertation.tex
+ texmf-dist/doc/latex/tudscr/doc/examples/document.tex
+ texmf-dist/doc/latex/tudscr/doc/examples/evaluation.tex
+ texmf-dist/doc/latex/tudscr/doc/examples/mathswap.tex
+ texmf-dist/doc/latex/tudscr/doc/examples/notice.tex
+ texmf-dist/doc/latex/tudscr/doc/examples/task.tex
+ texmf-dist/doc/latex/tudscr/doc/examples/thesis.tex
+ texmf-dist/doc/latex/tudscr/doc/tudscr.tex
+ texmf-dist/doc/latex/tudscr/doc/tudscrman.xdy
+ texmf-dist/doc/latex/tudscr/examples/dissertation.pdf
+ texmf-dist/doc/latex/tudscr/examples/document.pdf
+ texmf-dist/doc/latex/tudscr/examples/evaluation.pdf
+ texmf-dist/doc/latex/tudscr/examples/mathswap.pdf
+ texmf-dist/doc/latex/tudscr/examples/notice.pdf
+ texmf-dist/doc/latex/tudscr/examples/task.pdf
+ texmf-dist/doc/latex/tudscr/examples/thesis.pdf
+ texmf-dist/doc/latex/tudscr/tudscr.pdf
+ texmf-dist/doc/latex/tudscr/tudscr_print.pdf
+ texmf-dist/doc/latex/tudscr/tudscrsource.pdf
+ texmf-dist/doc/latex/tudscr/tudscrsource.tex
+srcfiles size=112
+ texmf-dist/source/latex/tudscr/tudscr-base.dtx
+ texmf-dist/source/latex/tudscr/tudscr-color.dtx
+ texmf-dist/source/latex/tudscr/tudscr-comp.dtx
+ texmf-dist/source/latex/tudscr/tudscr-doc.dtx
+ texmf-dist/source/latex/tudscr/tudscr-fields.dtx
+ texmf-dist/source/latex/tudscr/tudscr-fonts.dtx
+ texmf-dist/source/latex/tudscr/tudscr-frontmatter.dtx
+ texmf-dist/source/latex/tudscr/tudscr-layout.dtx
+ texmf-dist/source/latex/tudscr/tudscr-locale.dtx
+ texmf-dist/source/latex/tudscr/tudscr-manual.dtx
+ texmf-dist/source/latex/tudscr/tudscr-mathswap.dtx
+ texmf-dist/source/latex/tudscr/tudscr-misc.dtx
+ texmf-dist/source/latex/tudscr/tudscr-pagestyle.dtx
+ texmf-dist/source/latex/tudscr/tudscr-supervisor.dtx
+ texmf-dist/source/latex/tudscr/tudscr-title.dtx
+ texmf-dist/source/latex/tudscr/tudscr-twocolfix.dtx
+ texmf-dist/source/latex/tudscr/tudscr-version.dtx
+ texmf-dist/source/latex/tudscr/tudscr.ins
+runfiles size=2897
+ texmf-dist/tex/latex/tudscr/logo/DDC-01.eps
+ texmf-dist/tex/latex/tudscr/logo/DDC-01.pdf
+ texmf-dist/tex/latex/tudscr/logo/DDC-03.eps
+ texmf-dist/tex/latex/tudscr/logo/DDC-03.pdf
+ texmf-dist/tex/latex/tudscr/logo/DDC-07.eps
+ texmf-dist/tex/latex/tudscr/logo/DDC-07.pdf
+ texmf-dist/tex/latex/tudscr/logo/DDC-09.eps
+ texmf-dist/tex/latex/tudscr/logo/DDC-09.pdf
+ texmf-dist/tex/latex/tudscr/logo/DDC-19.eps
+ texmf-dist/tex/latex/tudscr/logo/DDC-19.pdf
+ texmf-dist/tex/latex/tudscr/logo/DDC-21.eps
+ texmf-dist/tex/latex/tudscr/logo/DDC-21.pdf
+ texmf-dist/tex/latex/tudscr/logo/DDC-22.eps
+ texmf-dist/tex/latex/tudscr/logo/DDC-22.pdf
+ texmf-dist/tex/latex/tudscr/logo/DDC-24.eps
+ texmf-dist/tex/latex/tudscr/logo/DDC-24.pdf
+ texmf-dist/tex/latex/tudscr/logo/DDC-25.eps
+ texmf-dist/tex/latex/tudscr/logo/DDC-25.pdf
+ texmf-dist/tex/latex/tudscr/logo/DDC-27.eps
+ texmf-dist/tex/latex/tudscr/logo/DDC-27.pdf
+ texmf-dist/tex/latex/tudscr/logo/DDC-28.eps
+ texmf-dist/tex/latex/tudscr/logo/DDC-28.pdf
+ texmf-dist/tex/latex/tudscr/logo/DDC-30.eps
+ texmf-dist/tex/latex/tudscr/logo/DDC-30.pdf
+ texmf-dist/tex/latex/tudscr/logo/TU_Logo_HKS41.eps
+ texmf-dist/tex/latex/tudscr/logo/TU_Logo_HKS41.pdf
+ texmf-dist/tex/latex/tudscr/logo/TU_Logo_SW.eps
+ texmf-dist/tex/latex/tudscr/logo/TU_Logo_SW.pdf
+ texmf-dist/tex/latex/tudscr/logo/TU_Logo_WS.eps
+ texmf-dist/tex/latex/tudscr/logo/TU_Logo_WS.pdf
+ texmf-dist/tex/latex/tudscr/mathswap.sty
+ texmf-dist/tex/latex/tudscr/tudscrartcl.cls
+ texmf-dist/tex/latex/tudscr/tudscrbase.sty
+ texmf-dist/tex/latex/tudscr/tudscrbook.cls
+ texmf-dist/tex/latex/tudscr/tudscrcolor.sty
+ texmf-dist/tex/latex/tudscr/tudscrcomp.sty
+ texmf-dist/tex/latex/tudscr/tudscrdoc.cls
+ texmf-dist/tex/latex/tudscr/tudscrman.cls
+ texmf-dist/tex/latex/tudscr/tudscrreprt.cls
+ texmf-dist/tex/latex/tudscr/tudscrsupervisor.sty
+ texmf-dist/tex/latex/tudscr/twocolfix.sty
+catalogue-ctan /macros/latex/contrib/tudscr
+catalogue-date 2014-05-06 15:51:33 +0200
+catalogue-license lppl
+catalogue-version 2.01
+
name tufte-latex
category Package
revision 24733
@@ -169632,19 +184248,18 @@ runfiles size=19
texmf-dist/tex/latex/tufte-latex/tufte-common.def
texmf-dist/tex/latex/tufte-latex/tufte-handout.cls
catalogue-ctan /macros/latex/contrib/tufte-latex
-catalogue-date 2012-09-17 12:04:36 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license apache2
catalogue-version 3.5.0
name tugboat
category Package
-revision 29003
+revision 32478
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=202
+longdesc Provides ltugboat.cls for both regular and proceedings issues
+longdesc of the TUGboat journal. The distribution also includes a BibTeX
+longdesc style appropriate for use with the classes' "harvard" option.
+docfiles size=203
texmf-dist/doc/latex/tugboat/README details="Readme"
texmf-dist/doc/latex/tugboat/ltubguid.ltx
texmf-dist/doc/latex/tugboat/ltubguid.pdf details="Instructions for authors" language="en"
@@ -169661,13 +184276,13 @@ runfiles size=30
texmf-dist/tex/latex/tugboat/ltugproc.cls
texmf-dist/tex/latex/tugboat/ltugproc.sty
catalogue-ctan /macros/latex/contrib/tugboat
-catalogue-date 2013-02-01 11:51:49 +0100
+catalogue-date 2013-12-23 22:50:28 +0100
catalogue-license lppl
-catalogue-version 2.12
+catalogue-version 2.14
name tugboat-plain
category Package
-revision 26611
+revision 31340
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
@@ -169681,9 +184296,9 @@ runfiles size=30
texmf-dist/tex/plain/tugboat-plain/tugboat.sty
texmf-dist/tex/plain/tugboat-plain/tugproc.sty
catalogue-ctan /macros/plain/contrib/tugboat
-catalogue-date 2012-05-23 08:30:34 +0200
+catalogue-date 2013-11-21 21:33:57 +0100
catalogue-license other-free
-catalogue-version 1.20
+catalogue-version 1.21
name tui
category Package
@@ -169734,7 +184349,7 @@ docfiles size=104
runfiles size=3
texmf-dist/tex/latex/tui/tui.cls
catalogue-ctan /macros/latex/contrib/tui
-catalogue-date 2012-07-30 18:08:41 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.9
@@ -169753,7 +184368,7 @@ srcfiles size=4
runfiles size=1
texmf-dist/tex/latex/turkmen/turkmen.ldf
catalogue-ctan /language/turkmen
-catalogue-date 2012-08-19 17:38:37 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 0.2
@@ -169782,7 +184397,7 @@ srcfiles size=14
runfiles size=3
texmf-dist/tex/latex/turnstile/turnstile.sty
catalogue-ctan /macros/latex/contrib/turnstile
-catalogue-date 2012-08-19 17:38:37 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.0
@@ -169805,7 +184420,7 @@ runfiles size=3
texmf-dist/tex/latex/turnthepage/turnpagewoetex.sty
texmf-dist/tex/latex/turnthepage/turnthepage.sty
catalogue-ctan /macros/latex/contrib/turnthepage
-catalogue-date 2012-08-19 17:38:37 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.3a
@@ -170271,7 +184886,7 @@ runfiles size=1596
texmf-dist/tex/latex/txfontsb/ot1txryc.fd
texmf-dist/tex/latex/txfontsb/txfontsb.sty
catalogue-ctan /fonts/txfontsb
-catalogue-date 2012-08-19 17:50:37 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license gpl
catalogue-version 1.1
@@ -170295,7 +184910,7 @@ srcfiles size=4
runfiles size=2
texmf-dist/tex/latex/txgreeks/txgreeks.sty
catalogue-ctan /macros/latex/contrib/txgreeks
-catalogue-date 2012-08-19 17:50:37 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.0
@@ -170356,7 +184971,7 @@ runfiles size=57
texmf-dist/tex/latex/typeface/typeface.cfg
texmf-dist/tex/latex/typeface/typeface.sty
catalogue-ctan /macros/latex/contrib/typeface
-catalogue-date 2012-07-16 11:23:54 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 0.1
@@ -170393,7 +185008,7 @@ docfiles size=1
runfiles size=1
texmf-dist/scripts/typeoutfileinfo/typeoutfileinfo.sh
catalogue-ctan /support/typeoutfileinfo
-catalogue-date 2012-09-28 15:59:23 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 0.31
@@ -170481,13 +185096,6 @@ shortdesc i386-solaris files of typeoutfileinfo
binfiles arch=i386-solaris size=1
bin/i386-solaris/typeoutfileinfo
-name typeoutfileinfo.mips-irix
-category Package
-revision 29949
-shortdesc mips-irix files of typeoutfileinfo
-binfiles arch=mips-irix size=1
- bin/mips-irix/typeoutfileinfo
-
name typeoutfileinfo.mipsel-linux
category Package
revision 29946
@@ -170516,6 +185124,13 @@ shortdesc universal-darwin files of typeoutfileinfo
binfiles arch=universal-darwin size=1
bin/universal-darwin/typeoutfileinfo
+name typeoutfileinfo.x86_64-cygwin
+category Package
+revision 33557
+shortdesc x86_64-cygwin files of typeoutfileinfo
+binfiles arch=x86_64-cygwin size=1
+ bin/x86_64-cygwin/typeoutfileinfo
+
name typeoutfileinfo.x86_64-darwin
category Package
revision 25648
@@ -170591,21 +185206,21 @@ catalogue-license pd
name uadocs
category Package
-revision 30453
+revision 31042
shortdesc Course texts and masters theses in University of Antwerp style.
longdesc These class files implement the house style of the University
longdesc of Antwerp for course texts and master theses. Using these
longdesc class files will make it easy for you to make and keep your
longdesc documents compliant to this version and future versions of the
longdesc house style of the University of Antwerp.
-docfiles size=117
+docfiles size=119
texmf-dist/doc/latex/uadocs/LICENSE
texmf-dist/doc/latex/uadocs/uacoursetext-example.pdf
texmf-dist/doc/latex/uadocs/uacoursetext-example.tex
texmf-dist/doc/latex/uadocs/uadocs.pdf details="Package documentation"
texmf-dist/doc/latex/uadocs/uamasterthesis-example.pdf
texmf-dist/doc/latex/uadocs/uamasterthesis-example.tex
-srcfiles size=16
+srcfiles size=17
texmf-dist/source/latex/uadocs/uadocs.dtx
texmf-dist/source/latex/uadocs/uadocs.ins
runfiles size=137
@@ -170614,9 +185229,9 @@ runfiles size=137
texmf-dist/tex/latex/uadocs/uacoursetext.cls
texmf-dist/tex/latex/uadocs/uamasterthesis.cls
catalogue-ctan /macros/latex/contrib/uadocs
-catalogue-date 2013-05-23 13:36:11 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
-catalogue-version 1.0
+catalogue-version 1.1
name uafthesis
category Package
@@ -170645,14 +185260,38 @@ docfiles size=36
runfiles size=8
texmf-dist/tex/latex/uafthesis/uafthesis.cls
catalogue-ctan /macros/latex/contrib/uafthesis
-catalogue-date 2012-12-11 17:42:57 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 12.12
+name ucbthesis
+category Package
+revision 33458
+shortdesc Thesis and dissertation class supporting UCB requirements.
+longdesc The class provides the necessary framework for electronic
+longdesc submission of Masters theses and Ph.D. dissertations at the
+longdesc University of California, Berkeley. It is based on the memoir
+longdesc class.
+docfiles size=51
+ texmf-dist/doc/latex/ucbthesis/README details="Readme"
+ texmf-dist/doc/latex/ucbthesis/example/abstract.tex
+ texmf-dist/doc/latex/ucbthesis/example/chap1.tex
+ texmf-dist/doc/latex/ucbthesis/example/chap2.tex
+ texmf-dist/doc/latex/ucbthesis/example/references.bib
+ texmf-dist/doc/latex/ucbthesis/example/thesis.tex
+ texmf-dist/doc/latex/ucbthesis/ucbthesis.pdf details="Package documentation"
+ texmf-dist/doc/latex/ucbthesis/ucbthesis.tex
+runfiles size=6
+ texmf-dist/tex/latex/ucbthesis/ucbthesis.cls
+catalogue-ctan /macros/latex/contrib/ucbthesis
+catalogue-date 2014-04-25 11:20:11 +0200
+catalogue-license lppl1.3
+catalogue-version 3.4
+
name ucdavisthesis
category Package
-revision 17687
-shortdesc A thesis/dissertation class for University of California Davis.
+revision 31476
+shortdesc A thesis/dissertation class for University of California at Davis.
longdesc The class conforms to the University's requirements for 2009.
docfiles size=546
texmf-dist/doc/latex/ucdavisthesis/Example/ucdavisthesis_example.bib
@@ -170665,19 +185304,19 @@ docfiles size=546
texmf-dist/doc/latex/ucdavisthesis/Example/ucdavisthesis_example_main.tex
texmf-dist/doc/latex/ucdavisthesis/README details="Readme"
texmf-dist/doc/latex/ucdavisthesis/ucdavisthesis.pdf details="Package documentation"
-srcfiles size=24
+srcfiles size=23
texmf-dist/source/latex/ucdavisthesis/ucdavisthesis.dtx
texmf-dist/source/latex/ucdavisthesis/ucdavisthesis.ins
-runfiles size=18
+runfiles size=17
texmf-dist/tex/latex/ucdavisthesis/ucdavisthesis.cls
texmf-dist/tex/latex/ucdavisthesis/ucdthesis10.clo
texmf-dist/tex/latex/ucdavisthesis/ucdthesis11.clo
texmf-dist/tex/latex/ucdavisthesis/ucdthesis12.clo
texmf-dist/tex/latex/ucdavisthesis/ucdthesis13.clo
catalogue-ctan /macros/latex/contrib/ucdavisthesis
-catalogue-date 2012-02-09 21:58:23 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
-catalogue-version 1.1
+catalogue-version 1.2
name ucharclasses
category Package
@@ -170695,7 +185334,7 @@ docfiles size=47
runfiles size=6
texmf-dist/tex/xelatex/ucharclasses/ucharclasses.sty
catalogue-ctan /macros/xetex/latex/ucharclasses
-catalogue-date 2012-10-01 18:00:10 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license pd
catalogue-version 2.0
@@ -170994,7 +185633,7 @@ runfiles size=704
texmf-dist/tex/latex/ucs/utils/xscmr.fd
texmf-dist/tex/latex/ucs/utils/xsenc.def
catalogue-ctan /macros/latex/contrib/ucs
-catalogue-date 2013-05-20 11:18:25 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 2.2
@@ -171020,6 +185659,37 @@ catalogue-date 2012-02-09 17:36:54 +0100
catalogue-license lppl1.3
catalogue-version 3.2
+name udesoftec
+category Package
+revision 34036
+shortdesc Thesis class for the University of Duisburg-Essen.
+longdesc The class is designed for typesetting theses in the Research
+longdesc Group for Business Informatics and Software Engineering. (The
+longdesc class may also serve as a template for such theses.) The class
+longdesc is designed for use with pdfLaTeX; input in UTF-8 encoding is
+longdesc assumed.
+docfiles size=122
+ texmf-dist/doc/latex/udesoftec/udesoftec-doc.pdf details="Package documentation (German)" language="de"
+srcfiles size=21
+ texmf-dist/source/latex/udesoftec/CHANGELOG
+ texmf-dist/source/latex/udesoftec/README
+ texmf-dist/source/latex/udesoftec/UPDATE-INSTRUCTIONS
+ texmf-dist/source/latex/udesoftec/VERSION
+ texmf-dist/source/latex/udesoftec/udesoftec-doc-examplebib.bib
+ texmf-dist/source/latex/udesoftec/udesoftec-doc-exampleimage.pdf
+ texmf-dist/source/latex/udesoftec/udesoftec-doc.tex
+runfiles size=86
+ texmf-dist/bibtex/bst/udesoftec/udesoftec.bst
+ texmf-dist/tex/latex/udesoftec/udesoftec-cover-uba.pdf
+ texmf-dist/tex/latex/udesoftec/udesoftec-cover-ude-de.pdf
+ texmf-dist/tex/latex/udesoftec/udesoftec-cover-ude-en.pdf
+ texmf-dist/tex/latex/udesoftec/udesoftec-extra.sty
+ texmf-dist/tex/latex/udesoftec/udesoftec.cls
+catalogue-ctan /macros/latex/contrib/udesoftec
+catalogue-date 2014-05-15 19:43:30 +0200
+catalogue-license lppl
+catalogue-version 1.3.8
+
name uebungsblatt
category Package
revision 15878
@@ -171047,27 +185717,29 @@ catalogue-version 1.5.0
name uestcthesis
category Package
-revision 30711
+revision 33194
shortdesc Thesis class for UESTC
longdesc The class is for typesetting a thesis at the University of
longdesc Electronic Science and Technology of China.
-docfiles size=1308
+docfiles size=1166
texmf-dist/doc/latex/uestcthesis/README details="Readme (in English and Chinese)"
texmf-dist/doc/latex/uestcthesis/doc/chapters/DuplicateMe.tex
texmf-dist/doc/latex/uestcthesis/doc/chapters/Place_has_TrainDAO.java.tex
- texmf-dist/doc/latex/uestcthesis/doc/chapters/highlight.sty
texmf-dist/doc/latex/uestcthesis/doc/chapters/implementation.tex
texmf-dist/doc/latex/uestcthesis/doc/chapters/math.tex
+ texmf-dist/doc/latex/uestcthesis/doc/chapters/test.c.tex
texmf-dist/doc/latex/uestcthesis/doc/chapters/tuition.tex
texmf-dist/doc/latex/uestcthesis/doc/contents/Cabstract.tex
texmf-dist/doc/latex/uestcthesis/doc/contents/Eabstract.tex
texmf-dist/doc/latex/uestcthesis/doc/contents/acknowledgements.tex
texmf-dist/doc/latex/uestcthesis/doc/contents/appendix.tex
+ texmf-dist/doc/latex/uestcthesis/doc/contents/cv.tex
texmf-dist/doc/latex/uestcthesis/doc/contents/original.tex
texmf-dist/doc/latex/uestcthesis/doc/contents/publications.bib
texmf-dist/doc/latex/uestcthesis/doc/contents/reference.bib
texmf-dist/doc/latex/uestcthesis/doc/contents/titlepage.tex
texmf-dist/doc/latex/uestcthesis/doc/contents/translation.tex
+ texmf-dist/doc/latex/uestcthesis/doc/packagecheck.tex
texmf-dist/doc/latex/uestcthesis/doc/pics/Chrysanthemum.jpg
texmf-dist/doc/latex/uestcthesis/doc/pics/Penguins.jpg
texmf-dist/doc/latex/uestcthesis/doc/pics/Tulips.jpg
@@ -171087,17 +185759,15 @@ docfiles size=1308
texmf-dist/doc/latex/uestcthesis/doc/pics/winedt.png
texmf-dist/doc/latex/uestcthesis/doc/uestcthesis-doc.pdf details="Package documentation (Chinese)" language="zh"
texmf-dist/doc/latex/uestcthesis/doc/uestcthesis-doc.tex
- texmf-dist/doc/latex/uestcthesis/source/rvdtx.sty
texmf-dist/doc/latex/uestcthesis/source/uestcthesis.dtx
texmf-dist/doc/latex/uestcthesis/source/uestcthesis.ins
- texmf-dist/doc/latex/uestcthesis/uestcthesis.pdf
-runfiles size=67
+runfiles size=73
texmf-dist/bibtex/bst/uestcthesis/uestcthesis.bst
texmf-dist/tex/latex/uestcthesis/uestcthesis.cls
catalogue-ctan /macros/latex/contrib/uestcthesis
-catalogue-date 2013-05-27 20:07:27 +0200
+catalogue-date 2014-03-16 10:59:31 +0100
catalogue-license lppl1.3
-catalogue-version 0.4.4
+catalogue-version 1.0.0
name uhc
category Package
@@ -174324,7 +188994,7 @@ srcfiles size=4
runfiles size=1
texmf-dist/tex/latex/uiucredborder/uiucredborder.cls
catalogue-ctan /macros/latex/contrib/uiucredborder
-catalogue-date 2013-04-16 11:30:34 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.2
catalogue-version 1.00
@@ -174432,7 +189102,7 @@ runfiles size=5
texmf-dist/scripts/ulqda/ulqda.pl
texmf-dist/tex/latex/ulqda/ulqda.sty
catalogue-ctan /macros/latex/contrib/ulqda
-catalogue-date 2012-06-26 16:04:59 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.1
@@ -174520,13 +189190,6 @@ shortdesc i386-solaris files of ulqda
binfiles arch=i386-solaris size=1
bin/i386-solaris/ulqda
-name ulqda.mips-irix
-category Package
-revision 29949
-shortdesc mips-irix files of ulqda
-binfiles arch=mips-irix size=1
- bin/mips-irix/ulqda
-
name ulqda.mipsel-linux
category Package
revision 29946
@@ -174562,6 +189225,13 @@ shortdesc win32 files of ulqda
binfiles arch=win32 size=1
bin/win32/ulqda.exe
+name ulqda.x86_64-cygwin
+category Package
+revision 33557
+shortdesc x86_64-cygwin files of ulqda
+binfiles arch=x86_64-cygwin size=1
+ bin/x86_64-cygwin/ulqda
+
name ulqda.x86_64-darwin
category Package
revision 18441
@@ -174585,7 +189255,7 @@ binfiles arch=x86_64-solaris size=1
name ulthese
category Package
-revision 29029
+revision 33306
shortdesc Thesis class and templates for Universite Laval.
longdesc The package provides a class based on memoir to prepare theses
longdesc and memoirs compliant with the presentation rules set forth by
@@ -174595,7 +189265,7 @@ longdesc for the various types of theses and memoirs offered at Laval.
longdesc Please note that the documentation for the class and the
longdesc comments in the templates are all written in French, the
longdesc language of the target audience.
-docfiles size=80
+docfiles size=92
texmf-dist/doc/latex/ulthese/README details="Readme (in French)" language="fr"
texmf-dist/doc/latex/ulthese/abstract.tex
texmf-dist/doc/latex/ulthese/annexe.tex
@@ -174616,7 +189286,7 @@ docfiles size=80
texmf-dist/doc/latex/ulthese/remerciements.tex
texmf-dist/doc/latex/ulthese/resume.tex
texmf-dist/doc/latex/ulthese/ulthese.pdf details="Package documentation" language="fr"
-srcfiles size=17
+srcfiles size=20
texmf-dist/source/latex/ulthese/ulthese.dtx
texmf-dist/source/latex/ulthese/ulthese.ins
runfiles size=45
@@ -174624,9 +189294,9 @@ runfiles size=45
texmf-dist/tex/latex/ulthese/ul_p.pdf
texmf-dist/tex/latex/ulthese/ulthese.cls
catalogue-ctan /macros/latex/contrib/ulthese
-catalogue-date 2013-02-04 09:52:53 +0100
+catalogue-date 2014-03-25 22:16:32 +0100
catalogue-license lppl1.3
-catalogue-version 2.1
+catalogue-version 3.0a
name umich-thesis
category Package
@@ -174663,7 +189333,7 @@ srcfiles size=50
runfiles size=8
texmf-dist/tex/latex/uml/uml.sty
catalogue-ctan /graphics/pstricks/contrib/uml
-catalogue-date 2012-06-26 16:04:59 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 0.11
@@ -174736,7 +189406,7 @@ docfiles size=61
runfiles size=6
texmf-dist/tex/latex/umthesis/umthesis.cls
catalogue-ctan /macros/latex/contrib/umthesis
-catalogue-date 2012-02-09 17:36:54 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 0.2
@@ -174760,6 +189430,54 @@ catalogue-date 2012-07-05 15:28:28 +0200
catalogue-license ofl
catalogue-version 001.002
+name unamth-template
+category Package
+revision 33625
+shortdesc UNAM Thesis LaTeX Template
+longdesc The bundle provides a template for UNAM's College of
+longdesc Engineering Theses. The work is based on Harish Bhanderi's
+longdesc PhD/MPhil template, and the University of Cambridge Engineering
+longdesc Department template.
+docfiles size=1563
+ texmf-dist/doc/latex/unamth-template/Agradecimientos/Agradecimientos.tex
+ texmf-dist/doc/latex/unamth-template/Agradecimientos/Dedicatoria.tex
+ texmf-dist/doc/latex/unamth-template/Apendice1/Apendice1.tex
+ texmf-dist/doc/latex/unamth-template/Bibliografia/referencias.bib
+ texmf-dist/doc/latex/unamth-template/Capitulo1/introduccion.tex
+ texmf-dist/doc/latex/unamth-template/Capitulo2/marco_teorico.tex
+ texmf-dist/doc/latex/unamth-template/Capitulo3/diseno_experimento.tex
+ texmf-dist/doc/latex/unamth-template/Capitulo3/figs/planta.jpg
+ texmf-dist/doc/latex/unamth-template/Capitulo4/resultados_y_analisis.tex
+ texmf-dist/doc/latex/unamth-template/Capitulo5/conclusiones.tex
+ texmf-dist/doc/latex/unamth-template/Declaracion/Declaracion.tex
+ texmf-dist/doc/latex/unamth-template/LICENSE
+ texmf-dist/doc/latex/unamth-template/Latex/Classes/CUEDbiblio.bst
+ texmf-dist/doc/latex/unamth-template/Latex/Classes/CUEDthesisPSnPDF.texshop
+ texmf-dist/doc/latex/unamth-template/Latex/Classes/Escudos/fi_azul.pdf
+ texmf-dist/doc/latex/unamth-template/Latex/Classes/Escudos/fi_negro.pdf
+ texmf-dist/doc/latex/unamth-template/Latex/Classes/Escudos/unam_azul.pdf
+ texmf-dist/doc/latex/unamth-template/Latex/Classes/Escudos/unam_azul_5x5cm.pdf
+ texmf-dist/doc/latex/unamth-template/Latex/Classes/Escudos/unam_negro.pdf
+ texmf-dist/doc/latex/unamth-template/Latex/Classes/Escudos/unam_negro_5x5cm.pdf
+ texmf-dist/doc/latex/unamth-template/Latex/Classes/PhDbiblio-bold.bst
+ texmf-dist/doc/latex/unamth-template/Latex/Classes/PhDbiblio-case.bst
+ texmf-dist/doc/latex/unamth-template/Latex/Classes/PhDbiblio-url.bst
+ texmf-dist/doc/latex/unamth-template/Latex/Classes/PhDbiblio-url2.bst
+ texmf-dist/doc/latex/unamth-template/Latex/Classes/PhDthesisPSnPDF.cls
+ texmf-dist/doc/latex/unamth-template/Latex/Classes/PhDthesisPSnPDF.cls.bak
+ texmf-dist/doc/latex/unamth-template/Latex/Classes/urlbst
+ texmf-dist/doc/latex/unamth-template/Latex/Macros/MacroFile1.tex
+ texmf-dist/doc/latex/unamth-template/Latex/Macros/MacroFile1.tex.bak
+ texmf-dist/doc/latex/unamth-template/README.md details="Readme"
+ texmf-dist/doc/latex/unamth-template/Resumen/Resumen.tex
+ texmf-dist/doc/latex/unamth-template/latex_intro.pdf
+ texmf-dist/doc/latex/unamth-template/tesis.pdf details="Filled out sample (Mexican Spanis)" language="es"
+ texmf-dist/doc/latex/unamth-template/tesis.tex
+catalogue-ctan /macros/latex/contrib/unamth-template
+catalogue-date 2014-04-22 19:24:17 +0200
+catalogue-license gpl3
+catalogue-version 2.0
+
name unamthesis
category Package
revision 29799
@@ -174788,7 +189506,7 @@ runfiles size=11
texmf-dist/bibtex/bst/unamthesis/UNAMThesis.bst
texmf-dist/tex/latex/unamthesis/UNAMThesis.sty
catalogue-ctan /macros/latex/contrib/unamthesis
-catalogue-date 2013-04-10 00:46:21 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 2.02
@@ -174827,7 +189545,7 @@ docfiles size=76
runfiles size=4
texmf-dist/tex/latex/underoverlap/underoverlap.sty
catalogue-ctan /macros/latex/contrib/underoverlap
-catalogue-date 2013-02-05 09:58:42 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 0.0.1-r1
@@ -174841,7 +189559,7 @@ longdesc of it is not affected; a package option controls whether an
longdesc actual hyphenation point appears after the underscore, or
longdesc merely a break point. The package also arranges that, while in
longdesc text, '_' itself behaves as \textunderscore (the behaviour of _
-longdesc in maths mode is not affected.
+longdesc in maths mode is not affected).
docfiles size=65
texmf-dist/doc/latex/underscore/miscdoc.sty
texmf-dist/doc/latex/underscore/underscore.pdf details="Package documentation"
@@ -174849,7 +189567,7 @@ docfiles size=65
runfiles size=3
texmf-dist/tex/latex/underscore/underscore.sty
catalogue-ctan /macros/latex/contrib/underscore
-catalogue-date 2012-06-26 18:23:46 +0200
+catalogue-date 2013-09-20 11:57:07 +0200
catalogue-license lppl
name undolabl
@@ -174870,19 +189588,20 @@ srcfiles size=13
runfiles size=1
texmf-dist/tex/latex/undolabl/undolabl.sty
catalogue-ctan /macros/latex/contrib/undolabl
-catalogue-date 2012-06-26 18:23:46 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.0k
name uni-wtal-ger
category Package
-revision 22169
+revision 31541
shortdesc Citation style for literary studies at the University of Wuppertal.
longdesc The package defines a biblatex citation style based on the
longdesc author-title style of biblatex-dw. The citations are optimised
longdesc for literary studies in faculty of humanities at the Bergische
longdesc Universitat Wuppertal.
docfiles size=23
+ texmf-dist/doc/latex/uni-wtal-ger/CHANGES
texmf-dist/doc/latex/uni-wtal-ger/LIESMICH details="Readme" language="de"
texmf-dist/doc/latex/uni-wtal-ger/README details="Readme" language="en"
texmf-dist/doc/latex/uni-wtal-ger/germanistik.bib
@@ -174892,31 +189611,32 @@ runfiles size=2
texmf-dist/tex/latex/uni-wtal-ger/uni-wtal-ger.bbx
texmf-dist/tex/latex/uni-wtal-ger/uni-wtal-ger.cbx
catalogue-ctan /macros/latex/contrib/biblatex-contrib/uni-wtal-ger
-catalogue-date 2012-04-20 15:37:05 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
-catalogue-version 0.1
+catalogue-version 0.2
name uni-wtal-lin
category Package
-revision 28717
+revision 31409
shortdesc Citation style for linguistic studies at the University of Wuppertal.
longdesc The package defines a biblatex citation style based on the
longdesc standard author-year style. The citations are optimised for
longdesc linguistic studies at the Institute of Linguistics at the
longdesc Bergische Universitat Wuppertal.
-docfiles size=28
+docfiles size=30
+ texmf-dist/doc/latex/uni-wtal-lin/CHANGES
texmf-dist/doc/latex/uni-wtal-lin/LIESMICH details="Readme" language="de"
texmf-dist/doc/latex/uni-wtal-lin/README details="Readme" language="en"
texmf-dist/doc/latex/uni-wtal-lin/uni-wtal-lin.bib
texmf-dist/doc/latex/uni-wtal-lin/uni-wtal-lin.pdf details="Package documentation" language="de"
texmf-dist/doc/latex/uni-wtal-lin/uni-wtal-lin.tex
-runfiles size=3
+runfiles size=4
texmf-dist/tex/latex/uni-wtal-lin/uni-wtal-lin.bbx
texmf-dist/tex/latex/uni-wtal-lin/uni-wtal-lin.cbx
catalogue-ctan /macros/latex/contrib/biblatex-contrib/uni-wtal-lin
-catalogue-date 2013-01-08 10:49:23 +0100
+catalogue-date 2013-08-10 17:37:59 +0200
catalogue-license lppl1.3
-catalogue-version 0.1
+catalogue-version 0.2
name unicode-math
category Package
@@ -175110,7 +189830,7 @@ runfiles size=108
texmf-dist/tex/latex/unicode-math/unicode-math.lua
texmf-dist/tex/latex/unicode-math/unicode-math.sty
catalogue-ctan /macros/latex/contrib/unicode-math
-catalogue-date 2013-05-17 19:01:50 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 0.7e
@@ -175135,7 +189855,7 @@ docfiles size=133
runfiles size=2
texmf-dist/tex/xelatex/unisugar/unisugar.sty
catalogue-ctan /macros/xetex/latex/unisugar
-catalogue-date 2012-04-20 15:37:05 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 0.92
@@ -175308,10 +190028,211 @@ runfiles size=104
texmf-dist/tex/latex/universa/uni.sty
texmf-dist/tex/latex/universa/uuni.fd
catalogue-ctan /fonts/universa
-catalogue-date 2012-04-20 15:37:05 +0200
+catalogue-date 2014-05-02 16:40:29 +0200
catalogue-license gpl
catalogue-version 2.0
+name universalis
+category Package
+revision 33860
+shortdesc Universalis font, with support.
+longdesc This package provides LaTeX, pdfLaTeX, XeLaTeX and LuaLaTeX
+longdesc support for the UniversalisADFStd family of fonts, designed by
+longdesc Hirwin Harendal. The font is suitable as an alternative to
+longdesc fonts such as Adrian Frutiger's Univers and Frutiger.
+execute addMap universalis.map
+docfiles size=15
+ texmf-dist/doc/fonts/universalis/COPYING
+ texmf-dist/doc/fonts/universalis/NOTICE.txt
+ texmf-dist/doc/fonts/universalis/README details="Readme"
+ texmf-dist/doc/fonts/universalis/universalis-samples.pdf
+ texmf-dist/doc/fonts/universalis/universalis-samples.tex
+runfiles size=326
+ texmf-dist/fonts/enc/dvips/universalis/unvsl_fe7xck.enc
+ texmf-dist/fonts/enc/dvips/universalis/unvsl_qu6a6x.enc
+ texmf-dist/fonts/enc/dvips/universalis/unvsl_sjpjw4.enc
+ texmf-dist/fonts/enc/dvips/universalis/unvsl_xtabpf.enc
+ texmf-dist/fonts/map/dvips/universalis/universalis.map
+ texmf-dist/fonts/opentype/arkandis/universalis/UniversalisADFStd-Bold.otf
+ texmf-dist/fonts/opentype/arkandis/universalis/UniversalisADFStd-BoldCond.otf
+ texmf-dist/fonts/opentype/arkandis/universalis/UniversalisADFStd-BoldCondIt.otf
+ texmf-dist/fonts/opentype/arkandis/universalis/UniversalisADFStd-BoldItalic.otf
+ texmf-dist/fonts/opentype/arkandis/universalis/UniversalisADFStd-Cond.otf
+ texmf-dist/fonts/opentype/arkandis/universalis/UniversalisADFStd-CondItalic.otf
+ texmf-dist/fonts/opentype/arkandis/universalis/UniversalisADFStd-Italic.otf
+ texmf-dist/fonts/opentype/arkandis/universalis/UniversalisADFStd-Regular.otf
+ texmf-dist/fonts/tfm/arkandis/universalis/UniversalisADFStd-Bold-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/universalis/UniversalisADFStd-Bold-lf-ly1--lcdfj.tfm
+ texmf-dist/fonts/tfm/arkandis/universalis/UniversalisADFStd-Bold-lf-ly1.tfm
+ texmf-dist/fonts/tfm/arkandis/universalis/UniversalisADFStd-Bold-lf-ot1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/universalis/UniversalisADFStd-Bold-lf-ot1--lcdfj.tfm
+ texmf-dist/fonts/tfm/arkandis/universalis/UniversalisADFStd-Bold-lf-ot1.tfm
+ texmf-dist/fonts/tfm/arkandis/universalis/UniversalisADFStd-Bold-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/universalis/UniversalisADFStd-Bold-lf-t1--lcdfj.tfm
+ texmf-dist/fonts/tfm/arkandis/universalis/UniversalisADFStd-Bold-lf-t1.tfm
+ texmf-dist/fonts/tfm/arkandis/universalis/UniversalisADFStd-Bold-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/universalis/UniversalisADFStd-Bold-lf-ts1.tfm
+ texmf-dist/fonts/tfm/arkandis/universalis/UniversalisADFStd-BoldCond-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/universalis/UniversalisADFStd-BoldCond-lf-ly1--lcdfj.tfm
+ texmf-dist/fonts/tfm/arkandis/universalis/UniversalisADFStd-BoldCond-lf-ly1.tfm
+ texmf-dist/fonts/tfm/arkandis/universalis/UniversalisADFStd-BoldCond-lf-ot1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/universalis/UniversalisADFStd-BoldCond-lf-ot1--lcdfj.tfm
+ texmf-dist/fonts/tfm/arkandis/universalis/UniversalisADFStd-BoldCond-lf-ot1.tfm
+ texmf-dist/fonts/tfm/arkandis/universalis/UniversalisADFStd-BoldCond-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/universalis/UniversalisADFStd-BoldCond-lf-t1--lcdfj.tfm
+ texmf-dist/fonts/tfm/arkandis/universalis/UniversalisADFStd-BoldCond-lf-t1.tfm
+ texmf-dist/fonts/tfm/arkandis/universalis/UniversalisADFStd-BoldCond-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/universalis/UniversalisADFStd-BoldCond-lf-ts1.tfm
+ texmf-dist/fonts/tfm/arkandis/universalis/UniversalisADFStd-BoldCondIt-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/universalis/UniversalisADFStd-BoldCondIt-lf-ly1--lcdfj.tfm
+ texmf-dist/fonts/tfm/arkandis/universalis/UniversalisADFStd-BoldCondIt-lf-ly1.tfm
+ texmf-dist/fonts/tfm/arkandis/universalis/UniversalisADFStd-BoldCondIt-lf-ot1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/universalis/UniversalisADFStd-BoldCondIt-lf-ot1--lcdfj.tfm
+ texmf-dist/fonts/tfm/arkandis/universalis/UniversalisADFStd-BoldCondIt-lf-ot1.tfm
+ texmf-dist/fonts/tfm/arkandis/universalis/UniversalisADFStd-BoldCondIt-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/universalis/UniversalisADFStd-BoldCondIt-lf-t1--lcdfj.tfm
+ texmf-dist/fonts/tfm/arkandis/universalis/UniversalisADFStd-BoldCondIt-lf-t1.tfm
+ texmf-dist/fonts/tfm/arkandis/universalis/UniversalisADFStd-BoldCondIt-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/universalis/UniversalisADFStd-BoldCondIt-lf-ts1.tfm
+ texmf-dist/fonts/tfm/arkandis/universalis/UniversalisADFStd-BoldItalic-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/universalis/UniversalisADFStd-BoldItalic-lf-ly1--lcdfj.tfm
+ texmf-dist/fonts/tfm/arkandis/universalis/UniversalisADFStd-BoldItalic-lf-ly1.tfm
+ texmf-dist/fonts/tfm/arkandis/universalis/UniversalisADFStd-BoldItalic-lf-ot1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/universalis/UniversalisADFStd-BoldItalic-lf-ot1--lcdfj.tfm
+ texmf-dist/fonts/tfm/arkandis/universalis/UniversalisADFStd-BoldItalic-lf-ot1.tfm
+ texmf-dist/fonts/tfm/arkandis/universalis/UniversalisADFStd-BoldItalic-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/universalis/UniversalisADFStd-BoldItalic-lf-t1--lcdfj.tfm
+ texmf-dist/fonts/tfm/arkandis/universalis/UniversalisADFStd-BoldItalic-lf-t1.tfm
+ texmf-dist/fonts/tfm/arkandis/universalis/UniversalisADFStd-BoldItalic-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/universalis/UniversalisADFStd-BoldItalic-lf-ts1.tfm
+ texmf-dist/fonts/tfm/arkandis/universalis/UniversalisADFStd-Cond-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/universalis/UniversalisADFStd-Cond-lf-ly1--lcdfj.tfm
+ texmf-dist/fonts/tfm/arkandis/universalis/UniversalisADFStd-Cond-lf-ly1.tfm
+ texmf-dist/fonts/tfm/arkandis/universalis/UniversalisADFStd-Cond-lf-ot1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/universalis/UniversalisADFStd-Cond-lf-ot1--lcdfj.tfm
+ texmf-dist/fonts/tfm/arkandis/universalis/UniversalisADFStd-Cond-lf-ot1.tfm
+ texmf-dist/fonts/tfm/arkandis/universalis/UniversalisADFStd-Cond-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/universalis/UniversalisADFStd-Cond-lf-t1--lcdfj.tfm
+ texmf-dist/fonts/tfm/arkandis/universalis/UniversalisADFStd-Cond-lf-t1.tfm
+ texmf-dist/fonts/tfm/arkandis/universalis/UniversalisADFStd-Cond-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/universalis/UniversalisADFStd-Cond-lf-ts1.tfm
+ texmf-dist/fonts/tfm/arkandis/universalis/UniversalisADFStd-CondItalic-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/universalis/UniversalisADFStd-CondItalic-lf-ly1--lcdfj.tfm
+ texmf-dist/fonts/tfm/arkandis/universalis/UniversalisADFStd-CondItalic-lf-ly1.tfm
+ texmf-dist/fonts/tfm/arkandis/universalis/UniversalisADFStd-CondItalic-lf-ot1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/universalis/UniversalisADFStd-CondItalic-lf-ot1--lcdfj.tfm
+ texmf-dist/fonts/tfm/arkandis/universalis/UniversalisADFStd-CondItalic-lf-ot1.tfm
+ texmf-dist/fonts/tfm/arkandis/universalis/UniversalisADFStd-CondItalic-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/universalis/UniversalisADFStd-CondItalic-lf-t1--lcdfj.tfm
+ texmf-dist/fonts/tfm/arkandis/universalis/UniversalisADFStd-CondItalic-lf-t1.tfm
+ texmf-dist/fonts/tfm/arkandis/universalis/UniversalisADFStd-CondItalic-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/universalis/UniversalisADFStd-CondItalic-lf-ts1.tfm
+ texmf-dist/fonts/tfm/arkandis/universalis/UniversalisADFStd-Italic-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/universalis/UniversalisADFStd-Italic-lf-ly1--lcdfj.tfm
+ texmf-dist/fonts/tfm/arkandis/universalis/UniversalisADFStd-Italic-lf-ly1.tfm
+ texmf-dist/fonts/tfm/arkandis/universalis/UniversalisADFStd-Italic-lf-ot1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/universalis/UniversalisADFStd-Italic-lf-ot1--lcdfj.tfm
+ texmf-dist/fonts/tfm/arkandis/universalis/UniversalisADFStd-Italic-lf-ot1.tfm
+ texmf-dist/fonts/tfm/arkandis/universalis/UniversalisADFStd-Italic-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/universalis/UniversalisADFStd-Italic-lf-t1--lcdfj.tfm
+ texmf-dist/fonts/tfm/arkandis/universalis/UniversalisADFStd-Italic-lf-t1.tfm
+ texmf-dist/fonts/tfm/arkandis/universalis/UniversalisADFStd-Italic-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/universalis/UniversalisADFStd-Italic-lf-ts1.tfm
+ texmf-dist/fonts/tfm/arkandis/universalis/UniversalisADFStd-Regular-lf-ly1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/universalis/UniversalisADFStd-Regular-lf-ly1--lcdfj.tfm
+ texmf-dist/fonts/tfm/arkandis/universalis/UniversalisADFStd-Regular-lf-ly1.tfm
+ texmf-dist/fonts/tfm/arkandis/universalis/UniversalisADFStd-Regular-lf-ot1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/universalis/UniversalisADFStd-Regular-lf-ot1--lcdfj.tfm
+ texmf-dist/fonts/tfm/arkandis/universalis/UniversalisADFStd-Regular-lf-ot1.tfm
+ texmf-dist/fonts/tfm/arkandis/universalis/UniversalisADFStd-Regular-lf-t1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/universalis/UniversalisADFStd-Regular-lf-t1--lcdfj.tfm
+ texmf-dist/fonts/tfm/arkandis/universalis/UniversalisADFStd-Regular-lf-t1.tfm
+ texmf-dist/fonts/tfm/arkandis/universalis/UniversalisADFStd-Regular-lf-ts1--base.tfm
+ texmf-dist/fonts/tfm/arkandis/universalis/UniversalisADFStd-Regular-lf-ts1.tfm
+ texmf-dist/fonts/type1/arkandis/universalis/UniversalisADFStd-Bold.pfb
+ texmf-dist/fonts/type1/arkandis/universalis/UniversalisADFStd-BoldCond.pfb
+ texmf-dist/fonts/type1/arkandis/universalis/UniversalisADFStd-BoldCondIt.pfb
+ texmf-dist/fonts/type1/arkandis/universalis/UniversalisADFStd-BoldCondItLCDFJ.pfb
+ texmf-dist/fonts/type1/arkandis/universalis/UniversalisADFStd-BoldCondLCDFJ.pfb
+ texmf-dist/fonts/type1/arkandis/universalis/UniversalisADFStd-BoldItalic.pfb
+ texmf-dist/fonts/type1/arkandis/universalis/UniversalisADFStd-BoldItalicLCDFJ.pfb
+ texmf-dist/fonts/type1/arkandis/universalis/UniversalisADFStd-BoldLCDFJ.pfb
+ texmf-dist/fonts/type1/arkandis/universalis/UniversalisADFStd-Cond.pfb
+ texmf-dist/fonts/type1/arkandis/universalis/UniversalisADFStd-CondItalic.pfb
+ texmf-dist/fonts/type1/arkandis/universalis/UniversalisADFStd-CondItalicLCDFJ.pfb
+ texmf-dist/fonts/type1/arkandis/universalis/UniversalisADFStd-CondLCDFJ.pfb
+ texmf-dist/fonts/type1/arkandis/universalis/UniversalisADFStd-Italic.pfb
+ texmf-dist/fonts/type1/arkandis/universalis/UniversalisADFStd-ItalicLCDFJ.pfb
+ texmf-dist/fonts/type1/arkandis/universalis/UniversalisADFStd-Regular.pfb
+ texmf-dist/fonts/type1/arkandis/universalis/UniversalisADFStd-RegularLCDFJ.pfb
+ texmf-dist/fonts/vf/arkandis/universalis/UniversalisADFStd-Bold-lf-ly1.vf
+ texmf-dist/fonts/vf/arkandis/universalis/UniversalisADFStd-Bold-lf-ot1.vf
+ texmf-dist/fonts/vf/arkandis/universalis/UniversalisADFStd-Bold-lf-t1.vf
+ texmf-dist/fonts/vf/arkandis/universalis/UniversalisADFStd-Bold-lf-ts1.vf
+ texmf-dist/fonts/vf/arkandis/universalis/UniversalisADFStd-BoldCond-lf-ly1.vf
+ texmf-dist/fonts/vf/arkandis/universalis/UniversalisADFStd-BoldCond-lf-ot1.vf
+ texmf-dist/fonts/vf/arkandis/universalis/UniversalisADFStd-BoldCond-lf-t1.vf
+ texmf-dist/fonts/vf/arkandis/universalis/UniversalisADFStd-BoldCond-lf-ts1.vf
+ texmf-dist/fonts/vf/arkandis/universalis/UniversalisADFStd-BoldCondIt-lf-ly1.vf
+ texmf-dist/fonts/vf/arkandis/universalis/UniversalisADFStd-BoldCondIt-lf-ot1.vf
+ texmf-dist/fonts/vf/arkandis/universalis/UniversalisADFStd-BoldCondIt-lf-t1.vf
+ texmf-dist/fonts/vf/arkandis/universalis/UniversalisADFStd-BoldCondIt-lf-ts1.vf
+ texmf-dist/fonts/vf/arkandis/universalis/UniversalisADFStd-BoldItalic-lf-ly1.vf
+ texmf-dist/fonts/vf/arkandis/universalis/UniversalisADFStd-BoldItalic-lf-ot1.vf
+ texmf-dist/fonts/vf/arkandis/universalis/UniversalisADFStd-BoldItalic-lf-t1.vf
+ texmf-dist/fonts/vf/arkandis/universalis/UniversalisADFStd-BoldItalic-lf-ts1.vf
+ texmf-dist/fonts/vf/arkandis/universalis/UniversalisADFStd-Cond-lf-ly1.vf
+ texmf-dist/fonts/vf/arkandis/universalis/UniversalisADFStd-Cond-lf-ot1.vf
+ texmf-dist/fonts/vf/arkandis/universalis/UniversalisADFStd-Cond-lf-t1.vf
+ texmf-dist/fonts/vf/arkandis/universalis/UniversalisADFStd-Cond-lf-ts1.vf
+ texmf-dist/fonts/vf/arkandis/universalis/UniversalisADFStd-CondItalic-lf-ly1.vf
+ texmf-dist/fonts/vf/arkandis/universalis/UniversalisADFStd-CondItalic-lf-ot1.vf
+ texmf-dist/fonts/vf/arkandis/universalis/UniversalisADFStd-CondItalic-lf-t1.vf
+ texmf-dist/fonts/vf/arkandis/universalis/UniversalisADFStd-CondItalic-lf-ts1.vf
+ texmf-dist/fonts/vf/arkandis/universalis/UniversalisADFStd-Italic-lf-ly1.vf
+ texmf-dist/fonts/vf/arkandis/universalis/UniversalisADFStd-Italic-lf-ot1.vf
+ texmf-dist/fonts/vf/arkandis/universalis/UniversalisADFStd-Italic-lf-t1.vf
+ texmf-dist/fonts/vf/arkandis/universalis/UniversalisADFStd-Italic-lf-ts1.vf
+ texmf-dist/fonts/vf/arkandis/universalis/UniversalisADFStd-Regular-lf-ly1.vf
+ texmf-dist/fonts/vf/arkandis/universalis/UniversalisADFStd-Regular-lf-ot1.vf
+ texmf-dist/fonts/vf/arkandis/universalis/UniversalisADFStd-Regular-lf-t1.vf
+ texmf-dist/fonts/vf/arkandis/universalis/UniversalisADFStd-Regular-lf-ts1.vf
+ texmf-dist/tex/latex/universalis/LY1UniversalisADFStd-LF.fd
+ texmf-dist/tex/latex/universalis/OT1UniversalisADFStd-LF.fd
+ texmf-dist/tex/latex/universalis/T1UniversalisADFStd-LF.fd
+ texmf-dist/tex/latex/universalis/TS1UniversalisADFStd-LF.fd
+ texmf-dist/tex/latex/universalis/UniversalisADFStd.sty
+ texmf-dist/tex/latex/universalis/universalis.sty
+catalogue-ctan /fonts/universalis
+catalogue-date 2014-05-06 15:51:33 +0200
+catalogue-license gpl2
+
+name unravel
+category Package
+revision 31307
+shortdesc Watching TeX digest tokens.
+longdesc The package emulates large parts of TeX's behaviour when it
+longdesc chews on tokens, expanding and performing typesetting commands.
+longdesc Using unravel will let you go one step at a time through some
+longdesc complicated LaTeX code that you are trying to debug. It
+longdesc understands a whole breadth of TeX's features, from deeply
+longdesc nested expansion to box assignments, to characters, and the
+longdesc proper insertion of \everypar. The unravel package requires up-
+longdesc to-date l3kernel and l3experimental bundles, as well as the new
+longdesc package gtl.
+docfiles size=166
+ texmf-dist/doc/latex/unravel/README details="Readme"
+ texmf-dist/doc/latex/unravel/unravel.pdf details="Package documentation"
+srcfiles size=61
+ texmf-dist/source/latex/unravel/unravel.dtx
+ texmf-dist/source/latex/unravel/unravel.ins
+runfiles size=48
+ texmf-dist/tex/latex/unravel/unravel.sty
+catalogue-ctan /macros/latex/contrib/unravel
+catalogue-date 2013-08-20 11:39:33 +0200
+catalogue-license lppl
+catalogue-version 0.0a
+
name unswcover
category Package
revision 29476
@@ -175331,7 +190252,7 @@ docfiles size=43
runfiles size=2
texmf-dist/tex/latex/unswcover/unswcover.sty
catalogue-ctan /macros/latex/contrib/unswcover
-catalogue-date 2013-03-24 19:17:58 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.0
@@ -175355,7 +190276,7 @@ srcfiles size=25
runfiles size=8
texmf-dist/tex/latex/uothesis/uothesis.cls
catalogue-ctan /macros/latex/contrib/uothesis
-catalogue-date 2012-02-09 17:36:54 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 2.5.6
@@ -175378,10 +190299,32 @@ runfiles size=865
texmf-dist/tex/latex/uowthesis/UoWlogo.png
texmf-dist/tex/latex/uowthesis/UoWthesis.cls
catalogue-ctan /macros/latex/contrib/uowthesis
-catalogue-date 2012-02-09 17:36:54 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.0a
+name uowthesistitlepage
+category Package
+revision 32626
+shortdesc Title page for dissertations at the University of Wollongong.
+longdesc The package redefines \maketitle to generate a title page for a
+longdesc University of Wollongong thesis, in accordance with the UoW
+longdesc branding guidelines. The package should be used with the book
+longdesc class to typeset a thesis. The package also defines a
+longdesc \declaration command that typesets the declaration that this
+longdesc thesis is your own work, etc., which is required in the front
+longdesc of each PhD Thesis.
+docfiles size=352
+ texmf-dist/doc/latex/uowthesistitlepage/README details="Readme"
+ texmf-dist/doc/latex/uowthesistitlepage/uowthesistitlepage_doc.pdf details="Package documentation"
+ texmf-dist/doc/latex/uowthesistitlepage/uowthesistitlepage_doc.tex
+runfiles size=4
+ texmf-dist/tex/latex/uowthesistitlepage/uowthesistitlepage.sty
+catalogue-ctan /macros/latex/contrib/uowthesistitlepage
+catalogue-date 2014-02-26 23:03:13 +0100
+catalogue-license lppl1.3
+catalogue-version 2.0
+
name upca
category Package
revision 22511
@@ -175394,38 +190337,38 @@ docfiles size=2
runfiles size=2
texmf-dist/tex/generic/upca/upca.tex
catalogue-ctan /macros/generic/upca
-catalogue-date 2012-04-03 18:17:17 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
name upmethodology
category Package
-revision 30577
-shortdesc Writing specification such as for UP-based methodologies.
+revision 33091
+shortdesc Writing specifications such as for UP-based methodologies.
longdesc The bundle allows the user to create Unified Process
longdesc methodology (UP or RUP) based documents. The style provides
longdesc document versioning, document history, document authors,
longdesc document validators, specification description, task
longdesc management, and several helping macros.
-docfiles size=174
+docfiles size=205
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 details="Readme"
- texmf-dist/doc/latex/upmethodology/TODO
+ texmf-dist/doc/latex/upmethodology/README.textile
texmf-dist/doc/latex/upmethodology/VERSION
texmf-dist/doc/latex/upmethodology/arakhne_org_logo.jpg
texmf-dist/doc/latex/upmethodology/caution.png
+ texmf-dist/doc/latex/upmethodology/figure_and_tex.pdf
+ texmf-dist/doc/latex/upmethodology/figure_and_tex.pdftex_t
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/info.png
texmf-dist/doc/latex/upmethodology/question.png
- texmf-dist/doc/latex/upmethodology/small_arakhne_org_logo.jpg
texmf-dist/doc/latex/upmethodology/upmethodology-doc.pdf
texmf-dist/doc/latex/upmethodology/upmethodology-doc.tex
-runfiles size=35
+runfiles size=39
+ texmf-dist/tex/latex/upmethodology/UPMVERSION.def
texmf-dist/tex/latex/upmethodology/upmethodology-backpage.sty
texmf-dist/tex/latex/upmethodology/upmethodology-code.sty
texmf-dist/tex/latex/upmethodology/upmethodology-document.cls
@@ -175438,7 +190381,7 @@ runfiles size=35
texmf-dist/tex/latex/upmethodology/upmethodology-task.sty
texmf-dist/tex/latex/upmethodology/upmethodology-version.sty
catalogue-ctan /macros/latex/contrib/upmethodology
-catalogue-date 2013-05-20 11:17:31 +0200
+catalogue-date 2014-03-03 17:31:22 +0100
catalogue-license lgpl
name upquote
@@ -175698,13 +190641,13 @@ runfiles size=6295
texmf-dist/tex/uptex/base/uptex.tex
texmf-dist/tex/uptex/config/euptex.ini
texmf-dist/tex/uptex/config/uptex.ini
-catalogue-date 2012-09-27 15:23:21 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license other-free
catalogue-version 1.11
name uptex.alpha-linux
category Package
-revision 30403
+revision 34095
shortdesc alpha-linux files of uptex
binfiles arch=alpha-linux size=583
bin/alpha-linux/euptex
@@ -175718,9 +190661,9 @@ binfiles arch=alpha-linux size=583
name uptex.amd64-freebsd
category Package
-revision 30400
+revision 34091
shortdesc amd64-freebsd files of uptex
-binfiles arch=amd64-freebsd size=480
+binfiles arch=amd64-freebsd size=481
bin/amd64-freebsd/euptex
bin/amd64-freebsd/upbibtex
bin/amd64-freebsd/updvitype
@@ -175732,9 +190675,9 @@ binfiles arch=amd64-freebsd size=480
name uptex.amd64-kfreebsd
category Package
-revision 30655
+revision 34100
shortdesc amd64-kfreebsd files of uptex
-binfiles arch=amd64-kfreebsd size=457
+binfiles arch=amd64-kfreebsd size=458
bin/amd64-kfreebsd/euptex
bin/amd64-kfreebsd/upbibtex
bin/amd64-kfreebsd/updvitype
@@ -175746,7 +190689,7 @@ binfiles arch=amd64-kfreebsd size=457
name uptex.amd64-netbsd
category Package
-revision 30660
+revision 34102
shortdesc amd64-netbsd files of uptex
binfiles arch=amd64-netbsd size=470
bin/amd64-netbsd/euptex
@@ -175760,9 +190703,9 @@ binfiles arch=amd64-netbsd size=470
name uptex.armel-linux
category Package
-revision 30774
+revision 33916
shortdesc armel-linux files of uptex
-binfiles arch=armel-linux size=428
+binfiles arch=armel-linux size=431
bin/armel-linux/euptex
bin/armel-linux/upbibtex
bin/armel-linux/updvitype
@@ -175774,9 +190717,9 @@ binfiles arch=armel-linux size=428
name uptex.armhf-linux
category Package
-revision 30443
+revision 34125
shortdesc armhf-linux files of uptex
-binfiles arch=armhf-linux size=415
+binfiles arch=armhf-linux size=417
bin/armhf-linux/euptex
bin/armhf-linux/upbibtex
bin/armhf-linux/updvitype
@@ -175788,9 +190731,9 @@ binfiles arch=armhf-linux size=415
name uptex.i386-cygwin
category Package
-revision 30526
+revision 34161
shortdesc i386-cygwin files of uptex
-binfiles arch=i386-cygwin size=424
+binfiles arch=i386-cygwin size=470
bin/i386-cygwin/euptex.exe
bin/i386-cygwin/upbibtex.exe
bin/i386-cygwin/updvitype.exe
@@ -175802,9 +190745,9 @@ binfiles arch=i386-cygwin size=424
name uptex.i386-freebsd
category Package
-revision 30400
+revision 34091
shortdesc i386-freebsd files of uptex
-binfiles arch=i386-freebsd size=454
+binfiles arch=i386-freebsd size=455
bin/i386-freebsd/euptex
bin/i386-freebsd/upbibtex
bin/i386-freebsd/updvitype
@@ -175816,9 +190759,9 @@ binfiles arch=i386-freebsd size=454
name uptex.i386-kfreebsd
category Package
-revision 30440
+revision 34100
shortdesc i386-kfreebsd files of uptex
-binfiles arch=i386-kfreebsd size=454
+binfiles arch=i386-kfreebsd size=456
bin/i386-kfreebsd/euptex
bin/i386-kfreebsd/upbibtex
bin/i386-kfreebsd/updvitype
@@ -175830,9 +190773,9 @@ binfiles arch=i386-kfreebsd size=454
name uptex.i386-linux
category Package
-revision 30412
+revision 34086
shortdesc i386-linux files of uptex
-binfiles arch=i386-linux size=453
+binfiles arch=i386-linux size=481
bin/i386-linux/euptex
bin/i386-linux/upbibtex
bin/i386-linux/updvitype
@@ -175844,9 +190787,9 @@ binfiles arch=i386-linux size=453
name uptex.i386-netbsd
category Package
-revision 30405
+revision 34102
shortdesc i386-netbsd files of uptex
-binfiles arch=i386-netbsd size=424
+binfiles arch=i386-netbsd size=425
bin/i386-netbsd/euptex
bin/i386-netbsd/upbibtex
bin/i386-netbsd/updvitype
@@ -175858,9 +190801,9 @@ binfiles arch=i386-netbsd size=424
name uptex.i386-solaris
category Package
-revision 30439
+revision 34203
shortdesc i386-solaris files of uptex
-binfiles arch=i386-solaris size=552
+binfiles arch=i386-solaris size=551
bin/i386-solaris/euptex
bin/i386-solaris/upbibtex
bin/i386-solaris/updvitype
@@ -175870,25 +190813,11 @@ binfiles arch=i386-solaris size=552
bin/i386-solaris/uptftopl
bin/i386-solaris/wovp2ovf
-name uptex.mips-irix
-category Package
-revision 30412
-shortdesc mips-irix files of uptex
-binfiles arch=mips-irix size=899
- bin/mips-irix/euptex
- bin/mips-irix/upbibtex
- bin/mips-irix/updvitype
- bin/mips-irix/uplatex
- bin/mips-irix/uppltotf
- bin/mips-irix/uptex
- bin/mips-irix/uptftopl
- bin/mips-irix/wovp2ovf
-
name uptex.mipsel-linux
category Package
-revision 30435
+revision 34099
shortdesc mipsel-linux files of uptex
-binfiles arch=mipsel-linux size=582
+binfiles arch=mipsel-linux size=484
bin/mipsel-linux/euptex
bin/mipsel-linux/upbibtex
bin/mipsel-linux/updvitype
@@ -175900,9 +190829,9 @@ binfiles arch=mipsel-linux size=582
name uptex.powerpc-linux
category Package
-revision 30402
+revision 34101
shortdesc powerpc-linux files of uptex
-binfiles arch=powerpc-linux size=481
+binfiles arch=powerpc-linux size=454
bin/powerpc-linux/euptex
bin/powerpc-linux/upbibtex
bin/powerpc-linux/updvitype
@@ -175914,9 +190843,9 @@ binfiles arch=powerpc-linux size=481
name uptex.sparc-solaris
category Package
-revision 30412
+revision 34030
shortdesc sparc-solaris files of uptex
-binfiles arch=sparc-solaris size=508
+binfiles arch=sparc-solaris size=503
bin/sparc-solaris/euptex
bin/sparc-solaris/upbibtex
bin/sparc-solaris/updvitype
@@ -175928,9 +190857,9 @@ binfiles arch=sparc-solaris size=508
name uptex.universal-darwin
category Package
-revision 30764
+revision 34201
shortdesc universal-darwin files of uptex
-binfiles arch=universal-darwin size=944
+binfiles arch=universal-darwin size=945
bin/universal-darwin/euptex
bin/universal-darwin/upbibtex
bin/universal-darwin/updvitype
@@ -175942,9 +190871,9 @@ binfiles arch=universal-darwin size=944
name uptex.win32
category Package
-revision 30412
+revision 33897
shortdesc win32 files of uptex
-binfiles arch=win32 size=544
+binfiles arch=win32 size=591
bin/win32/euptex.dll
bin/win32/euptex.exe
bin/win32/upbibtex.exe
@@ -175956,11 +190885,25 @@ binfiles arch=win32 size=544
bin/win32/uptftopl.exe
bin/win32/wovp2ovf.exe
+name uptex.x86_64-cygwin
+category Package
+revision 34161
+shortdesc x86_64-cygwin files of uptex
+binfiles arch=x86_64-cygwin size=464
+ bin/x86_64-cygwin/euptex.exe
+ bin/x86_64-cygwin/upbibtex.exe
+ bin/x86_64-cygwin/updvitype.exe
+ bin/x86_64-cygwin/uplatex
+ bin/x86_64-cygwin/uppltotf.exe
+ bin/x86_64-cygwin/uptex.exe
+ bin/x86_64-cygwin/uptftopl.exe
+ bin/x86_64-cygwin/wovp2ovf.exe
+
name uptex.x86_64-darwin
category Package
-revision 30401
+revision 34201
shortdesc x86_64-darwin files of uptex
-binfiles arch=x86_64-darwin size=506
+binfiles arch=x86_64-darwin size=507
bin/x86_64-darwin/euptex
bin/x86_64-darwin/upbibtex
bin/x86_64-darwin/updvitype
@@ -175972,9 +190915,9 @@ binfiles arch=x86_64-darwin size=506
name uptex.x86_64-linux
category Package
-revision 30519
+revision 33898
shortdesc x86_64-linux files of uptex
-binfiles arch=x86_64-linux size=458
+binfiles arch=x86_64-linux size=462
bin/x86_64-linux/euptex
bin/x86_64-linux/upbibtex
bin/x86_64-linux/updvitype
@@ -175986,9 +190929,9 @@ binfiles arch=x86_64-linux size=458
name uptex.x86_64-solaris
category Package
-revision 30439
+revision 34203
shortdesc x86_64-solaris files of uptex
-binfiles arch=x86_64-solaris size=624
+binfiles arch=x86_64-solaris size=619
bin/x86_64-solaris/euptex
bin/x86_64-solaris/upbibtex
bin/x86_64-solaris/updvitype
@@ -176019,13 +190962,13 @@ srcfiles size=14
runfiles size=2
texmf-dist/tex/latex/uri/uri.sty
catalogue-ctan /macros/latex/contrib/uri
-catalogue-date 2012-04-09 09:24:18 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.0a
name url
category Package
-revision 16864
+revision 32528
shortdesc Verbatim with URL-sensitive line breaks.
longdesc The command \url is a form of verbatim command that allows
longdesc linebreaks at certain characters or combinations of characters,
@@ -176038,16 +190981,16 @@ longdesc no spaces, so by default the package ignores spaces in its
longdesc argument. However, a package option "allows spaces", which is
longdesc useful for operating systems where spaces are a common part of
longdesc file names.
-docfiles size=65
+docfiles size=69
texmf-dist/doc/latex/url/miscdoc.sty
texmf-dist/doc/latex/url/url.pdf details="Package documentation"
texmf-dist/doc/latex/url/url.tex
-runfiles size=6
+runfiles size=4
texmf-dist/tex/latex/url/url.sty
catalogue-ctan /macros/latex/contrib/url
-catalogue-date 2012-04-09 09:24:18 +0200
+catalogue-date 2013-12-31 15:02:54 +0100
catalogue-license lppl
-catalogue-version 3.2
+catalogue-version 3.4
name urlbst
category Package
@@ -176168,13 +191111,6 @@ shortdesc i386-solaris files of urlbst
binfiles arch=i386-solaris size=1
bin/i386-solaris/urlbst
-name urlbst.mips-irix
-category Package
-revision 29949
-shortdesc mips-irix files of urlbst
-binfiles arch=mips-irix size=1
- bin/mips-irix/urlbst
-
name urlbst.mipsel-linux
category Package
revision 29946
@@ -176210,6 +191146,13 @@ shortdesc win32 files of urlbst
binfiles arch=win32 size=1
bin/win32/urlbst.exe
+name urlbst.x86_64-cygwin
+category Package
+revision 33557
+shortdesc x86_64-cygwin files of urlbst
+binfiles arch=x86_64-cygwin size=1
+ bin/x86_64-cygwin/urlbst
+
name urlbst.x86_64-darwin
category Package
revision 23262
@@ -176250,7 +191193,7 @@ runfiles size=4
texmf-dist/tex/latex/urwchancal/urwchancal.sty
texmf-dist/tex/latex/urwchancal/uurwchancal.fd
catalogue-ctan /fonts/urwchancal
-catalogue-date 2013-01-24 13:39:09 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1
@@ -176273,24 +191216,24 @@ srcfiles size=5
runfiles size=1
texmf-dist/tex/latex/usebib/usebib.sty
catalogue-ctan /macros/latex/contrib/usebib
-catalogue-date 2012-04-25 04:50:35 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.0a
name ushort
category Package
-revision 15878
+revision 32261
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=57
+docfiles size=25
texmf-dist/doc/latex/ushort/README details="Readme"
texmf-dist/doc/latex/ushort/ushort.pdf details="Package documentation"
texmf-dist/doc/latex/ushort/ushort.tex
texmf-dist/doc/latex/ushort/ushort.txt
-srcfiles size=9
+srcfiles size=10
texmf-dist/source/latex/ushort/ushort.dtx
texmf-dist/source/latex/ushort/ushort.ins
runfiles size=1
@@ -176339,7 +191282,7 @@ docfiles size=776
runfiles size=5
texmf-dist/tex/latex/uspatent/uspatent.cls
catalogue-ctan /macros/latex/contrib/uspatent
-catalogue-date 2012-09-24 12:06:05 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.0
@@ -176363,9 +191306,12 @@ catalogue-version 2.0
name utf8mex
category Package
revision 15878
+shortdesc Tools to produce formats that read Polish language input.
+longdesc The bundle provides files for building formats to read input in
+longdesc Polish encodings.
docfiles size=12
texmf-dist/doc/mex/utf8mex/Makefile
- texmf-dist/doc/mex/utf8mex/README
+ texmf-dist/doc/mex/utf8mex/README details="Readme"
texmf-dist/doc/mex/utf8mex/examples/Makefile
texmf-dist/doc/mex/utf8mex/examples/catcode.tex
texmf-dist/doc/mex/utf8mex/examples/list.tex
@@ -176378,6 +191324,9 @@ runfiles size=3
texmf-dist/tex/mex/utf8mex/utf8-pl.tex
texmf-dist/tex/mex/utf8mex/utf8mex.ini
texmf-dist/tex/mex/utf8mex/utf8plsq.tex
+catalogue-ctan /language/polish/utf8mex
+catalogue-date 2014-04-25 11:20:11 +0200
+catalogue-license pd
name utopia
category Package
@@ -176451,7 +191400,7 @@ runfiles size=168
texmf-dist/fonts/vf/adobe/utopia/putro8c.vf
texmf-dist/fonts/vf/adobe/utopia/putro8t.vf
catalogue-ctan /fonts/utopia
-catalogue-date 2012-10-04 12:39:52 +0200
+catalogue-date 2014-05-21 17:41:13 +0200
catalogue-license other-free
name uwmslide
@@ -176515,7 +191464,7 @@ docfiles size=24
runfiles size=8
texmf-dist/bibtex/bst/vak/vak.bst
catalogue-ctan /biblio/bibtex/contrib/vak
-catalogue-date 2012-06-24 22:10:37 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
name vancouver
@@ -176563,14 +191512,14 @@ catalogue-version 0.3
name varindex
category Package
-revision 15878
+revision 32262
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=99
+docfiles size=74
texmf-dist/doc/latex/varindex/README details="Readme"
texmf-dist/doc/latex/varindex/varindex.pdf details="Package documentation"
texmf-dist/doc/latex/varindex/varindex.tex
@@ -176581,9 +191530,9 @@ srcfiles size=51
runfiles size=8
texmf-dist/tex/latex/varindex/varindex.sty
catalogue-ctan /macros/latex/contrib/varindex
-catalogue-date 2012-06-24 22:10:37 +0200
+catalogue-date 2013-11-27 07:34:41 +0100
catalogue-license lppl
-catalogue-version 1.20
+catalogue-version 2.3
name varisize
category Package
@@ -176624,7 +191573,7 @@ docfiles size=12
runfiles size=1
texmf-dist/tex/latex/varsfromjobname/varsfromjobname.sty
catalogue-ctan /macros/latex/contrib/varsfromjobname
-catalogue-date 2012-06-24 22:10:37 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 0.5
@@ -176669,7 +191618,7 @@ runfiles size=19
texmf-dist/tex/generic/vaucanson-g/vaucanson-g.sty
texmf-dist/tex/generic/vaucanson-g/vaucanson.sty
catalogue-ctan /graphics/pstricks/contrib/vaucanson-g
-catalogue-date 2012-02-26 00:20:00 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 0.4
@@ -176691,7 +191640,7 @@ docfiles size=22
runfiles size=2
texmf-dist/tex/latex/vdmlisting/vdmlisting.sty
catalogue-ctan /macros/latex/contrib/vdmlisting
-catalogue-date 2013-04-16 11:30:34 +0200
+catalogue-date 2013-06-19 11:29:28 +0200
catalogue-license lppl
catalogue-version 1.0
@@ -176704,7 +191653,10 @@ longdesc Frans Velthuis' preprocessor for Devanagari text, and fonts and
longdesc macros to use when typesetting the processed text. The macros
longdesc provide features that support Sanskrit, Hindi, Marathi, Nepali,
longdesc and other languages typically printed in the Devanagari script.
-longdesc The fonts are available both in Metafont and Type 1 format.
+longdesc The package provides fonts, in both Metafont and Type 1
+longdesc formats. Users of modern TeX distributions may care to try the
+longdesc XeTeX based package, which is far preferable for users who can
+longdesc type Unicode text.
depend xetex-devanagari
execute addMixedMap dvng.map
docfiles size=283
@@ -176990,7 +191942,7 @@ runfiles size=1540
texmf-dist/tex/plain/velthuis/dnmacs.tex
texmf-dist/tex/xelatex/velthuis/hindicaptions.sty
catalogue-ctan /language/devanagari/velthuis
-catalogue-date 2012-06-19 16:44:25 +0200
+catalogue-date 2013-12-13 11:15:58 +0100
catalogue-license gpl
catalogue-version 2.15.1
@@ -177027,7 +191979,7 @@ srcfiles size=14
runfiles size=6
texmf-dist/tex/latex/venndiagram/venndiagram.sty
catalogue-ctan /macros/latex/contrib/venndiagram
-catalogue-date 2012-11-04 01:40:03 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.0
@@ -177865,7 +192817,7 @@ runfiles size=2660
texmf-dist/tex/latex/venturissans2/t1yv3.fd
texmf-dist/tex/latex/venturissans2/ts1yv3.fd
catalogue-ctan /fonts/venturisadf
-catalogue-date 2012-06-24 22:10:37 +0200
+catalogue-date 2014-05-21 17:41:13 +0200
catalogue-license other-free
catalogue-version 1.005
@@ -177893,7 +192845,7 @@ catalogue-version 1.1
name verbatimbox
category Package
-revision 30104
+revision 33197
shortdesc Deposit verbatim text in a box.
longdesc The package provides a verbbox environment (which uses
longdesc techniques similar to those of the boxedverbatim environment of
@@ -177905,16 +192857,16 @@ longdesc valuable use is in places where the standard verbatim
longdesc environment (which is based on a trivlist) may not appear. The
longdesc package makes use of the verbatim package (which is a required
longdesc part of any LaTeX distribution).
-docfiles size=60
+docfiles size=69
texmf-dist/doc/latex/verbatimbox/README details="Readme"
texmf-dist/doc/latex/verbatimbox/verbatimbox.pdf details="package documentation"
texmf-dist/doc/latex/verbatimbox/verbatimbox.tex
-runfiles size=2
+runfiles size=3
texmf-dist/tex/latex/verbatimbox/verbatimbox.sty
catalogue-ctan /macros/latex/contrib/verbatimbox
-catalogue-date 2013-04-25 17:40:06 +0200
+catalogue-date 2014-03-12 19:18:01 +0100
catalogue-license lppl
-catalogue-version 3.01
+catalogue-version 3.13
name verbatimcopy
category Package
@@ -177932,7 +192884,7 @@ docfiles size=46
runfiles size=2
texmf-dist/tex/latex/verbatimcopy/verbatimcopy.sty
catalogue-ctan /macros/latex/contrib/verbatimcopy
-catalogue-date 2011-10-06 15:38:07 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 0.06
@@ -177972,29 +192924,29 @@ docfiles size=28
runfiles size=2
texmf-dist/tex/latex/verbments/verbments.sty
catalogue-ctan /macros/latex/contrib/verbments
-catalogue-date 2012-08-16 22:32:31 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.2
catalogue-version 1.2
name verse
category Package
-revision 15878
+revision 34017
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=68
+docfiles size=105
texmf-dist/doc/latex/verse/README details="Readme"
texmf-dist/doc/latex/verse/verse.pdf details="Package documentation"
-srcfiles size=15
+srcfiles size=16
texmf-dist/source/latex/verse/verse.dtx
texmf-dist/source/latex/verse/verse.ins
runfiles size=3
texmf-dist/tex/latex/verse/verse.sty
catalogue-ctan /macros/latex/contrib/verse
-catalogue-date 2012-08-17 13:10:56 +0200
+catalogue-date 2014-05-10 11:58:31 +0200
catalogue-license lppl
-catalogue-version 2.4
+catalogue-version 2.4b
name version
category Package
@@ -178054,6 +193006,25 @@ catalogue-date 2012-08-17 13:10:56 +0200
catalogue-license lppl1.3
catalogue-version 1.0b
+name vgrid
+category Package
+revision 32457
+shortdesc Overlay a grid on the printed page.
+longdesc The package overlays a grid (whose spacing is \baselineskip,
+longdesc which offers guidlines for considering the "rhythm" of the
+longdesc document on the page.
+docfiles size=6
+ texmf-dist/doc/latex/vgrid/vgrid.pdf details="Package documentation"
+srcfiles size=3
+ texmf-dist/source/latex/vgrid/vgrid.dtx
+ texmf-dist/source/latex/vgrid/vgrid.ins
+runfiles size=1
+ texmf-dist/tex/latex/vgrid/vgrid.sty
+catalogue-ctan /macros/latex/contrib/vgrid
+catalogue-date 2014-02-26 23:03:13 +0100
+catalogue-license lppl1.3
+catalogue-version 0.1
+
name vhistory
category Package
revision 30080
@@ -178125,7 +193096,7 @@ catalogue-license lppl
name vlna
category TLCore
-revision 29764
+revision 33736
depend vlna.ARCH
docfiles size=38
texmf-dist/doc/man/man1/vlna.1
@@ -178148,14 +193119,14 @@ binfiles arch=amd64-freebsd size=4
name vlna.amd64-kfreebsd
category TLCore
-revision 30655
+revision 33529
shortdesc amd64-kfreebsd files of vlna
binfiles arch=amd64-kfreebsd size=4
bin/amd64-kfreebsd/vlna
name vlna.amd64-netbsd
category TLCore
-revision 30660
+revision 33726
shortdesc amd64-netbsd files of vlna
binfiles arch=amd64-netbsd size=4
bin/amd64-netbsd/vlna
@@ -178169,14 +193140,14 @@ binfiles arch=armel-linux size=4
name vlna.armhf-linux
category TLCore
-revision 30015
+revision 33545
shortdesc armhf-linux files of vlna
binfiles arch=armhf-linux size=4
bin/armhf-linux/vlna
name vlna.i386-cygwin
category TLCore
-revision 30526
+revision 34161
shortdesc i386-cygwin files of vlna
binfiles arch=i386-cygwin size=4
bin/i386-cygwin/vlna.exe
@@ -178190,91 +193161,91 @@ binfiles arch=i386-freebsd size=4
name vlna.i386-kfreebsd
category TLCore
-revision 30440
+revision 33529
shortdesc i386-kfreebsd files of vlna
binfiles arch=i386-kfreebsd size=4
bin/i386-kfreebsd/vlna
name vlna.i386-linux
category TLCore
-revision 30088
+revision 33479
shortdesc i386-linux files of vlna
binfiles arch=i386-linux size=4
bin/i386-linux/vlna
name vlna.i386-netbsd
category TLCore
-revision 30191
+revision 33562
shortdesc i386-netbsd files of vlna
binfiles arch=i386-netbsd size=4
bin/i386-netbsd/vlna
name vlna.i386-solaris
category TLCore
-revision 30112
+revision 34203
shortdesc i386-solaris files of vlna
binfiles arch=i386-solaris size=4
bin/i386-solaris/vlna
-name vlna.mips-irix
-category TLCore
-revision 29949
-shortdesc mips-irix files of vlna
-binfiles arch=mips-irix size=13
- bin/mips-irix/vlna
-
name vlna.mipsel-linux
category TLCore
-revision 29783
+revision 33811
shortdesc mipsel-linux files of vlna
-binfiles arch=mipsel-linux size=5
+binfiles arch=mipsel-linux size=4
bin/mipsel-linux/vlna
name vlna.powerpc-linux
category TLCore
-revision 29833
+revision 33561
shortdesc powerpc-linux files of vlna
binfiles arch=powerpc-linux size=4
bin/powerpc-linux/vlna
name vlna.sparc-solaris
category TLCore
-revision 29877
+revision 33871
shortdesc sparc-solaris files of vlna
binfiles arch=sparc-solaris size=4
bin/sparc-solaris/vlna
name vlna.universal-darwin
category TLCore
-revision 30764
+revision 34201
shortdesc universal-darwin files of vlna
binfiles arch=universal-darwin size=12
bin/universal-darwin/vlna
name vlna.win32
category TLCore
-revision 29816
+revision 33513
shortdesc win32 files of vlna
-binfiles arch=win32 size=3
+binfiles arch=win32 size=4
bin/win32/vlna.exe
+name vlna.x86_64-cygwin
+category TLCore
+revision 34161
+shortdesc x86_64-cygwin files of vlna
+binfiles arch=x86_64-cygwin size=5
+ bin/x86_64-cygwin/vlna.exe
+
name vlna.x86_64-darwin
category TLCore
-revision 29809
+revision 34201
shortdesc x86_64-darwin files of vlna
binfiles arch=x86_64-darwin size=5
bin/x86_64-darwin/vlna
name vlna.x86_64-linux
category TLCore
-revision 30204
+revision 33723
shortdesc x86_64-linux files of vlna
binfiles arch=x86_64-linux size=4
bin/x86_64-linux/vlna
name vlna.x86_64-solaris
category TLCore
-revision 30112
+revision 34203
shortdesc x86_64-solaris files of vlna
binfiles arch=x86_64-solaris size=5
bin/x86_64-solaris/vlna
@@ -178946,7 +193917,7 @@ docfiles size=13
runfiles size=11
texmf-dist/tex/latex/vocaltract/VocalTract.sty
catalogue-ctan /graphics/pstricks/contrib/vocaltract
-catalogue-date 2012-03-14 10:39:29 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1
@@ -178974,28 +193945,80 @@ catalogue-date 2012-06-07 00:20:13 +0200
catalogue-license lppl
catalogue-version 1.0
-name voss-de
-category Package
-revision 15878
-docfiles size=228
- texmf-dist/doc/generic/voss-de/InlineMath/Changes
- texmf-dist/doc/generic/voss-de/InlineMath/InlineMath.bib
- texmf-dist/doc/generic/voss-de/InlineMath/InlineMath.ltx
- texmf-dist/doc/generic/voss-de/InlineMath/InlineMath.pdf
- texmf-dist/doc/generic/voss-de/InlineMath/InlineMath.tex
- texmf-dist/doc/generic/voss-de/InlineMath/README
- texmf-dist/doc/generic/voss-de/README
- texmf-dist/doc/generic/voss-de/gauss/Changes
- texmf-dist/doc/generic/voss-de/gauss/README
- texmf-dist/doc/generic/voss-de/gauss/gauss.ltx
- texmf-dist/doc/generic/voss-de/gauss/gauss.pdf
- texmf-dist/doc/generic/voss-de/gauss/gauss.tex
- texmf-dist/doc/generic/voss-de/mathCol/Changes
- texmf-dist/doc/generic/voss-de/mathCol/README
- texmf-dist/doc/generic/voss-de/mathCol/mathCol.bib
- texmf-dist/doc/generic/voss-de/mathCol/mathCol.ltx
- texmf-dist/doc/generic/voss-de/mathCol/mathCol.pdf
- texmf-dist/doc/generic/voss-de/mathCol/mathCol.tex
+name voss-mathcol
+category Package
+revision 32954
+shortdesc Typesetting mathematics in colour, in (La)TeX.
+longdesc This is a short paper from the TeXnische Komodie, in German.
+longdesc Since the body of the paper is dominated by clear LaTeX coding
+longdesc examples, most LaTeX programmers will understand how to achieve
+longdesc the results shown in the diagrams, even if they don't
+longdesc understand German.
+docfiles size=71
+ texmf-dist/doc/latex/voss-mathcol/Changes
+ texmf-dist/doc/latex/voss-mathcol/mathCol.bib
+ texmf-dist/doc/latex/voss-mathcol/mathCol.ltx
+ texmf-dist/doc/latex/voss-mathcol/mathCol.pdf details="The document itself"
+ texmf-dist/doc/latex/voss-mathcol/mathCol.tex
+ texmf-dist/doc/latex/voss-mathcol/run.doc
+catalogue-ctan /info/math/voss/mathCol
+catalogue-date 2014-02-16 23:23:15 +0100
+catalogue-license lppl
+catalogue-version 0.1
+
+name voss-mathmode
+category Package
+revision 32953
+shortdesc A comprehensive review of mathematics in (La)TeX.
+longdesc The review includes: Standard LaTeX mathematics mode; AMSmath;
+longdesc TeX and mathematics; Other packages; Tuning math typesetting;
+longdesc Mathematics fonts; Special symbols; Examples; and Lists,
+longdesc bibliography and index.
+docfiles size=1815
+ texmf-dist/doc/latex/voss-mathmode/Changes
+ texmf-dist/doc/latex/voss-mathmode/Mathmode.bib
+ texmf-dist/doc/latex/voss-mathmode/Mathmode.ist
+ texmf-dist/doc/latex/voss-mathmode/Mathmode.ltx
+ texmf-dist/doc/latex/voss-mathmode/Mathmode.pdf details="The document itself"
+ texmf-dist/doc/latex/voss-mathmode/Mathmode.tex
+ texmf-dist/doc/latex/voss-mathmode/images/EuScript.eps
+ texmf-dist/doc/latex/voss-mathmode/images/EuScript.pdf
+ texmf-dist/doc/latex/voss-mathmode/images/amsalign.eps
+ texmf-dist/doc/latex/voss-mathmode/images/amsalign.pdf
+ texmf-dist/doc/latex/voss-mathmode/images/cm-crop.eps
+ texmf-dist/doc/latex/voss-mathmode/images/cm-crop.pdf
+ texmf-dist/doc/latex/voss-mathmode/images/cmbright-crop.eps
+ texmf-dist/doc/latex/voss-mathmode/images/cmbright-crop.pdf
+ texmf-dist/doc/latex/voss-mathmode/images/colArray.eps
+ texmf-dist/doc/latex/voss-mathmode/images/colArray.pdf
+ texmf-dist/doc/latex/voss-mathmode/images/exscale.eps
+ texmf-dist/doc/latex/voss-mathmode/images/exscale.pdf
+ texmf-dist/doc/latex/voss-mathmode/images/family.eps
+ texmf-dist/doc/latex/voss-mathmode/images/family.pdf
+ texmf-dist/doc/latex/voss-mathmode/images/family0.eps
+ texmf-dist/doc/latex/voss-mathmode/images/family0.pdf
+ texmf-dist/doc/latex/voss-mathmode/images/family1.eps
+ texmf-dist/doc/latex/voss-mathmode/images/family1.pdf
+ texmf-dist/doc/latex/voss-mathmode/images/lm-crop.eps
+ texmf-dist/doc/latex/voss-mathmode/images/lm-crop.pdf
+ texmf-dist/doc/latex/voss-mathmode/images/minionpro-crop.eps
+ texmf-dist/doc/latex/voss-mathmode/images/minionpro-crop.pdf
+ texmf-dist/doc/latex/voss-mathmode/images/node.eps
+ texmf-dist/doc/latex/voss-mathmode/images/node.pdf
+ texmf-dist/doc/latex/voss-mathmode/images/pamath-crop.eps
+ texmf-dist/doc/latex/voss-mathmode/images/pamath-crop.pdf
+ texmf-dist/doc/latex/voss-mathmode/images/pazo-crop.eps
+ texmf-dist/doc/latex/voss-mathmode/images/pazo-crop.pdf
+ texmf-dist/doc/latex/voss-mathmode/images/styles.eps
+ texmf-dist/doc/latex/voss-mathmode/images/styles.pdf
+ texmf-dist/doc/latex/voss-mathmode/runLaTeX
+ texmf-dist/doc/latex/voss-mathmode/runPDFLaTeX
+ texmf-dist/doc/latex/voss-mathmode/runVTeX
+ texmf-dist/doc/latex/voss-mathmode/showexpl.cfg
+catalogue-ctan /info/math/voss/mathmode
+catalogue-date 2014-02-16 23:23:15 +0100
+catalogue-license lppl
+catalogue-version 2.47
name vpe
category Package
@@ -179104,13 +194127,6 @@ shortdesc i386-solaris files of vpe
binfiles arch=i386-solaris size=1
bin/i386-solaris/vpe
-name vpe.mips-irix
-category Package
-revision 29949
-shortdesc mips-irix files of vpe
-binfiles arch=mips-irix size=1
- bin/mips-irix/vpe
-
name vpe.mipsel-linux
category Package
revision 29946
@@ -179146,6 +194162,13 @@ shortdesc win32 files of vpe
binfiles arch=win32 size=1
bin/win32/vpe.exe
+name vpe.x86_64-cygwin
+category Package
+revision 33557
+shortdesc x86_64-cygwin files of vpe
+binfiles arch=x86_64-cygwin size=1
+ bin/x86_64-cygwin/vpe
+
name vpe.x86_64-darwin
category Package
revision 18441
@@ -179203,7 +194226,7 @@ srcfiles size=11
runfiles size=3
texmf-dist/tex/latex/vwcol/vwcol.sty
catalogue-ctan /macros/latex/contrib/vwcol
-catalogue-date 2012-05-04 12:49:06 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 0.1
@@ -180531,7 +195554,7 @@ runfiles size=6262
texmf-dist/fonts/vf/wadalab/umrj/umrj9f.vf
texmf-dist/fonts/vf/wadalab/umrj/umrjff.vf
catalogue-ctan /fonts/wadalab
-catalogue-date 2012-05-04 12:49:06 +0200
+catalogue-date 2014-05-20 15:07:59 +0200
catalogue-license other-free
name wallpaper
@@ -180604,10 +195627,10 @@ category Package
revision 21439
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
-longdesc both decimal separator and maths; and - upright Greek letters
-longdesc in maths.
+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
+longdesc maths.
docfiles size=180
texmf-dist/doc/latex/was/fixmath.pdf
texmf-dist/doc/latex/was/gensymb.pdf
@@ -180629,7 +195652,7 @@ runfiles size=6
texmf-dist/tex/latex/was/icomma.sty
texmf-dist/tex/latex/was/upgreek.sty
catalogue-ctan /macros/latex/contrib/was
-catalogue-date 2012-06-07 22:26:23 +0200
+catalogue-date 2013-12-14 00:38:02 +0100
catalogue-license collection
name wasy
@@ -180690,7 +195713,7 @@ runfiles size=129
texmf-dist/fonts/type1/public/wasy/wasyb10.pfm
texmf-dist/tex/plain/wasy/wasyfont.tex
catalogue-ctan /fonts/wasy2
-catalogue-date 2012-06-07 22:26:23 +0200
+catalogue-date 2014-05-20 15:07:59 +0200
catalogue-license pd
name wasysym
@@ -180720,7 +195743,7 @@ catalogue-version 2.0
name web
category TLCore
-revision 29764
+revision 33736
shortdesc original web programs tangle and weave
longdesc The system processes 'web' files in two ways: firstly to
longdesc rearrange them to produce compilable code (using the program
@@ -180734,13 +195757,13 @@ docfiles size=7
texmf-dist/doc/man/man1/weave.1
texmf-dist/doc/man/man1/weave.man1.pdf
catalogue-ctan /systems/knuth/dist/web
-catalogue-date 2012-02-22 18:24:24 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license knuth
catalogue-version 4.5
name web.alpha-linux
category TLCore
-revision 29891
+revision 33553
shortdesc alpha-linux files of web
binfiles arch=alpha-linux size=80
bin/alpha-linux/tangle
@@ -180748,7 +195771,7 @@ binfiles arch=alpha-linux size=80
name web.amd64-freebsd
category TLCore
-revision 29874
+revision 33488
shortdesc amd64-freebsd files of web
binfiles arch=amd64-freebsd size=62
bin/amd64-freebsd/tangle
@@ -180756,7 +195779,7 @@ binfiles arch=amd64-freebsd size=62
name web.amd64-kfreebsd
category TLCore
-revision 30655
+revision 33864
shortdesc amd64-kfreebsd files of web
binfiles arch=amd64-kfreebsd size=57
bin/amd64-kfreebsd/tangle
@@ -180764,7 +195787,7 @@ binfiles arch=amd64-kfreebsd size=57
name web.amd64-netbsd
category TLCore
-revision 30660
+revision 33726
shortdesc amd64-netbsd files of web
binfiles arch=amd64-netbsd size=61
bin/amd64-netbsd/tangle
@@ -180772,7 +195795,7 @@ binfiles arch=amd64-netbsd size=61
name web.armel-linux
category TLCore
-revision 29888
+revision 33916
shortdesc armel-linux files of web
binfiles arch=armel-linux size=53
bin/armel-linux/tangle
@@ -180780,7 +195803,7 @@ binfiles arch=armel-linux size=53
name web.armhf-linux
category TLCore
-revision 30443
+revision 34125
shortdesc armhf-linux files of web
binfiles arch=armhf-linux size=50
bin/armhf-linux/tangle
@@ -180788,15 +195811,15 @@ binfiles arch=armhf-linux size=50
name web.i386-cygwin
category TLCore
-revision 30526
+revision 34161
shortdesc i386-cygwin files of web
-binfiles arch=i386-cygwin size=54
+binfiles arch=i386-cygwin size=61
bin/i386-cygwin/tangle.exe
bin/i386-cygwin/weave.exe
name web.i386-freebsd
category TLCore
-revision 29874
+revision 33488
shortdesc i386-freebsd files of web
binfiles arch=i386-freebsd size=59
bin/i386-freebsd/tangle
@@ -180804,23 +195827,23 @@ binfiles arch=i386-freebsd size=59
name web.i386-kfreebsd
category TLCore
-revision 30440
+revision 33864
shortdesc i386-kfreebsd files of web
-binfiles arch=i386-kfreebsd size=56
+binfiles arch=i386-kfreebsd size=57
bin/i386-kfreebsd/tangle
bin/i386-kfreebsd/weave
name web.i386-linux
category TLCore
-revision 30088
+revision 33479
shortdesc i386-linux files of web
-binfiles arch=i386-linux size=56
+binfiles arch=i386-linux size=59
bin/i386-linux/tangle
bin/i386-linux/weave
name web.i386-netbsd
category TLCore
-revision 30191
+revision 33562
shortdesc i386-netbsd files of web
binfiles arch=i386-netbsd size=53
bin/i386-netbsd/tangle
@@ -180828,63 +195851,63 @@ binfiles arch=i386-netbsd size=53
name web.i386-solaris
category TLCore
-revision 30112
+revision 34203
shortdesc i386-solaris files of web
-binfiles arch=i386-solaris size=71
+binfiles arch=i386-solaris size=70
bin/i386-solaris/tangle
bin/i386-solaris/weave
-name web.mips-irix
-category TLCore
-revision 30131
-shortdesc mips-irix files of web
-binfiles arch=mips-irix size=128
- bin/mips-irix/tangle
- bin/mips-irix/weave
-
name web.mipsel-linux
category TLCore
-revision 29995
+revision 33811
shortdesc mipsel-linux files of web
-binfiles arch=mipsel-linux size=72
+binfiles arch=mipsel-linux size=61
bin/mipsel-linux/tangle
bin/mipsel-linux/weave
name web.powerpc-linux
category TLCore
-revision 30114
+revision 33889
shortdesc powerpc-linux files of web
-binfiles arch=powerpc-linux size=61
+binfiles arch=powerpc-linux size=57
bin/powerpc-linux/tangle
bin/powerpc-linux/weave
name web.sparc-solaris
category TLCore
-revision 29877
+revision 33871
shortdesc sparc-solaris files of web
-binfiles arch=sparc-solaris size=66
+binfiles arch=sparc-solaris size=64
bin/sparc-solaris/tangle
bin/sparc-solaris/weave
name web.universal-darwin
category TLCore
-revision 30764
+revision 34201
shortdesc universal-darwin files of web
-binfiles arch=universal-darwin size=122
+binfiles arch=universal-darwin size=123
bin/universal-darwin/tangle
bin/universal-darwin/weave
name web.win32
category TLCore
-revision 29816
+revision 33897
shortdesc win32 files of web
-binfiles arch=win32 size=19
+binfiles arch=win32 size=26
bin/win32/tangle.exe
bin/win32/weave.exe
+name web.x86_64-cygwin
+category TLCore
+revision 34161
+shortdesc x86_64-cygwin files of web
+binfiles arch=x86_64-cygwin size=60
+ bin/x86_64-cygwin/tangle.exe
+ bin/x86_64-cygwin/weave.exe
+
name web.x86_64-darwin
category TLCore
-revision 29879
+revision 34201
shortdesc x86_64-darwin files of web
binfiles arch=x86_64-darwin size=65
bin/x86_64-darwin/tangle
@@ -180892,15 +195915,15 @@ binfiles arch=x86_64-darwin size=65
name web.x86_64-linux
category TLCore
-revision 30204
+revision 33723
shortdesc x86_64-linux files of web
-binfiles arch=x86_64-linux size=57
+binfiles arch=x86_64-linux size=59
bin/x86_64-linux/tangle
bin/x86_64-linux/weave
name web.x86_64-solaris
category TLCore
-revision 30112
+revision 34203
shortdesc x86_64-solaris files of web
binfiles arch=x86_64-solaris size=80
bin/x86_64-solaris/tangle
@@ -180945,7 +195968,7 @@ srcfiles size=9
runfiles size=2
texmf-dist/tex/latex/widetable/widetable.sty
catalogue-ctan /macros/latex/contrib/widetable
-catalogue-date 2012-08-15 21:05:41 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.1
@@ -180968,7 +195991,7 @@ catalogue-license lppl
name wintools.win32
category TLCore
-revision 29816
+revision 33995
shortdesc Utilities provided only for Windows.
longdesc Common utilities, mainly from the w32tex distribution.
postaction filetype name="TL.bitmap2eps.convert" cmd='"TEXDIR/bin/win32/bitmap2eps.exe" "%1"'
@@ -180980,12 +196003,18 @@ postaction progid extension=.jpe filetype="TL.bitmap2eps.convert"
postaction progid extension=.jpeg filetype="TL.bitmap2eps.convert"
postaction progid extension=.tif filetype="TL.bitmap2eps.convert"
postaction progid extension=.tiff filetype="TL.bitmap2eps.convert"
-docfiles size=41
- texmf-dist/doc/gzip/gzip.html
- texmf-dist/doc/gzip/gzip.pdf
+docfiles size=97
+ texmf-dist/doc/support/wintools/gzip.pdf
+ texmf-dist/doc/support/wintools/pdffonts.pdf
+ texmf-dist/doc/support/wintools/pdfimages.pdf
+ texmf-dist/doc/support/wintools/pdfinfo.pdf
+ texmf-dist/doc/support/wintools/pdftops.pdf
+ texmf-dist/doc/support/wintools/pdftotext.pdf
+ texmf-dist/doc/support/wintools/unzip.pdf
+ texmf-dist/doc/support/wintools/zip.pdf
runfiles size=1
texmf-dist/scripts/bitmap2eps/bitmap2eps.vbs
-binfiles arch=win32 size=1884
+binfiles arch=win32 size=1870
bin/win32/aftopl.exe
bin/win32/bitmap2eps.exe
bin/win32/bmeps.exe
@@ -180995,6 +196024,7 @@ binfiles arch=win32 size=1884
bin/win32/gunzip.exe
bin/win32/gzip.exe
bin/win32/jbig2.exe
+ bin/win32/luajitlatex.exe
bin/win32/pdffonts.exe
bin/win32/pdfimages.exe
bin/win32/pdfinfo.exe
@@ -181013,6 +196043,23 @@ binfiles arch=win32 size=1884
bin/win32/unzip.exe
bin/win32/zip.exe
+name withargs
+category Package
+revision 31906
+shortdesc Ephemeral macro use.
+docfiles size=120
+ texmf-dist/doc/latex/withargs/README details="Readme"
+ texmf-dist/doc/latex/withargs/withargs.pdf details="Package documentation"
+ texmf-dist/doc/latex/withargs/withargs.tex
+runfiles size=7
+ texmf-dist/tex/latex/withargs/withargs-dry.sty
+ texmf-dist/tex/latex/withargs/withargs-packagedoc.cls
+ texmf-dist/tex/latex/withargs/withargs.sty
+catalogue-ctan /macros/latex/contrib/withargs
+catalogue-date 2014-02-26 23:03:13 +0100
+catalogue-license lppl1.3
+catalogue-version 0.0.2
+
name wnri
category Package
revision 22459
@@ -181107,14 +196154,14 @@ runfiles size=132
texmf-dist/fonts/tfm/public/wnri/wnrit10.tfm
texmf-dist/fonts/tfm/public/wnri/wnrit8.tfm
catalogue-ctan /fonts/wnri
-catalogue-date 2012-06-08 12:16:32 +0200
+catalogue-date 2014-05-20 14:46:50 +0200
catalogue-license gpl
name wnri-latex
category Package
revision 22338
shortdesc LaTeX support for wnri fonts.
-longdesc LaTeX support for the fonts.
+longdesc LaTeX support for the wnri fonts.
docfiles size=51
texmf-dist/doc/latex/wnri-latex/README details="Readme"
texmf-dist/doc/latex/wnri-latex/wnri.pdf details="Package documentation"
@@ -181129,7 +196176,7 @@ runfiles size=7
texmf-dist/tex/latex/wnri-latex/wnri.def
texmf-dist/tex/latex/wnri-latex/wnri.sty
catalogue-ctan /macros/latex/contrib/wnri-latex
-catalogue-date 2012-07-23 18:24:34 +0200
+catalogue-date 2014-05-20 14:45:48 +0200
catalogue-license gpl2
catalogue-version 1.0b
@@ -181178,6 +196225,34 @@ catalogue-date 2012-05-30 14:33:40 +0200
catalogue-license lppl
catalogue-version 3.6
+name wsemclassic
+category Package
+revision 31532
+shortdesc LaTeX class for Bavarian school w-seminar papers.
+longdesc The class is designed either to conform with the
+longdesc recommendations of the Bavarian Kultusministerium for
+longdesc typesetting w-seminar papers (strict mode), or to use another
+longdesc style which should look better. The class is based on the LaTeX
+longdesc standard report class.
+docfiles size=106
+ texmf-dist/doc/latex/wsemclassic/LICENSE
+ texmf-dist/doc/latex/wsemclassic/Makefile
+ texmf-dist/doc/latex/wsemclassic/README details="Readme"
+ texmf-dist/doc/latex/wsemclassic/test.bib
+ texmf-dist/doc/latex/wsemclassic/user-doc.tex
+ texmf-dist/doc/latex/wsemclassic/wsemclassic-test.pdf
+ texmf-dist/doc/latex/wsemclassic/wsemclassic-test.tex
+ texmf-dist/doc/latex/wsemclassic/wsemclassic.pdf details="Package documentation"
+srcfiles size=7
+ texmf-dist/source/latex/wsemclassic/wsemclassic.dtx
+ texmf-dist/source/latex/wsemclassic/wsemclassic.ins
+runfiles size=3
+ texmf-dist/tex/latex/wsemclassic/wsemclassic.cls
+catalogue-ctan /macros/latex/contrib/wsemclassic
+catalogue-date 2014-02-26 23:03:13 +0100
+catalogue-license bsd
+catalogue-version 1.0.1
+
name wsuipa
category Package
revision 25469
@@ -181267,16 +196342,282 @@ srcfiles size=15
runfiles size=4
texmf-dist/tex/latex/xargs/xargs.sty
catalogue-ctan /macros/latex/contrib/xargs
-catalogue-date 2012-05-22 00:51:01 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.1
-name xbmc
+name xcharter
category Package
-revision 13293
-runfiles size=2
- texmf-dist/fonts/source/public/xbmc/xbmc10.mf
- texmf-dist/fonts/tfm/public/xbmc/xbmc10.tfm
+revision 33781
+shortdesc Extension of Bitstream Charter fonts.
+longdesc The package presents an extension of Bitstream Charter, which
+longdesc provides small caps, oldstyle figures and superior figures in
+longdesc all four styles, accompanied by LaTeX font support files. The
+longdesc fonts themselves are provided in both Adobe Type 1 and OTF
+longdesc formats, with supporting files as necessary.
+execute addMap XCharter.map
+docfiles size=56
+ texmf-dist/doc/fonts/xcharter/README details="Readme"
+ texmf-dist/doc/fonts/xcharter/altone.py
+ texmf-dist/doc/fonts/xcharter/xcharter-doc.pdf
+ texmf-dist/doc/fonts/xcharter/xcharter-doc.tex
+runfiles size=595
+ texmf-dist/fonts/enc/dvips/xcharter/xch1_4np5eb.enc
+ texmf-dist/fonts/enc/dvips/xcharter/xch1_57c3kj.enc
+ texmf-dist/fonts/enc/dvips/xcharter/xch1_774cbp.enc
+ texmf-dist/fonts/enc/dvips/xcharter/xch1_7yasjx.enc
+ texmf-dist/fonts/enc/dvips/xcharter/xch1_gev73z.enc
+ texmf-dist/fonts/enc/dvips/xcharter/xch1_nhqiuu.enc
+ texmf-dist/fonts/enc/dvips/xcharter/xch1_o3eiyz.enc
+ texmf-dist/fonts/enc/dvips/xcharter/xch1_rvnb4v.enc
+ texmf-dist/fonts/enc/dvips/xcharter/xch1_uwddnb.enc
+ texmf-dist/fonts/enc/dvips/xcharter/xch1_xeu7sg.enc
+ texmf-dist/fonts/enc/dvips/xcharter/xch_2bziiw.enc
+ texmf-dist/fonts/enc/dvips/xcharter/xch_3sc5wn.enc
+ texmf-dist/fonts/enc/dvips/xcharter/xch_4np5eb.enc
+ texmf-dist/fonts/enc/dvips/xcharter/xch_57c3kj.enc
+ texmf-dist/fonts/enc/dvips/xcharter/xch_774cbp.enc
+ texmf-dist/fonts/enc/dvips/xcharter/xch_7xsilo.enc
+ texmf-dist/fonts/enc/dvips/xcharter/xch_7yasjx.enc
+ texmf-dist/fonts/enc/dvips/xcharter/xch_gev73z.enc
+ texmf-dist/fonts/enc/dvips/xcharter/xch_kaakcj.enc
+ texmf-dist/fonts/enc/dvips/xcharter/xch_mbz2ag.enc
+ texmf-dist/fonts/enc/dvips/xcharter/xch_nhqiuu.enc
+ texmf-dist/fonts/enc/dvips/xcharter/xch_o3eiyz.enc
+ texmf-dist/fonts/enc/dvips/xcharter/xch_rqpru4.enc
+ texmf-dist/fonts/enc/dvips/xcharter/xch_rvnb4v.enc
+ texmf-dist/fonts/enc/dvips/xcharter/xch_tsbasn.enc
+ texmf-dist/fonts/enc/dvips/xcharter/xch_ttrny6.enc
+ texmf-dist/fonts/enc/dvips/xcharter/xch_ty6fpf.enc
+ texmf-dist/fonts/enc/dvips/xcharter/xch_uwddnb.enc
+ texmf-dist/fonts/enc/dvips/xcharter/xch_x4fzx5.enc
+ texmf-dist/fonts/enc/dvips/xcharter/xch_xeu7sg.enc
+ texmf-dist/fonts/map/dvips/xcharter/XCharter.map
+ texmf-dist/fonts/opentype/public/xcharter/XCharter-Bold.otf
+ texmf-dist/fonts/opentype/public/xcharter/XCharter-BoldItalic.otf
+ texmf-dist/fonts/opentype/public/xcharter/XCharter-Italic.otf
+ texmf-dist/fonts/opentype/public/xcharter/XCharter-Roman.otf
+ texmf-dist/fonts/tfm/public/xcharter/XCharter-Bold-sup-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter-Bold-sup-ly1.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter-Bold-sup-t1--base.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter-Bold-sup-t1.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter-Bold-tlf-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter-Bold-tlf-ly1.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter-Bold-tlf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter-Bold-tlf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter-Bold-tlf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter-Bold-tlf-sc-t1.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter-Bold-tlf-t1--base.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter-Bold-tlf-t1.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter-Bold-tlf-ts1--base.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter-Bold-tlf-ts1.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter-Bold-tosf-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter-Bold-tosf-ly1.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter-Bold-tosf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter-Bold-tosf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter-Bold-tosf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter-Bold-tosf-sc-t1.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter-Bold-tosf-t1--base.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter-Bold-tosf-t1.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter-Bold-tosf-ts1--base.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter-Bold-tosf-ts1.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter-BoldItalic-sup-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter-BoldItalic-sup-ly1.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter-BoldItalic-sup-t1--base.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter-BoldItalic-sup-t1.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter-BoldItalic-tlf-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter-BoldItalic-tlf-ly1.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter-BoldItalic-tlf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter-BoldItalic-tlf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter-BoldItalic-tlf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter-BoldItalic-tlf-sc-t1.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter-BoldItalic-tlf-t1--base.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter-BoldItalic-tlf-t1.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter-BoldItalic-tlf-ts1--base.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter-BoldItalic-tlf-ts1.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter-BoldItalic-tosf-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter-BoldItalic-tosf-ly1.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter-BoldItalic-tosf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter-BoldItalic-tosf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter-BoldItalic-tosf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter-BoldItalic-tosf-sc-t1.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter-BoldItalic-tosf-t1--base.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter-BoldItalic-tosf-t1.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter-BoldItalic-tosf-ts1--base.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter-BoldItalic-tosf-ts1.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter-Italic-sup-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter-Italic-sup-ly1.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter-Italic-sup-t1--base.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter-Italic-sup-t1.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter-Italic-tlf-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter-Italic-tlf-ly1.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter-Italic-tlf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter-Italic-tlf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter-Italic-tlf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter-Italic-tlf-sc-t1.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter-Italic-tlf-t1--base.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter-Italic-tlf-t1.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter-Italic-tlf-ts1--base.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter-Italic-tlf-ts1.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter-Italic-tosf-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter-Italic-tosf-ly1.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter-Italic-tosf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter-Italic-tosf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter-Italic-tosf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter-Italic-tosf-sc-t1.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter-Italic-tosf-t1--base.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter-Italic-tosf-t1.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter-Italic-tosf-ts1--base.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter-Italic-tosf-ts1.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter-Roman-sup-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter-Roman-sup-ly1.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter-Roman-sup-t1--base.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter-Roman-sup-t1.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter-Roman-tlf-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter-Roman-tlf-ly1.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter-Roman-tlf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter-Roman-tlf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter-Roman-tlf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter-Roman-tlf-sc-t1.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter-Roman-tlf-t1--base.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter-Roman-tlf-t1.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter-Roman-tlf-ts1--base.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter-Roman-tlf-ts1.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter-Roman-tosf-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter-Roman-tosf-ly1.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter-Roman-tosf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter-Roman-tosf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter-Roman-tosf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter-Roman-tosf-sc-t1.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter-Roman-tosf-t1--base.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter-Roman-tosf-t1.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter-Roman-tosf-ts1--base.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter-Roman-tosf-ts1.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter1-Bold-tosf-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter1-Bold-tosf-ly1.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter1-Bold-tosf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter1-Bold-tosf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter1-Bold-tosf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter1-Bold-tosf-sc-t1.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter1-Bold-tosf-t1--base.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter1-Bold-tosf-t1.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter1-Bold-tosf-ts1--base.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter1-Bold-tosf-ts1.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter1-BoldItalic-tosf-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter1-BoldItalic-tosf-ly1.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter1-BoldItalic-tosf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter1-BoldItalic-tosf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter1-BoldItalic-tosf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter1-BoldItalic-tosf-sc-t1.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter1-BoldItalic-tosf-t1--base.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter1-BoldItalic-tosf-t1.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter1-BoldItalic-tosf-ts1--base.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter1-BoldItalic-tosf-ts1.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter1-Italic-tosf-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter1-Italic-tosf-ly1.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter1-Italic-tosf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter1-Italic-tosf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter1-Italic-tosf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter1-Italic-tosf-sc-t1.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter1-Italic-tosf-t1--base.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter1-Italic-tosf-t1.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter1-Italic-tosf-ts1--base.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter1-Italic-tosf-ts1.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter1-Roman-tosf-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter1-Roman-tosf-ly1.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter1-Roman-tosf-sc-ly1--base.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter1-Roman-tosf-sc-ly1.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter1-Roman-tosf-sc-t1--base.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter1-Roman-tosf-sc-t1.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter1-Roman-tosf-t1--base.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter1-Roman-tosf-t1.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter1-Roman-tosf-ts1--base.tfm
+ texmf-dist/fonts/tfm/public/xcharter/XCharter1-Roman-tosf-ts1.tfm
+ texmf-dist/fonts/type1/public/xcharter/XCharter-Bold.pfb
+ texmf-dist/fonts/type1/public/xcharter/XCharter-BoldItalic.pfb
+ texmf-dist/fonts/type1/public/xcharter/XCharter-Italic.pfb
+ texmf-dist/fonts/type1/public/xcharter/XCharter-Roman.pfb
+ texmf-dist/fonts/vf/public/xcharter/XCharter-Bold-sup-ly1.vf
+ texmf-dist/fonts/vf/public/xcharter/XCharter-Bold-sup-t1.vf
+ texmf-dist/fonts/vf/public/xcharter/XCharter-Bold-tlf-ly1.vf
+ texmf-dist/fonts/vf/public/xcharter/XCharter-Bold-tlf-sc-ly1.vf
+ texmf-dist/fonts/vf/public/xcharter/XCharter-Bold-tlf-sc-t1.vf
+ texmf-dist/fonts/vf/public/xcharter/XCharter-Bold-tlf-t1.vf
+ texmf-dist/fonts/vf/public/xcharter/XCharter-Bold-tlf-ts1.vf
+ texmf-dist/fonts/vf/public/xcharter/XCharter-Bold-tosf-ly1.vf
+ texmf-dist/fonts/vf/public/xcharter/XCharter-Bold-tosf-sc-ly1.vf
+ texmf-dist/fonts/vf/public/xcharter/XCharter-Bold-tosf-sc-t1.vf
+ texmf-dist/fonts/vf/public/xcharter/XCharter-Bold-tosf-t1.vf
+ texmf-dist/fonts/vf/public/xcharter/XCharter-Bold-tosf-ts1.vf
+ texmf-dist/fonts/vf/public/xcharter/XCharter-BoldItalic-sup-ly1.vf
+ texmf-dist/fonts/vf/public/xcharter/XCharter-BoldItalic-sup-t1.vf
+ texmf-dist/fonts/vf/public/xcharter/XCharter-BoldItalic-tlf-ly1.vf
+ texmf-dist/fonts/vf/public/xcharter/XCharter-BoldItalic-tlf-sc-ly1.vf
+ texmf-dist/fonts/vf/public/xcharter/XCharter-BoldItalic-tlf-sc-t1.vf
+ texmf-dist/fonts/vf/public/xcharter/XCharter-BoldItalic-tlf-t1.vf
+ texmf-dist/fonts/vf/public/xcharter/XCharter-BoldItalic-tlf-ts1.vf
+ texmf-dist/fonts/vf/public/xcharter/XCharter-BoldItalic-tosf-ly1.vf
+ texmf-dist/fonts/vf/public/xcharter/XCharter-BoldItalic-tosf-sc-ly1.vf
+ texmf-dist/fonts/vf/public/xcharter/XCharter-BoldItalic-tosf-sc-t1.vf
+ texmf-dist/fonts/vf/public/xcharter/XCharter-BoldItalic-tosf-t1.vf
+ texmf-dist/fonts/vf/public/xcharter/XCharter-BoldItalic-tosf-ts1.vf
+ texmf-dist/fonts/vf/public/xcharter/XCharter-Italic-sup-ly1.vf
+ texmf-dist/fonts/vf/public/xcharter/XCharter-Italic-sup-t1.vf
+ texmf-dist/fonts/vf/public/xcharter/XCharter-Italic-tlf-ly1.vf
+ texmf-dist/fonts/vf/public/xcharter/XCharter-Italic-tlf-sc-ly1.vf
+ texmf-dist/fonts/vf/public/xcharter/XCharter-Italic-tlf-sc-t1.vf
+ texmf-dist/fonts/vf/public/xcharter/XCharter-Italic-tlf-t1.vf
+ texmf-dist/fonts/vf/public/xcharter/XCharter-Italic-tlf-ts1.vf
+ texmf-dist/fonts/vf/public/xcharter/XCharter-Italic-tosf-ly1.vf
+ texmf-dist/fonts/vf/public/xcharter/XCharter-Italic-tosf-sc-ly1.vf
+ texmf-dist/fonts/vf/public/xcharter/XCharter-Italic-tosf-sc-t1.vf
+ texmf-dist/fonts/vf/public/xcharter/XCharter-Italic-tosf-t1.vf
+ texmf-dist/fonts/vf/public/xcharter/XCharter-Italic-tosf-ts1.vf
+ texmf-dist/fonts/vf/public/xcharter/XCharter-Roman-sup-ly1.vf
+ texmf-dist/fonts/vf/public/xcharter/XCharter-Roman-sup-t1.vf
+ texmf-dist/fonts/vf/public/xcharter/XCharter-Roman-tlf-ly1.vf
+ texmf-dist/fonts/vf/public/xcharter/XCharter-Roman-tlf-sc-ly1.vf
+ texmf-dist/fonts/vf/public/xcharter/XCharter-Roman-tlf-sc-t1.vf
+ texmf-dist/fonts/vf/public/xcharter/XCharter-Roman-tlf-t1.vf
+ texmf-dist/fonts/vf/public/xcharter/XCharter-Roman-tlf-ts1.vf
+ texmf-dist/fonts/vf/public/xcharter/XCharter-Roman-tosf-ly1.vf
+ texmf-dist/fonts/vf/public/xcharter/XCharter-Roman-tosf-sc-ly1.vf
+ texmf-dist/fonts/vf/public/xcharter/XCharter-Roman-tosf-sc-t1.vf
+ texmf-dist/fonts/vf/public/xcharter/XCharter-Roman-tosf-t1.vf
+ texmf-dist/fonts/vf/public/xcharter/XCharter-Roman-tosf-ts1.vf
+ texmf-dist/fonts/vf/public/xcharter/XCharter1-Bold-tosf-ly1.vf
+ texmf-dist/fonts/vf/public/xcharter/XCharter1-Bold-tosf-sc-ly1.vf
+ texmf-dist/fonts/vf/public/xcharter/XCharter1-Bold-tosf-sc-t1.vf
+ texmf-dist/fonts/vf/public/xcharter/XCharter1-Bold-tosf-t1.vf
+ texmf-dist/fonts/vf/public/xcharter/XCharter1-Bold-tosf-ts1.vf
+ texmf-dist/fonts/vf/public/xcharter/XCharter1-BoldItalic-tosf-ly1.vf
+ texmf-dist/fonts/vf/public/xcharter/XCharter1-BoldItalic-tosf-sc-ly1.vf
+ texmf-dist/fonts/vf/public/xcharter/XCharter1-BoldItalic-tosf-sc-t1.vf
+ texmf-dist/fonts/vf/public/xcharter/XCharter1-BoldItalic-tosf-t1.vf
+ texmf-dist/fonts/vf/public/xcharter/XCharter1-BoldItalic-tosf-ts1.vf
+ texmf-dist/fonts/vf/public/xcharter/XCharter1-Italic-tosf-ly1.vf
+ texmf-dist/fonts/vf/public/xcharter/XCharter1-Italic-tosf-sc-ly1.vf
+ texmf-dist/fonts/vf/public/xcharter/XCharter1-Italic-tosf-sc-t1.vf
+ texmf-dist/fonts/vf/public/xcharter/XCharter1-Italic-tosf-t1.vf
+ texmf-dist/fonts/vf/public/xcharter/XCharter1-Italic-tosf-ts1.vf
+ texmf-dist/fonts/vf/public/xcharter/XCharter1-Roman-tosf-ly1.vf
+ texmf-dist/fonts/vf/public/xcharter/XCharter1-Roman-tosf-sc-ly1.vf
+ texmf-dist/fonts/vf/public/xcharter/XCharter1-Roman-tosf-sc-t1.vf
+ texmf-dist/fonts/vf/public/xcharter/XCharter1-Roman-tosf-t1.vf
+ texmf-dist/fonts/vf/public/xcharter/XCharter1-Roman-tosf-ts1.vf
+ texmf-dist/tex/latex/xcharter/LY1XCharter-Sup.fd
+ texmf-dist/tex/latex/xcharter/LY1XCharter-TLF.fd
+ texmf-dist/tex/latex/xcharter/LY1XCharter-TOsF.fd
+ texmf-dist/tex/latex/xcharter/T1XCharter-Sup.fd
+ texmf-dist/tex/latex/xcharter/T1XCharter-TLF.fd
+ texmf-dist/tex/latex/xcharter/T1XCharter-TOsF.fd
+ texmf-dist/tex/latex/xcharter/TS1XCharter-TLF.fd
+ texmf-dist/tex/latex/xcharter/TS1XCharter-TOsF.fd
+ texmf-dist/tex/latex/xcharter/XCharter.sty
+catalogue-ctan /fonts/xcharter
+catalogue-date 2014-04-28 14:35:24 +0200
+catalogue-license other-free
+catalogue-version 1.04
name xcite
category Package
@@ -181293,10 +196634,391 @@ srcfiles size=3
runfiles size=1
texmf-dist/tex/latex/xcite/xcite.sty
catalogue-ctan /macros/latex/contrib/xcite
-catalogue-date 2012-05-22 00:51:01 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.0
+name xcjk2uni
+category Package
+revision 34109
+shortdesc Convert CJK characters to Unicode, in pdfTeX.
+longdesc The package provides commands to convert CJK characters to
+longdesc Unicode in non-UTF-8 encoding; it provides hooks to support
+longdesc hyperref in producing correct bookmarks. The bundle also
+longdesc provides /ToUnicode mapping file(s) for a CJK subfont; these
+longdesc can be used with the cmap package, allowing searches of, and
+longdesc cut-and-paste operations on a PDF file generated by pdfTeX..
+docfiles size=38
+ texmf-dist/doc/latex/xcjk2uni/README details="Readme"
+ texmf-dist/doc/latex/xcjk2uni/xCJK2uni.pdf details="Package documentation (Chinese)" language="zh"
+srcfiles size=9
+ texmf-dist/source/latex/xcjk2uni/xCJK2uni.dtx
+ texmf-dist/source/latex/xcjk2uni/xCJK2uni.ins
+runfiles size=584
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0001.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0002.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0003.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0004.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0005.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0006.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0007.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0008.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0009.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0010.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0011.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0012.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0013.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0014.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0015.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0016.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0017.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0018.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0019.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0020.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0021.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0022.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0023.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0024.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0025.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0026.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0027.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0028.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0029.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0030.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0031.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0032.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0033.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0034.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0035.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0036.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0037.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0038.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0039.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0040.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0041.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0042.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0043.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0044.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0045.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0046.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0047.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0048.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0049.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0050.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0051.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0052.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0053.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0054.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0055.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0056.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0057.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0058.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0901.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0902.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0903.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0904.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0905.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0906.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0907.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0908.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0909.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0910.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0911.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0912.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0913.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0914.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0915.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0916.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0917.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0918.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0919.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0920.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0921.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0922.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0923.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0924.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0925.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0926.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0927.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0928.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0929.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0930.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0931.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0932.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0933.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0934.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0935.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0936.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0937.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0938.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0939.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0940.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0941.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0942.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0943.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0944.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0945.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0946.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0947.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0948.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0949.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0950.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0951.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0952.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0953.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0954.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0955.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0956.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0957.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0958.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0959.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0960.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0961.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0962.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0963.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0964.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0965.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0966.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0967.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0968.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0969.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0970.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0971.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0972.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0973.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0974.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0975.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0976.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0977.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0978.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0979.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0980.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0981.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0982.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0983.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0984.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0985.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0986.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0987.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0988.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0989.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0990.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0991.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0992.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0993.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c0994.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1001.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1002.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1003.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1004.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1005.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1006.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1007.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1008.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1009.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1010.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1011.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1012.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1013.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1014.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1015.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1016.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1017.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1018.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1019.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1020.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1021.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1022.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1023.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1024.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1025.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1026.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1027.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1028.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1029.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1030.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1031.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1032.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1033.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1034.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1035.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1901.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1902.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1903.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1904.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1905.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1906.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1907.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1908.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1909.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1910.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1911.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1912.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1913.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1914.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1915.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1916.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1917.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1918.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1919.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1920.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1921.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1922.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1923.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1924.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1925.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1926.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1927.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1928.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1929.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1930.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1931.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1932.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1933.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1934.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1935.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1936.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1937.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1938.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1939.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1940.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1941.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1942.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1943.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1944.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1945.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1946.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1947.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1948.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1949.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1950.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1951.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1952.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1953.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1954.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1955.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1956.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1957.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1958.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1959.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1960.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1961.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1962.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1963.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1964.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1965.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1966.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1967.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1968.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1969.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1970.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1971.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1972.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1973.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1974.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1975.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1976.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1977.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1978.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1979.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1980.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1981.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1982.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1983.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1984.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1985.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1986.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1987.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1988.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1989.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1990.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1991.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1992.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1993.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c1994.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c4001.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c4002.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c4003.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c4004.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c4005.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c4006.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c4007.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c4008.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c4009.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c4010.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c4011.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c4012.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c4013.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c4014.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c4015.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c4016.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c4017.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c4018.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c4019.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c4020.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c4021.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c4022.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c4023.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c4024.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c4025.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c4026.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c4027.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c4028.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c4029.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c4030.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c4031.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c4032.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c4033.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c4034.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c4035.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c6001.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c6002.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c6003.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c6004.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c6005.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c6006.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c6007.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c6008.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c6009.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c6010.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c6011.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c6012.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c6013.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c6014.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c6015.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c6016.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c6017.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c6018.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c6019.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c6020.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c6021.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c6022.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c6023.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c6024.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c6025.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c6026.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c6027.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c6028.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c6029.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c6030.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c6031.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c6032.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c6033.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c6034.cmap
+ texmf-dist/tex/latex/xcjk2uni/cmap/c6035.cmap
+ texmf-dist/tex/latex/xcjk2uni/xCJK2uni-UBg5plus.def
+ texmf-dist/tex/latex/xcjk2uni/xCJK2uni-UBig5.def
+ texmf-dist/tex/latex/xcjk2uni/xCJK2uni-UGB.def
+ texmf-dist/tex/latex/xcjk2uni/xCJK2uni-UGBK.def
+ texmf-dist/tex/latex/xcjk2uni/xCJK2uni-UJIS.def
+ texmf-dist/tex/latex/xcjk2uni/xCJK2uni-UKS.def
+ texmf-dist/tex/latex/xcjk2uni/xCJK2uni-make.ltx
+ texmf-dist/tex/latex/xcjk2uni/xCJK2uni.sty
+catalogue-ctan /macros/latex/contrib/xcjk2uni
+catalogue-date 2014-05-18 07:46:02 +0200
+catalogue-license lppl1.3
+catalogue-version 0.3
+
name xcolor
category Package
revision 15878
@@ -181386,7 +197108,7 @@ runfiles size=7
texmf-dist/tex/latex/xcookybooky/xcookybooky.cfg
texmf-dist/tex/latex/xcookybooky/xcookybooky.sty
catalogue-ctan /macros/latex/contrib/xcookybooky
-catalogue-date 2013-03-13 15:44:34 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.2
@@ -181443,7 +197165,7 @@ catalogue-version prot2.5
name xdvi
category TLCore
-revision 30339
+revision 33736
shortdesc A DVI previewer for the X Window System.
longdesc The canonical previewer for use on Unix and other X-windows
longdesc based systems. The distribution has been integrated with that
@@ -181460,179 +197182,179 @@ runfiles size=9
texmf-dist/xdvi/pixmap/toolbar.xpm
texmf-dist/xdvi/pixmap/toolbar2.xpm
catalogue-ctan /dviware/xdvi
-catalogue-date 2013-05-08 11:16:41 +0200
+catalogue-date 2014-04-22 11:35:25 +0200
catalogue-license other-free
-catalogue-version 22.86
+catalogue-version 22.87
name xdvi.alpha-linux
category TLCore
-revision 29891
+revision 33553
shortdesc alpha-linux files of xdvi
-binfiles arch=alpha-linux size=342
+binfiles arch=alpha-linux size=350
bin/alpha-linux/xdvi
bin/alpha-linux/xdvi-xaw
name xdvi.amd64-freebsd
category TLCore
-revision 29874
+revision 33938
shortdesc amd64-freebsd files of xdvi
-binfiles arch=amd64-freebsd size=279
+binfiles arch=amd64-freebsd size=369
bin/amd64-freebsd/xdvi
bin/amd64-freebsd/xdvi-xaw
name xdvi.amd64-kfreebsd
category TLCore
-revision 30810
+revision 34100
shortdesc amd64-kfreebsd files of xdvi
-binfiles arch=amd64-kfreebsd size=285
+binfiles arch=amd64-kfreebsd size=292
bin/amd64-kfreebsd/xdvi
bin/amd64-kfreebsd/xdvi-xaw
name xdvi.amd64-netbsd
category TLCore
-revision 30660
+revision 33726
shortdesc amd64-netbsd files of xdvi
-binfiles arch=amd64-netbsd size=279
+binfiles arch=amd64-netbsd size=286
bin/amd64-netbsd/xdvi
bin/amd64-netbsd/xdvi-xaw
name xdvi.armel-linux
category TLCore
-revision 29888
+revision 33916
shortdesc armel-linux files of xdvi
-binfiles arch=armel-linux size=246
+binfiles arch=armel-linux size=251
bin/armel-linux/xdvi
bin/armel-linux/xdvi-xaw
name xdvi.armhf-linux
category TLCore
-revision 30443
+revision 34125
shortdesc armhf-linux files of xdvi
-binfiles arch=armhf-linux size=237
+binfiles arch=armhf-linux size=244
bin/armhf-linux/xdvi
bin/armhf-linux/xdvi-xaw
name xdvi.i386-cygwin
category TLCore
-revision 30526
+revision 34161
shortdesc i386-cygwin files of xdvi
-binfiles arch=i386-cygwin size=256
+binfiles arch=i386-cygwin size=288
bin/i386-cygwin/xdvi
bin/i386-cygwin/xdvi-xaw.exe
name xdvi.i386-freebsd
category TLCore
-revision 29874
+revision 33938
shortdesc i386-freebsd files of xdvi
-binfiles arch=i386-freebsd size=253
+binfiles arch=i386-freebsd size=332
bin/i386-freebsd/xdvi
bin/i386-freebsd/xdvi-xaw
name xdvi.i386-kfreebsd
category TLCore
-revision 30810
+revision 34100
shortdesc i386-kfreebsd files of xdvi
-binfiles arch=i386-kfreebsd size=278
+binfiles arch=i386-kfreebsd size=285
bin/i386-kfreebsd/xdvi
bin/i386-kfreebsd/xdvi-xaw
name xdvi.i386-linux
category TLCore
-revision 30088
+revision 34086
shortdesc i386-linux files of xdvi
-binfiles arch=i386-linux size=279
+binfiles arch=i386-linux size=300
bin/i386-linux/xdvi
bin/i386-linux/xdvi-xaw
name xdvi.i386-netbsd
category TLCore
-revision 30191
+revision 33562
shortdesc i386-netbsd files of xdvi
-binfiles arch=i386-netbsd size=243
+binfiles arch=i386-netbsd size=250
bin/i386-netbsd/xdvi
bin/i386-netbsd/xdvi-xaw
name xdvi.i386-solaris
category TLCore
-revision 30112
+revision 34203
shortdesc i386-solaris files of xdvi
-binfiles arch=i386-solaris size=309
+binfiles arch=i386-solaris size=316
bin/i386-solaris/xdvi
bin/i386-solaris/xdvi-xaw
-name xdvi.mips-irix
-category TLCore
-revision 30131
-shortdesc mips-irix files of xdvi
-binfiles arch=mips-irix size=481
- bin/mips-irix/xdvi
- bin/mips-irix/xdvi-xaw
-
name xdvi.mipsel-linux
category TLCore
-revision 29995
+revision 34099
shortdesc mipsel-linux files of xdvi
-binfiles arch=mipsel-linux size=324
+binfiles arch=mipsel-linux size=286
bin/mipsel-linux/xdvi
bin/mipsel-linux/xdvi-xaw
name xdvi.powerpc-linux
category TLCore
-revision 30114
+revision 34101
shortdesc powerpc-linux files of xdvi
-binfiles arch=powerpc-linux size=280
+binfiles arch=powerpc-linux size=272
bin/powerpc-linux/xdvi
bin/powerpc-linux/xdvi-xaw
name xdvi.sparc-solaris
category TLCore
-revision 29877
+revision 33871
shortdesc sparc-solaris files of xdvi
-binfiles arch=sparc-solaris size=269
+binfiles arch=sparc-solaris size=274
bin/sparc-solaris/xdvi
bin/sparc-solaris/xdvi-xaw
name xdvi.universal-darwin
category TLCore
-revision 30764
+revision 34201
shortdesc universal-darwin files of xdvi
-binfiles arch=universal-darwin size=536
+binfiles arch=universal-darwin size=551
bin/universal-darwin/xdvi
bin/universal-darwin/xdvi-xaw
+name xdvi.x86_64-cygwin
+category TLCore
+revision 34161
+shortdesc x86_64-cygwin files of xdvi
+binfiles arch=x86_64-cygwin size=288
+ bin/x86_64-cygwin/xdvi
+ bin/x86_64-cygwin/xdvi-xaw.exe
+
name xdvi.x86_64-darwin
category TLCore
-revision 29879
+revision 34201
shortdesc x86_64-darwin files of xdvi
-binfiles arch=x86_64-darwin size=304
+binfiles arch=x86_64-darwin size=312
bin/x86_64-darwin/xdvi
bin/x86_64-darwin/xdvi-xaw
name xdvi.x86_64-linux
category TLCore
-revision 30204
+revision 33723
shortdesc x86_64-linux files of xdvi
-binfiles arch=x86_64-linux size=286
+binfiles arch=x86_64-linux size=293
bin/x86_64-linux/xdvi
bin/x86_64-linux/xdvi-xaw
name xdvi.x86_64-solaris
category TLCore
-revision 30112
+revision 34203
shortdesc x86_64-solaris files of xdvi
-binfiles arch=x86_64-solaris size=378
+binfiles arch=x86_64-solaris size=386
bin/x86_64-solaris/xdvi
bin/x86_64-solaris/xdvi-xaw
name xecjk
category Package
-revision 30812
+revision 34111
shortdesc Support for CJK documents in XeLaTeX.
longdesc A LaTeX package for typesetting CJK documents in the way users
longdesc have become used to, in the CJK package. The package requires a
longdesc current version of xtemplate (and hence of the current LaTeX 3
-longdesc development environment.
-docfiles size=203
+longdesc development environment).
+docfiles size=438
texmf-dist/doc/xelatex/xecjk/README details="Readme"
texmf-dist/doc/xelatex/xecjk/example/xeCJK-example-CJKecglue.tex
texmf-dist/doc/xelatex/xecjk/example/xeCJK-example-CJKfntef.tex
@@ -181640,21 +197362,37 @@ docfiles size=203
texmf-dist/doc/xelatex/xecjk/example/xeCJK-example-autofake.tex
texmf-dist/doc/xelatex/xecjk/example/xeCJK-example-checksingle.tex
texmf-dist/doc/xelatex/xecjk/example/xeCJK-example-fallback.tex
+ texmf-dist/doc/xelatex/xecjk/example/xeCJK-example-listings.tex
texmf-dist/doc/xelatex/xecjk/example/xeCJK-example-punctstyle.tex
texmf-dist/doc/xelatex/xecjk/example/xeCJK-example-subCJKblock.tex
texmf-dist/doc/xelatex/xecjk/example/xeCJK-example-verbatim.tex
+ texmf-dist/doc/xelatex/xecjk/example/xunicode-combine-marks.tex
+ texmf-dist/doc/xelatex/xecjk/example/xunicode-commands.tex
+ texmf-dist/doc/xelatex/xecjk/example/xunicode-symbols.tex
texmf-dist/doc/xelatex/xecjk/xeCJK.pdf details="Package documentation (in both English and Chinese)" language="zh"
-srcfiles size=66
+ texmf-dist/doc/xelatex/xecjk/xunicode-symbols.pdf
+srcfiles size=106
texmf-dist/source/xelatex/xecjk/xeCJK.dtx
texmf-dist/source/xelatex/xecjk/xeCJK.ins
-runfiles size=35
+runfiles size=117
+ texmf-dist/fonts/misc/xetex/fontmapping/xecjk/full-stop.map
+ texmf-dist/fonts/misc/xetex/fontmapping/xecjk/full-stop.tec
+ texmf-dist/fonts/misc/xetex/fontmapping/xecjk/fullwidth-stop.map
+ texmf-dist/fonts/misc/xetex/fontmapping/xecjk/fullwidth-stop.tec
+ texmf-dist/fonts/misc/xetex/fontmapping/xecjk/han-simp.map
+ texmf-dist/fonts/misc/xetex/fontmapping/xecjk/han-simp.tec
+ texmf-dist/fonts/misc/xetex/fontmapping/xecjk/han-trad.map
+ texmf-dist/fonts/misc/xetex/fontmapping/xecjk/han-trad.tec
texmf-dist/tex/xelatex/xecjk/config/xeCJK.cfg
+ texmf-dist/tex/xelatex/xecjk/xeCJK-listings.sty
texmf-dist/tex/xelatex/xecjk/xeCJK.sty
texmf-dist/tex/xelatex/xecjk/xeCJKfntef.sty
+ texmf-dist/tex/xelatex/xecjk/xunicode-addon.sty
+ texmf-dist/tex/xelatex/xecjk/xunicode-extra.def
catalogue-ctan /macros/xetex/latex/xecjk
-catalogue-date 2013-05-27 20:07:27 +0200
+catalogue-date 2014-05-17 22:15:48 +0200
catalogue-license lppl
-catalogue-version 3.2.0
+catalogue-version 3.2.12
name xecolor
category Package
@@ -181668,7 +197406,7 @@ docfiles size=1
runfiles size=2
texmf-dist/tex/xelatex/xecolor/xecolor.sty
catalogue-ctan /macros/xetex/latex/xecolor
-catalogue-date 2013-04-09 15:55:17 +0200
+catalogue-date 2014-04-29 06:13:54 +0200
catalogue-license lppl1.3
catalogue-version 0.1
@@ -181716,7 +197454,7 @@ runfiles size=5
texmf-dist/tex/generic/xecyr/xu-ruenhyph.tex
texmf-dist/tex/xelatex/xecyr/xecyr.sty
catalogue-ctan /macros/xetex/latex/xecyr
-catalogue-date 2012-03-06 14:26:11 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.1
@@ -181747,18 +197485,17 @@ docfiles size=26
runfiles size=2
texmf-dist/tex/xelatex/xeindex/xeindex.sty
catalogue-ctan /macros/xetex/latex/xeindex
-catalogue-date 2012-03-06 14:26:11 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 0.2
name xepersian
category Package
-revision 30172
+revision 32897
shortdesc Persian for LaTeX, using XeTeX.
longdesc The package supports Persian typesetting, using the Persian
longdesc Modern fonts, by default.
-docfiles size=123
- texmf-dist/doc/xelatex/xepersian/ChangeLog
+docfiles size=278
texmf-dist/doc/xelatex/xepersian/README details="Readme"
texmf-dist/doc/xelatex/xepersian/ftxe-0.12.py
texmf-dist/doc/xelatex/xepersian/img/ireland.jpg
@@ -181776,7 +197513,7 @@ docfiles size=123
srcfiles size=103
texmf-dist/source/xelatex/xepersian/xepersian.dtx
texmf-dist/source/xelatex/xepersian/xepersian.ins
-runfiles size=91
+runfiles size=96
texmf-dist/fonts/misc/xetex/fontmapping/xepersian/parsidigits.map
texmf-dist/fonts/misc/xetex/fontmapping/xepersian/parsidigits.tec
texmf-dist/tex/xelatex/xepersian/algorithm-xepersian.def
@@ -181795,30 +197532,28 @@ runfiles size=91
texmf-dist/tex/xelatex/xepersian/book-xepersian.def
texmf-dist/tex/xelatex/xepersian/bookest-xepersian.def
texmf-dist/tex/xelatex/xepersian/breqn-xepersian.def
- texmf-dist/tex/xelatex/xepersian/color-localise.def
- texmf-dist/tex/xelatex/xepersian/commands-ltx.def
- texmf-dist/tex/xelatex/xepersian/commands-xepersian.def
+ texmf-dist/tex/xelatex/xepersian/color-localise-xepersian.def
texmf-dist/tex/xelatex/xepersian/enumerate-xepersian.def
- texmf-dist/tex/xelatex/xepersian/environments-ltx.def
- texmf-dist/tex/xelatex/xepersian/environments-xepersian.def
texmf-dist/tex/xelatex/xepersian/extarticle-xepersian.def
texmf-dist/tex/xelatex/xepersian/extbook-xepersian.def
texmf-dist/tex/xelatex/xepersian/extrafootnotefeatures-xepersian.def
texmf-dist/tex/xelatex/xepersian/extreport-xepersian.def
texmf-dist/tex/xelatex/xepersian/flowfram-xepersian.def
- texmf-dist/tex/xelatex/xepersian/footnote-bidi-xepersian.def
- texmf-dist/tex/xelatex/xepersian/framed-bidi-xepersian.def
+ texmf-dist/tex/xelatex/xepersian/footnote-xepersian.def
+ texmf-dist/tex/xelatex/xepersian/framed-xepersian.def
texmf-dist/tex/xelatex/xepersian/glossaries-xepersian.def
texmf-dist/tex/xelatex/xepersian/hyperref-xepersian.def
texmf-dist/tex/xelatex/xepersian/imsproc-xepersian.def
texmf-dist/tex/xelatex/xepersian/kashida-xepersian.def
+ texmf-dist/tex/xelatex/xepersian/latex-localise-commands-xepersian.def
+ texmf-dist/tex/xelatex/xepersian/latex-localise-environments-xepersian.def
+ texmf-dist/tex/xelatex/xepersian/latex-localise-messages-xepersian.def
+ texmf-dist/tex/xelatex/xepersian/latex-localise-misc-xepersian.def
texmf-dist/tex/xelatex/xepersian/listings-xepersian.def
- texmf-dist/tex/xelatex/xepersian/loadingorder-bidi-xepersian.def
+ texmf-dist/tex/xelatex/xepersian/loadingorder-xepersian.def
texmf-dist/tex/xelatex/xepersian/localise-xepersian.def
texmf-dist/tex/xelatex/xepersian/memoir-xepersian.def
- texmf-dist/tex/xelatex/xepersian/messages-localise.def
texmf-dist/tex/xelatex/xepersian/minitoc-xepersian.def
- texmf-dist/tex/xelatex/xepersian/misc-localise-xepersian.def
texmf-dist/tex/xelatex/xepersian/natbib-xepersian.def
texmf-dist/tex/xelatex/xepersian/packages-localise-xepersian.def
texmf-dist/tex/xelatex/xepersian/rapport1-xepersian.def
@@ -181830,15 +197565,17 @@ runfiles size=91
texmf-dist/tex/xelatex/xepersian/scrreprt-xepersian.def
texmf-dist/tex/xelatex/xepersian/tkz-linknodes-xepersian.def
texmf-dist/tex/xelatex/xepersian/tocloft-xepersian.def
+ texmf-dist/tex/xelatex/xepersian/xepersian-localise-commands-xepersian.def
+ texmf-dist/tex/xelatex/xepersian/xepersian-localise-environments-xepersian.def
texmf-dist/tex/xelatex/xepersian/xepersian-magazine.cls
texmf-dist/tex/xelatex/xepersian/xepersian-mathsdigitspec.sty
texmf-dist/tex/xelatex/xepersian/xepersian-multiplechoice.sty
texmf-dist/tex/xelatex/xepersian/xepersian-persiancal.sty
texmf-dist/tex/xelatex/xepersian/xepersian.sty
catalogue-ctan /macros/xetex/latex/xepersian
-catalogue-date 2013-04-30 08:59:42 +0200
+catalogue-date 2014-04-28 08:25:15 +0200
catalogue-license lppl1.3
-catalogue-version 12.8
+catalogue-version 13.7
name xesearch
category Package
@@ -181860,7 +197597,7 @@ runfiles size=9
texmf-dist/tex/xetex/xesearch/t-xesearch.tex
texmf-dist/tex/xetex/xesearch/xesearch.sty
catalogue-ctan /macros/xetex/generic/xesearch
-catalogue-date 2012-03-06 14:26:11 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
name xetex
@@ -181885,22 +197622,22 @@ runfiles size=57
texmf-dist/scripts/xetex/perl/lib/PDF/Reuse/Util.pm
texmf-dist/scripts/xetex/perl/xdv2pdf_mergemarks
tlpkg/tlpostcode/xetex.pl
-catalogue-date 2013-05-23 14:04:11 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license other-free
catalogue-version 0.9999
name xetex-def
category Package
-revision 30729
+revision 33799
shortdesc Colour and graphics support for XeTeX.
longdesc The file xetex.def provides device-specific definitions for
longdesc colour and graphics support when running Xe(La)TeX
-runfiles size=4
+runfiles size=5
texmf-dist/tex/xelatex/xetex-def/xetex.def
catalogue-ctan /graphics/xetex/latex/xetex.def
-catalogue-date 2013-05-29 00:56:54 +0200
+catalogue-date 2014-05-02 18:56:42 +0200
catalogue-license lppl
-catalogue-version 0.97
+catalogue-version 4.01
name xetex-devanagari
category Package
@@ -181924,13 +197661,13 @@ runfiles size=13
texmf-dist/fonts/misc/xetex/fontmapping/xetex-devanagari/velthuis.map
texmf-dist/fonts/misc/xetex/fontmapping/xetex-devanagari/velthuis.tec
catalogue-ctan /macros/xetex/generic/devanagari
-catalogue-date 2012-07-21 23:51:26 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 0.4
name xetex-itrans
category Package
-revision 24105
+revision 32810
shortdesc Itrans input maps for use with XeLaTeX.
longdesc The package provides maps for use with XeLaTeX with coding done
longdesc using itrans. Fontspec maps are provided for Devanagari
@@ -181959,9 +197696,9 @@ runfiles size=29
texmf-dist/fonts/misc/xetex/fontmapping/xetex-itrans/itrans-tel.map
texmf-dist/fonts/misc/xetex/fontmapping/xetex-itrans/itrans-tel.tec
catalogue-ctan /macros/xetex/generic/itrans
-catalogue-date 2012-07-21 23:51:26 +0200
+catalogue-date 2014-05-20 14:45:48 +0200
catalogue-license lppl1.3
-catalogue-version 4.0
+catalogue-version 4.1
name xetex-pstricks
category Package
@@ -181979,7 +197716,7 @@ runfiles size=2
texmf-dist/tex/xelatex/xetex-pstricks/pstricks.con
texmf-dist/tex/xetex/xetex-pstricks/pstricks.con
catalogue-ctan /graphics/xetex/pstricks
-catalogue-date 2012-03-06 14:36:12 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license pd
name xetex-tibetan
@@ -182003,9 +197740,9 @@ catalogue-version 0.1
name xetex.alpha-linux
category TLCore
-revision 30799
+revision 34190
shortdesc alpha-linux files of xetex
-binfiles arch=alpha-linux size=6074
+binfiles arch=alpha-linux size=5951
bin/alpha-linux/teckit_compile
bin/alpha-linux/xdvipdfmx
bin/alpha-linux/xelatex
@@ -182013,9 +197750,9 @@ binfiles arch=alpha-linux size=6074
name xetex.amd64-freebsd
category TLCore
-revision 30648
+revision 34195
shortdesc amd64-freebsd files of xetex
-binfiles arch=amd64-freebsd size=5653
+binfiles arch=amd64-freebsd size=5520
bin/amd64-freebsd/teckit_compile
bin/amd64-freebsd/xdvipdfmx
bin/amd64-freebsd/xelatex
@@ -182023,9 +197760,9 @@ binfiles arch=amd64-freebsd size=5653
name xetex.amd64-kfreebsd
category TLCore
-revision 30810
+revision 34198
shortdesc amd64-kfreebsd files of xetex
-binfiles arch=amd64-kfreebsd size=5576
+binfiles arch=amd64-kfreebsd size=5441
bin/amd64-kfreebsd/teckit_compile
bin/amd64-kfreebsd/xdvipdfmx
bin/amd64-kfreebsd/xelatex
@@ -182033,9 +197770,9 @@ binfiles arch=amd64-kfreebsd size=5576
name xetex.amd64-netbsd
category TLCore
-revision 30767
+revision 34234
shortdesc amd64-netbsd files of xetex
-binfiles arch=amd64-netbsd size=5512
+binfiles arch=amd64-netbsd size=5377
bin/amd64-netbsd/teckit_compile
bin/amd64-netbsd/xdvipdfmx
bin/amd64-netbsd/xelatex
@@ -182043,9 +197780,9 @@ binfiles arch=amd64-netbsd size=5512
name xetex.armel-linux
category TLCore
-revision 30774
+revision 34189
shortdesc armel-linux files of xetex
-binfiles arch=armel-linux size=5365
+binfiles arch=armel-linux size=5229
bin/armel-linux/teckit_compile
bin/armel-linux/xdvipdfmx
bin/armel-linux/xelatex
@@ -182053,9 +197790,9 @@ binfiles arch=armel-linux size=5365
name xetex.armhf-linux
category TLCore
-revision 30768
+revision 34202
shortdesc armhf-linux files of xetex
-binfiles arch=armhf-linux size=5207
+binfiles arch=armhf-linux size=5069
bin/armhf-linux/teckit_compile
bin/armhf-linux/xdvipdfmx
bin/armhf-linux/xelatex
@@ -182063,9 +197800,9 @@ binfiles arch=armhf-linux size=5207
name xetex.i386-cygwin
category TLCore
-revision 30730
+revision 34225
shortdesc i386-cygwin files of xetex
-binfiles arch=i386-cygwin size=5244
+binfiles arch=i386-cygwin size=5339
bin/i386-cygwin/teckit_compile.exe
bin/i386-cygwin/xdvipdfmx.exe
bin/i386-cygwin/xelatex
@@ -182073,9 +197810,9 @@ binfiles arch=i386-cygwin size=5244
name xetex.i386-freebsd
category TLCore
-revision 30648
+revision 34195
shortdesc i386-freebsd files of xetex
-binfiles arch=i386-freebsd size=5476
+binfiles arch=i386-freebsd size=5346
bin/i386-freebsd/teckit_compile
bin/i386-freebsd/xdvipdfmx
bin/i386-freebsd/xelatex
@@ -182083,9 +197820,9 @@ binfiles arch=i386-freebsd size=5476
name xetex.i386-kfreebsd
category TLCore
-revision 30810
+revision 34198
shortdesc i386-kfreebsd files of xetex
-binfiles arch=i386-kfreebsd size=5506
+binfiles arch=i386-kfreebsd size=5374
bin/i386-kfreebsd/teckit_compile
bin/i386-kfreebsd/xdvipdfmx
bin/i386-kfreebsd/xelatex
@@ -182093,9 +197830,9 @@ binfiles arch=i386-kfreebsd size=5506
name xetex.i386-linux
category TLCore
-revision 30634
+revision 34199
shortdesc i386-linux files of xetex
-binfiles arch=i386-linux size=5497
+binfiles arch=i386-linux size=5502
bin/i386-linux/teckit_compile
bin/i386-linux/xdvipdfmx
bin/i386-linux/xelatex
@@ -182103,9 +197840,9 @@ binfiles arch=i386-linux size=5497
name xetex.i386-netbsd
category TLCore
-revision 30767
+revision 34234
shortdesc i386-netbsd files of xetex
-binfiles arch=i386-netbsd size=5329
+binfiles arch=i386-netbsd size=5197
bin/i386-netbsd/teckit_compile
bin/i386-netbsd/xdvipdfmx
bin/i386-netbsd/xelatex
@@ -182113,29 +197850,19 @@ binfiles arch=i386-netbsd size=5329
name xetex.i386-solaris
category TLCore
-revision 30809
+revision 34203
shortdesc i386-solaris files of xetex
-binfiles arch=i386-solaris size=6348
+binfiles arch=i386-solaris size=6274
bin/i386-solaris/teckit_compile
bin/i386-solaris/xdvipdfmx
bin/i386-solaris/xelatex
bin/i386-solaris/xetex
-name xetex.mips-irix
-category TLCore
-revision 30131
-shortdesc mips-irix files of xetex
-binfiles arch=mips-irix size=7615
- bin/mips-irix/teckit_compile
- bin/mips-irix/xdvipdfmx
- bin/mips-irix/xelatex
- bin/mips-irix/xetex
-
name xetex.mipsel-linux
category TLCore
-revision 30628
+revision 34249
shortdesc mipsel-linux files of xetex
-binfiles arch=mipsel-linux size=6011
+binfiles arch=mipsel-linux size=5548
bin/mipsel-linux/teckit_compile
bin/mipsel-linux/xdvipdfmx
bin/mipsel-linux/xelatex
@@ -182143,9 +197870,9 @@ binfiles arch=mipsel-linux size=6011
name xetex.powerpc-linux
category TLCore
-revision 30770
+revision 34233
shortdesc powerpc-linux files of xetex
-binfiles arch=powerpc-linux size=5674
+binfiles arch=powerpc-linux size=5384
bin/powerpc-linux/teckit_compile
bin/powerpc-linux/xdvipdfmx
bin/powerpc-linux/xelatex
@@ -182153,9 +197880,9 @@ binfiles arch=powerpc-linux size=5674
name xetex.sparc-solaris
category TLCore
-revision 30731
+revision 34184
shortdesc sparc-solaris files of xetex
-binfiles arch=sparc-solaris size=5866
+binfiles arch=sparc-solaris size=5603
bin/sparc-solaris/teckit_compile
bin/sparc-solaris/xdvipdfmx
bin/sparc-solaris/xelatex
@@ -182163,9 +197890,9 @@ binfiles arch=sparc-solaris size=5866
name xetex.universal-darwin
category TLCore
-revision 30764
+revision 34201
shortdesc universal-darwin files of xetex
-binfiles arch=universal-darwin size=9885
+binfiles arch=universal-darwin size=10391
bin/universal-darwin/teckit_compile
bin/universal-darwin/xdvipdfmx
bin/universal-darwin/xelatex
@@ -182173,9 +197900,9 @@ binfiles arch=universal-darwin size=9885
name xetex.win32
category TLCore
-revision 30672
+revision 34191
shortdesc win32 files of xetex
-binfiles arch=win32 size=6579
+binfiles arch=win32 size=6465
bin/win32/fc-cache.exe
bin/win32/fc-cat.exe
bin/win32/fc-list.exe
@@ -182184,7 +197911,7 @@ binfiles arch=win32 size=6579
bin/win32/fc-query.exe
bin/win32/fc-scan.exe
bin/win32/fc-validate.exe
- bin/win32/icudt51.dll
+ bin/win32/icudt53.dll
bin/win32/teckit_compile.exe
bin/win32/xdvipdfmx.exe
bin/win32/xelatex.exe
@@ -182194,11 +197921,21 @@ binfiles arch=win32 size=6579
tlpkg/tlpostcode/xetex/conf/fonts.conf
tlpkg/tlpostcode/xetex/conf/fonts.dtd
+name xetex.x86_64-cygwin
+category TLCore
+revision 34225
+shortdesc x86_64-cygwin files of xetex
+binfiles arch=x86_64-cygwin size=5379
+ bin/x86_64-cygwin/teckit_compile.exe
+ bin/x86_64-cygwin/xdvipdfmx.exe
+ bin/x86_64-cygwin/xelatex
+ bin/x86_64-cygwin/xetex.exe
+
name xetex.x86_64-darwin
category TLCore
-revision 30764
+revision 34201
shortdesc x86_64-darwin files of xetex
-binfiles arch=x86_64-darwin size=5098
+binfiles arch=x86_64-darwin size=5427
bin/x86_64-darwin/teckit_compile
bin/x86_64-darwin/xdvipdfmx
bin/x86_64-darwin/xelatex
@@ -182206,9 +197943,9 @@ binfiles arch=x86_64-darwin size=5098
name xetex.x86_64-linux
category TLCore
-revision 30585
+revision 34192
shortdesc x86_64-linux files of xetex
-binfiles arch=x86_64-linux size=5556
+binfiles arch=x86_64-linux size=5440
bin/x86_64-linux/teckit_compile
bin/x86_64-linux/xdvipdfmx
bin/x86_64-linux/xelatex
@@ -182216,9 +197953,9 @@ binfiles arch=x86_64-linux size=5556
name xetex.x86_64-solaris
category TLCore
-revision 30809
+revision 34203
shortdesc x86_64-solaris files of xetex
-binfiles arch=x86_64-solaris size=6886
+binfiles arch=x86_64-solaris size=6813
bin/x86_64-solaris/teckit_compile
bin/x86_64-solaris/xdvipdfmx
bin/x86_64-solaris/xelatex
@@ -182247,22 +197984,23 @@ runfiles size=2
texmf-dist/tex/xetex/xetexfontinfo/aat-info.tex
texmf-dist/tex/xetex/xetexfontinfo/opentype-info.tex
catalogue-ctan /macros/xetex/plain/xetexfontinfo
-catalogue-date 2012-03-06 14:26:11 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license apache2
name xetexko
category Package
-revision 30110
+revision 34013
shortdesc Typeset Korean with Xe(La)TeX.
longdesc The package supports typesetting Korean documents (including
longdesc old Hangul texts), using XeTeX. It enhances the existing
longdesc support, in XeTeX, providing features that provide quality
longdesc typesetting.
-docfiles size=78
+docfiles size=64
+ texmf-dist/doc/xetex/xetexko/ChangeLog
texmf-dist/doc/xetex/xetexko/README details="Readme"
texmf-dist/doc/xetex/xetexko/xetexko-doc.pdf details="Package documentation"
texmf-dist/doc/xetex/xetexko/xetexko-doc.tex
-runfiles size=75
+runfiles size=76
texmf-dist/tex/xetex/xetexko/hanja_hangul.tab
texmf-dist/tex/xetex/xetexko/hanjacom_hangul.tab
texmf-dist/tex/xetex/xetexko/hanjaexa_hangul.tab
@@ -182273,9 +198011,9 @@ runfiles size=75
texmf-dist/tex/xetex/xetexko/xetexko-vertical.sty
texmf-dist/tex/xetex/xetexko/xetexko.sty
catalogue-ctan /macros/xetex/generic/xetexko
-catalogue-date 2013-04-30 11:14:16 +0200
+catalogue-date 2014-05-14 16:12:10 +0200
catalogue-license lppl1.3
-catalogue-version 2.0
+catalogue-version 2.6
name xetexref
category Package
@@ -182290,7 +198028,7 @@ docfiles size=79
texmf-dist/doc/xetex/xetexref/xetex-reference.pdf details="The document itself"
texmf-dist/doc/xetex/xetexref/xetex-reference.tex
catalogue-ctan /info/xetexref
-catalogue-date 2013-05-21 21:04:45 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
name xevlna
@@ -182314,7 +198052,7 @@ docfiles size=21
runfiles size=1
texmf-dist/tex/xelatex/xevlna/xevlna.sty
catalogue-ctan /macros/xetex/generic/xevlna
-catalogue-date 2013-04-23 11:12:19 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.0
@@ -182337,13 +198075,13 @@ srcfiles size=5
runfiles size=1
texmf-dist/tex/latex/xfor/xfor.sty
catalogue-ctan /macros/latex/contrib/xfor
-catalogue-date 2012-04-20 13:39:30 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.05
name xgreek
category Package
-revision 25876
+revision 31170
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
@@ -182357,10 +198095,10 @@ longdesc typesetting ancient texts). The default option is monotonic.
longdesc The command \setlanguage{<lang>} to activate the hyphenation
longdesc patterns of the language <lang> This, however, can be done only
longdesc if the format file has not been built with the babel mechanism.
-docfiles size=16
+docfiles size=17
texmf-dist/doc/xelatex/xgreek/README details="README file"
texmf-dist/doc/xelatex/xgreek/xgreek.pdf details="Package documentation"
-srcfiles size=11
+srcfiles size=12
texmf-dist/source/xelatex/xgreek/xgreek.dtx
texmf-dist/source/xelatex/xgreek/xgreek.ins
runfiles size=7
@@ -182385,7 +198123,7 @@ docfiles size=13
runfiles size=1
texmf-dist/tex/latex/xhfill/xhfill.sty
catalogue-ctan /macros/latex/contrib/xhfill
-catalogue-date 2012-07-21 23:51:26 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.01
@@ -182411,9 +198149,20 @@ catalogue-date 2012-06-08 17:44:30 +0200
catalogue-license lppl
catalogue-version 1.3
+name xii
+category Package
+revision 31683
+shortdesc Christmas silliness.
+docfiles size=2
+ texmf-dist/doc/plain/xii/README
+ texmf-dist/doc/plain/xii/xii.tex
+catalogue-ctan /macros/plain/contrib/xii
+catalogue-date 2013-09-30 10:58:18 +0200
+catalogue-license lppl
+
name xindy
category TLCore
-revision 30438
+revision 33975
shortdesc A general-purpose index processor.
longdesc Xindy was deceloped after an impasse had been encountered in
longdesc the attempt to complete internationalisation of makeindex.
@@ -182422,16 +198171,14 @@ longdesc using (La)TeX, Nroff family and SGML-based languages. Xindy is
longdesc highly configurable, both in markup terms and in terms of the
longdesc collating order of the text being processed.
depend xindy.ARCH
-docfiles size=187
+docfiles size=172
texmf-dist/doc/man/man1/tex2xindy.1
texmf-dist/doc/man/man1/tex2xindy.man1.pdf
texmf-dist/doc/man/man1/texindy.1
texmf-dist/doc/man/man1/texindy.man1.pdf
texmf-dist/doc/man/man1/xindy.1
texmf-dist/doc/man/man1/xindy.man1.pdf
- texmf-dist/doc/xindy/NEWS
texmf-dist/doc/xindy/README
- texmf-dist/doc/xindy/README.distrib-source
texmf-dist/doc/xindy/alphabets-doc.pdf
texmf-dist/doc/xindy/dataflow.gif
texmf-dist/doc/xindy/faq-1.html
@@ -182440,6 +198187,7 @@ docfiles size=187
texmf-dist/doc/xindy/faq-4.html
texmf-dist/doc/xindy/faq.html
texmf-dist/doc/xindy/index.gif
+ texmf-dist/doc/xindy/makeindex4.pdf
texmf-dist/doc/xindy/manual-1.html
texmf-dist/doc/xindy/manual-2.html
texmf-dist/doc/xindy/manual-3.html
@@ -182449,6 +198197,8 @@ docfiles size=187
texmf-dist/doc/xindy/manual-7.html
texmf-dist/doc/xindy/manual.html
texmf-dist/doc/xindy/mappings.gif
+ texmf-dist/doc/xindy/next.gif
+ texmf-dist/doc/xindy/prev.gif
texmf-dist/doc/xindy/style-tutorial-1.html
texmf-dist/doc/xindy/style-tutorial-2.html
texmf-dist/doc/xindy/style-tutorial-3.html
@@ -182463,8 +198213,9 @@ docfiles size=187
texmf-dist/doc/xindy/style-tutorial/style2.xdy
texmf-dist/doc/xindy/tex2xindy.pdf
texmf-dist/doc/xindy/texindy.pdf
+ texmf-dist/doc/xindy/toc.gif
texmf-dist/doc/xindy/xindy.pdf
-runfiles size=742
+runfiles size=903
texmf-dist/scripts/xindy/texindy.pl
texmf-dist/scripts/xindy/xindy.pl
texmf-dist/xindy/VERSION
@@ -182681,6 +198432,8 @@ runfiles size=742
texmf-dist/xindy/modules/lang/klingon/utf8-lang.xdy
texmf-dist/xindy/modules/lang/klingon/utf8-test.xdy
texmf-dist/xindy/modules/lang/klingon/utf8.xdy
+ texmf-dist/xindy/modules/lang/korean/utf8-lang.xdy
+ texmf-dist/xindy/modules/lang/korean/utf8.xdy
texmf-dist/xindy/modules/lang/kurdish/bedirxan-latin5-lang.xdy
texmf-dist/xindy/modules/lang/kurdish/bedirxan-latin5-test.xdy
texmf-dist/xindy/modules/lang/kurdish/bedirxan-latin5.xdy
@@ -182740,9 +198493,12 @@ runfiles size=742
texmf-dist/xindy/modules/lang/norwegian/utf8-lang.xdy
texmf-dist/xindy/modules/lang/norwegian/utf8-test.xdy
texmf-dist/xindy/modules/lang/norwegian/utf8.xdy
- texmf-dist/xindy/modules/lang/persian/utf8-lang.xdy
- texmf-dist/xindy/modules/lang/persian/utf8-test.xdy
- texmf-dist/xindy/modules/lang/persian/utf8.xdy
+ texmf-dist/xindy/modules/lang/persian/variant1-utf8-lang.xdy
+ texmf-dist/xindy/modules/lang/persian/variant1-utf8-test.xdy
+ texmf-dist/xindy/modules/lang/persian/variant1-utf8.xdy
+ texmf-dist/xindy/modules/lang/persian/variant2-utf8-lang.xdy
+ texmf-dist/xindy/modules/lang/persian/variant2-utf8-test.xdy
+ texmf-dist/xindy/modules/lang/persian/variant2-utf8.xdy
texmf-dist/xindy/modules/lang/polish/cp1250-lang.xdy
texmf-dist/xindy/modules/lang/polish/cp1250-test.xdy
texmf-dist/xindy/modules/lang/polish/cp1250.xdy
@@ -182875,10 +198631,7 @@ runfiles size=742
texmf-dist/xindy/modules/rules/latin-exchange.xdy
texmf-dist/xindy/modules/rules/latin-tolower.xdy
texmf-dist/xindy/modules/styles/basic.xdy
- texmf-dist/xindy/modules/styles/example.xdy
texmf-dist/xindy/modules/styles/makeidx.xdy
- texmf-dist/xindy/modules/styles/makeindex.xdy
- texmf-dist/xindy/modules/styles/vermeer.xdy
texmf-dist/xindy/modules/tex/inputenc/cp1250.xdy
texmf-dist/xindy/modules/tex/inputenc/cp1251.xdy
texmf-dist/xindy/modules/tex/inputenc/cp1252.xdy
@@ -182894,6 +198647,7 @@ runfiles size=742
texmf-dist/xindy/modules/tex/inputenc/latin1.xdy
texmf-dist/xindy/modules/tex/inputenc/latin2.xdy
texmf-dist/xindy/modules/tex/inputenc/latin3.xdy
+ texmf-dist/xindy/modules/tex/inputenc/utf8.xdy
catalogue-ctan /indexing/xindy/base
catalogue-date 2011-09-24 16:34:40 +0200
catalogue-license gpl
@@ -182901,7 +198655,7 @@ catalogue-version 2.4
name xindy.alpha-linux
category TLCore
-revision 29834
+revision 33765
shortdesc alpha-linux files of xindy
binfiles arch=alpha-linux size=903
bin/alpha-linux/tex2xindy
@@ -182912,9 +198666,9 @@ binfiles arch=alpha-linux size=903
name xindy.amd64-freebsd
category TLCore
-revision 29874
+revision 33939
shortdesc amd64-freebsd files of xindy
-binfiles arch=amd64-freebsd size=877
+binfiles arch=amd64-freebsd size=911
bin/amd64-freebsd/tex2xindy
bin/amd64-freebsd/texindy
bin/amd64-freebsd/xindy
@@ -182923,7 +198677,7 @@ binfiles arch=amd64-freebsd size=877
name xindy.amd64-kfreebsd
category TLCore
-revision 30655
+revision 30843
shortdesc amd64-kfreebsd files of xindy
binfiles arch=amd64-kfreebsd size=874
bin/amd64-kfreebsd/tex2xindy
@@ -182934,7 +198688,7 @@ binfiles arch=amd64-kfreebsd size=874
name xindy.armel-linux
category TLCore
-revision 30774
+revision 34189
shortdesc armel-linux files of xindy
binfiles arch=armel-linux size=700
bin/armel-linux/tex2xindy
@@ -182945,7 +198699,7 @@ binfiles arch=armel-linux size=700
name xindy.armhf-linux
category TLCore
-revision 30015
+revision 33768
shortdesc armhf-linux files of xindy
binfiles arch=armhf-linux size=696
bin/armhf-linux/tex2xindy
@@ -182956,7 +198710,7 @@ binfiles arch=armhf-linux size=696
name xindy.i386-cygwin
category TLCore
-revision 30526
+revision 33749
shortdesc i386-cygwin files of xindy
binfiles arch=i386-cygwin size=728
bin/i386-cygwin/tex2xindy.exe
@@ -182967,9 +198721,9 @@ binfiles arch=i386-cygwin size=728
name xindy.i386-freebsd
category TLCore
-revision 29874
+revision 33939
shortdesc i386-freebsd files of xindy
-binfiles arch=i386-freebsd size=705
+binfiles arch=i386-freebsd size=747
bin/i386-freebsd/tex2xindy
bin/i386-freebsd/texindy
bin/i386-freebsd/xindy
@@ -182978,7 +198732,7 @@ binfiles arch=i386-freebsd size=705
name xindy.i386-kfreebsd
category TLCore
-revision 30440
+revision 30843
shortdesc i386-kfreebsd files of xindy
binfiles arch=i386-kfreebsd size=757
bin/i386-kfreebsd/tex2xindy
@@ -182989,7 +198743,7 @@ binfiles arch=i386-kfreebsd size=757
name xindy.i386-linux
category TLCore
-revision 30088
+revision 33719
shortdesc i386-linux files of xindy
binfiles arch=i386-linux size=981
bin/i386-linux/tex2xindy
@@ -183011,7 +198765,7 @@ binfiles arch=i386-netbsd size=650
name xindy.powerpc-linux
category TLCore
-revision 29833
+revision 33889
shortdesc powerpc-linux files of xindy
binfiles arch=powerpc-linux size=760
bin/powerpc-linux/tex2xindy
@@ -183022,7 +198776,7 @@ binfiles arch=powerpc-linux size=760
name xindy.universal-darwin
category TLCore
-revision 30764
+revision 34201
shortdesc universal-darwin files of xindy
binfiles arch=universal-darwin size=1506
bin/universal-darwin/tex2xindy
@@ -183034,9 +198788,9 @@ binfiles arch=universal-darwin size=1506
name xindy.win32
category TLCore
-revision 29816
+revision 33948
shortdesc win32 files of xindy
-binfiles arch=win32 size=1070
+binfiles arch=win32 size=1034
bin/win32/tex2xindy.exe
bin/win32/texindy.exe
bin/win32/xindy-lisp.exe
@@ -183045,7 +198799,7 @@ binfiles arch=win32 size=1070
name xindy.x86_64-darwin
category TLCore
-revision 29809
+revision 34201
shortdesc x86_64-darwin files of xindy
binfiles arch=x86_64-darwin size=730
bin/x86_64-darwin/tex2xindy
@@ -183056,7 +198810,7 @@ binfiles arch=x86_64-darwin size=730
name xindy.x86_64-linux
category TLCore
-revision 30204
+revision 33745
shortdesc x86_64-linux files of xindy
binfiles arch=x86_64-linux size=862
bin/x86_64-linux/tex2xindy
@@ -183067,60 +198821,71 @@ binfiles arch=x86_64-linux size=862
name xint
category Package
-revision 30723
+revision 33347
shortdesc Expandable operations on long numbers.
-longdesc The bundle provides four packages: - xint, which provides
+longdesc The bundle provides four packages: xint, which provides
longdesc expandable TeX macros that implement the basic arithmetic
longdesc operations of addition, subtraction, multiplication and
longdesc division, as applied to arbitrarily long numbers represented as
-longdesc chains of digits with an optional minus sign; - xintgcd, which
-longdesc provides implementations of the Euclidean algorithm, and of its
-longdesc typesetting; - xintfrac, which computes fractions using xint; -
-longdesc xintseries, which computes partial sums using xint; and -
-longdesc xintcfrac, which deals with the computation of continued
-longdesc fractions. All of the packages' computations are done in a way
-longdesc that they can operate in an expanding environment. The packages
-longdesc may be used either with Plain TeX or LaTeX.
-docfiles size=155
+longdesc chains of digits with an optional minus sign; xinttools is
+longdesc loaded by xint (hence by all other packages of the bundle,
+longdesc too): it provides utilities of independent interest such as
+longdesc expandable and non-expandable loops. xintfrac, which computes
+longdesc fractions using xint; xintexpr, which extends xintfrac with an
+longdesc expandable parser of expressions involving integers and a wide
+longdesc variety of operators; xintbinhex provides conversions to and
+longdesc from binary and hexadecimal bases; xintseries, which provides
+longdesc basic functionality for computing partial sums using xint;
+longdesc xintgcd, which provides implementations of the Euclidean
+longdesc algorithm, and of its typesetting; xintcfrac, which deals with
+longdesc the computation of continued fractions, All of the packages'
+longdesc computations are done in a way that they can operate in an
+longdesc expanding environment. The packages may be used either with
+longdesc Plain TeX or LaTeX.
+docfiles size=149
texmf-dist/doc/generic/xint/README details="Readme"
texmf-dist/doc/generic/xint/xint.pdf details="Package documentation"
-srcfiles size=127
+srcfiles size=242
texmf-dist/source/generic/xint/xint.dtx
texmf-dist/source/generic/xint/xint.ins
-runfiles size=57
+runfiles size=87
texmf-dist/tex/generic/xint/xint.sty
+ texmf-dist/tex/generic/xint/xintbinhex.sty
texmf-dist/tex/generic/xint/xintcfrac.sty
texmf-dist/tex/generic/xint/xintexpr.sty
texmf-dist/tex/generic/xint/xintfrac.sty
texmf-dist/tex/generic/xint/xintgcd.sty
texmf-dist/tex/generic/xint/xintseries.sty
+ texmf-dist/tex/generic/xint/xinttools.sty
catalogue-ctan /macros/generic/xint
-catalogue-date 2013-05-26 23:35:00 +0200
+catalogue-date 2014-04-01 20:36:20 +0200
catalogue-license lppl1.3
-catalogue-version 1.07a
+catalogue-version 1.09n
name xits
category Package
-revision 30782
+revision 32763
shortdesc A Scientific Times-like font with support for mathematical typesetting.
longdesc XITS is a Times-like font for scientific typesetting with
longdesc proper mathematical support for modern, Unicode and OpenType
longdesc capable TeX engines, namely LuaTeX and XeTeX. For use with
longdesc LuaLaTeX or XeLaTeX, support is available from the fontspec and
longdesc unicode-math packages.
-docfiles size=41
+docfiles size=43
texmf-dist/doc/fonts/xits/FONTLOG.txt
texmf-dist/doc/fonts/xits/Makefile
texmf-dist/doc/fonts/xits/OFL-FAQ.txt
texmf-dist/doc/fonts/xits/OFL.txt
texmf-dist/doc/fonts/xits/README details="Readme"
+ texmf-dist/doc/fonts/xits/build.py
+ texmf-dist/doc/fonts/xits/fontcoverage.py
texmf-dist/doc/fonts/xits/postprocess.py
texmf-dist/doc/fonts/xits/user-guide.pdf
texmf-dist/doc/fonts/xits/user-guide.tex
texmf-dist/doc/fonts/xits/xits-math.lfg
texmf-dist/doc/fonts/xits/xits-specimen.pdf
texmf-dist/doc/fonts/xits/xits-specimen.tex
-srcfiles size=2067
+srcfiles size=2102
texmf-dist/source/fonts/xits/xits-bold.sfd
texmf-dist/source/fonts/xits/xits-bolditalic.sfd
texmf-dist/source/fonts/xits/xits-italic.sfd
@@ -183128,7 +198893,7 @@ srcfiles size=2067
texmf-dist/source/fonts/xits/xits-mathbold.sfd
texmf-dist/source/fonts/xits/xits-regular.sfd
texmf-dist/source/fonts/xits/xits.fea
-runfiles size=341
+runfiles size=347
texmf-dist/fonts/opentype/public/xits/xits-bold.otf
texmf-dist/fonts/opentype/public/xits/xits-bolditalic.otf
texmf-dist/fonts/opentype/public/xits/xits-italic.otf
@@ -183136,13 +198901,13 @@ runfiles size=341
texmf-dist/fonts/opentype/public/xits/xits-mathbold.otf
texmf-dist/fonts/opentype/public/xits/xits-regular.otf
catalogue-ctan /fonts/xits
-catalogue-date 2013-05-28 19:52:13 +0200
+catalogue-date 2014-05-20 14:45:48 +0200
catalogue-license ofl
-catalogue-version 1.107
+catalogue-version 1.108
name xkeyval
category Package
-revision 27995
+revision 34020
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
@@ -183151,24 +198916,35 @@ 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=120
+docfiles size=124
texmf-dist/doc/latex/xkeyval/README details="Package README"
- texmf-dist/doc/latex/xkeyval/xkeyval.pdf
+ texmf-dist/doc/latex/xkeyval/xkeyval.bib
+ texmf-dist/doc/latex/xkeyval/xkeyval.pdf details="Package documentation"
+ texmf-dist/doc/latex/xkeyval/xkvpream.ble
srcfiles size=53
texmf-dist/source/latex/xkeyval/xkeyval.dtx
-runfiles size=16
+runfiles size=28
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/xkvex1.tex
+ texmf-dist/tex/generic/xkeyval/xkvex2.tex
+ texmf-dist/tex/generic/xkeyval/xkvex3.tex
+ texmf-dist/tex/generic/xkeyval/xkvex4.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/xkveca.cls
+ texmf-dist/tex/latex/xkeyval/xkvecb.cls
+ texmf-dist/tex/latex/xkeyval/xkvesa.sty
+ texmf-dist/tex/latex/xkeyval/xkvesb.sty
+ texmf-dist/tex/latex/xkeyval/xkvesc.sty
texmf-dist/tex/latex/xkeyval/xkvltxp.sty
texmf-dist/tex/latex/xkeyval/xkvview.sty
catalogue-ctan /macros/latex/contrib/xkeyval
-catalogue-date 2012-10-18 10:37:06 +0200
+catalogue-date 2014-05-10 05:53:39 +0200
catalogue-license lppl
-catalogue-version 2.6b
+catalogue-version 2.6d
name xlop
category Package
@@ -183377,14 +199153,6 @@ binfiles arch=i386-solaris size=2
bin/i386-solaris/pdfxmltex
bin/i386-solaris/xmltex
-name xmltex.mips-irix
-category Package
-revision 29975
-shortdesc mips-irix files of xmltex
-binfiles arch=mips-irix size=2
- bin/mips-irix/pdfxmltex
- bin/mips-irix/xmltex
-
name xmltex.mipsel-linux
category Package
revision 29946
@@ -183419,12 +199187,20 @@ binfiles arch=universal-darwin size=2
name xmltex.win32
category Package
-revision 8086
+revision 33512
shortdesc win32 files of xmltex
binfiles arch=win32 size=2
bin/win32/pdfxmltex.exe
bin/win32/xmltex.exe
+name xmltex.x86_64-cygwin
+category Package
+revision 33557
+shortdesc x86_64-cygwin files of xmltex
+binfiles arch=x86_64-cygwin size=2
+ bin/x86_64-cygwin/pdfxmltex
+ bin/x86_64-cygwin/xmltex
+
name xmltex.x86_64-darwin
category Package
revision 18441
@@ -183491,7 +199267,7 @@ docfiles size=70
runfiles size=1
texmf-dist/tex/latex/xnewcommand/xnewcommand.sty
catalogue-ctan /macros/latex/contrib/xnewcommand
-catalogue-date 2012-07-21 21:15:07 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.2
@@ -183509,7 +199285,7 @@ docfiles size=97
runfiles size=2
texmf-dist/tex/latex/xoptarg/xoptarg.sty
catalogue-ctan /macros/latex/contrib/xoptarg
-catalogue-date 2012-07-21 21:15:07 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.0
@@ -183528,7 +199304,7 @@ srcfiles size=9
runfiles size=3
texmf-dist/tex/latex/xpatch/xpatch.sty
catalogue-ctan /macros/latex/contrib/xpatch
-catalogue-date 2012-03-12 18:26:56 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 0.2
@@ -183547,7 +199323,7 @@ srcfiles size=6
runfiles size=1
texmf-dist/tex/latex/xpeek/xpeek.sty
catalogue-ctan /macros/latex/contrib/xpeek
-catalogue-date 2012-09-12 22:31:03 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 0.2
@@ -183570,30 +199346,30 @@ srcfiles size=32
runfiles size=12
texmf-dist/tex/latex/xpicture/xpicture.sty
catalogue-ctan /macros/latex/contrib/xpicture
-catalogue-date 2013-02-14 16:03:41 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.2a
name xpinyin
category Package
-revision 30699
+revision 34110
shortdesc Automatically add pinyin to Chinese characters.
longdesc The package is written to simplify the input of Hanyu Pinyin.
longdesc Macros are provided that automatically add pinyin to Chinese
longdesc characters.
-docfiles size=49
+docfiles size=56
texmf-dist/doc/latex/xpinyin/README details="Readme"
texmf-dist/doc/latex/xpinyin/xpinyin.pdf details="Package documentation" language="zh"
-srcfiles size=9
+srcfiles size=10
texmf-dist/source/latex/xpinyin/xpinyin.dtx
texmf-dist/source/latex/xpinyin/xpinyin.ins
-runfiles size=156
+runfiles size=157
texmf-dist/tex/latex/xpinyin/config/xpinyin-map.cfg
texmf-dist/tex/latex/xpinyin/xpinyin.sty
catalogue-ctan /macros/latex/contrib/xpinyin
-catalogue-date 2013-05-24 12:22:55 +0200
+catalogue-date 2014-05-18 08:21:32 +0200
catalogue-license lppl1.3
-catalogue-version 1.3
+catalogue-version 1.8
name xpunctuate
category Package
@@ -183614,7 +199390,7 @@ srcfiles size=4
runfiles size=1
texmf-dist/tex/latex/xpunctuate/xpunctuate.sty
catalogue-ctan /macros/latex/contrib/xpunctuate
-catalogue-date 2012-07-08 14:44:07 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.2
catalogue-version 1.0
@@ -183650,7 +199426,7 @@ catalogue-version 0.3
name xskak
category Package
-revision 19440
+revision 33602
shortdesc An extension to the skak package for chess typesetting.
longdesc Xskak, as its prime function, saves information about a chess
longdesc game for later use (e.g., to loop through a game to make an
@@ -183660,7 +199436,7 @@ longdesc and switch between indefinite levels of styles.
docfiles size=2
texmf-dist/doc/latex/xskak/README details="Readme"
texmf-dist/doc/latex/xskak/README.TEXLIVE
-srcfiles size=22
+srcfiles size=23
texmf-dist/source/latex/xskak/xskak-src.dtx
texmf-dist/source/latex/xskak/xskak.ins
runfiles size=23
@@ -183668,13 +199444,13 @@ runfiles size=23
texmf-dist/tex/latex/xskak/xskak-nagdef.sty
texmf-dist/tex/latex/xskak/xskak.sty
catalogue-ctan /macros/latex/contrib/xskak
-catalogue-date 2012-07-21 17:20:52 +0200
+catalogue-date 2014-04-21 13:18:36 +0200
catalogue-license lppl
-catalogue-version 1.2
+catalogue-version 1.3a
name xstring
category Package
-revision 29258
+revision 31900
shortdesc String manipulation for (La)TeX.
longdesc The package provides macros for manipulating strings -- testing
longdesc a string's contents, extracting substrings, substitution of
@@ -183683,7 +199459,7 @@ longdesc position of, or number of recurrences of, a substring. The
longdesc package works equally in Plain TeX and LaTeX (though e-TeX is
longdesc always required). The strings to be processed may contain
longdesc (expandable) macros.
-docfiles size=173
+docfiles size=172
texmf-dist/doc/generic/xstring/README details="Readme"
texmf-dist/doc/generic/xstring/xstring_doc_en.pdf details="Package documentation (English)" language="en"
texmf-dist/doc/generic/xstring/xstring_doc_en.tex
@@ -183693,16 +199469,17 @@ runfiles size=15
texmf-dist/tex/generic/xstring/xstring.sty
texmf-dist/tex/generic/xstring/xstring.tex
catalogue-ctan /macros/generic/xstring
-catalogue-date 2013-02-28 13:49:00 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
-catalogue-version 1.7a
+catalogue-version 1.7c
name xtab
category Package
revision 23347
shortdesc Break tables across pages.
longdesc Xtab is an extended and somewhat improved version of
-longdesc supertabular; it provides tables that break across pages.
+longdesc supertabular; its xtabular environment provides tables that
+longdesc break across pages.
docfiles size=90
texmf-dist/doc/latex/xtab/README details="Readme"
texmf-dist/doc/latex/xtab/xtab.pdf details="Package documentation"
@@ -183712,7 +199489,7 @@ srcfiles size=22
runfiles size=5
texmf-dist/tex/latex/xtab/xtab.sty
catalogue-ctan /macros/latex/contrib/xtab
-catalogue-date 2011-12-30 16:30:48 +0100
+catalogue-date 2013-09-03 17:01:13 +0200
catalogue-license lppl
catalogue-version 2.3f
@@ -183732,7 +199509,7 @@ docfiles size=1
runfiles size=51
texmf-dist/tex/xelatex/xunicode/xunicode.sty
catalogue-ctan /macros/xetex/latex/xunicode
-catalogue-date 2012-07-21 17:20:52 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 0.981
@@ -183752,7 +199529,7 @@ docfiles size=187
runfiles size=19
texmf-dist/tex/latex/xwatermark/xwatermark.sty
catalogue-ctan /macros/latex/contrib/xwatermark
-catalogue-date 2012-10-26 10:22:27 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.5.2d
@@ -183778,15 +199555,153 @@ catalogue-date 2012-06-08 10:58:36 +0200
catalogue-license lppl
catalogue-version 1.1
+name xymtex
+category Package
+revision 32182
+shortdesc Typesetting chemical structures.
+longdesc XyMTeX is a set of packages for drawing a wide variety of
+longdesc chemical structural formulas in a way that reflects their
+longdesc structure. The package provides three output modes: 'LaTeX',
+longdesc 'PostScript' and 'PDF'. XyMTeX's commands have a systematic set
+longdesc of arguments for specifying substituents and their positions,
+longdesc endocyclic double bonds, and bond patterns. In some cases there
+longdesc are additional arguments for specifying hetero-atoms on the
+longdesc vertices of heterocycles. It is believed that this systematic
+longdesc design allows XyMTeX to operate as a practical (device-
+longdesc independent) tool for use with LaTeX.
+docfiles size=71
+ texmf-dist/doc/latex/xymtex/doc/README.TEXLIVE
+ texmf-dist/doc/latex/xymtex/readme/oldreadme/readme402.doc
+ texmf-dist/doc/latex/xymtex/readme/oldreadme/readme402.jpn
+ texmf-dist/doc/latex/xymtex/readme/oldreadme/readme403.doc
+ texmf-dist/doc/latex/xymtex/readme/oldreadme/readme403.jpn
+ texmf-dist/doc/latex/xymtex/readme/oldreadme/readme404.doc
+ texmf-dist/doc/latex/xymtex/readme/oldreadme/readme404.jpn
+ texmf-dist/doc/latex/xymtex/readme/oldreadme/readme405.doc
+ texmf-dist/doc/latex/xymtex/readme/oldreadme/readme405.jpn
+ texmf-dist/doc/latex/xymtex/readme/oldreadme/readme406.doc
+ texmf-dist/doc/latex/xymtex/readme/oldreadme/readme406.jpn
+ texmf-dist/doc/latex/xymtex/readme/oldreadme/readme500.doc
+ texmf-dist/doc/latex/xymtex/readme/oldreadme/readme500.jpn
+ texmf-dist/doc/latex/xymtex/readme/oldreadme/readme500a.doc
+ texmf-dist/doc/latex/xymtex/readme/oldreadme/readme500a.jpn
+ texmf-dist/doc/latex/xymtex/readme/oldreadme/xymtx402.doc
+ texmf-dist/doc/latex/xymtex/readme/oldreadme/xymtx402.jpn
+ texmf-dist/doc/latex/xymtex/readme/oldreadme/xymtx403.doc
+ texmf-dist/doc/latex/xymtex/readme/oldreadme/xymtx403.jpn
+ texmf-dist/doc/latex/xymtex/readme/oldreadme/xymtx404.doc
+ texmf-dist/doc/latex/xymtex/readme/oldreadme/xymtx404.jpn
+ texmf-dist/doc/latex/xymtex/readme/oldreadme/xymtx405.doc
+ texmf-dist/doc/latex/xymtex/readme/oldreadme/xymtx405.jpn
+ texmf-dist/doc/latex/xymtex/readme/oldreadme/xymtx406.doc
+ texmf-dist/doc/latex/xymtex/readme/oldreadme/xymtx406.jpn
+ texmf-dist/doc/latex/xymtex/readme/oldreadme/xymtx500.doc
+ texmf-dist/doc/latex/xymtex/readme/oldreadme/xymtx500.jpn
+ texmf-dist/doc/latex/xymtex/readme/oldreadme/xymtx500a.doc
+ texmf-dist/doc/latex/xymtex/readme/oldreadme/xymtx500a.jpn
+ texmf-dist/doc/latex/xymtex/readme/readme501.doc
+ texmf-dist/doc/latex/xymtex/readme/readme501.jpn details="Readme" language="ja"
+ texmf-dist/doc/latex/xymtex/readme/xymtx501.doc
+ texmf-dist/doc/latex/xymtex/readme/xymtx501.jpn
+srcfiles size=592
+ texmf-dist/source/latex/xymtex/base/aliphat.dtx
+ texmf-dist/source/latex/xymtex/base/aliphat.ins
+ texmf-dist/source/latex/xymtex/base/assurelatexmode.dtx
+ texmf-dist/source/latex/xymtex/base/assurelatexmode.ins
+ texmf-dist/source/latex/xymtex/base/bondcolor.dtx
+ texmf-dist/source/latex/xymtex/base/bondcolor.ins
+ texmf-dist/source/latex/xymtex/base/carom.dtx
+ texmf-dist/source/latex/xymtex/base/carom.ins
+ texmf-dist/source/latex/xymtex/base/ccycle.dtx
+ texmf-dist/source/latex/xymtex/base/ccycle.ins
+ texmf-dist/source/latex/xymtex/base/chemstr.dtx
+ texmf-dist/source/latex/xymtex/base/chemstr.ins
+ texmf-dist/source/latex/xymtex/base/doins.bat
+ texmf-dist/source/latex/xymtex/base/fusering.dtx
+ texmf-dist/source/latex/xymtex/base/fusering.ins
+ texmf-dist/source/latex/xymtex/base/hcycle.dtx
+ texmf-dist/source/latex/xymtex/base/hcycle.ins
+ texmf-dist/source/latex/xymtex/base/hetarom.dtx
+ texmf-dist/source/latex/xymtex/base/hetarom.ins
+ texmf-dist/source/latex/xymtex/base/hetaromh.dtx
+ texmf-dist/source/latex/xymtex/base/hetaromh.ins
+ texmf-dist/source/latex/xymtex/base/lewisstruc.dtx
+ texmf-dist/source/latex/xymtex/base/lewisstruc.ins
+ texmf-dist/source/latex/xymtex/base/locant.dtx
+ texmf-dist/source/latex/xymtex/base/locant.ins
+ texmf-dist/source/latex/xymtex/base/lowcycle.dtx
+ texmf-dist/source/latex/xymtex/base/lowcycle.ins
+ texmf-dist/source/latex/xymtex/base/methylen.dtx
+ texmf-dist/source/latex/xymtex/base/methylen.ins
+ texmf-dist/source/latex/xymtex/base/polymers.dtx
+ texmf-dist/source/latex/xymtex/base/polymers.ins
+ texmf-dist/source/latex/xymtex/base/putline.sed
+ texmf-dist/source/latex/xymtex/base/putput.bat
+ texmf-dist/source/latex/xymtex/base/sizeredc.dtx
+ texmf-dist/source/latex/xymtex/base/sizeredc.ins
+ texmf-dist/source/latex/xymtex/base/steroid.dtx
+ texmf-dist/source/latex/xymtex/base/steroid.ins
+ texmf-dist/source/latex/xymtex/base/xymtex.dtx
+ texmf-dist/source/latex/xymtex/base/xymtex.ins
+ texmf-dist/source/latex/xymtex/chemist/assurechemist.dtx
+ texmf-dist/source/latex/xymtex/chemist/assurechemist.ins
+ texmf-dist/source/latex/xymtex/chemist/chemist.dtx
+ texmf-dist/source/latex/xymtex/chemist/chemist.ins
+ texmf-dist/source/latex/xymtex/chemist/chemtimes.dtx
+ texmf-dist/source/latex/xymtex/chemist/chemtimes.ins
+ texmf-dist/source/latex/xymtex/xymtxpdf/chmst-pdf.dtx
+ texmf-dist/source/latex/xymtex/xymtxpdf/chmst-pdf.ins
+ texmf-dist/source/latex/xymtex/xymtxpdf/xymtx-pdf.dtx
+ texmf-dist/source/latex/xymtex/xymtxpdf/xymtx-pdf.ins
+ texmf-dist/source/latex/xymtex/xymtxps/chmst-ps.dtx
+ texmf-dist/source/latex/xymtex/xymtxps/chmst-ps.ins
+ texmf-dist/source/latex/xymtex/xymtxps/xymtx-ps.drv
+ texmf-dist/source/latex/xymtex/xymtxps/xymtx-ps.dtx
+ texmf-dist/source/latex/xymtex/xymtxps/xymtx-ps.ins
+runfiles size=290
+ texmf-dist/tex/latex/xymtex/base/aliphat.sty
+ texmf-dist/tex/latex/xymtex/base/assurelatexmode.sty
+ texmf-dist/tex/latex/xymtex/base/bondcolor.sty
+ texmf-dist/tex/latex/xymtex/base/carom.sty
+ texmf-dist/tex/latex/xymtex/base/ccycle.sty
+ texmf-dist/tex/latex/xymtex/base/chemstr.sty
+ texmf-dist/tex/latex/xymtex/base/fusering.sty
+ texmf-dist/tex/latex/xymtex/base/hcycle.sty
+ texmf-dist/tex/latex/xymtex/base/hetarom.sty
+ texmf-dist/tex/latex/xymtex/base/hetaromh.sty
+ texmf-dist/tex/latex/xymtex/base/lewisstruc.sty
+ texmf-dist/tex/latex/xymtex/base/locant.sty
+ texmf-dist/tex/latex/xymtex/base/lowcycle.sty
+ texmf-dist/tex/latex/xymtex/base/methylen.sty
+ texmf-dist/tex/latex/xymtex/base/polymers.sty
+ texmf-dist/tex/latex/xymtex/base/sizeredc.sty
+ texmf-dist/tex/latex/xymtex/base/steroid.sty
+ texmf-dist/tex/latex/xymtex/base/xymtex.sty
+ texmf-dist/tex/latex/xymtex/base/xymtexpdf.sty
+ texmf-dist/tex/latex/xymtex/base/xymtexps.sty
+ texmf-dist/tex/latex/xymtex/chemist/assurechemist.sty
+ texmf-dist/tex/latex/xymtex/chemist/chemist.sty
+ texmf-dist/tex/latex/xymtex/chemist/chemtimes.sty
+ texmf-dist/tex/latex/xymtex/xymtxpdf/chmst-pdf.sty
+ texmf-dist/tex/latex/xymtex/xymtxpdf/xymtx-pdf.sty
+ texmf-dist/tex/latex/xymtex/xymtxps/chmst-ps.sty
+ texmf-dist/tex/latex/xymtex/xymtxps/xymtx-ps.sty
+catalogue-ctan /macros/latex/contrib/xymtex
+catalogue-date 2013-11-19 14:03:04 +0100
+catalogue-license lppl1.3
+catalogue-version 5.06
+
name xypic
category Package
-revision 26642
+revision 31859
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).
+longdesc LaTeX, AMS-TeX, and plain TeX). The distribution includes
+longdesc Michael Barr's diag package, which was previously distributed
+longdesc stand-alone.
execute addMixedMap xypic.map
-docfiles size=1075
+docfiles size=1062
texmf-dist/doc/generic/xypic/CATALOG
texmf-dist/doc/generic/xypic/COPYING
texmf-dist/doc/generic/xypic/FONTCOPYING
@@ -183797,16 +199712,17 @@ docfiles size=1075
texmf-dist/doc/generic/xypic/VERSIONS
texmf-dist/doc/generic/xypic/Xy-logo.png
texmf-dist/doc/generic/xypic/Xy-pic.html
+ texmf-dist/doc/generic/xypic/barrdoc.pdf
texmf-dist/doc/generic/xypic/support/dvitogif89a
texmf-dist/doc/generic/xypic/support/install-tds
texmf-dist/doc/generic/xypic/support/pnmrawtopcropwhite.c
- texmf-dist/doc/generic/xypic/xy388src.tar.gz
+ texmf-dist/doc/generic/xypic/xy389src.tar.gz
texmf-dist/doc/generic/xypic/xyguide.pdf
texmf-dist/doc/generic/xypic/xypdf.pdf
texmf-dist/doc/generic/xypic/xyrefer.pdf
texmf-dist/doc/generic/xypic/xysource.pdf
-runfiles size=552
- texmf-dist/dvips/xypic/xy388dict.pro
+runfiles size=575
+ texmf-dist/dvips/xypic/xy389dict.pro
texmf-dist/fonts/afm/public/xypic/xyatip10.afm
texmf-dist/fonts/afm/public/xypic/xybsql10.afm
texmf-dist/fonts/afm/public/xypic/xybtip10.afm
@@ -183951,6 +199867,7 @@ runfiles size=552
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/xybarr.tex
texmf-dist/tex/generic/xypic/xycmactex.tex
texmf-dist/tex/generic/xypic/xycmtip.tex
texmf-dist/tex/generic/xypic/xycolor.tex
@@ -184005,10 +199922,10 @@ runfiles size=552
texmf-dist/tex/generic/xypic/xyv2.tex
texmf-dist/tex/generic/xypic/xyweb.tex
texmf-dist/tex/generic/xypic/xyxdvi.tex
-catalogue-ctan /macros/generic/diagrams/xypic/xy
-catalogue-date 2012-05-24 12:27:26 +0200
+catalogue-ctan /macros/generic/diagrams/xypic
+catalogue-date 2013-10-06 19:55:25 +0200
catalogue-license gpl
-catalogue-version 3.8.8
+catalogue-version 3.8.9
name xypic-tut-pt
category Package
@@ -184088,7 +200005,7 @@ runfiles size=7
texmf-dist/tex/latex/yagusylo/yagusylo.cfg
texmf-dist/tex/latex/yagusylo/yagusylo.sty
catalogue-ctan /macros/latex/contrib/yagusylo
-catalogue-date 2012-07-21 17:20:52 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.2
@@ -184153,7 +200070,7 @@ runfiles size=75
texmf-dist/fonts/tfm/public/yannisgr/rgrsl10.tfm
texmf-dist/fonts/tfm/public/yannisgr/rgrti10.tfm
catalogue-ctan /fonts/greek/yannis
-catalogue-date 2012-07-21 17:20:52 +0200
+catalogue-date 2014-04-28 17:48:37 +0200
catalogue-license gpl2
name yax
@@ -184178,7 +200095,7 @@ runfiles size=8
texmf-dist/tex/generic/yax/yax.sty
texmf-dist/tex/generic/yax/yax.tex
catalogue-ctan /macros/generic/yax
-catalogue-date 2012-07-21 17:20:52 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 1.03
@@ -184210,7 +200127,7 @@ runfiles size=14
texmf-dist/tex/latex/ydoc/ydoc.cls
texmf-dist/tex/latex/ydoc/ydoc.sty
catalogue-ctan /macros/latex/contrib/ydoc
-catalogue-date 2012-02-24 11:32:36 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 0.6alpha
@@ -184231,28 +200148,30 @@ srcfiles size=7
runfiles size=2
texmf-dist/tex/latex/yfonts/yfonts.sty
catalogue-ctan /macros/latex/contrib/yfonts
-catalogue-date 2012-04-16 12:07:42 +0200
+catalogue-date 2014-05-20 14:46:50 +0200
catalogue-license lppl
catalogue-version 1.3
name yhmath
category Package
-revision 15878
+revision 31155
shortdesc Extended maths fonts for LaTeX.
longdesc The yhmath bundle contains fonts (in type 1 format) and a LaTeX
longdesc package for using them.
execute addMixedMap yhmath.map
-docfiles size=44
- texmf-dist/doc/latex/yhmath/yhmath.pdf
-srcfiles size=19
- texmf-dist/source/latex/yhmath/yhmath.drv
- texmf-dist/source/latex/yhmath/yhmath.dtx
- texmf-dist/source/latex/yhmath/yhmath.ins
-runfiles size=32
+docfiles size=79
+ texmf-dist/doc/fonts/yhmath/Makefile
+ texmf-dist/doc/fonts/yhmath/README details="Readame File"
+ texmf-dist/doc/fonts/yhmath/yhcmex10.vpl
+ texmf-dist/doc/fonts/yhmath/yhmath.pdf details="Sample and documentation"
+srcfiles size=30
+ texmf-dist/source/fonts/yhmath/yhmath.drv
+ texmf-dist/source/fonts/yhmath/yhmath.dtx
+ texmf-dist/source/fonts/yhmath/yhmath.ins
+runfiles size=30
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/source/public/yhmath/yrcmex10.mf
texmf-dist/fonts/tfm/public/yhmath/yhcmex10.tfm
@@ -184262,8 +200181,9 @@ runfiles size=32
texmf-dist/tex/latex/yhmath/OMXyhex.fd
texmf-dist/tex/latex/yhmath/yhmath.sty
catalogue-ctan /fonts/yhmath
-catalogue-date 2012-06-08 11:48:26 +0200
+catalogue-date 2014-04-28 17:48:37 +0200
catalogue-license lppl
+catalogue-version 1.1
name york-thesis
category Package
@@ -184353,13 +200273,13 @@ srcfiles size=15
runfiles size=3
texmf-dist/tex/latex/ytableau/ytableau.sty
catalogue-ctan /macros/latex/contrib/ytableau
-catalogue-date 2012-08-16 12:45:33 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.2
catalogue-version 1.3
name zapfchan
category Package
-revision 28614
+revision 31835
catalogue urw-base35
shortdesc URW "Base 35" font pack for LaTeX.
longdesc A set of fonts for use as "drop-in" replacements for Adobe's
@@ -184373,6 +200293,7 @@ longdesc Symbol); - URW Bookman; - URW Chancery L Medium Italic
longdesc (substituting for Adobe's Zapf Chancery); - URW Gothic L Book
longdesc (substituting for Adobe's Avant Garde); and - URW Palladio L
longdesc (substituting for Adobe's Palatino).
+execute addMap uzc.map
runfiles size=59
texmf-dist/dvips/zapfchan/config.uzc
texmf-dist/fonts/afm/adobe/zapfchan/pzcmi8a.afm
@@ -184408,7 +200329,7 @@ catalogue-license gpl
name zapfding
category Package
-revision 28614
+revision 31835
catalogue urw-base35
shortdesc URW "Base 35" font pack for LaTeX.
longdesc A set of fonts for use as "drop-in" replacements for Adobe's
@@ -184422,6 +200343,7 @@ longdesc Symbol); - URW Bookman; - URW Chancery L Medium Italic
longdesc (substituting for Adobe's Zapf Chancery); - URW Gothic L Book
longdesc (substituting for Adobe's Avant Garde); and - URW Palladio L
longdesc (substituting for Adobe's Palatino).
+execute addMap uzd.map
runfiles size=24
texmf-dist/dvips/zapfding/config.uzd
texmf-dist/fonts/afm/adobe/zapfding/pzdr.afm
@@ -189409,7 +205331,7 @@ runfiles size=4937
texmf-dist/tex/latex/zhmetrics/c70zhsong.fd
texmf-dist/tex/latex/zhmetrics/c70zhyou.fd
catalogue-ctan /fonts/psfonts/zhmetrics
-catalogue-date 2012-04-27 17:14:22 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version r206
@@ -189433,7 +205355,7 @@ runfiles size=11
texmf-dist/tex/latex/zhnumber/config/zhnumber-utf8.cfg
texmf-dist/tex/latex/zhnumber/zhnumber.sty
catalogue-ctan /macros/latex/contrib/zhnumber
-catalogue-date 2012-11-24 00:28:04 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
catalogue-version 1.6
@@ -189460,13 +205382,13 @@ runfiles size=18
texmf-dist/tex/xetex/zhspacing/latex/zhfont.sty
texmf-dist/tex/xetex/zhspacing/latex/zhulem.sty
catalogue-ctan /macros/xetex/generic/zhspacing
-catalogue-date 2012-03-14 18:58:06 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
catalogue-version 2012/03/14
name ziffer
category Package
-revision 15878
+revision 32279
shortdesc Conversion of punctuation in maths mode.
longdesc The package modifies the behaviour of characters in maths mode
longdesc so that: '.' is used as a one-thousand separator (as is common
@@ -189483,6 +205405,42 @@ catalogue-date 2012-05-09 18:20:59 +0200
catalogue-license lppl
catalogue-version 2.1
+name zlmtt
+category Package
+revision 32984
+shortdesc Use Latin Modern Typewriter fonts.
+longdesc The package allows selection of Latin Modern Typewriter fonts
+longdesc with scaling and access to all its features. The package
+longdesc requires the mweights package.
+docfiles size=17
+ texmf-dist/doc/fonts/zlmtt/README details="Readme"
+ texmf-dist/doc/fonts/zlmtt/zlmtt-doc.pdf
+ texmf-dist/doc/fonts/zlmtt/zlmtt-doc.tex
+runfiles size=19
+ texmf-dist/tex/latex/zlmtt/il2zlmtt.fd
+ texmf-dist/tex/latex/zlmtt/il2zlmvtt.fd
+ texmf-dist/tex/latex/zlmtt/l7xzlmtt.fd
+ texmf-dist/tex/latex/zlmtt/l7xzlmvtt.fd
+ texmf-dist/tex/latex/zlmtt/ly1zlmtt.fd
+ texmf-dist/tex/latex/zlmtt/ly1zlmvtt.fd
+ texmf-dist/tex/latex/zlmtt/ot1zlmtt.fd
+ texmf-dist/tex/latex/zlmtt/ot1zlmvtt.fd
+ texmf-dist/tex/latex/zlmtt/ot4zlmtt.fd
+ texmf-dist/tex/latex/zlmtt/ot4zlmvtt.fd
+ texmf-dist/tex/latex/zlmtt/qxzlmtt.fd
+ texmf-dist/tex/latex/zlmtt/qxzlmvtt.fd
+ texmf-dist/tex/latex/zlmtt/t1zlmtt.fd
+ texmf-dist/tex/latex/zlmtt/t1zlmvtt.fd
+ texmf-dist/tex/latex/zlmtt/t5zlmtt.fd
+ texmf-dist/tex/latex/zlmtt/t5zlmvtt.fd
+ texmf-dist/tex/latex/zlmtt/ts1zlmtt.fd
+ texmf-dist/tex/latex/zlmtt/ts1zlmvtt.fd
+ texmf-dist/tex/latex/zlmtt/zlmtt.sty
+catalogue-ctan /fonts/zlmtt
+catalogue-date 2014-02-26 23:03:13 +0100
+catalogue-license lppl1.3
+catalogue-version 1.0
+
name zwgetfdate
category Package
revision 15878
@@ -189500,7 +205458,7 @@ docfiles size=68
runfiles size=1
texmf-dist/tex/latex/zwgetfdate/zwgetfdate.sty
catalogue-ctan /macros/latex/contrib/zwgetfdate
-catalogue-date 2012-05-09 18:20:59 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl1.3
name zwpagelayout
@@ -189511,8 +205469,8 @@ longdesc This package was developed as a typographers' toolbox offering
longdesc important basic features for everyday work. It allows setting
longdesc the paper size and the page layout; it can print crop marks;
longdesc and it can reflect pages both horizontally and vertically. The
-longdesc package facilities work with TeX + dvips or (x)dvipdfm(x), and
-longdesc with pdfTeX.
+longdesc package facilities work with TeX (output via dvips or
+longdesc (x)dvipdfm(x)), and with pdfTeX.
docfiles size=204
texmf-dist/doc/latex/zwpagelayout/License.txt
texmf-dist/doc/latex/zwpagelayout/LoremIpsumDolor.tex
@@ -189528,9 +205486,9 @@ docfiles size=204
runfiles size=9
texmf-dist/tex/latex/zwpagelayout/zwpagelayout.sty
catalogue-ctan /macros/latex/contrib/zwpagelayout
-catalogue-date 2013-01-15 09:51:57 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license lppl
-catalogue-version 1.4c
+catalogue-version 1.4d
name zxjafbfont
category Package
@@ -189542,7 +205500,7 @@ docfiles size=2
runfiles size=1
texmf-dist/tex/latex/zxjafbfont/zxjafbfont.sty
catalogue-ctan /language/japanese/zxjafbfont
-catalogue-date 2012-12-21 17:39:14 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license other-free
catalogue-version 0.2
@@ -189558,7 +205516,7 @@ docfiles size=33
runfiles size=3
texmf-dist/tex/latex/zxjafont/zxjafont.sty
catalogue-ctan /language/japanese/zxjafont
-catalogue-date 2013-04-25 17:40:06 +0200
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license other-free
catalogue-version 0.2
@@ -189575,7 +205533,7 @@ docfiles size=47
runfiles size=8
texmf-dist/tex/latex/zxjatype/zxjatype.sty
catalogue-ctan /language/japanese/zxjatype
-catalogue-date 2012-12-21 17:39:14 +0100
+catalogue-date 2014-02-26 23:03:13 +0100
catalogue-license other-free
catalogue-version 0.6