summaryrefslogtreecommitdiff
path: root/systems
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2019-12-14 03:01:43 +0000
committerNorbert Preining <norbert@preining.info>2019-12-14 03:01:43 +0000
commit2c20697e8a5301b61c59d752fd1cfa7499724eec (patch)
treed2475f5c56c14a7c38d26cfd2c5b71d4e0d824e0 /systems
parentfdd3c58e8e5b37dcf9affd49326899988992c074 (diff)
CTAN sync 201912140301
Diffstat (limited to 'systems')
-rw-r--r--systems/texlive/tlnet/tlpkg/TeXLive/TLPOBJ.pm18
-rw-r--r--systems/texlive/tlnet/tlpkg/TeXLive/TLUtils.pm15
-rw-r--r--systems/texlive/tlnet/tlpkg/installer/ctan-mirrors.pl6
-rw-r--r--systems/texlive/tlnet/tlpkg/texlive.tlpdb3830
-rw-r--r--systems/texlive/tlnet/tlpkg/texlive.tlpdb.md52
-rw-r--r--systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha5122
-rw-r--r--systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512.asc14
-rw-r--r--systems/texlive/tlnet/tlpkg/texlive.tlpdb.xzbin2156480 -> 2138088 bytes
-rw-r--r--systems/win32/miktex/tm/packages/files.csv.lzmabin511566 -> 512394 bytes
-rw-r--r--systems/win32/miktex/tm/packages/next/files.csv.lzmabin511962 -> 512206 bytes
-rw-r--r--systems/win32/miktex/tm/packages/next/pr.ini8
-rw-r--r--systems/win32/miktex/tm/packages/pr.ini10
-rw-r--r--systems/win32/w32tex/ChangeLog10
13 files changed, 192 insertions, 3723 deletions
diff --git a/systems/texlive/tlnet/tlpkg/TeXLive/TLPOBJ.pm b/systems/texlive/tlnet/tlpkg/TeXLive/TLPOBJ.pm
index 2ef24d8b70..4cd97fca3f 100644
--- a/systems/texlive/tlnet/tlpkg/TeXLive/TLPOBJ.pm
+++ b/systems/texlive/tlnet/tlpkg/TeXLive/TLPOBJ.pm
@@ -1,4 +1,4 @@
-# $Id: TLPOBJ.pm 53032 2019-12-05 19:15:11Z karl $
+# $Id: TLPOBJ.pm 53112 2019-12-12 23:43:12Z karl $
# TeXLive::TLPOBJ.pm - module for using tlpobj files
# Copyright 2007-2019 Norbert Preining
# This file is licensed under the GNU General Public License version 2
@@ -6,7 +6,7 @@
package TeXLive::TLPOBJ;
-my $svnrev = '$Revision: 53032 $';
+my $svnrev = '$Revision: 53112 $';
my $_modulerevision = ($svnrev =~ m/: ([0-9]+) /) ? $1 : "unknown";
sub module_revision { return $_modulerevision; }
@@ -370,6 +370,7 @@ sub writeout {
}
# writeout all the catalogue keys
foreach my $k (sort keys %{$self->cataloguedata}) {
+ next if $k eq "date";
print $fd "catalogue-$k ", $self->cataloguedata->{$k}, "\n";
}
}
@@ -845,21 +846,10 @@ sub update_from_catalogue {
$tlcname = lc($tlcname);
if (defined($tlc->entries->{$tlcname})) {
my $entry = $tlc->entries->{$tlcname};
- # Record the id of the catalogue entry if it's found due to
- # quest4texlive.
+ # Record the id of the catalogue entry if it's found.
if ($entry->entry->{'id'} ne $tlcname) {
$self->catalogue($entry->entry->{'id'});
}
- if (defined($entry->entry->{'date'})) {
- my $foo = $entry->entry->{'date'};
- $foo =~ s/^.Date: //;
- # trying to extract the interesting part of a subversion date
- # keyword expansion here, e.g.,
- # <dollar>Date: 2007-08-15 19:43:35 +0100 (Wed, 27 Nov 2019) <dollar>
- # ->2007-08-15 19:43:35 +0100
- $foo =~ s/ \(.*\)( *\$ *)$//; # maybe nothing after parens
- $self->cataloguedata->{'date'} = $foo;
- }
if (defined($entry->license)) {
$self->cataloguedata->{'license'} = $entry->license;
}
diff --git a/systems/texlive/tlnet/tlpkg/TeXLive/TLUtils.pm b/systems/texlive/tlnet/tlpkg/TeXLive/TLUtils.pm
index e9c9002f4e..2b9aa1c547 100644
--- a/systems/texlive/tlnet/tlpkg/TeXLive/TLUtils.pm
+++ b/systems/texlive/tlnet/tlpkg/TeXLive/TLUtils.pm
@@ -1,4 +1,4 @@
-# $Id: TLUtils.pm 53076 2019-12-10 06:20:44Z preining $
+# $Id: TLUtils.pm 53111 2019-12-12 23:22:05Z karl $
# TeXLive::TLUtils.pm - the inevitable utilities for TeX Live.
# Copyright 2007-2019 Norbert Preining, Reinhard Kotucha
# This file is licensed under the GNU General Public License version 2
@@ -6,7 +6,7 @@
package TeXLive::TLUtils;
-my $svnrev = '$Revision: 53076 $';
+my $svnrev = '$Revision: 53111 $';
my $_modulerevision = ($svnrev =~ m/: ([0-9]+) /) ? $1 : "unknown";
sub module_revision { return $_modulerevision; }
@@ -3612,15 +3612,20 @@ sub sort_uniq {
=item C<push_uniq(\@list, @new_items)>
-The C<push_uniq> function pushes the last argument @ITEMS to the $LIST
-referenced by the first argument, if they are not already in the list.
+The C<push_uniq> function pushes each element in the last argument
+@ITEMS to the $LIST referenced by the first argument, if it is not
+already in the list.
=cut
sub push_uniq {
my ($l, @new_items) = @_;
for my $e (@new_items) {
- if (! &member($e, @$l)) {
+ # turns out this is one of the most-used functions when updating the
+ # tlpdb, with hundreds of thousands of calls. So let's write it out
+ # to eliminate the sub overhead.
+ #if (! &member($e, @$l)) {
+ if (! scalar grep($_ eq $e, @$l)) {
push (@$l, $e);
}
}
diff --git a/systems/texlive/tlnet/tlpkg/installer/ctan-mirrors.pl b/systems/texlive/tlnet/tlpkg/installer/ctan-mirrors.pl
index 45eab27311..c19ad5408a 100644
--- a/systems/texlive/tlnet/tlpkg/installer/ctan-mirrors.pl
+++ b/systems/texlive/tlnet/tlpkg/installer/ctan-mirrors.pl
@@ -29,9 +29,6 @@ $mirrors = {
'http://ctan.imsc.res.in/' => 1,
'http://mirror.iopb.res.in/tex-archive/' => 1
},
- 'Indonesia' => {
- 'https://mirror.unpad.ac.id/ctan/' => 1
- },
'Iran' => {
'http://ctan.asis.ai/' => 1,
'http://ctan.yazd.ac.ir/' => 1
@@ -173,6 +170,9 @@ $mirrors = {
}
},
'Oceania' => {
+ 'Australia' => {
+ 'http://mirror.aarnet.edu.au/pub/CTAN/' => 1
+ },
'New Zealand' => {
'http://mirror.aut.ac.nz/CTAN/' => 1
}
diff --git a/systems/texlive/tlnet/tlpkg/texlive.tlpdb b/systems/texlive/tlnet/tlpkg/texlive.tlpdb
index 6b1e437971..534358c3ee 100644
--- a/systems/texlive/tlnet/tlpkg/texlive.tlpdb
+++ b/systems/texlive/tlnet/tlpkg/texlive.tlpdb
@@ -26,11 +26,11 @@ depend container_split_src_files/1
depend frozen/0
depend minrelease/2016
depend release/2019
-depend revision/53100
+depend revision/53112
name 00texlive.image
category TLCore
-revision 53100
+revision 53112
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
@@ -1324,6 +1324,7 @@ runfiles size=4984
tlpkg/tlpsrc/documentation.tlpsrc
tlpkg/tlpsrc/doi.tlpsrc
tlpkg/tlpsrc/doipubmed.tlpsrc
+ tlpkg/tlpsrc/domitian.tlpsrc
tlpkg/tlpsrc/dosepsbin.tlpsrc
tlpkg/tlpsrc/dot2texi.tlpsrc
tlpkg/tlpsrc/dotarrow.tlpsrc
@@ -4112,7 +4113,7 @@ depend opt_w32_multi_user:1
name 00texlive.installer
category TLCore
-revision 53093
+revision 53102
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
@@ -5896,7 +5897,6 @@ srcfiles size=6
runfiles size=1
RELOC/tex/latex/12many/12many.sty
catalogue-ctan /macros/latex/contrib/12many
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics maths
catalogue-version 0.3
@@ -5925,7 +5925,6 @@ runfiles size=4
RELOC/tex/generic/2up/2up.tex
catalogue-also twoupltx
catalogue-ctan /macros/generic/2up
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license other-free
catalogue-topics layout
catalogue-version 1.2
@@ -5954,7 +5953,6 @@ runfiles size=330
RELOC/fonts/truetype/public/Asana-Math/ASANA.TTC
catalogue-also stix xits
catalogue-ctan /fonts/Asana-Math
-catalogue-date 2019-04-15 18:54:40 +0200
catalogue-license ofl
catalogue-topics font font-maths font-otf font-ttf
catalogue-version 000.958
@@ -5983,7 +5981,6 @@ runfiles size=1
RELOC/tex/latex/ESIEEcv/ESIEEcv.sty
catalogue-also curve currvita cv europecv vita
catalogue-ctan /macros/latex/contrib/ESIEEcv
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics cv french
@@ -6027,7 +6024,6 @@ runfiles size=4
RELOC/tex/latex/GS1/GS1.sty
RELOC/tex/latex/GS1/rule-D.sty
catalogue-ctan /macros/latex/contrib/gs1
-catalogue-date 2017-07-15 22:08:54 +0200
catalogue-license lppl1.3c
catalogue-topics barcode
catalogue-version 22
@@ -6079,7 +6075,6 @@ runfiles size=57
RELOC/tex/latex/HA-prosper/Styles/Tycja/HAPTycja.sty
catalogue-also powerdot
catalogue-ctan /macros/latex/contrib/ha-prosper
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics presentation
catalogue-version 4.21
@@ -6106,7 +6101,6 @@ srcfiles size=11
runfiles size=2
RELOC/tex/latex/IEEEconf/IEEEconf.cls
catalogue-ctan /macros/latex/contrib/IEEEconf
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics confproc class
catalogue-version 1.4
@@ -6161,7 +6155,6 @@ runfiles size=205
RELOC/tex/latex/IEEEtran/IEEEtrantools.sty
catalogue-contact-home http://www.michaelshell.org/tex/ieeetran/
catalogue-ctan /macros/latex/contrib/IEEEtran
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl1.3
catalogue-topics journalpub class
catalogue-version 1.8b
@@ -6187,7 +6180,6 @@ docfiles size=461
RELOC/doc/latex/MemoirChapStyles/MemoirChapStyles.tex
RELOC/doc/latex/MemoirChapStyles/README details="Readme"
catalogue-ctan /info/latex-samples/MemoirChapStyles
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics use-sample
catalogue-version 1.7e
@@ -6222,7 +6214,6 @@ srcfiles size=19
runfiles size=3
RELOC/tex/latex/SIstyle/sistyle.sty
catalogue-ctan /macros/latex/contrib/SIstyle
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics typesetting scientific-docs
catalogue-version 2.3a
@@ -6256,7 +6247,6 @@ runfiles size=8
RELOC/tex/latex/SIunits/binary.sty
catalogue-also sistyle
catalogue-ctan /macros/latex/contrib/SIunits
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics typesetting scientific-docs
catalogue-version 1.36
@@ -6287,7 +6277,6 @@ srcfiles size=3
runfiles size=1
RELOC/tex/latex/Tabbing/Tabbing.sty
catalogue-ctan /macros/latex/contrib/Tabbing
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1
catalogue-topics alignment macro-supp
@@ -6313,7 +6302,6 @@ docfiles size=242
RELOC/doc/fonts/Type1fonts/fontinstallationguide.pdf details="The document itself"
RELOC/doc/fonts/Type1fonts/fontinstallationguide.tex
catalogue-ctan /info/Type1fonts/fontinstallationguide
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license fdl
catalogue-topics font-doc
catalogue-version 2.14
@@ -6342,7 +6330,6 @@ runfiles size=4
RELOC/tex/latex/a0poster/a0size.sty
catalogue-also sciposter
catalogue-ctan /macros/latex/contrib/a0poster
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics poster
catalogue-version 1.22b
@@ -6375,7 +6362,6 @@ runfiles size=25
texmf-dist/scripts/a2ping/a2ping.pl
catalogue-contact-repository https://github.com/pts/a2ping
catalogue-ctan /graphics/a2ping
-catalogue-date 2019-11-28 19:38:29 +0100
catalogue-license gpl
catalogue-topics graphics-prep
catalogue-version 2.84p
@@ -6544,7 +6530,6 @@ docfiles size=34
runfiles size=1
RELOC/tex/latex/a4wide/a4wide.sty
catalogue-ctan /macros/latex/contrib/a4wide
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1
catalogue-topics geometry
@@ -6564,7 +6549,6 @@ docfiles size=25
runfiles size=1
RELOC/tex/latex/a5comb/a5comb.sty
catalogue-ctan /macros/latex/contrib/a5comb
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics geometry
catalogue-version 4
@@ -6581,7 +6565,6 @@ containerchecksum bb851e6bb3d9c2efd8d9abd32056d0853e320ee7f495b3c595d6a112d5e66b
runfiles size=6
RELOC/bibtex/bst/aaai-named/aaai-named.bst
catalogue-ctan /biblio/bibtex/contrib/misc/aaai-named.bst
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license other-free
catalogue-topics bibtex-sty
@@ -6621,7 +6604,6 @@ runfiles size=64
RELOC/bibtex/bst/aastex/aasjournal.bst
RELOC/tex/latex/aastex/aastex63.cls
catalogue-ctan /macros/latex/contrib/aastex
-catalogue-date 2019-08-07 20:55:03 +0200
catalogue-license lppl1.3
catalogue-topics astronomy journalpub class
catalogue-version 6.3
@@ -6644,7 +6626,6 @@ docfiles size=1
runfiles size=2
RELOC/tex/generic/abbr/abbr.tex
catalogue-ctan /macros/generic/abbr
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics abbrev shortcut
@@ -6680,7 +6661,6 @@ runfiles size=3
RELOC/tex/latex/abc/mup.sty
catalogue-also abc2mtex
catalogue-ctan /macros/latex/contrib/abc
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.2
catalogue-topics music foreign-import
catalogue-version 2.0b
@@ -6705,7 +6685,6 @@ runfiles size=2
RELOC/tex/latex/abnt/abnt.sty
catalogue-also biblatex-abnt abntex2
catalogue-ctan /macros/latex/contrib/abnt
-catalogue-date 2018-11-18 17:03:00 +0100
catalogue-license lppl1.3c
catalogue-topics portuguese-br
@@ -6768,7 +6747,6 @@ catalogue-contact-home http://www.abntex.net.br
catalogue-contact-repository https://github.com/abntex/abntex2
catalogue-contact-support https://github.com/abntex/abntex2/wiki
catalogue-ctan /macros/latex/contrib/abntex2
-catalogue-date 2018-11-25 15:16:24 +0100
catalogue-license lppl1.3
catalogue-topics dissertation class portuguese-br
catalogue-version 1.9.7
@@ -6791,7 +6769,6 @@ docfiles size=51
runfiles size=2
RELOC/tex/latex/abraces/abraces.sty
catalogue-ctan /macros/latex/contrib/abraces
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics maths-symbol
catalogue-version 1.-
@@ -6819,7 +6796,6 @@ srcfiles size=8
runfiles size=2
RELOC/tex/latex/abstract/abstract.sty
catalogue-ctan /macros/latex/contrib/abstract
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics abstract
catalogue-version 1.2a
@@ -6860,7 +6836,6 @@ runfiles size=33
RELOC/bibtex/bst/abstyles/aunsrt.bst
RELOC/tex/generic/abstyles/apreambl.tex
catalogue-ctan /biblio/bibtex/contrib/abstyles
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license other-free
catalogue-topics bibtex-sty
@@ -6904,7 +6879,6 @@ runfiles size=16
RELOC/tex/latex/academicons/tuacademicons.fd
catalogue-contact-repository https://github.com/diogo-fernan/academicons
catalogue-ctan /fonts/academicons
-catalogue-date 2018-06-27 11:07:10 +0200
catalogue-license lppl1.3cofl
catalogue-topics font font-supp-symbol font-symbol font-ttf
catalogue-version 1.8.6-2
@@ -7015,7 +6989,6 @@ runfiles size=204
RELOC/tex/latex/accanthis/accanthis.sty
catalogue-contact-home http://arkandis.tuxfamily.org/adffonts.html
catalogue-ctan /fonts/accanthis
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license gpl2
catalogue-topics font font-serif font-type1 font-otf
@@ -7040,7 +7013,6 @@ runfiles size=2
catalogue-contact-home http://www.texnia.com/
catalogue-contact-repository https://github.com/jbezos
catalogue-ctan /macros/latex/contrib/accents
-catalogue-date 2019-06-26 19:06:30 +0200
catalogue-license mit
catalogue-topics maths
catalogue-version 1.4
@@ -7075,7 +7047,6 @@ catalogue-also accsupp
catalogue-contact-home https://github.com/AndyClifton/accessibility
catalogue-contact-support https://github.com/AndyClifton/accessibility/issues
catalogue-ctan /macros/latex/contrib/accessibility
-catalogue-date 2019-11-02 20:17:34 +0100
catalogue-license lppl1.3c
catalogue-topics accessible pdf-feat
catalogue-version 2.0.3
@@ -7117,7 +7088,6 @@ runfiles size=37
texmf-dist/tex/latex/accfonts/Norman.def
catalogue-also a2ac
catalogue-ctan /fonts/utilities/accfonts
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license gpl
catalogue-topics font-proc omega
catalogue-version 0.25
@@ -7333,7 +7303,6 @@ runfiles size=6
catalogue-contact-bugs https://github.com/ho-tex/accsupp/issues
catalogue-contact-repository https://github.com/ho-tex/accsupp
catalogue-ctan /macros/latex/contrib/accsupp
-catalogue-date 2019-12-05 22:18:32 +0100
catalogue-license lppl1.3c
catalogue-topics accessible pdf-feat
catalogue-version 0.6
@@ -7428,7 +7397,6 @@ runfiles size=90
RELOC/tex/latex/achemso/achemso.sty
RELOC/tex/latex/achemso/natmove.sty
catalogue-ctan /macros/latex/contrib/achemso
-catalogue-date 2019-02-14 15:10:23 +0100
catalogue-license lppl1.3c
catalogue-topics chemistry journalpub bibtex-sty class
catalogue-version 3.12a
@@ -7492,7 +7460,6 @@ catalogue-contact-bugs https://github.com/borisveytsman/acmart/issues
catalogue-contact-development https://github.com/borisveytsman/acmart/pulls
catalogue-contact-repository https://github.com/borisveytsman/acmart/
catalogue-ctan /macros/latex/contrib/acmart
-catalogue-date 2019-10-19 22:59:08 +0200
catalogue-license lppl1.3
catalogue-topics class comp-sci comp-theory engineering journalpub
catalogue-version 1.65
@@ -7532,7 +7499,6 @@ srcfiles size=20
runfiles size=4
RELOC/tex/latex/acmconf/acmconf.cls
catalogue-ctan /macros/latex/contrib/acmconf
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics confproc journalpub class
catalogue-version 1.3
@@ -7568,7 +7534,6 @@ runfiles size=35
catalogue-contact-bugs https://bitbucket.org/cgnieder/acro/issues
catalogue-contact-repository https://bitbucket.org/cgnieder/acro/
catalogue-ctan /macros/latex/contrib/acro
-catalogue-date 2019-10-12 17:03:04 +0200
catalogue-license lppl1.3
catalogue-topics acronym expl3
catalogue-version 2.10c
@@ -7601,7 +7566,6 @@ runfiles size=6
RELOC/tex/latex/acronym/acronym.sty
catalogue-also glossaries
catalogue-ctan /macros/latex/contrib/acronym
-catalogue-date 2019-11-11 11:09:48 +0100
catalogue-license lppl1.3
catalogue-topics acronym
catalogue-version 1.42
@@ -7630,7 +7594,6 @@ runfiles size=1
RELOC/tex/latex/acroterm/acroterm.sty
catalogue-contact-repository http://github.com/nichtich/acroterm/
catalogue-ctan /macros/latex/contrib/acroterm
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl1.3
catalogue-topics acronym glossary
catalogue-version 0.1
@@ -7665,7 +7628,6 @@ srcfiles size=13
runfiles size=4
RELOC/tex/latex/active-conf/active-conf.cls
catalogue-ctan /macros/latex/contrib/conferences/active-conf
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics confproc class
catalogue-version 0.3a
@@ -7696,7 +7658,6 @@ runfiles size=2
catalogue-contact-bugs https://gitlab.com/vigou3/actuarialangle/issues
catalogue-contact-repository https://gitlab.com/vigou3/actuarialangle
catalogue-ctan /macros/latex/contrib/actuarialangle
-catalogue-date 2019-06-13 21:35:31 +0200
catalogue-license lppl1.3c
catalogue-topics graphics-symb
catalogue-version 2.1
@@ -7735,7 +7696,6 @@ catalogue-contact-bugs https://github.com/vigou3/actuarialsymbol/issues
catalogue-contact-home https://vigou3.github.io/actuarialsymbol
catalogue-contact-repository https://github.com/vigou3/actuarialsymbol
catalogue-ctan /macros/latex/contrib/actuarialsymbol
-catalogue-date 2019-06-13 20:55:38 +0200
catalogue-license lppl1.3c
catalogue-topics graphics-symb
catalogue-version 1.1
@@ -7765,7 +7725,6 @@ docfiles size=36
runfiles size=1
RELOC/tex/latex/addfont/addfont.sty
catalogue-ctan /macros/latex/contrib/addfont
-catalogue-date 2018-01-07 11:56:15 +0100
catalogue-license gpl3
catalogue-topics font-use
catalogue-version 1
@@ -7789,7 +7748,6 @@ docfiles size=7
runfiles size=1
RELOC/tex/lualatex/addliga/addliga.sty
catalogue-ctan /macros/luatex/latex/addliga
-catalogue-date 2019-04-30 18:31:30 +0200
catalogue-license pd
catalogue-topics luatex font-supp font-use
catalogue-version 1.0
@@ -7819,7 +7777,6 @@ srcfiles size=4
runfiles size=1
RELOC/tex/latex/addlines/addlines.sty
catalogue-ctan /macros/latex/contrib/addlines
-catalogue-date 2018-12-05 19:44:41 +0100
catalogue-license lppl1.3c
catalogue-topics geometry
catalogue-version 0.3
@@ -7847,7 +7804,6 @@ runfiles size=12
RELOC/bibtex/bst/adfathesis/adfathesis.bst
RELOC/tex/latex/adfathesis/adfathesis.cls
catalogue-ctan /macros/latex/contrib/adfathesis
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics dissertation class
catalogue-version 2.42
@@ -7883,7 +7839,6 @@ runfiles size=17
RELOC/tex/latex/adforn/adforn.sty
RELOC/tex/latex/adforn/uornementsadf.fd
catalogue-ctan /fonts/adforn
-catalogue-date 2019-10-13 19:16:05 +0200
catalogue-license lpplgpl2
catalogue-topics font font-ornmnt font-type1
catalogue-version 1.1b
@@ -7924,7 +7879,6 @@ runfiles size=19
RELOC/tex/latex/adfsymbols/uarrowsadf.fd
RELOC/tex/latex/adfsymbols/ubulletsadf.fd
catalogue-ctan /fonts/adfsymbols
-catalogue-date 2019-10-13 19:43:43 +0200
catalogue-license lpplgpl2
catalogue-topics font font-symbol font-type1 font-supp
catalogue-version 1.2b
@@ -7963,7 +7917,6 @@ runfiles size=5
texmf-dist/tex/support/adhocfilelist/adhocfilelist.RLS
catalogue-contact-support http://www.webdesign-bu.de/uwe_lueck/contact.html
catalogue-ctan /support/adhocfilelist
-catalogue-date 2017-05-05 20:18:45 +0200
catalogue-license lppl
catalogue-topics doc-debug
@@ -8134,7 +8087,6 @@ runfiles size=6
catalogue-contact-bugs https://github.com/LucaCappelletti94/adigraph/issues
catalogue-contact-repository https://github.com/LucaCappelletti94/adigraph
catalogue-ctan /graphics/pgf/contrib/adigraph
-catalogue-date 2019-01-29 19:31:25 +0100
catalogue-license mit
catalogue-topics pgf-tikz diagram
catalogue-version 1.7.1
@@ -8167,7 +8119,6 @@ srcfiles size=6
runfiles size=2
RELOC/tex/latex/adjmulticol/adjmulticol.sty
catalogue-ctan /macros/latex/contrib/adjmulticol
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics multicol layout
catalogue-version 1.1
@@ -8219,7 +8170,6 @@ catalogue-contact-bugs https://bitbucket.org/martin_scharrer/adjustbox/issues
catalogue-contact-home https://bitbucket.org/martin_scharrer/adjustbox
catalogue-contact-repository https://bitbucket.org/martin_scharrer/adjustbox/src
catalogue-ctan /macros/latex/contrib/adjustbox
-catalogue-date 2019-01-04 14:16:03 +0100
catalogue-license lppl1.3
catalogue-topics typesetting box-manip
catalogue-version 1.2
@@ -8484,7 +8434,6 @@ runfiles size=5246
catalogue-also cmap mmap
catalogue-contact-repository https://github.com/adobe-type-tools/
catalogue-ctan /support/adobemapping
-catalogue-date 2019-07-31 08:22:00 +0200
catalogue-license bsd
catalogue-topics font-supp
@@ -8532,7 +8481,6 @@ runfiles size=6
RELOC/tex/latex/adrconv/adrplaner.cfg
RELOC/tex/latex/adrconv/adrsmall.cfg
catalogue-ctan /macros/latex/contrib/adrconv
-catalogue-date 2018-03-04 13:14:32 +0100
catalogue-license lppl1.3
catalogue-topics bibtex-sty biblio
catalogue-version 1.4
@@ -8556,7 +8504,6 @@ docfiles size=100
runfiles size=10
RELOC/tex/latex/adtrees/adtrees.sty
catalogue-ctan /macros/latex/contrib/adtrees
-catalogue-date 2019-07-11 19:30:04 +0200
catalogue-license gpl
catalogue-topics tree linguistic
catalogue-version 1.1
@@ -8582,7 +8529,6 @@ docfiles size=39
runfiles size=2
RELOC/tex/latex/advdate/advdate.sty
catalogue-ctan /macros/latex/contrib/advdate
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics date-time
@@ -8747,7 +8693,6 @@ runfiles size=157
RELOC/tex/latex/ae/t1laett.fd
catalogue-also zefonts aeguill
catalogue-ctan /fonts/ae
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics font font-virtual font-t1enc
catalogue-version 1.4
@@ -8815,7 +8760,6 @@ runfiles size=32
RELOC/tex/latex/aecc/aecc.sty
RELOC/tex/latex/aecc/t1aeccr.fd
catalogue-ctan /fonts/aecc
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics font font-virtual font-t1enc
catalogue-version 1.0
@@ -8844,7 +8788,6 @@ docfiles size=15
runfiles size=2
RELOC/tex/latex/aeguill/aeguill.sty
catalogue-ctan /macros/latex/contrib/aeguill
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics font font-virtual font-t1enc
@@ -9050,7 +8993,6 @@ srcfiles size=9
runfiles size=3
RELOC/tex/latex/afparticle/afparticle.cls
catalogue-ctan /macros/latex/contrib/afparticle
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics journalpub class article-like
catalogue-version 1.3
@@ -9079,7 +9021,6 @@ runfiles size=19
RELOC/tex/latex/afthesis/afthesis.cls
RELOC/tex/latex/afthesis/afthesis.sty
catalogue-ctan /macros/latex/contrib/afthesis
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics dissertation class
catalogue-version 2.7
@@ -9116,7 +9057,6 @@ runfiles size=74
RELOC/tex/latex/aguplus/aguplus.sty
RELOC/tex/latex/aguplus/agupp.sty
catalogue-ctan /macros/latex/contrib/aguplus
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics journalpub
catalogue-version 1.6b
@@ -9174,7 +9114,6 @@ runfiles size=10
RELOC/bibtex/bst/aiaa/aiaa.bst
RELOC/tex/latex/aiaa/aiaa-tc.cls
catalogue-ctan /macros/latex/contrib/aiaa
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics journalpub
catalogue-version 3.6
@@ -9192,7 +9131,6 @@ containerchecksum 7edc0ca36209f18dcca0b794c7ee712f0eba82e3e69b09fd46fdc7ede6bd33
runfiles size=7
RELOC/bibtex/bst/aichej/aichej.bst
catalogue-ctan /biblio/bibtex/contrib/misc/aichej.bst
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics bibtex-sty journalpub
@@ -9208,7 +9146,6 @@ containerchecksum 083a549d425336eceee0ab8e85ef592aa15983e9a4dcf2264d835b5242933f
runfiles size=8
RELOC/bibtex/bst/ajl/ajl.bst
catalogue-ctan /biblio/bibtex/contrib/misc/ajl.bst
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics bibtex-sty
@@ -9259,7 +9196,6 @@ runfiles size=37
RELOC/tex/latex/akktex/akktex.sty
RELOC/tex/latex/akktex/akkwidepage.sty
catalogue-ctan /macros/latex/contrib/akktex
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics class maths
catalogue-version 0.3.2
@@ -9296,7 +9232,6 @@ runfiles size=11
RELOC/tex/latex/akletter/myletter.cls
catalogue-also dinbrief envlab formlett
catalogue-ctan /macros/latex/contrib/akletter
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics letter class
catalogue-version 1.5i
@@ -13877,7 +13812,6 @@ runfiles size=21829
RELOC/tex/latex/alegreya/TS1AlegreyaSans-TOsF.fd
catalogue-contact-home http://www.google.com/fonts
catalogue-ctan /fonts/alegreya
-catalogue-date 2019-10-12 16:37:03 +0200
catalogue-license ofllppl
catalogue-topics font font-body font-serif font-sans font-proportional font-t1enc font-type1 font-otf
@@ -13913,7 +13847,6 @@ docfiles size=21
catalogue-contact-bugs http://lists.tug.org/tex-k
catalogue-contact-repository https://tug.org/svn/texlive/trunk/Build/source/texk/web2c/alephdir
catalogue-contact-support http://lists.tug.org/tex-k
-catalogue-date 2019-01-02 05:38:30 +0100
catalogue-license gpl
catalogue-topics engine omega
@@ -14105,7 +14038,6 @@ runfiles size=5
RELOC/tex/latex/alertmessage/img/alertmessage-warning.png
catalogue-contact-repository https://github.com/pidupuis/latex-alert-message
catalogue-ctan /macros/latex/contrib/alertmessage
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl1.3
catalogue-topics boxing
catalogue-version 1.1
@@ -14136,7 +14068,6 @@ runfiles size=2
RELOC/tex/latex/alg/alg.sty
catalogue-also algorithms
catalogue-ctan /macros/latex/contrib/alg
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics pseudocode
@@ -14173,7 +14104,6 @@ catalogue-contact-bugs https://gitlab.com/frnchfrgg-latex/algobox/issues
catalogue-contact-home https://gitlab.com/frnchfrgg-latex/algobox/wikis/home
catalogue-contact-repository https://gitlab.com/frnchfrgg-latex/algobox
catalogue-ctan /macros/latex/contrib/algobox
-catalogue-date 2019-09-29 19:21:54 +0200
catalogue-license gpl3+
catalogue-topics listing program-doc
catalogue-version 1.3
@@ -14318,7 +14248,6 @@ runfiles size=400
RELOC/tex/latex/algolrevived/algolrevived.fontspec
RELOC/tex/latex/algolrevived/algolrevived.sty
catalogue-ctan /fonts/algolrevived
-catalogue-date 2019-11-12 23:22:29 +0100
catalogue-license ofllppl1.3c
catalogue-topics font font-ttf font-t1enc
catalogue-version 1.041
@@ -14364,7 +14293,6 @@ docfiles size=183
runfiles size=41
RELOC/tex/latex/algorithm2e/algorithm2e.sty
catalogue-ctan /macros/latex/contrib/algorithm2e
-catalogue-date 2017-07-19 09:57:55 +0200
catalogue-license lppl
catalogue-topics pseudocode
catalogue-version 5.2
@@ -14396,7 +14324,6 @@ runfiles size=12
RELOC/tex/latex/algorithmicx/algpascal.sty
RELOC/tex/latex/algorithmicx/algpseudocode.sty
catalogue-ctan /macros/latex/contrib/algorithmicx
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics pseudocode listing
@@ -14429,7 +14356,6 @@ runfiles size=4
RELOC/tex/latex/algorithms/algorithmic.sty
catalogue-also alg
catalogue-ctan /macros/latex/contrib/algorithms
-catalogue-date 2018-10-09 05:55:09 +0200
catalogue-license lgpl2.1
catalogue-topics pseudocode
catalogue-version 0.1
@@ -14458,7 +14384,6 @@ runfiles size=3
catalogue-contact-bugs https://github.com/jandermoreira/algxpar/issues
catalogue-contact-home https://github.com/jandermoreira/algxpar
catalogue-ctan /macros/latex/contrib/algxpar
-catalogue-date 2019-11-11 22:03:14 +0100
catalogue-license lppl1.3
catalogue-topics pseudocode
catalogue-version 0.9
@@ -14485,7 +14410,6 @@ srcfiles size=2
runfiles size=1
RELOC/tex/latex/aligned-overset/aligned-overset.sty
catalogue-ctan /macros/latex/contrib/aligned-overset
-catalogue-date 2018-04-04 16:01:59 +0200
catalogue-license lppl1.3c
catalogue-topics maths
catalogue-version 0.1.0
@@ -14512,7 +14436,6 @@ runfiles size=74
RELOC/fonts/truetype/public/alkalami/Alkalami-Regular.ttf
catalogue-contact-home http://software.sil.org/alkalami/
catalogue-ctan /fonts/alkalami
-catalogue-date 2017-06-07 05:22:03 +0200
catalogue-license ofl
catalogue-topics font-arabic font-ttf
catalogue-version 1.000
@@ -14991,7 +14914,6 @@ runfiles size=2728
catalogue-also runic futhark
catalogue-contact-home http://www.maths.lth.se/~carl/allrunes/
catalogue-ctan /fonts/allrunes
-catalogue-date 2017-10-29 14:09:26 +0100
catalogue-license lppl
catalogue-topics font font-rune font-mf font-type1
catalogue-version 2.1.1
@@ -15110,7 +15032,6 @@ runfiles size=203
RELOC/tex/latex/almendra/almendra.sty
catalogue-contact-home https://fonts.google.com/specimen/Almendra
catalogue-ctan /fonts/almendra
-catalogue-date 2019-10-12 16:45:12 +0200
catalogue-license lpplofl
catalogue-topics font font-serif font-calligraphic font-proportional font-body font-ttf font-type1 font-t1enc
@@ -15165,7 +15086,6 @@ runfiles size=222
RELOC/fonts/opentype/public/almfixed/almfixed.otf
RELOC/fonts/truetype/public/almfixed/almfixed.ttf
catalogue-ctan /fonts/almfixed
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gfl
catalogue-topics font font-otf font-ttf
catalogue-version 0.92
@@ -15196,7 +15116,6 @@ srcfiles size=7
runfiles size=3
RELOC/tex/latex/alnumsec/alnumsec.sty
catalogue-ctan /macros/latex/contrib/alnumsec
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics headings
catalogue-version 0.03
@@ -15256,7 +15175,6 @@ catalogue-contact-home http://uselatex.com/blog/
catalogue-contact-repository http://qa.parsilatex.com/questions
catalogue-contact-support http://qa.parsilatex.com/questions
catalogue-ctan /biblio/bibtex/contrib/alpha-persian
-catalogue-date 2019-03-10 18:21:44 +0100
catalogue-license lppl1.3c
catalogue-topics bibtex-sty persian
catalogue-version 1.3
@@ -15287,7 +15205,6 @@ runfiles size=3
catalogue-contact-bugs https://github.com/ho-tex/alphalph/issues
catalogue-contact-repository https://github.com/ho-tex/alphalph
catalogue-ctan /macros/latex/contrib/alphalph
-catalogue-date 2019-12-10 05:41:15 +0100
catalogue-license lppl1.3
catalogue-topics numbers
catalogue-version 2.6
@@ -15352,7 +15269,6 @@ docfiles size=610
runfiles size=6
RELOC/tex/latex/alterqcm/alterqcm.sty
catalogue-ctan /macros/latex/contrib/alterqcm
-catalogue-date 2019-06-24 18:35:47 +0200
catalogue-license lpplgpl
catalogue-topics exam
catalogue-version 4.1
@@ -15387,7 +15303,6 @@ runfiles size=6
RELOC/tex/latex/altfont/psfont.cfg
RELOC/tex/latex/altfont/psfont.sty
catalogue-ctan /macros/latex/contrib/altfont
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics font-supp
catalogue-version 1.1
@@ -15417,7 +15332,6 @@ runfiles size=18
RELOC/bibtex/bst/ametsoc/ametsoc2014.bst
RELOC/tex/latex/ametsoc/ametsoc.cls
catalogue-ctan /macros/latex/contrib/ametsoc
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics journalpub
catalogue-version 4.3.2
@@ -15459,7 +15373,6 @@ catalogue-contact-home http://amirifont.org
catalogue-contact-repository https://github.com/alif-type/amiri
catalogue-contact-support https://github.com/alif-type/amiri/issues
catalogue-ctan /fonts/amiri
-catalogue-date 2019-09-29 23:15:18 +0200
catalogue-license ofl
catalogue-topics font font-ttf arabic
catalogue-version 0.112
@@ -15489,7 +15402,6 @@ srcfiles size=4
runfiles size=1
RELOC/tex/latex/amsaddr/amsaddr.sty
catalogue-ctan /macros/latex/contrib/amsaddr
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics article-like
catalogue-version 1.1
@@ -15530,7 +15442,6 @@ runfiles size=3
catalogue-also amscd
catalogue-contact-support https://users.aalto.fi/~mvermeer/
catalogue-ctan /macros/latex/contrib/amscdx
-catalogue-date 2019-07-02 15:32:14 +0200
catalogue-license lppl1.3c
catalogue-topics graphics diagram-comm maths
catalogue-version 2.2x
@@ -15597,7 +15508,6 @@ runfiles size=79
catalogue-also amslatex amscls-doc
catalogue-contact-home http://www.ams.org/tex/amslatex.html
catalogue-ctan /macros/latex/required/amscls
-catalogue-date 2017-12-19 13:29:33 +0100
catalogue-license lppl1.3c
catalogue-topics class maths
catalogue-version 2.20.4
@@ -15665,7 +15575,6 @@ docfiles size=993
catalogue-also amscls
catalogue-contact-support mailto:tech-support@ams.org
catalogue-ctan /info/amscls-doc
-catalogue-date 2019-01-24 19:11:47 +0100
catalogue-license lppl1.3c
catalogue-topics docu-pkg maths-doc scientific-docs
@@ -16336,7 +16245,6 @@ runfiles size=1879
RELOC/tex/plain/amsfonts/cyracc.def
catalogue-contact-home http://www.ams.org/tex/amsfonts.html
catalogue-ctan /fonts/amsfonts
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license ofl
catalogue-topics font font-maths font-symbol-maths font-bbd font-type1 font-mf
catalogue-version 3.04
@@ -16366,7 +16274,6 @@ docfiles size=177
RELOC/doc/latex/amslatex-primer/amshelp.tex
RELOC/doc/latex/amslatex-primer/template.tex
catalogue-ctan /info/amslatex/primer
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license lppl
catalogue-topics maths-doc
catalogue-version 2.3
@@ -16405,7 +16312,6 @@ docfiles size=370
RELOC/doc/latex/amsldoc-vn/amsldoc-vi.pdf details="For on-screen viewing" language="vi"
RELOC/doc/latex/amsldoc-vn/amsldoc-vi.tex
catalogue-ctan /info/amslatex/vietnamese
-catalogue-date 2018-10-09 05:54:10 +0200
catalogue-license lppl1.3
catalogue-topics vietnamese-doc maths-doc translation
catalogue-version 2.0
@@ -16484,7 +16390,6 @@ runfiles size=69
catalogue-also nath mathtools
catalogue-contact-home http://www.ams.org/tex/amslatex.html
catalogue-ctan /macros/latex/required/amsmath
-catalogue-date 2019-10-13 16:16:31 +0200
catalogue-license lppl1.3c
catalogue-topics maths
catalogue-version 2019-10-01 PL1
@@ -16505,7 +16410,6 @@ docfiles size=12
RELOC/doc/latex/amsmath-it/amsmath.faq
RELOC/doc/latex/amsmath-it/diffs-m_it.txt
catalogue-ctan /info/translations/amsmath/it
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics docu-pkg italian-doc translation
@@ -16579,7 +16483,6 @@ runfiles size=59
catalogue-also biblatex
catalogue-contact-home http://www.ams.org/tex/amsrefs.html
catalogue-ctan /macros/latex/contrib/amsrefs
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license lppl1.3
catalogue-topics biblio
catalogue-version 2.14
@@ -16641,7 +16544,6 @@ runfiles size=44
catalogue-also joy-of-tex
catalogue-contact-home http://www.ams.org/tex/amstex.html
catalogue-ctan /macros/amstex
-catalogue-date 2019-01-29 20:02:48 +0100
catalogue-license lppl
catalogue-topics maths
@@ -16836,7 +16738,6 @@ runfiles size=34
RELOC/tex/latex/animate/animate.sty
catalogue-contact-repository https://gitlab.com/agrahn/animate
catalogue-ctan /macros/latex/contrib/animate
-catalogue-date 2019-12-03 13:33:30 +0100
catalogue-license lppl
catalogue-topics graphics-motion
@@ -16854,7 +16755,6 @@ runfiles size=6
RELOC/bibtex/bst/annotate/annotate.bst
catalogue-also annotation
catalogue-ctan /biblio/bibtex/contrib/misc/annotate.bst
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license other-free
catalogue-topics bibtex-sty
@@ -16878,7 +16778,6 @@ docfiles size=48
runfiles size=1
RELOC/tex/latex/anonchap/anonchap.sty
catalogue-ctan /macros/latex/contrib/anonchap
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics headings
catalogue-version 1.1a
@@ -16987,7 +16886,6 @@ runfiles size=308
RELOC/tex/latex/anonymouspro/uanonymouspro.fd
catalogue-contact-home http://www.marksimonson.com/fonts/view/anonymous-pro
catalogue-ctan /fonts/anonymouspro
-catalogue-date 2019-07-12 23:17:50 +0200
catalogue-license lppl1.3c
catalogue-topics font font-mono font-ttf font-type1
catalogue-version 2.2
@@ -17014,7 +16912,6 @@ runfiles size=2
RELOC/tex/latex/answers/answers.sty
catalogue-also exams
catalogue-ctan /macros/latex/contrib/answers
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license lppl
catalogue-topics exercise
catalogue-version 2.16
@@ -17065,7 +16962,6 @@ runfiles size=53
RELOC/tex/latex/antiqua/t1uaq.fd
RELOC/tex/latex/antiqua/ts1uaq.fd
catalogue-ctan /fonts/urw/antiqua
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics font font-serif font-type1
catalogue-version 001.003
@@ -17196,7 +17092,6 @@ runfiles size=206
RELOC/tex/lambda/antomega/uni1f00.def
RELOC/tex/lambda/antomega/ut1enc-antomega.def
catalogue-ctan /obsolete/systems/omega/contrib/antomega
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics multilingual omega
catalogue-version 0.8
@@ -17715,7 +17610,6 @@ runfiles size=5261
RELOC/tex/plain/antt/antt-math.tex
catalogue-also anttvf
catalogue-ctan /fonts/antt
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gfsl
catalogue-topics font font-type1 font-otf polish
catalogue-version 2.08
@@ -17736,7 +17630,6 @@ docfiles size=3
RELOC/doc/latex/anufinalexam/ANUfinalexam.tex
RELOC/doc/latex/anufinalexam/README details="Readme"
catalogue-ctan /macros/latex/contrib/anufinalexam
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license gpl
catalogue-topics exam
@@ -17764,7 +17657,6 @@ docfiles size=48
runfiles size=1
RELOC/tex/latex/anyfontsize/anyfontsize.sty
catalogue-ctan /macros/latex/contrib/anyfontsize
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics font-use
@@ -17787,7 +17679,6 @@ docfiles size=13
runfiles size=1
RELOC/tex/latex/anysize/anysize.sty
catalogue-ctan /macros/latex/contrib/anysize
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics geometry
@@ -17817,7 +17708,6 @@ srcfiles size=6
runfiles size=1
RELOC/tex/latex/aobs-tikz/tikzlibraryoverlay-beamer-styles.code.tex
catalogue-ctan /graphics/pgf/contrib/aobs-tikz
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics pgf-tikz presentation
catalogue-version 1.0
@@ -17856,7 +17746,6 @@ runfiles size=21
RELOC/bibtex/bst/aomart/aomplain.bst
RELOC/tex/latex/aomart/aomart.cls
catalogue-ctan /macros/latex/contrib/aomart
-catalogue-date 2017-12-16 21:58:17 +0100
catalogue-license lppl1.3
catalogue-topics journalpub
catalogue-version 1.21
@@ -17898,7 +17787,6 @@ runfiles size=18
catalogue-also mslapa
catalogue-contact-home http://users.uoa.gr/~aprotopapas/CV/apacls.html
catalogue-ctan /macros/latex/contrib/apa
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl
catalogue-topics psychology journalpub
catalogue-version 1.3.4
@@ -17947,7 +17835,6 @@ runfiles size=27
RELOC/tex/latex/apa6/config/APAngerman.txt
RELOC/tex/latex/apa6/config/APAturkish.txt
catalogue-ctan /macros/latex/contrib/apa6
-catalogue-date 2018-09-02 09:12:12 +0200
catalogue-license lppl1.3c
catalogue-topics class apa psychology journalpub
catalogue-version 2.33
@@ -17976,7 +17863,6 @@ srcfiles size=7
runfiles size=2
RELOC/tex/latex/apa6e/apa6e.cls
catalogue-ctan /macros/latex/contrib/apa6e
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license bsd
catalogue-topics apa psychology class journalpub
catalogue-version 0.3
@@ -18028,7 +17914,6 @@ runfiles size=189
RELOC/tex/latex/apacite/spanish.apc
RELOC/tex/latex/apacite/swedish.apc
catalogue-ctan /biblio/bibtex/contrib/apacite
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics psychology journalpub bibtex-sty bibtex-supp
catalogue-version 6.03
@@ -18052,7 +17937,6 @@ runfiles size=7
catalogue-contact-home https://ingram-braun.net/public/programming/tex/apalike-german-bst-bibtex-bibliography-author-date-style/
catalogue-contact-repository https://github.com/CarlOrff/apalike-german
catalogue-ctan /biblio/bibtex/contrib/apalike-german
-catalogue-date 2018-03-17 14:53:38 +0100
catalogue-license lppl1.3c
catalogue-topics bibtex-sty german
@@ -18068,7 +17952,6 @@ containerchecksum ff569f69538cf82afd19d9dd8f798ac36994791d4c5cdaf8998267883432ee
runfiles size=7
RELOC/bibtex/bst/apalike2/apalike2.bst
catalogue-ctan /biblio/bibtex/contrib/apalike2
-catalogue-date 2016-11-03 05:37:55 +0100
catalogue-license knuth
catalogue-topics psychology journalpub bibtex-sty
@@ -18099,7 +17982,6 @@ docfiles size=210
runfiles size=13
RELOC/tex/generic/apnum/apnum.tex
catalogue-ctan /macros/generic/apnum
-catalogue-date 2018-04-22 09:36:46 +0200
catalogue-license pd
catalogue-topics calculation
catalogue-version 1.7
@@ -18134,7 +18016,6 @@ srcfiles size=11
runfiles size=3
RELOC/tex/latex/appendix/appendix.sty
catalogue-ctan /macros/latex/contrib/appendix
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics appendix headings
catalogue-version 1.2b
@@ -18164,7 +18045,6 @@ runfiles size=1
catalogue-contact-bugs https://github.com/jlelong/appendixnumberbeamer/issues
catalogue-contact-home https://github.com/jlelong/appendixnumberbeamer
catalogue-ctan /macros/latex/contrib/beamer-contrib/appendixnumberbeamer
-catalogue-date 2018-01-15 14:36:54 +0100
catalogue-license gpl3
catalogue-topics presentation
catalogue-version 1.2
@@ -18204,7 +18084,6 @@ docfiles size=9693
catalogue-contact-bugs https://framagit.org/unbonpetit/apprendre-a-programmer-en-tex/issues
catalogue-contact-repository https://framagit.org/unbonpetit/apprendre-a-programmer-en-tex
catalogue-ctan /info/apprendre-a-programmer-en-tex
-catalogue-date 2019-04-27 11:27:16 +0200
catalogue-license lppl1.2
catalogue-topics book-src tut-plaintex french-doc documentation
@@ -18251,7 +18130,6 @@ docfiles size=713
RELOC/doc/latex/apprends-latex/typographie.bib
catalogue-contact-home http://www.babafou.eu.org/Apprends_LaTeX/
catalogue-ctan /info/apprends-latex
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl
catalogue-topics french-doc
catalogue-version 4.02
@@ -18282,7 +18160,6 @@ srcfiles size=6
runfiles size=1
RELOC/tex/latex/apptools/apptools.sty
catalogue-ctan /macros/latex/contrib/apptools
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics appendix
catalogue-version 1.0
@@ -18323,7 +18200,6 @@ runfiles size=4
catalogue-contact-bugs https://github.com/PierreSenellart/apxproof/issues
catalogue-contact-repository https://github.com/PierreSenellart/apxproof
catalogue-ctan /macros/latex/contrib/apxproof
-catalogue-date 2019-10-08 10:32:50 +0200
catalogue-license lppl1.3
catalogue-topics proof appendix
catalogue-version 1.2.0
@@ -18558,7 +18434,6 @@ runfiles size=1025
RELOC/tex/latex/arabi/translit.sty
catalogue-also arabtex
catalogue-ctan /language/arabic/arabi
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics arabic multilingual-addon font font-type1
catalogue-version 1.1
@@ -18583,7 +18458,6 @@ runfiles size=5
RELOC/tex/latex/arabi-add/arabi-add.sty
catalogue-also arabi
catalogue-ctan /language/arabic/arabi-add
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license unknown
catalogue-topics arabic
catalogue-version 1.0
@@ -18610,7 +18484,6 @@ runfiles size=1
catalogue-contact-home http://www.texnia.com/
catalogue-contact-repository https://github.com/jbezos
catalogue-ctan /macros/latex/contrib/arabicfront
-catalogue-date 2019-06-26 19:06:30 +0200
catalogue-license mit
catalogue-topics page-nos
catalogue-version 1.1
@@ -18664,7 +18537,6 @@ catalogue-contact-bugs https://gitlab.com/ralessi/arabluatex/issues
catalogue-contact-home http://www.robertalessi.net/arabluatex
catalogue-contact-repository http://git.robertalessi.net/arabluatex
catalogue-ctan /macros/luatex/latex/arabluatex
-catalogue-date 2019-03-24 19:58:51 +0100
catalogue-license gpl3+cc-by-sa-4
catalogue-topics multilingual arabic luatex
catalogue-version 1.17
@@ -18852,7 +18724,6 @@ runfiles size=306
RELOC/tex/latex/arabtex/yiddish.sty
catalogue-contact-home http://baobab.informatik.uni-stuttgart.de/ifi/bs/research/arab_e.html
catalogue-ctan /language/arabic/arabtex
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license lppl
catalogue-topics font arabic font-arabic hebrew font-hebrew font-mf
catalogue-version 3.17
@@ -18979,7 +18850,6 @@ runfiles size=197
catalogue-contact-bugs https://github.com/fc7/arabxetex/issues
catalogue-contact-repository https://github.com/fc7/arabxetex/issues
catalogue-ctan /macros/xetex/latex/arabxetex
-catalogue-date 2018-12-15 06:34:40 +0100
catalogue-license lppl
catalogue-topics multilingual arabic kurdish persian xetex
catalogue-version 1.2.1
@@ -19043,7 +18913,6 @@ runfiles size=78
catalogue-also syriac aramaic
catalogue-contact-home http://heinecke.pagesperso-orange.fr/serto/
catalogue-ctan /language/aramaic/serto
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl1.3
catalogue-topics font font-archaic font-mf font-type1
catalogue-version 1.0
@@ -19203,7 +19072,6 @@ catalogue-contact-bugs https://github.com/cereda/arara/issues
catalogue-contact-repository https://github.com/cereda/arara
catalogue-contact-support https://gitter.im/cereda/arara
catalogue-ctan /support/arara
-catalogue-date 2019-07-15 17:49:44 +0200
catalogue-license bsd
catalogue-topics compilation
catalogue-version 4.0.6
@@ -19394,7 +19262,6 @@ catalogue-contact-bugs https://github.com/LukasCBossert/biblatex-archaeologie/is
catalogue-contact-home http://biblatex-archaeologie.de
catalogue-contact-repository https://github.com/LukasCBossert/biblatex-archaeologie
catalogue-ctan /macros/latex/contrib/biblatex-contrib/archaeologie
-catalogue-date 2019-12-03 10:32:45 +0100
catalogue-license lppl1.3
catalogue-topics humanities biblatex
catalogue-version 2.4.3
@@ -19639,7 +19506,6 @@ runfiles size=271
RELOC/tex/latex/archaic/ugarite.sty
RELOC/tex/latex/archaic/viking.sty
catalogue-ctan /fonts/archaic
-catalogue-date 2017-10-29 14:14:03 +0100
catalogue-license lppl
catalogue-topics font-archaic font-mf
@@ -19668,7 +19534,6 @@ srcfiles size=3
runfiles size=1
RELOC/tex/latex/arcs/arcs.sty
catalogue-ctan /macros/latex/contrib/arcs
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics linguistic
catalogue-version 1
@@ -19797,7 +19662,6 @@ runfiles size=392
RELOC/tex/latex/arev/t1fav.fd
RELOC/tex/latex/arev/uzavm.fd
catalogue-ctan /fonts/arev
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics font font-sans font-maths
@@ -19871,7 +19735,6 @@ runfiles size=1027
RELOC/tex/latex/arimo/TS1Arimo-TLF.fd
RELOC/tex/latex/arimo/arimo.sty
catalogue-ctan /fonts/arimo
-catalogue-date 2017-01-10 05:17:21 +0100
catalogue-license apache2
catalogue-topics font font-type1 font-virtual font-ttf
@@ -19974,7 +19837,6 @@ runfiles size=525
RELOC/tex/plain/armenian/armkb-a8.tex
RELOC/tex/plain/armenian/armkb-u8.tex
catalogue-ctan /language/armenian/armtex
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics armenian format font font-mf font-type1
catalogue-version 3.0-beta3
@@ -19996,7 +19858,6 @@ docfiles size=210
RELOC/doc/generic/around-the-bend/AroundTheBend.tex
RELOC/doc/generic/around-the-bend/README details="Readme"
catalogue-ctan /info/challenges/AroBend
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics exercise
@@ -21588,7 +21449,6 @@ runfiles size=8706
RELOC/fonts/vf/arphic/gkaimp/gkaimp32.vf
catalogue-also cjk-fonts arphic-ttf
catalogue-ctan /fonts/arphic
-catalogue-date 2016-12-11 21:40:56 +0100
catalogue-license other-free
catalogue-topics font font-cjk font-type1
@@ -21626,7 +21486,6 @@ runfiles size=8110
RELOC/fonts/truetype/public/arphic-ttf/gkai00mp.ttf
catalogue-also arphic
catalogue-ctan /fonts/arphic-ttf
-catalogue-date 2016-12-17 05:41:03 +0100
catalogue-license other-free
catalogue-topics font font-cjk font-ttf
@@ -21656,7 +21515,6 @@ srcfiles size=5
runfiles size=1
RELOC/tex/latex/arraycols/arraycols.sty
catalogue-ctan /macros/latex/contrib/arraycols
-catalogue-date 2019-06-26 23:02:26 +0200
catalogue-license lppl1.3
catalogue-topics table alignment alignment-supp
catalogue-version 1.0
@@ -21687,7 +21545,6 @@ runfiles size=4
RELOC/tex/generic/arrayjobx/arrayjob.sty
RELOC/tex/generic/arrayjobx/arrayjobx.sty
catalogue-ctan /macros/generic/arrayjobx
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics macro-supp
catalogue-version 1.04
@@ -21716,7 +21573,6 @@ srcfiles size=10
runfiles size=2
RELOC/tex/latex/arraysort/arraysort.sty
catalogue-ctan /macros/latex/contrib/arraysort
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.2
catalogue-topics macro-supp
catalogue-version 1.0
@@ -21757,7 +21613,6 @@ runfiles size=2
RELOC/tex/latex/arsclassica/arsclassica.sty
catalogue-contact-home http://www.lorenzopantieri.net/LaTeX.html
catalogue-ctan /macros/latex/contrib/arsclassica
-catalogue-date 2017-10-31 18:40:47 +0100
catalogue-license lppl
catalogue-topics dissertation
@@ -21785,7 +21640,6 @@ srcfiles size=34
runfiles size=5
RELOC/tex/latex/articleingud/articleingud.cls
catalogue-ctan /macros/latex/contrib/articleingud
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.2
catalogue-topics spanish journalpub class
catalogue-version 0.3
@@ -21819,7 +21673,6 @@ srcfiles size=63
runfiles size=12
RELOC/tex/latex/arydshln/arydshln.sty
catalogue-ctan /macros/latex/contrib/arydshln
-catalogue-date 2019-02-22 08:07:20 +0100
catalogue-license lppl1
catalogue-topics alignment-supp
catalogue-version 1.76
@@ -21849,7 +21702,6 @@ runfiles size=14
RELOC/tex/latex/asaetr/asaetr.cls
RELOC/tex/latex/asaetr/asaetr.sty
catalogue-ctan /macros/latex/contrib/asaetr
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics journalpub class
catalogue-version 1.0a
@@ -21884,7 +21736,6 @@ runfiles size=20
RELOC/tex/plain/asapsym/asapsym.code.tex
catalogue-contact-repository https://github.com/pdgessler/asapsym
catalogue-ctan /fonts/asapsym
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl1.3
catalogue-topics font-symbol font-otf
catalogue-version 1.0
@@ -21913,7 +21764,6 @@ runfiles size=16
RELOC/bibtex/bst/ascelike/ascelike.bst
RELOC/tex/latex/ascelike/ascelike.cls
catalogue-ctan /macros/latex/contrib/ascelike
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics confproc journalpub class
catalogue-version 2.3
@@ -21933,7 +21783,6 @@ docfiles size=10
RELOC/doc/support/ascii-chart/ascii.pdf details="The chart itself"
RELOC/doc/support/ascii-chart/ascii.tex
catalogue-ctan /info/ascii-chart
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics documentation
@@ -21965,7 +21814,6 @@ runfiles size=17
RELOC/fonts/type1/public/ascii-font/ASCII.pfb
RELOC/tex/latex/ascii-font/ascii.sty
catalogue-ctan /fonts/ascii
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics font font-symbol font-type1
catalogue-version 2.0
@@ -21999,7 +21847,6 @@ srcfiles size=16
runfiles size=3
RELOC/tex/latex/asciilist/asciilist.sty
catalogue-ctan /macros/latex/contrib/asciilist
-catalogue-date 2018-11-03 14:15:54 +0100
catalogue-license lppl1.2
catalogue-topics list list-bull list-descr list-enum list-supp
catalogue-version 2.2b
@@ -22043,7 +21890,6 @@ runfiles size=18
RELOC/tex/latex/ascmac/tascmac.sty
catalogue-contact-repository https://github.com/texjporg/ascmac
catalogue-ctan /macros/latex/contrib/ascmac
-catalogue-date 2018-04-29 07:15:59 +0200
catalogue-license bsd3
catalogue-topics boxing japanese
catalogue-version 2.0h
@@ -22072,7 +21918,6 @@ runfiles size=5
catalogue-contact-bugs https://github.com/ho-tex/askinclude/issues
catalogue-contact-repository https://github.com/ho-tex/askinclude
catalogue-ctan /macros/latex/contrib/askinclude
-catalogue-date 2019-12-11 08:38:34 +0100
catalogue-license lppl1.3
catalogue-topics compilation
catalogue-version 2.6
@@ -22099,7 +21944,6 @@ runfiles size=4
RELOC/tex/latex/askmaps/askmaps.sty
catalogue-also karnaugh
catalogue-ctan /macros/latex/contrib/askmaps
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics engineering maths
catalogue-version 0.1
@@ -22132,7 +21976,6 @@ runfiles size=18
RELOC/bibtex/bst/asmeconf/asmeconf.bst
RELOC/tex/latex/asmeconf/asmeconf.cls
catalogue-ctan /macros/latex/contrib/asmeconf
-catalogue-date 2019-11-07 07:55:08 +0100
catalogue-license mit
catalogue-topics bibtex-sty class confproc engineering scientific-docs
catalogue-version 1.13
@@ -22164,7 +22007,6 @@ runfiles size=16
RELOC/bibtex/bst/asmejour/asmejour.bst
RELOC/tex/latex/asmejour/asmejour.cls
catalogue-ctan /macros/latex/contrib/asmejour
-catalogue-date 2019-11-07 16:28:50 +0100
catalogue-license mit
catalogue-topics class journalpub scientific-docs bibtex-sty engineering
catalogue-version 1.09
@@ -22246,7 +22088,6 @@ runfiles size=82
RELOC/fonts/type1/public/aspectratio/artti10.pfb
RELOC/tex/latex/aspectratio/ar.sty
catalogue-ctan /macros/latex/contrib/aspectratio
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics font font-specialist font-type1 font-mf
catalogue-version 2.0
@@ -22270,7 +22111,6 @@ docfiles size=30
runfiles size=2
RELOC/tex/latex/assignment/assignment.cls
catalogue-ctan /macros/latex/contrib/assignment
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics essay class
@@ -22295,7 +22135,6 @@ runfiles size=5
RELOC/tex/latex/assoccnt/assoccnt.sty
catalogue-also xassoccnt
catalogue-ctan /macros/latex/contrib/assoccnt
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics counter-mgmt macro-supp
catalogue-version 0.8
@@ -22325,7 +22164,6 @@ runfiles size=21
RELOC/fonts/source/public/astro/astrosym.xtr
RELOC/fonts/tfm/public/astro/astrosym.tfm
catalogue-ctan /fonts/astro
-catalogue-date 2017-10-29 14:17:15 +0100
catalogue-license lppl
catalogue-topics astronomy font font-mf
catalogue-version 2.20
@@ -22361,7 +22199,6 @@ runfiles size=3
RELOC/tex/latex/asyfig/asyfig.sty
RELOC/tex/latex/asyfig/asyprocess.sty
catalogue-ctan /macros/latex/contrib/asyfig
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics graphics-use
catalogue-version 0.1c
@@ -22891,7 +22728,6 @@ catalogue-contact-bugs https://github.com/vectorgraphics/asymptote/issues
catalogue-contact-home http://asymptote.sourceforge.net/
catalogue-contact-repository https://github.com/vectorgraphics/asymptote
catalogue-ctan /graphics/asymptote
-catalogue-date 2019-04-03 07:10:07 +0200
catalogue-license lgpl3
catalogue-topics graphics graphics-engn
catalogue-version 2.49
@@ -22934,7 +22770,6 @@ docfiles size=239
RELOC/doc/support/asymptote-by-example-zh-cn/src/xiantu.pdf
RELOC/doc/support/asymptote-by-example-zh-cn/src/xiantu.tex
catalogue-ctan /info/asymptote-by-example-zh-cn
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics chinese-doc
@@ -23018,7 +22853,6 @@ docfiles size=237
RELOC/doc/support/asymptote-faq-zh-cn/src/figures/8-9b.pdf
RELOC/doc/support/asymptote-faq-zh-cn/src/preamble_newnew.tex
catalogue-ctan /info/asymptote-faq-zh-cn
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics chinese-doc
@@ -23081,7 +22915,6 @@ docfiles size=413
RELOC/doc/support/asymptote-manual-zh-cn/src/windingnumber.asy
RELOC/doc/support/asymptote-manual-zh-cn/src/winfonts.tex
catalogue-ctan /info/asymptote-manual-zh-cn
-catalogue-date 2018-10-09 06:05:44 +0200
catalogue-license lgpl
catalogue-topics chinese-doc
@@ -23239,7 +23072,6 @@ srcfiles size=15
runfiles size=3
RELOC/tex/latex/asypictureb/asypictureB.sty
catalogue-ctan /graphics/asypictureb
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics graphics-incl
catalogue-version 0.3
@@ -23272,14 +23104,13 @@ runfiles size=7
catalogue-also everyshi
catalogue-contact-repository https://github.com/ho-tex/atbegshi
catalogue-ctan /macros/latex/contrib/atbegshi
-catalogue-date 2019-12-05 22:38:59 +0100
catalogue-license lppl1.3
catalogue-topics defer-stuff
catalogue-version 1.19
name atenddvi
category Package
-revision 53050
+revision 53107
shortdesc Provides the \AtEndDvi command
relocated 1
longdesc LaTeX offers \AtBeginDvi. This package provides the counterpart
@@ -23288,23 +23119,25 @@ longdesc of the document at the end of the last page. At this point
longdesc \special and \write remain effective, because they are put into
longdesc the last page. This is the main difference from the LaTeX
longdesc command \AtEndDocument.
-containersize 5580
-containerchecksum 5731273187259012e8e2d61a6082d3a1a09660b1b7efe6f52789f22a3652c127d751665aabaa054b6fef330a6d25751bd3cc0418262849297583dded0a8e249a
-doccontainersize 273268
-doccontainerchecksum 647f52bbb9fda19180acee982d7797f581e7fda4bcd24056317f8c675111452a35f5f4682225d1c58ac03c1440ba47bf503cfb9e1db2d930fb2657af4ef6e650
+containersize 1636
+containerchecksum d936d42a3a5e2c4fa0dd9064658b450ea521e054c22ab9a30b3b11e0c093ba9961b3553b686021f0fbeae6eca7e40b2aedf3c42287ecb68a724c499007c552eb
+doccontainersize 273716
+doccontainerchecksum 56f03915ef772c486e44b0b80ceb29543c2c1e2ede3ba5b4028af17f013aec8f3d373912aa7b1ef8b5f4524de5c0946833cbe418932dc3bdfe10a752a18035e1
docfiles size=68
RELOC/doc/latex/atenddvi/README.md
RELOC/doc/latex/atenddvi/atenddvi.pdf details="Package documentation"
-runfiles size=6
- RELOC/tex/latex/atenddvi/atenddvi.dtx
+srccontainersize 5164
+srccontainerchecksum 56abe3e2c0b7896d4b5fa46f70569f5fa0a7f18970f8d4dd6255a3825d5a698467bbb18b84eb3400bc81ce799577f8d58884f7a1c5f38a1bc5ff77a8232d3125
+srcfiles size=5
+ RELOC/source/latex/atenddvi/atenddvi.dtx
+runfiles size=1
RELOC/tex/latex/atenddvi/atenddvi.sty
catalogue-contact-bugs https://github.com/ho-tex/atenddvi/issues
catalogue-contact-repository https://github.com/ho-tex/atenddvi
catalogue-ctan /macros/latex/contrib/atenddvi
-catalogue-date 2019-12-06 05:14:07 +0100
catalogue-license lppl1.3
catalogue-topics defer-stuff
-catalogue-version 1.3
+catalogue-version 1.4
name attachfile
category Package
@@ -23340,7 +23173,6 @@ runfiles size=5
RELOC/tex/latex/attachfile/attachfile.sty
catalogue-also attachfile2
catalogue-ctan /macros/latex/contrib/attachfile
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license lppl1.3
catalogue-topics pdf-feat
catalogue-version 1.9
@@ -23378,7 +23210,6 @@ runfiles size=18
catalogue-contact-bugs https://github.com/ho-tex/attachfile2/issues
catalogue-contact-repository https://github.com/ho-tex/attachfile2
catalogue-ctan /macros/latex/contrib/attachfile2
-catalogue-date 2019-11-26 19:25:41 +0100
catalogue-license lppl1.3c
catalogue-topics pdf-feat
catalogue-version 2.11
@@ -23529,7 +23360,7 @@ binfiles arch=x86_64-solaris size=1
name atveryend
category Package
-revision 53049
+revision 53108
shortdesc Hooks at the very end of a document
relocated 1
longdesc This LaTeX packages provides two hooks for \end{document} that
@@ -23538,23 +23369,25 @@ longdesc \AfterLastShipout can be used for code that is to be executed
longdesc right after the last \clearpage before the `.aux' file is
longdesc closed. \AtVeryEndDocument is used for code after closing and
longdesc final reading of the `.aux' file.
-containersize 9128
-containerchecksum 64a2c82aa8650dad27cdd44f21782da7c70ab4215ba120ce1fd1219c1df577111ed2b91284c6421ab3e0f2abcc28416bd95d053b27778502bdb4620daf38644f
-doccontainersize 376504
-doccontainerchecksum 39586fcfeef23b1c77146ba41832ad788a1d04ba5c94f01a21c21c5de311bcd562c99bd27eeb0e7556cac31ad6c19f89c01381b5ba6ad4ed2aa68857d1dabcbe
+containersize 3908
+containerchecksum 2a546be6d2109de9db60e94bea3a63a3c7af8ae892c8540a1513fbe4bfa505dcbdde9913b7a4449727df0ccf6957f8010c5b76abd8d6310c118b269bdc7334e4
+doccontainersize 376388
+doccontainerchecksum 5c5948ab7f0ca213bb5fe3ae056cddd392461911e2af7dfff133253f6aae970d525fc752f154921de2186c8a443fa4f90b18d23896a016ebc9ea177d6826613b
docfiles size=95
RELOC/doc/latex/atveryend/README.md details="README"
RELOC/doc/latex/atveryend/atveryend.pdf details="Package documentation"
-runfiles size=15
- RELOC/tex/latex/atveryend/atveryend.dtx
+srccontainersize 8600
+srccontainerchecksum 1ec0c4752df403e47c4f8d4186167ccb59d2269012d904e9de1ec54acacbdb84b571f5bd1e6b645f7f86972178db2793853701cfa180b66ae7edc1d1488958b2
+srcfiles size=10
+ RELOC/source/latex/atveryend/atveryend.dtx
+runfiles size=5
RELOC/tex/latex/atveryend/atveryend.sty
catalogue-contact-bugs https://github.com/ho-tex/atveryend/issues
catalogue-contact-repository https://github.com/ho-tex/atveryend
catalogue-ctan /macros/latex/contrib/atveryend
-catalogue-date 2019-12-05 23:08:18 +0100
catalogue-license lppl1.3
catalogue-topics defer-stuff
-catalogue-version 1.10
+catalogue-version 1.11
name aucklandthesis
category Package
@@ -23576,7 +23409,6 @@ docfiles size=4
runfiles size=3
RELOC/tex/latex/aucklandthesis/aucklandthesis.cls
catalogue-ctan /macros/latex/contrib/aucklandthesis
-catalogue-date 2018-01-07 14:49:11 +0100
catalogue-license lppl1.3
catalogue-topics dissertation class
@@ -23615,7 +23447,6 @@ runfiles size=30
RELOC/tex/latex/augie/ts1augie.fd
catalogue-also twcal
catalogue-ctan /fonts/augie
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics font font-calligraphic font-type1
@@ -23664,7 +23495,6 @@ runfiles size=65
RELOC/tex/latex/auncial-new/auncial.sty
RELOC/tex/latex/auncial-new/b1auncl.fd
catalogue-ctan /fonts/auncial-new
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics font font-bookhand font-type1
catalogue-version 2.0
@@ -23770,7 +23600,6 @@ runfiles size=779
RELOC/tex/latex/aurical/T1LukasSvatba.fd
RELOC/tex/latex/aurical/aurical.sty
catalogue-ctan /fonts/aurical
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics font font-calligraphic font-type1
catalogue-version 1.5
@@ -23794,7 +23623,6 @@ docfiles size=2
runfiles size=14
RELOC/tex/latex/aurl/aurl.sty
catalogue-ctan /macros/latex/contrib/aurl
-catalogue-date 2016-08-16 04:47:15 +0200
catalogue-license pd
catalogue-topics hyper
@@ -23817,7 +23645,6 @@ runfiles size=1
RELOC/tex/latex/authoraftertitle/authoraftertitle.sty
catalogue-also titling
catalogue-ctan /macros/latex/contrib/authoraftertitle
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics macro-supp
catalogue-version 0.9
@@ -23876,7 +23703,6 @@ catalogue-contact-bugs https://github.com/adbrucker/authorarchive/issues
catalogue-contact-home https://git.logicalhacking.com/adbrucker/authorarchive
catalogue-contact-repository https://github.com/adbrucker/authorarchive
catalogue-ctan /macros/latex/contrib/authorarchive
-catalogue-date 2019-06-23 20:20:55 +0200
catalogue-license lppl1.3cbsd2
catalogue-topics archival journalpub
catalogue-version 1.1.1
@@ -23912,7 +23738,6 @@ runfiles size=33
RELOC/tex/latex/authordate/authordate1-4.sty
catalogue-also natbib
catalogue-ctan /biblio/bibtex/contrib/authordate
-catalogue-date 2019-10-22 18:11:50 +0200
catalogue-license knuth
catalogue-topics bibtex-sty
@@ -23942,7 +23767,6 @@ runfiles size=7
texmf-dist/scripts/authorindex/authorindex
texmf-dist/tex/latex/authorindex/authorindex.sty
catalogue-ctan /indexing/authorindex
-catalogue-date 2019-07-27 18:23:09 +0200
catalogue-license lppl
catalogue-topics index cite-supp
@@ -24125,7 +23949,6 @@ srcfiles size=7
runfiles size=2
RELOC/tex/latex/auto-pst-pdf/auto-pst-pdf.sty
catalogue-ctan /macros/latex/contrib/auto-pst-pdf
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics graphics-epspdf
catalogue-version 0.6
@@ -24152,7 +23975,6 @@ docfiles size=20
runfiles size=2
RELOC/tex/latex/auto-pst-pdf-lua/auto-pst-pdf-lua.sty
catalogue-ctan /macros/latex/contrib/auto-pst-pdf-lua
-catalogue-date 2018-12-09 17:51:00 +0100
catalogue-license lppl1.3c
catalogue-topics graphics-epspdf
catalogue-version 0.03
@@ -24178,7 +24000,6 @@ runfiles size=9
catalogue-contact-bugs https://framagit.org/unbonpetit/autoaligne/issues
catalogue-contact-repository https://framagit.org/unbonpetit/autoaligne/tree/master
catalogue-ctan /macros/generic/autoaligne
-catalogue-date 2018-11-05 22:05:58 +0100
catalogue-license lppl1.3c
catalogue-topics maths alignment alignment-supp
catalogue-version 1.4
@@ -24214,7 +24035,6 @@ runfiles size=3
catalogue-also pictex
catalogue-contact-support http://www.webdesign-bu.de/uwe_lueck/contact.html
catalogue-ctan /graphics/pictex/addon/autoarea
-catalogue-date 2017-05-06 09:18:45 +0200
catalogue-license lppl
catalogue-topics graphics-in-tex
catalogue-version 0.3a
@@ -24245,7 +24065,6 @@ srcfiles size=10
runfiles size=3
RELOC/tex/latex/autobreak/autobreak.sty
catalogue-ctan /macros/latex/contrib/autobreak
-catalogue-date 2017-02-25 06:12:27 +0100
catalogue-license lppl1.3
catalogue-topics maths maths-theorem
catalogue-version 0.3
@@ -24273,7 +24092,6 @@ docfiles size=26
runfiles size=7
RELOC/metapost/automata/automata.mp
catalogue-ctan /graphics/metapost/contrib/macros/automata
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics automata
catalogue-version 0.3
@@ -24304,7 +24122,6 @@ srcfiles size=18
runfiles size=3
RELOC/tex/latex/autonum/autonum.sty
catalogue-ctan /macros/latex/contrib/autonum
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics maths label-ref
catalogue-version 0.3.11
@@ -24333,7 +24150,6 @@ runfiles size=5
RELOC/tex/latex/autopdf/autopdf.sty
catalogue-also epstopdf auto-pst-pdf
catalogue-ctan /macros/latex/contrib/autopdf
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license lppl1.2
catalogue-topics graphics-epspdf callback
catalogue-version 1.1
@@ -24376,7 +24192,6 @@ docfiles size=106
texmf-dist/doc/man/man1/tex2aspc.man1.pdf
catalogue-contact-support https://tug.org/mailman/listinfo/tex-music
catalogue-ctan /support/autosp
-catalogue-date 2019-08-28 21:55:31 +0200
catalogue-license gpl2+
catalogue-topics music
@@ -24724,7 +24539,6 @@ runfiles size=392
RELOC/tex/latex/avantgar/ts1uag.fd
catalogue-also tex-gyre
catalogue-ctan /fonts/urw/base35
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics font font-type1 font-collection
@@ -24777,7 +24591,6 @@ runfiles size=27
RELOC/tex/latex/avremu/avremu.sty
catalogue-contact-repository https://gitlab.brokenpipe.de/stettberger/avremu
catalogue-ctan /macros/latex/contrib/avremu
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl1.3
catalogue-topics emulation
catalogue-version 0.1
@@ -24806,7 +24619,6 @@ runfiles size=2
catalogue-contact-home https://git.deparis.io/latex-awesomebox/about/
catalogue-contact-repository https://git.deparis.io/latex-awesomebox/
catalogue-ctan /graphics/awesomebox
-catalogue-date 2019-07-29 21:17:07 +0200
catalogue-license other-free
catalogue-topics boxing
catalogue-version 0.6
@@ -24858,7 +24670,6 @@ srcfiles size=76
runfiles size=34
texmf-dist/tex/latex/axodraw2/axodraw2.sty
catalogue-ctan /graphics/axodraw2
-catalogue-date 2019-09-06 08:17:06 +0200
catalogue-license gpl3
catalogue-topics physics graphics-in-tex
catalogue-version 2.1.1b
@@ -25032,7 +24843,6 @@ runfiles size=7
RELOC/tex/latex/b1encoding/b1cmr.fd
RELOC/tex/latex/b1encoding/b1enc.def
catalogue-ctan /macros/latex/contrib/b1encoding
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics fontenc
catalogue-version 1.0
@@ -25719,7 +25529,6 @@ catalogue-also polyglossia
catalogue-contact-bugs https://github.com/latex3/babel/issues
catalogue-contact-repository https://github.com/latex3/babel
catalogue-ctan /macros/latex/required/babel/base
-catalogue-date 2019-12-09 09:03:48 +0100
catalogue-license lppl1.3
catalogue-topics multilingual
catalogue-version 3.37
@@ -25745,7 +25554,6 @@ srcfiles size=5
runfiles size=2
RELOC/tex/generic/babel-albanian/albanian.ldf
catalogue-ctan /macros/latex/contrib/babel-contrib/albanian
-catalogue-date 2018-01-13 10:24:37 +0100
catalogue-license lppl
catalogue-topics albanian
catalogue-version 1.0c
@@ -25777,7 +25585,6 @@ runfiles size=2
RELOC/tex/generic/babel-azerbaijani/azerbaijani.ldf
catalogue-contact-bugs http://www.texnia.com/contact.html
catalogue-ctan /macros/latex/contrib/babel-contrib/azerbaijani
-catalogue-date 2017-06-05 06:44:00 +0200
catalogue-license lppl1.3
catalogue-topics azerbaijani multilingual-addon
catalogue-version 1.0a
@@ -25802,7 +25609,6 @@ srcfiles size=6
runfiles size=2
RELOC/tex/generic/babel-basque/basque.ldf
catalogue-ctan /macros/latex/contrib/babel-contrib/basque
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics basque multilingual-addon
catalogue-version 1.0f
@@ -25831,7 +25637,6 @@ runfiles size=6
catalogue-contact-bugs https://github.com/andrewshadura/babel-belarusian/issues
catalogue-contact-repository https://github.com/andrewshadura/babel-belarusian
catalogue-ctan /macros/latex/contrib/babel-contrib/belarusian
-catalogue-date 2018-10-09 18:40:30 +0200
catalogue-license lppl1.3c
catalogue-topics multilingual-addon belarusian
catalogue-version 1.5
@@ -25858,7 +25663,6 @@ srcfiles size=4
runfiles size=1
RELOC/tex/generic/babel-bosnian/bosnian.ldf
catalogue-ctan /macros/latex/contrib/babel-contrib/bosnian
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics bosnian multilingual-addon
catalogue-version 1.1
@@ -25886,7 +25690,6 @@ srcfiles size=5
runfiles size=2
RELOC/tex/generic/babel-breton/breton.ldf
catalogue-ctan /macros/latex/contrib/babel-contrib/breton
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics breton multilingual-addon
catalogue-version 1.0h
@@ -25913,7 +25716,6 @@ srcfiles size=20
runfiles size=6
RELOC/tex/generic/babel-bulgarian/bulgarian.ldf
catalogue-ctan /macros/latex/contrib/babel-contrib/bulgarian
-catalogue-date 2018-01-13 10:24:37 +0100
catalogue-license lppl1.3
catalogue-topics bulgarian multilingual-addon
catalogue-version 1.2g
@@ -25940,7 +25742,6 @@ srcfiles size=10
runfiles size=3
RELOC/tex/generic/babel-catalan/catalan.ldf
catalogue-ctan /macros/latex/contrib/babel-contrib/catalan
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics catalan multilingual-addon
catalogue-version 2.2p
@@ -25967,7 +25768,6 @@ srcfiles size=5
runfiles size=1
RELOC/tex/generic/babel-croatian/croatian.ldf
catalogue-ctan /macros/latex/contrib/babel-contrib/croatian
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics croatian multilingual-addon
catalogue-version 1.3l
@@ -25994,7 +25794,6 @@ srcfiles size=12
runfiles size=4
RELOC/tex/generic/babel-czech/czech.ldf
catalogue-ctan /macros/latex/contrib/babel-contrib/czech
-catalogue-date 2018-01-13 10:24:37 +0100
catalogue-license lppl1.3
catalogue-topics czech
catalogue-version 3.1a
@@ -26022,7 +25821,6 @@ srcfiles size=6
runfiles size=2
RELOC/tex/generic/babel-danish/danish.ldf
catalogue-ctan /macros/latex/contrib/babel-contrib/danish
-catalogue-date 2018-01-13 10:24:37 +0100
catalogue-license lppl1.3
catalogue-topics danish
catalogue-version 1.3r
@@ -26050,7 +25848,6 @@ srcfiles size=8
runfiles size=2
RELOC/tex/generic/babel-dutch/dutch.ldf
catalogue-ctan /macros/latex/contrib/babel-contrib/dutch
-catalogue-date 2018-01-13 10:24:37 +0100
catalogue-license lppl1.3
catalogue-topics dutch
catalogue-version 3.8i
@@ -26086,7 +25883,6 @@ runfiles size=9
RELOC/tex/generic/babel-english/english.ldf
RELOC/tex/generic/babel-english/newzealand.ldf
catalogue-ctan /macros/latex/contrib/babel-contrib/english
-catalogue-date 2017-06-07 05:21:27 +0200
catalogue-license lppl1.3
catalogue-topics english multilingual-addon
catalogue-version 3.3r
@@ -26113,7 +25909,6 @@ srcfiles size=6
runfiles size=2
RELOC/tex/generic/babel-esperanto/esperanto.ldf
catalogue-ctan /macros/latex/contrib/babel-contrib/esperanto
-catalogue-date 2018-01-13 10:24:37 +0100
catalogue-license lppl1.3
catalogue-topics esperanto
catalogue-version 1.4t
@@ -26141,7 +25936,6 @@ srcfiles size=8
runfiles size=2
RELOC/tex/generic/babel-estonian/estonian.ldf
catalogue-ctan /macros/latex/contrib/babel-contrib/estonian
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics estonian
catalogue-version 1.1a
@@ -26167,7 +25961,6 @@ srcfiles size=6
runfiles size=2
RELOC/tex/generic/babel-finnish/finnish.ldf
catalogue-ctan /macros/latex/contrib/babel-contrib/finnish
-catalogue-date 2018-01-13 10:24:37 +0100
catalogue-license lppl1.3
catalogue-topics multilingual-addon
catalogue-version 1.3q
@@ -26203,7 +25996,6 @@ runfiles size=24
RELOC/tex/generic/babel-french/frenchb.lua
catalogue-contact-home http://daniel.flipo.free.fr/babel-french
catalogue-ctan /macros/latex/contrib/babel-contrib/french
-catalogue-date 2019-09-08 19:47:05 +0200
catalogue-license lppl1.3
catalogue-topics french multilingual-addon
catalogue-version 3.5f
@@ -26229,7 +26021,6 @@ srcfiles size=3
runfiles size=1
RELOC/tex/generic/babel-friulan/friulan.ldf
catalogue-ctan /macros/latex/contrib/babel-contrib/friulan
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics multilingual-addon
catalogue-version 1.3
@@ -26257,7 +26048,6 @@ srcfiles size=22
runfiles size=7
RELOC/tex/generic/babel-galician/galician.ldf
catalogue-ctan /macros/latex/contrib/babel-contrib/galician
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics multilingual-addon
catalogue-version 4.3c
@@ -26282,7 +26072,6 @@ runfiles size=6
RELOC/tex/generic/babel-georgian/georgiancaps.tex
catalogue-contact-home http://tex.tsu.ge
catalogue-ctan /macros/latex/contrib/babel-contrib/georgian
-catalogue-date 2017-11-21 00:20:29 +0100
catalogue-license lppl1.3
catalogue-topics georgian multilingual-addon
catalogue-version 2.2
@@ -26323,7 +26112,6 @@ runfiles size=11
RELOC/tex/generic/babel-german/swissgerman.ldf
catalogue-contact-repository https://github.com/jspitz/babel-german
catalogue-ctan /macros/latex/contrib/babel-contrib/german
-catalogue-date 2018-12-08 11:36:53 +0100
catalogue-license lppl1.3
catalogue-topics german multilingual-addon
catalogue-version 2.11
@@ -26367,7 +26155,6 @@ runfiles size=7
RELOC/tex/generic/babel-greek/greek.ldf
RELOC/tex/generic/babel-greek/grmath.sty
catalogue-ctan /macros/latex/contrib/babel-contrib/greek
-catalogue-date 2019-07-12 06:13:54 +0200
catalogue-license lppl1.3
catalogue-topics greek multilingual-addon
catalogue-version 1.9h
@@ -26435,7 +26222,6 @@ runfiles size=53
RELOC/tex/generic/babel-hebrew/rlbabel.def
RELOC/tex/generic/babel-hebrew/si960.def
catalogue-ctan /macros/latex/contrib/babel-contrib/hebrew
-catalogue-date 2018-01-13 10:24:37 +0100
catalogue-license lppl1.3
catalogue-topics hebrew
catalogue-version 2.3h
@@ -26457,7 +26243,6 @@ runfiles size=62
RELOC/tex/generic/babel-hungarian/magyar.ldf
catalogue-contact-home http://www.math.bme.hu/latex/
catalogue-ctan /macros/latex/contrib/babel-contrib/hungarian
-catalogue-date 2019-01-14 17:57:57 +0100
catalogue-license lppl
catalogue-topics multilingual-addon hungarian
catalogue-version 1.5c
@@ -26485,7 +26270,6 @@ srcfiles size=10
runfiles size=3
RELOC/tex/generic/babel-icelandic/icelandic.ldf
catalogue-ctan /macros/latex/contrib/babel-contrib/icelandic
-catalogue-date 2019-07-04 17:26:05 +0200
catalogue-license lppl1.3
catalogue-topics icelandic
catalogue-version 1.3
@@ -26514,7 +26298,6 @@ runfiles size=5
RELOC/tex/generic/babel-indonesian/indon.ldf
RELOC/tex/generic/babel-indonesian/indonesian.ldf
catalogue-ctan /macros/latex/contrib/babel-contrib/indonesian
-catalogue-date 2018-01-13 10:17:26 +0100
catalogue-license lppl1.3
catalogue-topics bahasa-indonesia+malaysia multilingual
catalogue-version 1.0m
@@ -26544,7 +26327,6 @@ srcfiles size=4
runfiles size=1
RELOC/tex/generic/babel-interlingua/interlingua.ldf
catalogue-ctan /macros/latex/contrib/babel-contrib/interlingua
-catalogue-date 2018-01-13 10:24:37 +0100
catalogue-license lppl1.3
catalogue-topics interlingua
catalogue-version 1.6
@@ -26571,7 +26353,6 @@ srcfiles size=4
runfiles size=1
RELOC/tex/generic/babel-irish/irish.ldf
catalogue-ctan /macros/latex/contrib/babel-contrib/irish
-catalogue-date 2018-01-13 10:24:37 +0100
catalogue-license lppl1.3
catalogue-topics irish-gaelic
catalogue-version 1.0h
@@ -26596,7 +26377,6 @@ srcfiles size=18
runfiles size=3
RELOC/tex/generic/babel-italian/italian.ldf
catalogue-ctan /macros/latex/contrib/babel-contrib/italian
-catalogue-date 2019-12-04 21:20:16 +0100
catalogue-license lppl1.3c
catalogue-topics italian multilingual-addon
catalogue-version 1.4.03
@@ -26629,7 +26409,6 @@ runfiles size=3
RELOC/tex/generic/babel-japanese/japanese.ldf
catalogue-contact-repository https://github.com/texjporg/babel-japanese
catalogue-ctan /macros/latex/contrib/babel-contrib/japanese
-catalogue-date 2019-04-03 17:03:05 +0200
catalogue-license lppl1.3
catalogue-topics japanese multilingual-addon
catalogue-version 2.2
@@ -26660,7 +26439,6 @@ srcfiles size=6
runfiles size=2
RELOC/tex/generic/babel-kurmanji/kurmanji.ldf
catalogue-ctan /macros/latex/contrib/babel-contrib/kurmanji
-catalogue-date 2018-04-25 12:44:05 +0200
catalogue-license lppl1.3
catalogue-topics kurmanji kurdish multilingual-addon
catalogue-version 1.1
@@ -26689,7 +26467,6 @@ srcfiles size=11
runfiles size=2
RELOC/tex/generic/babel-latin/latin.ldf
catalogue-ctan /macros/latex/contrib/babel-contrib/latin
-catalogue-date 2018-01-13 10:24:37 +0100
catalogue-license lppl1
catalogue-topics latin multilingual-addon
catalogue-version 3.5
@@ -26716,7 +26493,6 @@ srcfiles size=6
runfiles size=3
RELOC/tex/generic/babel-latvian/latvian.ldf
catalogue-ctan /macros/latex/contrib/babel-contrib/latvian
-catalogue-date 2018-02-19 17:17:15 +0100
catalogue-license lppl1.3
catalogue-topics latvian multilingual-addon
catalogue-version 2.0b
@@ -26743,7 +26519,6 @@ srcfiles size=11
runfiles size=4
RELOC/tex/generic/babel-macedonian/macedonian.ldf
catalogue-ctan /macros/latex/contrib/babel-contrib/macedonian
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics macedonian multilingual-addon
@@ -26771,7 +26546,6 @@ runfiles size=5
RELOC/tex/generic/babel-malay/melayu.ldf
RELOC/tex/generic/babel-malay/meyalu.ldf
catalogue-ctan /macros/latex/contrib/babel-contrib/malay
-catalogue-date 2018-01-13 10:17:26 +0100
catalogue-license lppl1.3
catalogue-topics bahasa-indonesia+malaysia multilingual
catalogue-version 1.0m
@@ -26798,7 +26572,6 @@ srcfiles size=7
runfiles size=2
RELOC/tex/generic/babel-norsk/norsk.ldf
catalogue-ctan /macros/latex/contrib/babel-contrib/norsk
-catalogue-date 2018-01-13 10:24:37 +0100
catalogue-license lppl1.3
catalogue-topics norsk multilingual-addon
catalogue-version 2.0i
@@ -26823,7 +26596,6 @@ srcfiles size=8
runfiles size=2
RELOC/tex/generic/babel-occitan/occitan.ldf
catalogue-ctan /macros/latex/contrib/babel-contrib/occitan
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics multilingual-addon occitan
catalogue-version 0.2
@@ -26849,7 +26621,6 @@ srcfiles size=3
runfiles size=1
RELOC/tex/generic/babel-piedmontese/piedmontese.ldf
catalogue-ctan /macros/latex/contrib/babel-contrib/piedmontese
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics piedmontese multilingual-addon
catalogue-version 1.0
@@ -26876,7 +26647,6 @@ srcfiles size=8
runfiles size=3
RELOC/tex/generic/babel-polish/polish.ldf
catalogue-ctan /macros/latex/contrib/babel-contrib/polish
-catalogue-date 2018-01-13 10:24:37 +0100
catalogue-license lppl1.3
catalogue-topics polish
catalogue-version 1.2l
@@ -26904,7 +26674,6 @@ srcfiles size=7
runfiles size=2
RELOC/tex/generic/babel-portuges/portuges.ldf
catalogue-ctan /macros/latex/contrib/babel-contrib/portuges
-catalogue-date 2018-01-13 10:24:37 +0100
catalogue-license lppl1.3
catalogue-topics portuguese portuguese-br
catalogue-version 1.2q
@@ -26931,7 +26700,6 @@ srcfiles size=5
runfiles size=1
RELOC/tex/generic/babel-romanian/romanian.ldf
catalogue-ctan /macros/latex/contrib/babel-contrib/romanian
-catalogue-date 2018-01-13 10:24:37 +0100
catalogue-license lppl1.3
catalogue-topics romanian
catalogue-version 1.2l
@@ -26956,7 +26724,6 @@ srcfiles size=2
runfiles size=1
RELOC/tex/generic/babel-romansh/romansh.ldf
catalogue-ctan /macros/latex/contrib/babel-contrib/romansh
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics multilingual-addon
@@ -26986,7 +26753,6 @@ runfiles size=7
catalogue-contact-bugs https://github.com/kia999/babel-russian/issues
catalogue-contact-home https://github.com/kia999/babel-russian
catalogue-ctan /macros/latex/contrib/babel-contrib/russian
-catalogue-date 2017-08-10 18:00:28 +0200
catalogue-license lppl1.3
catalogue-topics multilingual-addon russian
catalogue-version 1.3j
@@ -27017,7 +26783,6 @@ srcfiles size=4
runfiles size=1
RELOC/tex/generic/babel-samin/samin.ldf
catalogue-ctan /macros/latex/contrib/babel-contrib/samin
-catalogue-date 2018-01-13 10:24:37 +0100
catalogue-license lppl1.3
catalogue-topics samin
catalogue-version 1.0c
@@ -27044,7 +26809,6 @@ srcfiles size=4
runfiles size=1
RELOC/tex/generic/babel-scottish/scottish.ldf
catalogue-ctan /macros/latex/contrib/babel-contrib/scottish
-catalogue-date 2018-01-13 10:24:37 +0100
catalogue-license lppl1.3
catalogue-topics scottish multilingual-addon
catalogue-version 1.0g
@@ -27071,7 +26835,6 @@ srcfiles size=6
runfiles size=2
RELOC/tex/generic/babel-serbian/serbian.ldf
catalogue-ctan /macros/latex/contrib/babel-contrib/serbian
-catalogue-date 2019-07-16 12:52:47 +0200
catalogue-license lppl1.3
catalogue-topics multilingual-addon serbian
catalogue-version 2.0
@@ -27098,7 +26861,6 @@ srcfiles size=9
runfiles size=4
RELOC/tex/generic/babel-serbianc/serbianc.ldf
catalogue-ctan /macros/latex/contrib/babel-contrib/serbianc
-catalogue-date 2019-01-13 09:59:25 +0100
catalogue-license lppl1.3
catalogue-topics serbian multilingual-addon
catalogue-version 3.0
@@ -27125,7 +26887,6 @@ srcfiles size=14
runfiles size=5
RELOC/tex/generic/babel-slovak/slovak.ldf
catalogue-ctan /macros/latex/contrib/babel-contrib/slovak
-catalogue-date 2018-01-13 10:24:37 +0100
catalogue-license lppl1.3
catalogue-topics slovak multilingual-addon
catalogue-version 3.1a
@@ -27152,7 +26913,6 @@ srcfiles size=5
runfiles size=2
RELOC/tex/generic/babel-slovenian/slovene.ldf
catalogue-ctan /macros/latex/contrib/babel-contrib/slovenian
-catalogue-date 2018-01-13 10:24:37 +0100
catalogue-license lppl1.3
catalogue-topics slovenian multilingual-addon
catalogue-version 1.2i
@@ -27183,7 +26943,6 @@ runfiles size=4
RELOC/tex/generic/babel-sorbian/lsorbian.ldf
RELOC/tex/generic/babel-sorbian/usorbian.ldf
catalogue-ctan /macros/latex/contrib/babel-contrib/sorbian
-catalogue-date 2018-01-13 10:24:37 +0100
catalogue-license lppl1.3
catalogue-topics sorbian
catalogue-version lower sorbian:1.0g, upper:1.0k
@@ -27211,7 +26970,6 @@ runfiles size=4
RELOC/tex/generic/babel-spanglish/spanglish.ldf
RELOC/tex/generic/babel-spanglish/spanglish.sty
catalogue-ctan /macros/latex/contrib/babel-contrib/spanglish
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics spanish multilingual-addon
catalogue-version 0.3
@@ -27241,7 +26999,6 @@ runfiles size=9
RELOC/tex/generic/babel-spanish/romanidx.sty
RELOC/tex/generic/babel-spanish/spanish.ldf
catalogue-ctan /macros/latex/contrib/babel-contrib/spanish
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics spanish multilingual-addon
catalogue-version 5.0p
@@ -27266,7 +27023,6 @@ srcfiles size=7
runfiles size=2
RELOC/tex/generic/babel-swedish/swedish.ldf
catalogue-ctan /macros/latex/contrib/babel-contrib/swedish
-catalogue-date 2018-01-13 10:24:37 +0100
catalogue-license lppl1.3
catalogue-topics swedish multilingual-addon
catalogue-version 2.3d
@@ -27294,7 +27050,6 @@ runfiles size=8
RELOC/tex/generic/babel-thai/thai.ldf
RELOC/tex/generic/babel-thai/tis620.def
catalogue-ctan /macros/latex/contrib/babel-contrib/thai
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics thai multilingual-addon
catalogue-version 1.0.0
@@ -27321,7 +27076,6 @@ srcfiles size=6
runfiles size=2
RELOC/tex/generic/babel-turkish/turkish.ldf
catalogue-ctan /macros/latex/contrib/babel-contrib/turkish
-catalogue-date 2019-07-05 18:43:14 +0200
catalogue-license lppl1.3
catalogue-topics turkish multilingual-addon
catalogue-version 1.4
@@ -27349,7 +27103,6 @@ srcfiles size=19
runfiles size=5
RELOC/tex/generic/babel-ukrainian/ukraineb.ldf
catalogue-ctan /macros/latex/contrib/babel-contrib/ukrainian
-catalogue-date 2018-04-11 21:43:45 +0200
catalogue-license lppl1.3c
catalogue-topics multilingual-addon ukrainian
catalogue-version 1.4c
@@ -27377,7 +27130,6 @@ srcfiles size=10
runfiles size=2
RELOC/tex/generic/babel-vietnamese/vietnamese.ldf
catalogue-ctan /macros/latex/contrib/babel-contrib/vietnamese
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics vietnamese multilingual-addon
catalogue-version 1.4
@@ -27405,7 +27157,6 @@ srcfiles size=4
runfiles size=1
RELOC/tex/generic/babel-welsh/welsh.ldf
catalogue-ctan /macros/latex/contrib/babel-contrib/welsh
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics welsh multilingual-addon
catalogue-version 1.1a
@@ -27483,7 +27234,6 @@ catalogue-contact-bugs https://github.com/TeX-Live/babelbib/issues
catalogue-contact-home https://github.com/TeX-Live/babelbib
catalogue-contact-repository https://github.com/TeX-Live/babelbib.git
catalogue-ctan /biblio/bibtex/contrib/babelbib
-catalogue-date 2019-03-12 18:20:34 +0100
catalogue-license lppl1
catalogue-topics bibtex-sty multilingual
catalogue-version 1.32
@@ -27514,7 +27264,6 @@ srcfiles size=8
runfiles size=2
RELOC/tex/latex/background/background.sty
catalogue-ctan /macros/latex/contrib/background
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license lppl
catalogue-topics background decoration
catalogue-version 2.1
@@ -27543,7 +27292,6 @@ srcfiles size=7
runfiles size=1
RELOC/tex/latex/backnaur/backnaur.sty
catalogue-ctan /macros/latex/contrib/backnaur
-catalogue-date 2019-06-29 19:08:11 +0200
catalogue-license lppl1.3c
catalogue-topics formal-spec
catalogue-version 3.1
@@ -27571,7 +27319,6 @@ runfiles size=6983
RELOC/fonts/truetype/public/baekmuk/hline.ttf
catalogue-contact-home http://kldp.net/baekmuk
catalogue-ctan /fonts/baekmuk
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license other-free
catalogue-topics font font-ttf korean
catalogue-version 2.2
@@ -27609,7 +27356,6 @@ runfiles size=15
RELOC/tex/generic/bagpipe/bagpipe.tex
RELOC/tex/generic/bagpipe/bagpipex.ini
catalogue-ctan /macros/generic/bagpipe
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics music
catalogue-version 3.02
@@ -27638,7 +27384,6 @@ srcfiles size=65
runfiles size=61
RELOC/tex/latex/bangorcsthesis/bangorcsthesis.cls
catalogue-ctan /macros/latex/contrib/bangorcsthesis
-catalogue-date 2018-10-05 20:51:17 +0200
catalogue-license lppl1.3
catalogue-topics dissertation class
catalogue-version 1.5.3
@@ -27667,7 +27412,6 @@ srcfiles size=64
runfiles size=60
RELOC/tex/latex/bangorexam/bangorexam.cls
catalogue-ctan /macros/latex/contrib/bangorexam
-catalogue-date 2018-02-13 10:08:01 +0100
catalogue-license lppl1.3
catalogue-topics exam class
catalogue-version 1.4.0
@@ -27718,7 +27462,6 @@ runfiles size=78
RELOC/tex/latex/bangtex/bsize11.clo
RELOC/tex/latex/bangtex/bsize12.clo
catalogue-ctan /language/bengali/bangtex
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license lppl
catalogue-topics indic
@@ -27761,7 +27504,6 @@ runfiles size=8
RELOC/tex/latex/bankstatement/stmnamibian.def
catalogue-contact-home http://bankstatement.jklatex.de/
catalogue-ctan /macros/latex/contrib/bankstatement
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl
catalogue-topics class
catalogue-version 0.9.2
@@ -27811,7 +27553,6 @@ runfiles size=17
RELOC/tex/latex/barcodes/barcodes.sty
catalogue-also code128 ean pst-barcode
catalogue-ctan /fonts/barcodes/willadt
-catalogue-date 2016-07-15 12:22:13 +0200
catalogue-license lppl
catalogue-topics barcode
@@ -27888,7 +27629,6 @@ runfiles size=18
RELOC/tex/latex/bardiag/pstfp.sty
catalogue-also pst-bar bchart
catalogue-ctan /graphics/bardiag
-catalogue-date 2018-09-15 11:18:06 +0200
catalogue-license lppl
catalogue-topics genchart
catalogue-version 0.4a
@@ -27914,7 +27654,6 @@ docfiles size=117
runfiles size=13
RELOC/tex/generic/barr/diagxy.tex
catalogue-ctan /macros/generic/diagrams/diagxy
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics diagram-comm
@@ -27995,7 +27734,6 @@ catalogue-contact-bugs https://github.com/robitex/barracuda/issues
catalogue-contact-home https://github.com/robitex/barracuda
catalogue-contact-support https://github.com/robitex/barracuda/issues
catalogue-ctan /macros/luatex/generic/barracuda
-catalogue-date 2019-12-04 23:07:55 +0100
catalogue-license gpl2
catalogue-topics barcode
catalogue-version 0.0.9.1
@@ -28117,7 +27855,6 @@ runfiles size=92
RELOC/fonts/tfm/public/bartel-chess-fonts/pkelch8.tfm
RELOC/fonts/tfm/public/bartel-chess-fonts/pkelch9.tfm
catalogue-ctan /fonts/bartel-chess-fonts
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics games font font-chess font-mf
@@ -28146,7 +27883,6 @@ docfiles size=148
runfiles size=5
RELOC/tex/latex/bashful/bashful.sty
catalogue-ctan /macros/latex/contrib/bashful
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics ext-code
catalogue-version 0.93
@@ -28180,7 +27916,6 @@ srcfiles size=9
runfiles size=2
RELOC/tex/latex/basicarith/basicarith.sty
catalogue-ctan /macros/latex/contrib/basicarith
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics arithmetic calculation
catalogue-version 1.1
@@ -28300,7 +28035,6 @@ runfiles size=274
catalogue-also baskervaldx
catalogue-contact-home http://arkandis.tuxfamily.org/
catalogue-ctan /fonts/baskervaldadf
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl
catalogue-topics font font-type1 font-serif
catalogue-version 1.016
@@ -28793,7 +28527,6 @@ runfiles size=1150
RELOC/tex/latex/baskervaldx/TS1Baskervaldx-TOsF.fd
RELOC/tex/latex/baskervaldx/baskervaldx.fontspec
catalogue-ctan /fonts/baskervaldx
-catalogue-date 2017-03-11 09:14:11 +0100
catalogue-license gpl
catalogue-topics font-otf font-type1 font-serif
catalogue-version 1.072
@@ -29456,7 +29189,6 @@ runfiles size=2326
RELOC/tex/latex/baskervillef/baskervillef.sty
RELOC/tex/latex/baskervillef/omlzbami.fd
catalogue-ctan /fonts/baskervillef
-catalogue-date 2019-11-13 09:46:31 +0100
catalogue-license ofllppl1.3
catalogue-topics font font-serif font-otf font-type1 font-t1enc
catalogue-version 1.048
@@ -29487,7 +29219,6 @@ srcfiles size=11
runfiles size=6
RELOC/tex/latex/basque-book/basque-book.cls
catalogue-ctan /macros/latex/contrib/basque-book
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.2
catalogue-topics book-pub dissertation class basque
catalogue-version 1.20
@@ -29517,7 +29248,6 @@ srcfiles size=4
runfiles size=2
RELOC/tex/latex/basque-date/basque-date.sty
catalogue-ctan /macros/latex/contrib/basque-date
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.2
catalogue-topics basque date-time
catalogue-version 1.05
@@ -29555,7 +29285,6 @@ catalogue-also biblatex-bath
catalogue-contact-bugs https://github.com/alex-ball/bathbib/issues
catalogue-contact-home https://github.com/alex-ball/bathbib
catalogue-ctan /biblio/bibtex/contrib/bath-bst
-catalogue-date 2019-07-10 19:15:05 +0200
catalogue-license lppl1.3c
catalogue-topics bibtex-sty
catalogue-version 3.0
@@ -29582,7 +29311,6 @@ runfiles size=6
RELOC/metapost/bbcard/calendar.mp
RELOC/metapost/bbcard/scorecard.mp
catalogue-ctan /graphics/metapost/contrib/macros/bbcard
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics games calendar card-gen
@@ -29614,7 +29342,6 @@ runfiles size=24
RELOC/tex/latex/bbding/Uding.fd
RELOC/tex/latex/bbding/bbding.sty
catalogue-ctan /fonts/bbding
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics font font-symbol font-mf
catalogue-version 1.01
@@ -29734,7 +29461,6 @@ runfiles size=159
RELOC/fonts/tfm/public/bbm/bbmtt9.tfm
catalogue-also bbold doublestroke mbboard
catalogue-ctan /fonts/cm/bbm
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license other-free
catalogue-topics font font-maths font-bbd font-mf
@@ -29766,7 +29492,6 @@ runfiles size=4
RELOC/tex/latex/bbm-macros/ubbmss.fd
RELOC/tex/latex/bbm-macros/ubbmtt.fd
catalogue-ctan /macros/latex/contrib/bbm
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics font-supp
@@ -29826,7 +29551,6 @@ runfiles size=45
RELOC/tex/latex/bbold/bbold.sty
catalogue-also bbm doublestroke mbboard
catalogue-ctan /fonts/bbold
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license bsd
catalogue-topics font font-maths font-bbd font-mf
catalogue-version 1.01
@@ -29862,7 +29586,6 @@ runfiles size=28
RELOC/fonts/type1/public/bbold-type1/bbold5.pfb
RELOC/fonts/type1/public/bbold-type1/bbold7.pfb
catalogue-ctan /fonts/bbold-type1
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license other-free
catalogue-topics font font-maths font-bbd font-type1
@@ -29890,7 +29613,6 @@ catalogue-also pst-bar
catalogue-contact-bugs https://github.com/tkuhn/bchart/issues
catalogue-contact-repository https://github.com/tkuhn/bchart
catalogue-ctan /macros/latex/contrib/bchart
-catalogue-date 2017-04-18 23:08:12 +0200
catalogue-license mit
catalogue-topics genchart pgf-tikz
catalogue-version 0.1.3
@@ -30053,7 +29775,6 @@ runfiles size=382
RELOC/tex/latex/bclogo/bc-yin.mps
RELOC/tex/latex/bclogo/bclogo.sty
catalogue-ctan /graphics/bclogo
-catalogue-date 2018-09-15 11:20:18 +0200
catalogue-license lppl1.3
catalogue-topics logo boxing
catalogue-version 3.1
@@ -30290,7 +30011,6 @@ runfiles size=253
catalogue-contact-bugs https://github.com/josephwright/beamer/issues
catalogue-contact-repository https://github.com/josephwright/beamer
catalogue-ctan /macros/latex/contrib/beamer
-catalogue-date 2019-09-30 18:28:37 +0200
catalogue-license lppl1.3cgpl2+fdl
catalogue-topics presentation class
catalogue-version 3.57
@@ -30325,7 +30045,6 @@ docfiles size=167
RELOC/doc/latex/beamer-FUBerlin/tex/latex/beamerouterthemeBerlinFU.sty
RELOC/doc/latex/beamer-FUBerlin/tex/latex/beamerthemeBerlinFU.sty
catalogue-ctan /macros/latex/contrib/beamer-FUBerlin
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics presentation
catalogue-version 0.02b
@@ -30353,7 +30072,6 @@ runfiles size=4
catalogue-contact-bugs https://github.com/seloumi/beamer-rl/issues
catalogue-contact-repository https://github.com/seloumi/beamer-rl
catalogue-ctan /macros/luatex/latex/beamer-rl
-catalogue-date 2019-10-04 17:26:52 +0200
catalogue-license lppl1.3c
catalogue-topics class presentation bidi multilingual luatex
catalogue-version 1.3
@@ -30397,7 +30115,6 @@ docfiles size=1022
RELOC/doc/latex/beamer-tut-pt/tutorialbeamer.tex
RELOC/doc/latex/beamer-tut-pt/ufpellogo.jpg
catalogue-ctan /info/portuguese/beamer
-catalogue-date 2016-06-18 16:48:54 +0200
catalogue-license gpl
catalogue-topics portuguese-doc presentation
@@ -30423,7 +30140,6 @@ docfiles size=346
runfiles size=4
RELOC/tex/latex/beamer-verona/beamerthemeVerona.sty
catalogue-ctan /macros/latex/contrib/beamer-contrib/themes/beamer-verona
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics presentation
catalogue-version 0.2
@@ -30459,7 +30175,6 @@ runfiles size=88
RELOC/tex/latex/beamer2thesis/logopolito.jpg
catalogue-contact-home http://claudiofiandrino.altervista.org/latex_projects.html
catalogue-ctan /macros/latex/contrib/beamer-contrib/themes/beamer2thesis
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl
catalogue-topics dissertation presentation
catalogue-version 2.2
@@ -30483,7 +30198,6 @@ runfiles size=1
RELOC/tex/latex/beameraudience/beameraudience.sty
catalogue-also beamer
catalogue-ctan /macros/latex/contrib/beamer-contrib/beameraudience
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics presentation
catalogue-version 0.1
@@ -30521,7 +30235,6 @@ runfiles size=6
catalogue-contact-bugs https://github.com/louisstuart96/beamerauxtheme/issues
catalogue-contact-repository https://github.com/louisstuart96/beamerauxtheme
catalogue-ctan /macros/latex/contrib/beamer-contrib/themes/beamerauxtheme
-catalogue-date 2019-05-07 22:26:01 +0200
catalogue-license lppl1.3c
catalogue-topics presentation
catalogue-version 1.01
@@ -30572,7 +30285,6 @@ runfiles size=2
RELOC/tex/latex/beamercolorthemeowl/beamercolorthemeowl.sty
catalogue-contact-repository https://github.com/rchurchley/beamercolortheme-owl
catalogue-ctan /macros/latex/contrib/beamer-contrib/themes/beamercolorthemeowl
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl1.3
catalogue-topics presentation
catalogue-version 0.1.1
@@ -30617,7 +30329,6 @@ runfiles size=3
RELOC/tex/latex/beamerdarkthemes/beamercolorthemefrigatebird.sty
RELOC/tex/latex/beamerdarkthemes/beamercolorthememagpie.sty
catalogue-ctan /macros/latex/contrib/beamer-contrib/themes/beamerdarkthemes
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics presentation
catalogue-version 0.4.1
@@ -30662,7 +30373,6 @@ catalogue-contact-home https://github.com/deselaers/latex-beamerposter
catalogue-contact-repository https://github.com/deselaers/latex-beamerposter
catalogue-contact-support https://groups.google.com/forum/#!forum/beamerposter
catalogue-ctan /macros/latex/contrib/beamerposter
-catalogue-date 2018-04-23 11:03:46 +0200
catalogue-license lpplgpl
catalogue-topics poster presentation
catalogue-version 1.13
@@ -30696,7 +30406,6 @@ srcfiles size=23
runfiles size=4
RELOC/tex/latex/beamersubframe/beamersubframe.sty
catalogue-ctan /macros/latex/contrib/beamer-contrib/beamersubframe
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics presentation
catalogue-version 0.2
@@ -30738,7 +30447,6 @@ runfiles size=11
catalogue-contact-bugs https://github.com/alex-ball/beamerswitch/issues
catalogue-contact-repository https://github.com/alex-ball/beamerswitch
catalogue-ctan /macros/latex/contrib/beamer-contrib/beamerswitch
-catalogue-date 2019-06-06 21:42:34 +0200
catalogue-license lppl1.3c
catalogue-topics presentation class
catalogue-version 1.6
@@ -30781,7 +30489,6 @@ runfiles size=8
RELOC/tex/latex/beamertheme-cuerna/beamerouterthemeCuerna.sty
RELOC/tex/latex/beamertheme-cuerna/beamerthemeCuerna.sty
catalogue-ctan /macros/latex/contrib/beamer-contrib/themes/beamertheme-cuerna
-catalogue-date 2018-01-07 14:49:11 +0100
catalogue-license lppl1.3
catalogue-topics presentation
@@ -30810,7 +30517,6 @@ runfiles size=5
RELOC/tex/latex/beamertheme-detlevcm/beamerouterthemeDetlevCM.sty
RELOC/tex/latex/beamertheme-detlevcm/beamerthemeDetlevCM.sty
catalogue-ctan /macros/latex/contrib/beamer-contrib/themes/detlevcm
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license gpl
catalogue-topics presentation
catalogue-version 1.02
@@ -30839,7 +30545,6 @@ runfiles size=4
RELOC/tex/latex/beamertheme-epyt/beamerthemeepyt.sty
catalogue-contact-repository https://github.com/zohooo/epyt
catalogue-ctan /macros/latex/contrib/beamer-contrib/themes/beamertheme-epyt
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl1.3
catalogue-topics presentation
catalogue-version 1.0
@@ -30879,7 +30584,6 @@ runfiles size=8
catalogue-contact-bugs https://github.com/elauksap/focus-beamertheme/issues
catalogue-contact-repository https://github.com/elauksap/focus-beamertheme
catalogue-ctan /macros/latex/contrib/beamer-contrib/themes/beamertheme-focus
-catalogue-date 2019-11-20 10:08:32 +0100
catalogue-license gpl3
catalogue-topics presentation
catalogue-version 2.5
@@ -30903,7 +30607,6 @@ runfiles size=2
RELOC/tex/latex/beamertheme-light/beamertheme-light.sty
catalogue-also beamertheme-focus
catalogue-ctan /macros/latex/contrib/beamer-contrib/themes/beamertheme-light
-catalogue-date 2019-01-31 09:05:36 +0100
catalogue-license gpl3
catalogue-topics presentation
catalogue-version 1.0
@@ -30948,7 +30651,6 @@ runfiles size=12
RELOC/tex/latex/beamertheme-metropolis/pgfplotsthemetol.sty
catalogue-contact-repository https://github.com/matze/mtheme
catalogue-ctan /macros/latex/contrib/beamer-contrib/themes/metropolis
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license other-free
catalogue-topics presentation
catalogue-version 1.2
@@ -31000,7 +30702,6 @@ runfiles size=404
catalogue-contact-bugs https://github.com/NMarkgraf/NPBT/issues
catalogue-contact-repository https://github.com/NMarkgraf/NPBT
catalogue-ctan /macros/latex/contrib/beamer-contrib/themes/beamertheme-npbt
-catalogue-date 2018-08-18 05:26:33 +0200
catalogue-license gpl3pd
catalogue-topics presentation
catalogue-version 4.1
@@ -31023,7 +30724,6 @@ docfiles size=21
runfiles size=1
RELOC/tex/latex/beamertheme-phnompenh/beamerthemePhnomPenh.sty
catalogue-ctan /macros/latex/contrib/beamer-contrib/themes/phnompenh
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics presentation
catalogue-version 1.0
@@ -31068,7 +30768,6 @@ runfiles size=4
catalogue-contact-bugs https://github.com/igankevich/SaintPetersburg/issues
catalogue-contact-repository https://github.com/igankevich/SaintPetersburg
catalogue-ctan /macros/latex/contrib/beamer-contrib/themes/beamertheme-saintpetersburg
-catalogue-date 2017-11-23 15:14:44 +0100
catalogue-license lppl1.3c
catalogue-topics presentation
@@ -31099,7 +30798,6 @@ runfiles size=2
RELOC/tex/latex/beamertheme-upenn-bc/beamercolorthemegoeagles.sty
RELOC/tex/latex/beamertheme-upenn-bc/beamercolorthemepenn.sty
catalogue-ctan /macros/latex/contrib/beamer-contrib/themes/upenn-bc
-catalogue-date 2017-11-20 21:38:25 +0100
catalogue-license lppl
catalogue-topics presentation
catalogue-version 1.0
@@ -31115,7 +30813,6 @@ containerchecksum b079ceab30460a7b92a616fa6d7216ddddecfa02adfd66bf38aea83eccdf6e
runfiles size=1
RELOC/tex/latex/beamerthemejltree/beamerthemeJLTree.sty
catalogue-ctan /macros/latex/contrib/beamer-contrib/themes/beamerthemeJLTree.sty
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics presentation
catalogue-version 1.1
@@ -31137,22 +30834,21 @@ docfiles size=1
runfiles size=2
RELOC/tex/latex/beamerthemenirma/beamerthemenirma.sty
catalogue-ctan /macros/latex/contrib/beamer-contrib/themes/nirma
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics presentation
catalogue-version 0.1
name beebe
category Package
-revision 53066
+revision 53102
catalogue biblio
shortdesc A collection of bibliographies
relocated 1
longdesc A collection of BibTeX bibliographies on TeX-related topics
longdesc (including, for example, spell-checking and SGML). Each
longdesc includes a LaTeX wrapper file to typeset the bibliography.
-containersize 822800
-containerchecksum 98aff3d1cbc89daccae6594c230b3e1e2bc4a59e9269204128cc06800b274732cee062f6778d8dacb3f2f058e7aef9bfee001e360496a4cce462ce9aba261c9b
+containersize 822820
+containerchecksum 8af670a3a66e3128390250a5158e449819cd852a5f8713e58867b34a2350fa4da48199c73a35d3fbb6227c54da091744c7d3451673e3ecb00af048a1e7563726
runfiles size=2026
RELOC/bibtex/bib/beebe/epodd.bib
RELOC/bibtex/bib/beebe/font.bib
@@ -31172,7 +30868,6 @@ runfiles size=2026
RELOC/tex/generic/beebe/tugboat.def
catalogue-contact-home http://www.math.utah.edu/~beebe/
catalogue-ctan /info/biblio
-catalogue-date 2019-10-21 05:27:57 +0200
catalogue-license pd
catalogue-topics bibtex-lib
@@ -31200,7 +30895,6 @@ srcfiles size=5
runfiles size=1
RELOC/tex/latex/begingreek/begingreek.sty
catalogue-ctan /macros/latex/contrib/begingreek
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics greek
catalogue-version 1.5
@@ -31225,7 +30919,6 @@ runfiles size=2
RELOC/tex/latex/begriff/begriff.sty
catalogue-also frege grundgesetze bguq
catalogue-ctan /macros/latex/contrib/begriff
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics maths logic
catalogue-version 1.6
@@ -31265,7 +30958,6 @@ runfiles size=17
RELOC/tex/latex/beilstein/beilstein.cls
catalogue-contact-home https://www.beilstein-journals.org/bjnano/
catalogue-ctan /macros/latex/contrib/beilstein
-catalogue-date 2019-12-09 16:21:30 +0100
catalogue-license lppl1.3c
catalogue-topics journalpub
catalogue-version 1.5
@@ -31301,7 +30993,6 @@ runfiles size=34
RELOC/fonts/type1/public/belleek/rblmi.pfb
catalogue-contact-home http://truetex.com
catalogue-ctan /fonts/belleek
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license pd
catalogue-topics font font-maths font-type1
@@ -31355,7 +31046,6 @@ runfiles size=42
RELOC/tex/latex/bengali/ubnx.fd
catalogue-also arosgn
catalogue-ctan /language/bengali/pandey
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics indic
@@ -31483,7 +31173,6 @@ runfiles size=249
RELOC/tex/latex/bera/ts1fvm.fd
RELOC/tex/latex/bera/ts1fvs.fd
catalogue-ctan /fonts/bera
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license other-free
catalogue-topics font font-serif font-sans font-proportional font-mono font-type1
@@ -31763,7 +31452,6 @@ runfiles size=1517
RELOC/tex/latex/berenisadf/ts1ybd2j.fd
RELOC/tex/latex/berenisadf/ts1ybdj.fd
catalogue-ctan /fonts/berenisadf
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license other-free
catalogue-topics font font-serif font-type1 font-otf
catalogue-version 1.004
@@ -31788,7 +31476,6 @@ docfiles size=8
runfiles size=11
RELOC/bibtex/bst/besjournals/besjournals.bst
catalogue-ctan /biblio/bibtex/contrib/besjournals
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics bibtex-sty journalpub
@@ -31824,7 +31511,6 @@ runfiles size=9
RELOC/bibtex/bst/bestpapers/bestpapers-export.bst
RELOC/bibtex/bst/bestpapers/bestpapers.bst
catalogue-ctan /biblio/bibtex/contrib/bestpapers
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics bibtex-sty
catalogue-version 1.0
@@ -31851,7 +31537,6 @@ runfiles size=3
RELOC/tex/latex/betababel/betababel.sty
catalogue-contact-home http://www.tlg.uci.edu/
catalogue-ctan /macros/latex/contrib/betababel
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl
catalogue-topics greek multilingual-addon
catalogue-version 0.5
@@ -31879,7 +31564,6 @@ runfiles size=1
RELOC/tex/latex/beton/beton.sty
catalogue-also euler
catalogue-ctan /macros/latex/contrib/beton
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics font-supp
@@ -31925,7 +31609,6 @@ runfiles size=36
RELOC/tex/latex/beuron/beuron.sty
RELOC/tex/latex/beuron/t1beuron.fd
catalogue-ctan /fonts/beuron
-catalogue-date 2018-01-18 06:45:20 +0100
catalogue-license lppl1.3
catalogue-topics font-decor font-mf font-type1 font-otf
catalogue-version 1.3
@@ -31970,7 +31653,6 @@ runfiles size=18
RELOC/tex/latex/bewerbung/bewerbung.cls
RELOC/tex/latex/bewerbung/bewerbung.sty
catalogue-ctan /macros/latex/contrib/bewerbung
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics cv class
catalogue-version 1.1
@@ -32001,7 +31683,6 @@ runfiles size=4
RELOC/tex/latex/bez123/bez123.sty
RELOC/tex/latex/bez123/multiply.sty
catalogue-ctan /macros/latex/contrib/bez123
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics graphics-in-tex graphics-curve
catalogue-version 1.1b
@@ -32032,7 +31713,6 @@ runfiles size=9
RELOC/tex/lualatex/bezierplot/bezierplot.sty
catalogue-contact-repository https://github.com/linusromer/bezierplot
catalogue-ctan /macros/luatex/latex/bezierplot
-catalogue-date 2019-06-18 19:37:08 +0200
catalogue-license lppl1.3c
catalogue-topics luatex use-lua graphics-plot graphics-plotfn
catalogue-version 1.4
@@ -32359,7 +32039,6 @@ runfiles size=396
RELOC/tex/latex/bgreek/bgreek.sty
RELOC/tex/latex/bgreek/ibygreek.ldf
catalogue-ctan /language/greek/bgreek
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics greek font font-virtual
catalogue-version 0.3
@@ -32504,7 +32183,6 @@ runfiles size=70
RELOC/tex/latex/bgteubner/hhsubfigure.sty
RELOC/tex/latex/bgteubner/ptmxcomp.sty
catalogue-ctan /macros/latex/contrib/bgteubner
-catalogue-date 2017-05-05 00:16:32 +0200
catalogue-license lppl
catalogue-topics class book-pub publisher
catalogue-version 2.11
@@ -32581,7 +32259,6 @@ runfiles size=43
RELOC/tex/latex/bguq/bguq.sty
catalogue-also begriff frege grundgesetze
catalogue-ctan /fonts/bguq
-catalogue-date 2017-10-29 14:21:00 +0100
catalogue-license lppl
catalogue-topics font font-mf font-specialist font-maths logic
catalogue-version 0.4
@@ -32614,7 +32291,6 @@ runfiles size=4
RELOC/tex/latex/bhcexam/BHCexam.cls
catalogue-also exam
catalogue-ctan /macros/latex/contrib/bhcexam
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics exam
catalogue-version 0.4
@@ -32648,7 +32324,6 @@ runfiles size=66
RELOC/bibtex/bst/bib-fr/unsrtnat-fr.bst
catalogue-also babelbib
catalogue-ctan /biblio/bibtex/contrib/bib-fr
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics bibtex-sty french
catalogue-version 1.5
@@ -32767,7 +32442,6 @@ runfiles size=320
catalogue-contact-home https://www.dickimaw-books.com/software/bib2gls/
catalogue-contact-repository https://github.com/nlct/bib2gls
catalogue-ctan /support/bib2gls
-catalogue-date 2019-04-09 23:05:37 +0200
catalogue-license gpl3+
catalogue-topics bibtex-util glossary
catalogue-version 1.9
@@ -32973,7 +32647,6 @@ srcfiles size=54
runfiles size=35
RELOC/tex/latex/bibarts/bibarts.sty
catalogue-ctan /macros/latex/contrib/bibarts
-catalogue-date 2019-03-04 09:44:09 +0100
catalogue-license gpl
catalogue-topics bibtex-supp humanities
catalogue-version 2.2
@@ -33010,7 +32683,6 @@ catalogue-contact-bugs https://github.com/plk/biber/issues
catalogue-contact-home http://biblatex-biber.sourceforge.net/
catalogue-contact-repository https://github.com/plk/biber
catalogue-ctan /biblio/biber
-catalogue-date 2019-12-08 16:57:40 +0100
catalogue-license artistic2
catalogue-topics biblio
catalogue-version 2.14
@@ -33151,7 +32823,6 @@ runfiles size=10
texmf-dist/bibtex/bst/bibexport/export.bst
texmf-dist/scripts/bibexport/bibexport.sh
catalogue-ctan /biblio/bibtex/utils/bibexport
-catalogue-date 2019-03-31 09:13:05 +0200
catalogue-license lppl1.3
catalogue-topics bibtex-util
catalogue-version 3.03
@@ -33329,7 +33000,6 @@ runfiles size=57
RELOC/bibtex/bst/bibhtml/plainhtmldater.bst
RELOC/bibtex/bst/bibhtml/unsrthtml.bst
catalogue-ctan /biblio/bibtex/contrib/bibhtml
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics bibtex-util cvt-html
catalogue-version 2.0.2
@@ -33657,7 +33327,6 @@ catalogue-contact-bugs https://github.com/plk/biblatex/issues
catalogue-contact-home https://github.com/plk/biblatex
catalogue-contact-repository https://github.com/plk/biblatex.git
catalogue-ctan /macros/latex/contrib/biblatex
-catalogue-date 2019-12-08 15:40:49 +0100
catalogue-license lppl1.3
catalogue-topics biblio biblatex etex
catalogue-version 3.14
@@ -33710,7 +33379,6 @@ runfiles size=50
catalogue-contact-bugs https://github.com/abntex/biblatex-abnt/issues
catalogue-contact-repository https://github.com/abntex/biblatex-abnt
catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-abnt
-catalogue-date 2018-11-17 17:39:25 +0100
catalogue-license lppl1.3c
catalogue-topics biblatex journalpub portuguese-br
catalogue-version 3.4
@@ -33738,7 +33406,6 @@ runfiles size=1
catalogue-contact-bugs https://github.com/maieul/biblatex-anonymous/issues
catalogue-contact-repository https://github.com/maieul/biblatex-anonymous
catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-anonymous
-catalogue-date 2018-09-02 14:32:32 +0200
catalogue-license lppl1.3
catalogue-topics humanities biblatex
catalogue-version 2.6.2
@@ -33801,7 +33468,6 @@ catalogue-contact-bugs https://github.com/plk/biblatex-apa/issues
catalogue-contact-home https://github.com/plk/biblatex-apa
catalogue-contact-repository https://github.com/plk/biblatex-apa.git
catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-apa
-catalogue-date 2019-11-29 23:12:15 +0100
catalogue-license lppl1.3c
catalogue-topics apa biblatex psychology journalpub
catalogue-version 9.2
@@ -33865,7 +33531,6 @@ catalogue-contact-bugs https://github.com/plk/biblatex-apa/issues
catalogue-contact-home https://github.com/plk/biblatex-apa
catalogue-contact-repository https://github.com/plk/biblatex-apa.git
catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-apa6
-catalogue-date 2019-12-02 19:29:35 +0100
catalogue-license lppl1.3c
catalogue-topics apa biblatex psychology journalpub
catalogue-version 8.3
@@ -34324,7 +33989,6 @@ catalogue-also archaeologie
catalogue-contact-home https://ingram-braun.net/public/programming/tex/latex-typography-prehistory-egyptology-anthropology-rgk-rgzm-dguf/
catalogue-contact-repository https://github.com/CarlOrff/biblatex-archaeology
catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-archaeology
-catalogue-date 2018-11-20 10:54:04 +0100
catalogue-license lppl1.3c
catalogue-topics humanities biblatex
catalogue-version 2.1
@@ -34359,7 +34023,6 @@ runfiles size=15
catalogue-contact-bugs https://github.com/LukasCBossert/biblatex-arthistory-bonn/issues
catalogue-contact-repository https://github.com/LukasCBossert/biblatex-arthistory-bonn
catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-arthistory-bonn
-catalogue-date 2018-02-13 22:43:43 +0100
catalogue-license lppl1.3
catalogue-topics biblatex
catalogue-version 1.2
@@ -34396,7 +34059,6 @@ catalogue-also bath-bst
catalogue-contact-bugs https://github.com/alex-ball/bathbib/issues
catalogue-contact-home https://github.com/alex-ball/bathbib
catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-bath
-catalogue-date 2019-08-29 22:42:01 +0200
catalogue-license lppl1.3c
catalogue-topics biblatex
catalogue-version 3.1
@@ -34430,7 +34092,6 @@ runfiles size=2
RELOC/tex/latex/biblatex-bookinarticle/biblatex-bookinarticle.sty
catalogue-contact-repository https://github.com/maieul/biblatex-bookinarticle
catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-bookinarticle
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl1.3
catalogue-topics humanities biblatex
catalogue-version 1.3.1a
@@ -34487,7 +34148,6 @@ runfiles size=6
RELOC/tex/latex/biblatex-bookinother/bookinother.bbx
RELOC/tex/latex/biblatex-bookinother/bookinother.dbx
catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-bookinother
-catalogue-date 2017-11-19 17:23:13 +0100
catalogue-license lppl1.3
catalogue-topics humanities biblatex
catalogue-version 2.3.1
@@ -34513,7 +34173,6 @@ runfiles size=2
RELOC/tex/latex/biblatex-bwl/bwl-FU.bbx
RELOC/tex/latex/biblatex-bwl/bwl-FU.cbx
catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-bwl
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics bus-study biblatex
catalogue-version 0.02
@@ -34548,7 +34207,6 @@ runfiles size=10
RELOC/tex/latex/biblatex-caspervector/caspervector.cbx
catalogue-contact-repository https://gitea.com/CasperVector/biblatex-caspervector
catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-caspervector
-catalogue-date 2019-11-15 16:40:36 +0100
catalogue-license lppl1.3
catalogue-topics biblatex chinese
catalogue-version 0.3.4
@@ -34570,7 +34228,6 @@ docfiles size=85
RELOC/doc/latex/biblatex-cheatsheet/biblatex-cheatsheet.pdf details="The document itself"
RELOC/doc/latex/biblatex-cheatsheet/biblatex-cheatsheet.tex
catalogue-ctan /info/biblatex-cheatsheet
-catalogue-date 2017-06-24 10:26:01 +0200
catalogue-license lppl1.3
catalogue-topics biblatex bibtex-doc
@@ -34611,7 +34268,6 @@ runfiles size=24
RELOC/tex/latex/biblatex-chem/chem-rsc.bbx
RELOC/tex/latex/biblatex-chem/chem-rsc.cbx
catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-chem
-catalogue-date 2019-12-03 17:44:42 +0100
catalogue-license lppl1.3c
catalogue-topics biblatex chemistry journalpub
catalogue-version 1.1y
@@ -34677,7 +34333,6 @@ runfiles size=257
RELOC/tex/latex/biblatex-chicago/cms-swedish.lbx
RELOC/tex/latex/biblatex-chicago/cmsdocs.sty
catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-chicago
-catalogue-date 2018-01-16 13:19:32 +0100
catalogue-license lppl1.3
catalogue-topics biblatex
catalogue-version 1.0rc5
@@ -34716,7 +34371,6 @@ runfiles size=2
RELOC/tex/latex/biblatex-claves/claves.bbx
RELOC/tex/latex/biblatex-claves/claves.dbx
catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-claves
-catalogue-date 2017-11-19 19:32:20 +0100
catalogue-license lppl1.3
catalogue-topics biblatex
catalogue-version 1.2.1
@@ -34773,7 +34427,6 @@ runfiles size=35
RELOC/tex/latex/biblatex-dw/lbx/german-dw.lbx
catalogue-contact-home http://biblatex.dominik-wassenhoven.de
catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-dw
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl
catalogue-topics biblatex humanities
catalogue-version 1.7
@@ -34801,7 +34454,6 @@ runfiles size=13
catalogue-contact-bugs https://github.com/Jean-Baptiste-Camps/biblatex-enc/issues
catalogue-contact-repository https://github.com/Jean-Baptiste-Camps/biblatex-enc
catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-enc
-catalogue-date 2017-06-19 06:38:53 +0200
catalogue-license lppl1.3
catalogue-topics biblatex french humanities journalpub
catalogue-version 1.0
@@ -34904,7 +34556,6 @@ runfiles size=114
catalogue-contact-bugs https://github.com/moewew/biblatex-ext/issues
catalogue-contact-home https://github.com/moewew/biblatex-ext
catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-ext
-catalogue-date 2019-11-30 19:46:48 +0100
catalogue-license lppl1.3c
catalogue-topics biblatex
catalogue-version 0.8c
@@ -34949,7 +34600,6 @@ runfiles size=33
RELOC/tex/latex/biblatex-fiwi/fiwi2.cbx
RELOC/tex/latex/biblatex-fiwi/fiwi2.dbx
catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-fiwi
-catalogue-date 2017-11-21 15:39:47 +0100
catalogue-license lppl1.3
catalogue-topics biblatex humanities
catalogue-version 1.7
@@ -35001,7 +34651,6 @@ runfiles size=153
RELOC/tex/latex/biblatex-gb7714-2015/gb7714-2015mx.cbx
catalogue-contact-repository https://github.com/hushidong/biblatex-gb7714-2015
catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-gb7714-2015
-catalogue-date 2019-08-29 17:25:51 +0200
catalogue-license lppl1.3
catalogue-topics biblatex chinese
catalogue-version 1.0s
@@ -35078,7 +34727,6 @@ runfiles size=82
catalogue-also gost
catalogue-contact-repository https://github.com/odomanov/biblatex-gost/
catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-gost
-catalogue-date 2018-02-21 09:43:10 +0100
catalogue-license lppl1.3c
catalogue-topics biblatex std-conform russian
catalogue-version 1.17
@@ -35103,7 +34751,6 @@ runfiles size=40
RELOC/tex/latex/biblatex-historian/historian.cbx
RELOC/tex/latex/biblatex-historian/historian.lbx
catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-historian
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics humanities biblatex
catalogue-version 0.4
@@ -35139,7 +34786,6 @@ runfiles size=9
RELOC/tex/latex/biblatex-ieee/ieee.cbx
RELOC/tex/latex/biblatex-ieee/magyar-ieee.lbx
catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-ieee
-catalogue-date 2018-08-21 09:59:57 +0200
catalogue-license lppl1.3
catalogue-topics biblatex journalpub
catalogue-version 1.3
@@ -35163,7 +34809,6 @@ runfiles size=2
RELOC/tex/latex/biblatex-ijsra/ijsra.bbx
RELOC/tex/latex/biblatex-ijsra/ijsra.cbx
catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-ijsra
-catalogue-date 2016-07-07 05:41:56 +0200
catalogue-license lppl1.3
catalogue-topics biblio biblatex
catalogue-version 0.1
@@ -35208,7 +34853,6 @@ runfiles size=23
catalogue-contact-bugs https://github.com/michal-h21/biblatex-iso690/issues
catalogue-contact-repository https://github.com/michal-h21/biblatex-iso690
catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-iso690
-catalogue-date 2019-10-31 18:53:49 +0100
catalogue-license lppl1.3
catalogue-topics biblatex
catalogue-version 0.3.3
@@ -35234,7 +34878,6 @@ runfiles size=7
RELOC/tex/latex/biblatex-juradiss/biblatex-juradiss.bbx
RELOC/tex/latex/biblatex-juradiss/biblatex-juradiss.cbx
catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-juradiss
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics legal dissertation biblatex
catalogue-version 0.1g
@@ -35263,7 +34906,6 @@ runfiles size=6
RELOC/tex/latex/biblatex-lni/LNI.bbx
RELOC/tex/latex/biblatex-lni/LNI.cbx
catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-lni
-catalogue-date 2019-02-03 22:46:22 +0100
catalogue-license lppl1.3
catalogue-topics biblatex journalpub
catalogue-version 0.5
@@ -35300,7 +34942,6 @@ runfiles size=11
RELOC/tex/latex/biblatex-luh-ipw/lbx/english-luh-ipw.lbx
RELOC/tex/latex/biblatex-luh-ipw/lbx/german-luh-ipw.lbx
catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-luh-ipw
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics biblatex humanities
catalogue-version 0.3
@@ -35340,7 +34981,6 @@ runfiles size=12
catalogue-contact-bugs https://github.com/maieul/biblatex-manuscripts-philology/issues
catalogue-contact-repository https://github.com/maieul/biblatex-manuscripts-philology
catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-manuscripts-philology
-catalogue-date 2019-10-02 20:47:34 +0200
catalogue-license lppl1.3
catalogue-topics biblatex humanities
catalogue-version 2.1.1
@@ -35383,7 +35023,6 @@ runfiles size=44
RELOC/tex/latex/biblatex-mla/portuguese-mla.lbx
RELOC/tex/latex/biblatex-mla/spanish-mla.lbx
catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-mla
-catalogue-date 2016-11-06 18:51:22 +0100
catalogue-license lppl
catalogue-topics linguistic journalpub biblatex
catalogue-version 1.9
@@ -35426,7 +35065,6 @@ runfiles size=3
RELOC/tex/latex/biblatex-morenames/morenames.dbx
catalogue-contact-repository https://git.framasoft.org/maieul/biblatex-morenames
catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-morenames
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl1.3
catalogue-topics humanities biblatex
catalogue-version 1.3.1
@@ -35453,7 +35091,6 @@ runfiles size=3
RELOC/tex/latex/biblatex-multiple-dm/multiple-dm.bbx
RELOC/tex/latex/biblatex-multiple-dm/multiple-dm.dbx
catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-multiple-dm
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics biblatex
catalogue-version 1.0.1
@@ -35480,7 +35117,6 @@ runfiles size=5
RELOC/tex/latex/biblatex-musuos/musuos.cbx
catalogue-also musuos
catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-musuos
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics biblatex music
catalogue-version 1.0
@@ -35505,7 +35141,6 @@ runfiles size=6
RELOC/tex/latex/biblatex-nature/nature.bbx
RELOC/tex/latex/biblatex-nature/nature.cbx
catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-nature
-catalogue-date 2018-10-19 10:44:44 +0200
catalogue-license lppl1.3
catalogue-topics biblatex journalpub
catalogue-version 1.3c
@@ -35533,7 +35168,6 @@ runfiles size=2
RELOC/tex/latex/biblatex-nejm/nejm.bbx
RELOC/tex/latex/biblatex-nejm/nejm.cbx
catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-nejm
-catalogue-date 2019-01-22 06:24:59 +0100
catalogue-license lppl1.3
catalogue-topics biblatex
catalogue-version 0.5.0
@@ -35558,7 +35192,6 @@ runfiles size=4
RELOC/tex/latex/biblatex-nottsclassic/nottsclassic.bbx
RELOC/tex/latex/biblatex-nottsclassic/nottsclassic.cbx
catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-nottsclassic
-catalogue-date 2016-07-07 05:47:40 +0200
catalogue-license lppl1.3
catalogue-topics biblatex
catalogue-version 0.1
@@ -35595,7 +35228,6 @@ runfiles size=3
catalogue-contact-bugs https://git.framasoft.org/maieul/biblatex-opcit-booktitle/issues
catalogue-contact-repository https://git.framasoft.org/maieul/biblatex-opcit-booktitle
catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-opcit-booktitle
-catalogue-date 2018-10-24 14:20:48 +0200
catalogue-license lppl1.3
catalogue-topics biblio biblatex
catalogue-version 1.9.0
@@ -35680,7 +35312,6 @@ runfiles size=71
catalogue-contact-bugs https://github.com/alex-ball/biblatex-oxref/issues
catalogue-contact-home https://github.com/alex-ball/biblatex-oxref
catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-oxref
-catalogue-date 2019-09-20 20:30:39 +0200
catalogue-license lppl1.3c
catalogue-topics biblatex
catalogue-version 2.0
@@ -35725,7 +35356,6 @@ runfiles size=32
RELOC/tex/latex/biblatex-philosophy/philosophy-verbose.cbx
RELOC/tex/latex/biblatex-philosophy/spanish-philosophy.lbx
catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-philosophy
-catalogue-date 2018-03-28 22:28:16 +0200
catalogue-license lppl1.3
catalogue-topics humanities philosophy biblatex
catalogue-version 1.9.8a
@@ -35757,7 +35387,6 @@ runfiles size=6
RELOC/tex/latex/biblatex-phys/phys.cbx
RELOC/tex/latex/biblatex-phys/phys.dbx
catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-phys
-catalogue-date 2019-12-03 13:45:33 +0100
catalogue-license lppl1.3
catalogue-topics physics biblatex
catalogue-version 1.1b
@@ -35787,7 +35416,6 @@ runfiles size=9
catalogue-contact-bugs https://github.com/jspitz/biblatex-publist/issues
catalogue-contact-repository https://github.com/jspitz/biblatex-publist
catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-publist
-catalogue-date 2019-04-16 16:26:16 +0200
catalogue-license lppl1.3
catalogue-topics biblatex
catalogue-version 1.16
@@ -35819,7 +35447,6 @@ runfiles size=4
catalogue-contact-bugs https://github.com/maieul/biblatex-realauthor/issues
catalogue-contact-repository https://github.com/maieul/biblatex-realauthor
catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-realauthor
-catalogue-date 2017-11-20 18:21:46 +0100
catalogue-license lppl1.3
catalogue-topics biblatex
catalogue-version 2.7.1a
@@ -35863,7 +35490,6 @@ runfiles size=41
RELOC/tex/latex/biblatex-sbl/spanish-sbl.lbx
catalogue-contact-repository https://github.com/dcpurton/biblatex-sbl
catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-sbl
-catalogue-date 2018-12-16 13:45:34 +0100
catalogue-license lppl1.3
catalogue-topics biblatex theology
catalogue-version 0.11
@@ -35889,7 +35515,6 @@ runfiles size=5
RELOC/tex/latex/biblatex-science/science.bbx
RELOC/tex/latex/biblatex-science/science.cbx
catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-science
-catalogue-date 2018-10-19 10:04:33 +0200
catalogue-license lppl1.3
catalogue-topics biblatex journalpub
catalogue-version 1.2
@@ -35931,7 +35556,6 @@ runfiles size=1
catalogue-contact-bugs https://framagit.org/maieul/biblatex-shortfields/issues
catalogue-contact-repository https://framagit.org/maieul/biblatex-shortfields
catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-shortfields
-catalogue-date 2017-11-19 19:22:04 +0100
catalogue-license lppl1.3
catalogue-topics biblatex
catalogue-version 1.0.1
@@ -35959,7 +35583,6 @@ runfiles size=4
catalogue-contact-bugs https://github.com/LukasCBossert/biblatex-socialscienceshuberlin/issues
catalogue-contact-repository https://github.com/LukasCBossert/biblatex-socialscienceshuberlin
catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-socialscienceshuberlin
-catalogue-date 2018-05-28 05:03:03 +0200
catalogue-license lppl1.3
catalogue-topics biblio biblatex
catalogue-version 0.0.1
@@ -35992,7 +35615,6 @@ runfiles size=1
catalogue-contact-bugs https://github.com/maieul/biblatex-source-division/issues
catalogue-contact-repository https://github.com/maieul/biblatex-source-division
catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-source-division
-catalogue-date 2017-09-21 22:32:43 +0200
catalogue-license lppl1.3
catalogue-topics biblio biblatex
catalogue-version 2.4.2
@@ -36026,7 +35648,6 @@ runfiles size=2
RELOC/tex/latex/biblatex-subseries/subseries.dbx
catalogue-contact-repository https://git.framasoft.org/maieul/biblatex-subseries
catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-subseries
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl1.3
catalogue-topics biblatex biblio
catalogue-version 1.2.0
@@ -36063,7 +35684,6 @@ runfiles size=28
RELOC/tex/latex/biblatex-swiss-legal/biblatex-swiss-legal-shortarticle.bbx
RELOC/tex/latex/biblatex-swiss-legal/biblatex-swiss-legal-shortarticle.cbx
catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-swiss-legal
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics legal french german biblatex
catalogue-version 1.1.2a
@@ -36097,7 +35717,6 @@ runfiles size=15
catalogue-contact-bugs https://github.com/moewew/biblatex-trad/issues
catalogue-contact-home https://github.com/moewew/biblatex-trad
catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-trad
-catalogue-date 2018-02-17 21:45:55 +0100
catalogue-license lppl1.3c
catalogue-topics biblatex
catalogue-version 0.4a
@@ -36132,7 +35751,6 @@ catalogue-contact-home https://github.com/maieul/biblatex-true-citepages-omit
catalogue-contact-repository https://github.com/maieul/biblatex-true-citepages-omit
catalogue-contact-support https://github.com/maieul/biblatex-true-citepages-omit/issues
catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-true-citepages-omit
-catalogue-date 2017-06-20 18:15:37 +0200
catalogue-license lppl1.3
catalogue-topics biblio biblatex bugfix
catalogue-version 2.0.0
@@ -36170,7 +35788,6 @@ runfiles size=12
catalogue-contact-bugs https://framagit.org/maieul/bibleref/issues
catalogue-contact-repository https://framagit.org/maieul/bibleref/
catalogue-ctan /macros/latex/contrib/bibleref
-catalogue-date 2019-12-10 15:33:31 +0100
catalogue-license lppl1.3
catalogue-topics theology label-ref
catalogue-version 1.24
@@ -36205,7 +35822,6 @@ srcfiles size=12
runfiles size=8
RELOC/tex/latex/bibleref-french/bibleref-french.sty
catalogue-ctan /macros/latex/contrib/bibleref-french
-catalogue-date 2019-02-20 11:57:53 +0100
catalogue-license lppl1.3
catalogue-topics theology
catalogue-version 2.3.2
@@ -36238,7 +35854,6 @@ docfiles size=243
runfiles size=17
RELOC/tex/latex/bibleref-german/bibleref-german.sty
catalogue-ctan /macros/latex/contrib/bibleref-german
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics theology
catalogue-version 1.0a
@@ -36268,7 +35883,6 @@ srcfiles size=11
runfiles size=5
RELOC/tex/latex/bibleref-lds/bibleref-lds.sty
catalogue-ctan /macros/latex/contrib/bibleref-lds
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics theology
catalogue-version 1.0
@@ -36300,7 +35914,6 @@ runfiles size=8
RELOC/tex/latex/bibleref-mouth/bibleref-mouth.sty
catalogue-also bibleref
catalogue-ctan /macros/latex/contrib/bibleref-mouth
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics theology
catalogue-version 1.0
@@ -36325,7 +35938,6 @@ docfiles size=35
runfiles size=12
RELOC/tex/latex/bibleref-parse/bibleref-parse.sty
catalogue-ctan /macros/latex/contrib/bibleref-parse
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics theology
catalogue-version 1.1
@@ -36351,7 +35963,6 @@ runfiles size=1
catalogue-contact-bugs https://github.com/camilstaps/bibletext/issues
catalogue-contact-repository https://github.com/camilstaps/bibletext
catalogue-ctan /macros/latex/contrib/bibletext
-catalogue-date 2017-09-02 12:55:57 +0200
catalogue-license mit
catalogue-topics theology
catalogue-version 0.1.2
@@ -36378,7 +35989,6 @@ runfiles size=6
RELOC/tex/latex/biblist/biblist.sty
catalogue-also listbib
catalogue-ctan /macros/latex209/contrib/biblist
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics bibtex-util
@@ -36431,7 +36041,6 @@ catalogue-contact-home http://tug.org/bibtex
catalogue-contact-repository http://tug.org/svn/texlive/trunk/Build/source/texk/web2c/
catalogue-contact-support http://lists.tug.org/tex-k
catalogue-ctan /biblio/bibtex/base
-catalogue-date 2018-12-31 06:11:12 +0100
catalogue-license knuth
catalogue-topics biblio
catalogue-version 0.99d
@@ -36617,7 +36226,6 @@ 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 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics biblio
catalogue-version 3.71
@@ -36859,7 +36467,6 @@ catalogue-contact-bugs https://github.com/borisveytsman/BibTeXPerlLibs/issues
catalogue-contact-development https://github.com/borisveytsman/BibTeXPerlLibs/pulls
catalogue-contact-repository https://github.com/borisveytsman/BibTeXPerlLibs
catalogue-ctan /support/bibtexperllibs
-catalogue-date 2018-04-29 23:05:58 +0200
catalogue-license gpl1artisticpd
catalogue-topics bibtex-supp
catalogue-version 1.5
@@ -37060,7 +36667,6 @@ srcfiles size=42
runfiles size=9
RELOC/tex/latex/bibtopic/bibtopic.sty
catalogue-ctan /macros/latex/contrib/bibtopic
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics bibtex-multi bibtex-supp
catalogue-version 1.1a
@@ -37090,7 +36696,6 @@ srcfiles size=5
runfiles size=1
RELOC/tex/latex/bibtopicprefix/bibtopicprefix.sty
catalogue-ctan /macros/latex/contrib/bibtopicprefix
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics bibtex-multi bibtex-supp
catalogue-version 1.10
@@ -37126,7 +36731,6 @@ runfiles size=3
RELOC/tex/latex/bibunits/bibunits.sty
catalogue-also bibtopic chapterbib
catalogue-ctan /macros/latex/contrib/bibunits
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics bibtex-multi bibtex-supp
catalogue-version 2.2
@@ -37316,7 +36920,6 @@ runfiles size=287
catalogue-contact-bugs https://github.com/bidi-tex/bidi/issues
catalogue-contact-repository https://github.com/bidi-tex/bidi
catalogue-ctan /macros/xetex/latex/bidi
-catalogue-date 2019-10-20 14:10:00 +0200
catalogue-license lppl1.3c
catalogue-topics typesetting xetex bidi class
catalogue-version 35.10
@@ -37352,7 +36955,6 @@ runfiles size=1
catalogue-contact-bugs https://github.com/bidi-tex/bidi-atbegshi/issues
catalogue-contact-repository https://github.com/bidi-tex/bidi-atbegshi
catalogue-ctan /macros/xetex/latex/bidi-atbegshi
-catalogue-date 2018-11-28 18:39:05 +0100
catalogue-license lppl1.3
catalogue-topics bidi xetex
catalogue-version 0.1
@@ -37382,7 +36984,6 @@ runfiles size=1
catalogue-contact-bugs https://github.com/bidi-tex/bidicontour/issues
catalogue-contact-repository https://github.com/bidi-tex/bidicontour
catalogue-ctan /macros/xetex/latex/bidicontour
-catalogue-date 2018-11-28 18:47:25 +0100
catalogue-license lppl1.3
catalogue-topics decoration colour
catalogue-version 0.2
@@ -37409,7 +37010,6 @@ catalogue-also bidi
catalogue-contact-bugs https://github.com/bidi-tex/bidihl/issues
catalogue-contact-repository https://github.com/bidi-tex/bidihl
catalogue-ctan /macros/xetex/latex/bidihl
-catalogue-date 2018-11-28 18:51:46 +0100
catalogue-license lppl1.3
catalogue-topics xetex bidi
catalogue-version 0.1c
@@ -37433,7 +37033,6 @@ runfiles size=4
catalogue-contact-bugs https://github.com/bidi-tex/bidipagegrid/issues
catalogue-contact-repository https://github.com/bidi-tex/bidipagegrid
catalogue-ctan /macros/xetex/latex/bidipagegrid
-catalogue-date 2018-11-28 18:59:23 +0100
catalogue-license lppl1.3
catalogue-topics layout-show background xetex bidi
catalogue-version 0.2
@@ -37461,7 +37060,6 @@ runfiles size=47
catalogue-contact-bugs https://github.com/bidi-tex/bidipresentation/issues
catalogue-contact-repository https://github.com/bidi-tex/bidipresentation
catalogue-ctan /macros/xetex/latex/bidipresentation
-catalogue-date 2018-11-28 19:02:56 +0100
catalogue-license lppl1.3
catalogue-topics class presentation bidi
catalogue-version 0.3
@@ -37488,7 +37086,6 @@ runfiles size=1
catalogue-contact-bugs https://github.com/bidi-tex/bidishadowtext/issues
catalogue-contact-repository https://github.com/bidi-tex/bidishadowtext
catalogue-ctan /macros/xetex/latex/bidishadowtext
-catalogue-date 2018-11-28 19:08:07 +0100
catalogue-license lppl1.3
catalogue-topics decoration xetex bidi
catalogue-version 0.1
@@ -37535,7 +37132,6 @@ runfiles size=14
RELOC/tex/latex/bigfoot/perpage.sty
RELOC/tex/latex/bigfoot/suffix.sty
catalogue-ctan /macros/latex/contrib/bigfoot
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl2
catalogue-topics footnote
catalogue-version 2.1
@@ -37562,7 +37158,6 @@ docfiles size=61
runfiles size=2
RELOC/tex/latex/bigints/bigints.sty
catalogue-ctan /macros/latex/contrib/bigints
-catalogue-date 2019-02-04 13:21:37 +0100
catalogue-license lppl
catalogue-topics maths
@@ -37602,7 +37197,6 @@ srcfiles size=21
runfiles size=7
RELOC/tex/latex/binarytree/binarytree.sty
catalogue-ctan /graphics/pgf/contrib/binarytree
-catalogue-date 2016-09-17 10:33:12 +0200
catalogue-license lppl1.3
catalogue-topics graphics-in-tex pgf-tikz tree
catalogue-version 1.01
@@ -37630,7 +37224,6 @@ srcfiles size=5
runfiles size=2
RELOC/tex/latex/binomexp/binomexp.sty
catalogue-ctan /macros/latex/contrib/binomexp
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics calculation maths
catalogue-version 1.0
@@ -37659,7 +37252,6 @@ runfiles size=3
RELOC/tex/latex/biochemistry-colors/Biochemistry-colors.sty
catalogue-also css-colors
catalogue-ctan /macros/latex/contrib/biochemistry-colors
-catalogue-date 2017-06-05 06:44:00 +0200
catalogue-license lpplgpl
catalogue-topics colour
catalogue-version 1.00
@@ -37697,7 +37289,6 @@ runfiles size=4
RELOC/tex/latex/biocon/biocon-old.sty
RELOC/tex/latex/biocon/biocon.sty
catalogue-ctan /macros/latex/contrib/biocon
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics biology
@@ -37720,7 +37311,6 @@ runfiles size=7
RELOC/bibtex/bst/biolett-bst/biolett.bst
catalogue-contact-home http://www.isoptera.ufv.br/
catalogue-ctan /biblio/bibtex/contrib/biolett-bst
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl1
catalogue-topics bibtex-sty journalpub biology
@@ -37757,7 +37347,6 @@ runfiles size=4
catalogue-also datatool stringstrings ted texapi xstring
catalogue-contact-support http://www.webdesign-bu.de/uwe_lueck/contact.html
catalogue-ctan /macros/generic/bitelist
-catalogue-date 2017-05-05 20:23:26 +0200
catalogue-license lppl1.3
catalogue-topics text-manip macro-supp
catalogue-version 0.1
@@ -37784,7 +37373,6 @@ srcfiles size=8
runfiles size=2
RELOC/tex/latex/bitpattern/bitpattern.sty
catalogue-ctan /macros/latex/contrib/bitpattern
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics engineering comp-sci comp-net
@@ -37812,7 +37400,6 @@ runfiles size=9
catalogue-contact-bugs https://github.com/ho-tex/bitset/issues
catalogue-contact-repository https://github.com/ho-tex/bitset
catalogue-ctan /macros/latex/contrib/bitset
-catalogue-date 2019-12-10 05:53:53 +0100
catalogue-license lppl1.3
catalogue-topics data-manip
catalogue-version 1.3
@@ -37893,7 +37480,6 @@ runfiles size=116
RELOC/tex/latex/bitter/bitter.sty
catalogue-contact-home https://fonts.google.com/specimen/Bitter
catalogue-ctan /fonts/bitter
-catalogue-date 2019-05-11 18:45:21 +0200
catalogue-license lpplofl
catalogue-topics font font-serif font-proportional font-body font-ttf font-type1 font-t1enc
@@ -37922,7 +37508,6 @@ srcfiles size=5
runfiles size=1
RELOC/tex/latex/bizcard/bizcard.sty
catalogue-ctan /macros/latex/contrib/bizcard
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics file-card
catalogue-version 1.1
@@ -37977,7 +37562,6 @@ runfiles size=14
RELOC/fonts/vf/public/blacklettert1/tswab.vf
RELOC/tex/latex/blacklettert1/t1yfrak.fd
catalogue-ctan /fonts/gothic/blacklettert1
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license other-free
catalogue-topics font font-virtual font-gothic
@@ -38016,7 +37600,6 @@ runfiles size=12
RELOC/tex/latex/blindtext/blindtext.sty
catalogue-also kantlipsum
catalogue-ctan /macros/latex/contrib/blindtext
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics macro-supp dummy-gen
catalogue-version 2.0
@@ -38046,7 +37629,6 @@ docfiles size=75
runfiles size=18
RELOC/tex/latex/blkarray/blkarray.sty
catalogue-ctan /macros/latex/contrib/blkarray
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license lppl
catalogue-topics maths table
catalogue-version 0.07
@@ -38079,7 +37661,6 @@ srcfiles size=9
runfiles size=5
RELOC/tex/latex/blochsphere/blochsphere.sty
catalogue-ctan /graphics/pgf/contrib/blochsphere
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics physics pgf-tikz
catalogue-version 1.1
@@ -38104,7 +37685,6 @@ docfiles size=17
runfiles size=1
RELOC/tex/latex/block/block.sty
catalogue-ctan /macros/latex/contrib/block
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics letter
@@ -38136,7 +37716,6 @@ runfiles size=8
RELOC/metapost/blockdraw_mp/docblockprefs.mp
RELOC/metapost/blockdraw_mp/shiftoff.mp
catalogue-ctan /graphics/metapost/contrib/macros/blockdraw_mp
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics diagram-block
@@ -38158,7 +37737,6 @@ docfiles size=35
runfiles size=3
RELOC/tex/latex/bloques/bloques.sty
catalogue-ctan /graphics/pgf/contrib/bloques
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics diagram-ctrl
catalogue-version 1.0
@@ -38199,7 +37777,6 @@ runfiles size=2
catalogue-contact-bugs https://github.com/rolfn/blowup/issues
catalogue-contact-repository https://github.com/rolfn/blowup
catalogue-ctan /macros/latex/contrib/blowup
-catalogue-date 2018-01-08 05:32:27 +0100
catalogue-license lppl1.3
catalogue-topics typesetting
catalogue-version 1.0
@@ -38227,7 +37804,6 @@ runfiles size=2
RELOC/tex/latex/blox/blox.sty
catalogue-also schemabloc
catalogue-ctan /graphics/pgf/contrib/blox
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics diagram-block pgf-tikz
catalogue-version 2.5
@@ -38259,7 +37835,6 @@ srcfiles size=14
runfiles size=4
RELOC/tex/latex/bnumexpr/bnumexpr.sty
catalogue-ctan /macros/latex/contrib/bnumexpr
-catalogue-date 2019-01-07 13:21:12 +0100
catalogue-license lppl1.3c
catalogue-topics arithmetic calculation
catalogue-version 1.2d
@@ -38459,7 +38034,6 @@ docfiles size=281
runfiles size=18
RELOC/tex/latex/bodegraph/bodegraph.sty
catalogue-ctan /graphics/pgf/contrib/bodegraph
-catalogue-date 2017-03-29 05:14:22 +0200
catalogue-license lppl
catalogue-topics engineering graphics-plot pgf-tikz
catalogue-version 1.4
@@ -38485,7 +38059,6 @@ runfiles size=4
RELOC/tex/latex/bohr/bohr.sty
catalogue-contact-repository https://bitbucket.org/cgnieder/bohr/
catalogue-ctan /macros/latex/contrib/bohr
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl1.3
catalogue-topics chemistry
catalogue-version 1.0
@@ -38632,7 +38205,6 @@ runfiles size=670
RELOC/tex/latex/boisik/ts1bsk.fd
RELOC/tex/latex/boisik/ubskex.fd
catalogue-ctan /fonts/boisik
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl2
catalogue-topics font font-maths font-serif font-mf
catalogue-version 0.5
@@ -38665,7 +38237,6 @@ runfiles size=4
RELOC/tex/latex/boites/boites.sty
RELOC/tex/latex/boites/boites_exemples.sty
catalogue-ctan /macros/latex/contrib/boites
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics boxing box-breaking decoration
catalogue-version 1.1
@@ -38691,7 +38262,6 @@ runfiles size=1
catalogue-contact-repository https://github.com/rf-latex/bold-extra
catalogue-contact-support https://github.com/rf-latex/bold-extra/issues
catalogue-ctan /macros/latex/contrib/bold-extra
-catalogue-date 2018-09-14 18:24:33 +0200
catalogue-license lppl
catalogue-topics font-supp
catalogue-version 0.1
@@ -38713,7 +38283,6 @@ docfiles size=17
runfiles size=3
RELOC/tex/latex/boldtensors/boldtensors.sty
catalogue-ctan /macros/latex/contrib/boldtensors
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics maths
@@ -38736,7 +38305,6 @@ docfiles size=19
runfiles size=2
RELOC/tex/latex/bondgraph/bondgraph.sty
catalogue-ctan /macros/latex/contrib/bondgraph
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics diagram
catalogue-version 1.0
@@ -38770,7 +38338,6 @@ runfiles size=2
RELOC/tex/latex/bondgraphs/bondgraphs.sty
catalogue-also bondgraph
catalogue-ctan /macros/latex/contrib/bondgraphs
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics diagram pgf-tikz
catalogue-version 1.0.1
@@ -38824,7 +38391,6 @@ srcfiles size=19
runfiles size=11
RELOC/tex/latex/bookcover/bookcover.cls
catalogue-ctan /macros/latex/contrib/bookcover
-catalogue-date 2018-01-21 22:41:56 +0100
catalogue-license lppl1.2
catalogue-topics class covers
catalogue-version 2.3
@@ -38849,7 +38415,6 @@ docfiles size=55
runfiles size=9
RELOC/bibtex/bst/bookdb/bookdb.bst
catalogue-ctan /biblio/bibtex/contrib/bookdb
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics bibtex-sty catalogue
catalogue-version 0.2
@@ -38875,7 +38440,6 @@ docfiles size=76
runfiles size=5
RELOC/tex/latex/bookest/bookest.cls
catalogue-ctan /macros/latex/contrib/bookest
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics class book-pub
catalogue-version 1.1
@@ -39259,7 +38823,6 @@ runfiles size=451
RELOC/tex/latex/bookhands/tgothic.sty
RELOC/tex/latex/bookhands/uncial.sty
catalogue-ctan /fonts/bookhands
-catalogue-date 2017-10-29 15:32:26 +0100
catalogue-license lppl
catalogue-topics font font-mf font-bookhand collection
@@ -39290,7 +38853,6 @@ runfiles size=3
RELOC/tex/latex/booklet/bkltprnt.sty
RELOC/tex/latex/booklet/booklet.sty
catalogue-ctan /macros/latex/contrib/booklet
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics layout
catalogue-version 0.7b
@@ -39507,7 +39069,6 @@ runfiles size=400
RELOC/tex/latex/bookman/ts1ubk.fd
catalogue-also tex-gyre
catalogue-ctan /fonts/urw/base35
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics font font-type1 font-collection
@@ -39544,7 +39105,6 @@ runfiles size=21
catalogue-contact-bugs https://github.com/ho-tex/bookmark/issues
catalogue-contact-repository https://github.com/ho-tex/bookmark
catalogue-ctan /macros/latex/contrib/bookmark
-catalogue-date 2019-12-04 05:36:07 +0100
catalogue-license lppl1.3
catalogue-topics hyper
catalogue-version 1.28
@@ -39574,7 +39134,6 @@ srcfiles size=12
runfiles size=2
RELOC/tex/latex/booktabs/booktabs.sty
catalogue-ctan /macros/latex/contrib/booktabs
-catalogue-date 2019-10-08 12:54:56 +0200
catalogue-license lppl1.3
catalogue-topics table table-rule
catalogue-version 1.6180339
@@ -39595,7 +39154,6 @@ docfiles size=82
RELOC/doc/latex/booktabs-de/booktabs-de.ins
RELOC/doc/latex/booktabs-de/booktabs-de.pdf details="Package documentation"
catalogue-ctan /macros/latex/contrib/booktabs-de
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics german-doc translation
catalogue-version 1.61803
@@ -39617,7 +39175,6 @@ docfiles size=67
RELOC/doc/latex/booktabs-fr/f-booktabs.pdf details="The document itself"
RELOC/doc/latex/booktabs-fr/ltxdoc.cfg
catalogue-ctan /info/translations/booktabs/fr
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics french-doc translation
catalogue-version 1.00
@@ -39653,7 +39210,6 @@ srcfiles size=12
runfiles size=2
RELOC/tex/latex/boolexpr/boolexpr.sty
catalogue-ctan /macros/latex/contrib/boolexpr
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics macro-supp
catalogue-version 3.14
@@ -39730,7 +39286,6 @@ runfiles size=98
RELOC/tex/latex/boondox/uboondox-frak.fd
RELOC/tex/latex/boondox/uboondoxuprscr.fd
catalogue-ctan /fonts/boondox
-catalogue-date 2017-02-26 09:09:50 +0100
catalogue-license ofllppl
catalogue-topics font font-maths font-type1
catalogue-version 1.02d
@@ -39759,7 +39314,6 @@ runfiles size=1
RELOC/tex/latex/bophook/bophook.sty
catalogue-also everyshi
catalogue-ctan /macros/latex/contrib/bophook
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics defer-stuff
catalogue-version 0.02
@@ -39797,7 +39351,6 @@ runfiles size=191
RELOC/tex/generic/borceux/MiniDiagram
RELOC/tex/generic/borceux/MultipleArrows
catalogue-ctan /macros/generic/diagrams/borceux
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license other-free
catalogue-topics diagram-comm
@@ -39861,7 +39414,6 @@ runfiles size=15
RELOC/tex/latex/bosisio/quotes.sty
RELOC/tex/latex/bosisio/sobolev.sty
catalogue-ctan /macros/latex/contrib/bosisio
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics collection
@@ -39883,7 +39435,6 @@ runfiles size=1
RELOC/tex/latex/boxedminipage/boxedminipage.sty
catalogue-also boxedminipage2e
catalogue-ctan /macros/latex/contrib/boxedminipage
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics boxing
catalogue-version 2
@@ -39916,7 +39467,6 @@ runfiles size=1
RELOC/tex/latex/boxedminipage2e/boxedminipage2e.sty
catalogue-also boxedminipage
catalogue-ctan /macros/latex/contrib/boxedminipage2e
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics boxing
catalogue-version 1.0
@@ -39956,7 +39506,6 @@ srcfiles size=24
runfiles size=6
RELOC/tex/latex/boxhandler/boxhandler.sty
catalogue-ctan /macros/latex/contrib/boxhandler
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics float caption defer-stuff
catalogue-version 1.30
@@ -39985,7 +39534,6 @@ srcfiles size=5
runfiles size=2
RELOC/tex/latex/bpchem/bpchem.sty
catalogue-ctan /macros/latex/contrib/bpchem
-catalogue-date 2017-08-23 16:08:38 +0200
catalogue-license lppl
catalogue-topics chemistry
catalogue-version 1.1
@@ -40015,7 +39563,6 @@ docfiles size=67
runfiles size=3
RELOC/metapost/bpolynomial/bpolynomial.mp
catalogue-ctan /graphics/metapost/contrib/macros/bpolynomial
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics graphics-plotfn
catalogue-version 0.5
@@ -40040,7 +39587,6 @@ docfiles size=19
runfiles size=2
RELOC/tex/latex/br-lex/br-lex.cls
catalogue-ctan /macros/latex/contrib/br-lex
-catalogue-date 2017-08-19 23:31:09 +0200
catalogue-license lppl1.3
catalogue-topics legal class
@@ -40064,7 +39610,6 @@ docfiles size=79
runfiles size=1
RELOC/tex/latex/bracketkey/bracketkey.sty
catalogue-ctan /macros/latex/contrib/bracketkey
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics biology
catalogue-version 1.0
@@ -40099,7 +39644,6 @@ catalogue-contact-bugs https://github.com/loopspace/braids/issues
catalogue-contact-home https://github.com/loopspace/braids
catalogue-contact-repository https://github.com/loopspace/braids
catalogue-ctan /graphics/pgf/contrib/braids
-catalogue-date 2019-05-08 08:33:46 +0200
catalogue-license lppl1.3c
catalogue-topics maths diagram
catalogue-version 2.0
@@ -40131,7 +39675,6 @@ docfiles size=53
runfiles size=5
RELOC/tex/latex/braille/braille.sty
catalogue-ctan /macros/latex/contrib/braille
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics spec-alphabet
@@ -40156,7 +39699,6 @@ docfiles size=56
runfiles size=1
RELOC/tex/latex/braket/braket.sty
catalogue-ctan /macros/latex/contrib/braket
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics maths physics
@@ -40184,7 +39726,6 @@ srcfiles size=13
runfiles size=4
RELOC/tex/latex/brandeis-dissertation/brandeis-dissertation.cls
catalogue-ctan /macros/latex/contrib/brandeis-dissertation
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.2
catalogue-topics dissertation
catalogue-version 2.0
@@ -40217,7 +39758,6 @@ runfiles size=6
catalogue-contact-bugs https://github.com/9999years/brandeis-problemset/issues
catalogue-contact-repository https://github.com/9999years/brandeis-problemset
catalogue-ctan /macros/latex/contrib/brandeis-problemset
-catalogue-date 2019-04-15 22:05:06 +0200
catalogue-license lppl1.3c
catalogue-topics exercise class
catalogue-version 0.5.5
@@ -40243,7 +39783,6 @@ docfiles size=39
runfiles size=1
RELOC/tex/latex/breakcites/breakcites.sty
catalogue-ctan /macros/latex/contrib/breakcites
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license other-free
catalogue-topics cite-supp
@@ -40274,7 +39813,6 @@ runfiles size=3
RELOC/tex/latex/breakurl/breakurl.sty
catalogue-also hyperref
catalogue-ctan /macros/latex/contrib/breakurl
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics hyper
catalogue-version 1.40
@@ -40301,7 +39839,6 @@ runfiles size=35
catalogue-alias polishlipsum
catalogue-also lipsum
catalogue-ctan /macros/latex/contrib/bredzenie
-catalogue-date 2018-05-01 19:00:24 +0200
catalogue-license lppl1.3c
catalogue-topics dummy-gen
catalogue-version 1.0
@@ -40353,7 +39890,6 @@ runfiles size=42
catalogue-contact-home http://wspr.io/breqn/
catalogue-contact-repository https://github.com/wspr/breqn
catalogue-ctan /macros/latex/contrib/breqn
-catalogue-date 2018-09-16 19:02:30 +0200
catalogue-license lppl1.3
catalogue-topics maths
catalogue-version 0.98f
@@ -40381,7 +39917,6 @@ srcfiles size=4
runfiles size=1
RELOC/tex/latex/bropd/bropd.sty
catalogue-ctan /macros/latex/contrib/bropd
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics maths
catalogue-version 1.2
@@ -40421,7 +39956,6 @@ runfiles size=31
RELOC/tex/latex/brushscr/pbsi.sty
RELOC/tex/latex/brushscr/t1pbsi.fd
catalogue-ctan /fonts/brushscr
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics font font-calligraphic font-type1
@@ -40455,7 +39989,6 @@ runfiles size=3
RELOC/tex/latex/bullcntr/bullcntr.sty
RELOC/tex/latex/bullcntr/bullenum.sty
catalogue-ctan /macros/latex/contrib/bullcntr
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics numbers
catalogue-version 0.04
@@ -40493,7 +40026,6 @@ runfiles size=14
texmf-dist/tex/latex/bundledoc/texlive-unix-arlatex.cfg
texmf-dist/tex/latex/bundledoc/texlive-unix.cfg
catalogue-ctan /support/bundledoc
-catalogue-date 2019-09-08 18:30:42 +0200
catalogue-license lppl1.3c
catalogue-topics bundle
catalogue-version 3.4
@@ -40684,7 +40216,6 @@ runfiles size=18
RELOC/tex/latex/burmese/birm.sty
RELOC/tex/latex/burmese/ubirm.fd
catalogue-ctan /language/burmese
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics burmese
@@ -40736,7 +40267,6 @@ runfiles size=3
catalogue-contact-bugs https://mrw.sh/templates/businesscard-qrcode/issues
catalogue-contact-repository https://mrw.sh/templates/businesscard-qrcode
catalogue-ctan /macros/xetex/latex/businesscard-qrcode
-catalogue-date 2018-08-18 05:31:14 +0200
catalogue-license lgpl
catalogue-topics class file-card qrcode xetex
catalogue-version 1.2
@@ -40769,7 +40299,6 @@ runfiles size=10
catalogue-also ebproof
catalogue-contact-home http://math.ucsd.edu/~sbuss/ResearchWeb/bussproofs/
catalogue-ctan /macros/latex/contrib/bussproofs
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license lppl1.3
catalogue-topics maths proof
catalogue-version 1.1
@@ -40802,7 +40331,6 @@ catalogue-also bussproofs
catalogue-contact-bugs https://github.com/OpenLogicProject/bussproofs-extra/issues
catalogue-contact-repository https://github.com/OpenLogicProject/bussproofs-extra
catalogue-ctan /macros/latex/contrib/bussproofs-extra
-catalogue-date 2019-06-02 18:10:17 +0200
catalogue-license lppl1.3c
catalogue-topics maths proof
catalogue-version 0.4
@@ -40838,7 +40366,6 @@ runfiles size=29
RELOC/tex/latex/bxbase/zxbase.sty
catalogue-contact-home https://github.com/zr-tex8r/BXbase
catalogue-ctan /language/japanese/BX/bxbase
-catalogue-date 2017-05-30 16:37:29 +0200
catalogue-license mit
catalogue-topics japanese macro-supp
catalogue-version 1.1
@@ -40873,7 +40400,6 @@ runfiles size=4
RELOC/tex/latex/bxcalc/bxcalcux.sty
catalogue-contact-home https://github.com/zr-tex8r/BXcalc
catalogue-ctan /macros/latex/contrib/bxcalc
-catalogue-date 2019-11-27 21:15:53 +0100
catalogue-license mit
catalogue-topics calculation arithmetic etex
catalogue-version 1.0b
@@ -40903,7 +40429,6 @@ docfiles size=74
runfiles size=8
RELOC/tex/latex/bxcjkjatype/bxcjkjatype.sty
catalogue-ctan /language/japanese/bxcjkjatype
-catalogue-date 2018-02-25 10:09:04 +0100
catalogue-license mit
catalogue-topics japanese
catalogue-version 0.3
@@ -40929,7 +40454,6 @@ docfiles size=4
runfiles size=1
RELOC/tex/latex/bxdpx-beamer/bxdpx-beamer.sty
catalogue-ctan /macros/latex/contrib/beamer-contrib/bxdpx-beamer
-catalogue-date 2016-12-18 08:45:22 +0100
catalogue-license mit
catalogue-topics graphics-drv
catalogue-version 0.3
@@ -40954,7 +40478,6 @@ docfiles size=2
runfiles size=3
RELOC/tex/latex/bxdvidriver/bxdvidriver.sty
catalogue-ctan /macros/latex/contrib/bxdvidriver
-catalogue-date 2017-02-13 17:55:09 +0100
catalogue-license mit
catalogue-topics dvi-proc
catalogue-version 0.2a
@@ -40978,7 +40501,6 @@ runfiles size=7
RELOC/tex/latex/bxeepic/bxdpxp2e.def
RELOC/tex/latex/bxeepic/bxeepic.sty
catalogue-ctan /macros/latex/contrib/bxeepic
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license other-free
catalogue-topics graphics-in-tex
catalogue-version 0.2
@@ -41003,7 +40525,6 @@ docfiles size=2
runfiles size=1
RELOC/tex/latex/bxenclose/bxenclose.sty
catalogue-ctan /macros/latex/contrib/bxenclose
-catalogue-date 2016-12-18 08:45:22 +0100
catalogue-license mit
catalogue-topics macro-supp
catalogue-version 0.2
@@ -41028,7 +40549,6 @@ runfiles size=1
catalogue-contact-bugs https://github.com/wtsnjp/BXghost/issues
catalogue-contact-repository https://github.com/wtsnjp/BXghost
catalogue-ctan /language/japanese/BX/bxghost
-catalogue-date 2019-09-22 10:19:33 +0200
catalogue-license mit
catalogue-topics japanese macro-supp
catalogue-version 0.2.0
@@ -41057,7 +40577,6 @@ runfiles size=9
catalogue-contact-bugs https://github.com/wtsnjp/BXjaholiday/issues
catalogue-contact-repository https://github.com/wtsnjp/BXjaholiday
catalogue-ctan /language/japanese/BX/bxjaholiday
-catalogue-date 2019-02-05 05:26:48 +0100
catalogue-license mit
catalogue-topics japanese date-time expl3
catalogue-version 1.0.0
@@ -41084,7 +40603,6 @@ docfiles size=4
runfiles size=22
RELOC/tex/latex/bxjalipsum/bxjalipsum.sty
catalogue-ctan /language/japanese/BX/bxjalipsum
-catalogue-date 2017-03-01 15:54:11 +0100
catalogue-license mit
catalogue-topics macro-supp dummy-gen japanese
catalogue-version 0.3a
@@ -41115,7 +40633,6 @@ runfiles size=2
RELOC/tex/latex/bxjaprnind/bxjaprnind.sty
catalogue-contact-home https://github.com/zr-tex8r/BXjaprnind
catalogue-ctan /language/japanese/BX/bxjaprnind
-catalogue-date 2017-09-13 08:50:07 +0200
catalogue-license mit
catalogue-topics japanese macro-supp
catalogue-version 0.3b
@@ -41144,7 +40661,6 @@ runfiles size=34
RELOC/tex/latex/bxjatoucs/bxjatoucs.sty
catalogue-contact-repository https://github.com/zr-tex8r/BXjatoucs
catalogue-ctan /language/japanese/BX/bxjatoucs
-catalogue-date 2019-10-22 19:46:39 +0200
catalogue-license mit
catalogue-topics japanese unicode macro-supp
catalogue-version 0.2
@@ -41191,7 +40707,6 @@ runfiles size=97
catalogue-contact-home https://github.com/zr-tex8r/BXjscls
catalogue-contact-repository https://github.com/zr-tex8r
catalogue-ctan /language/japanese/BX/bxjscls
-catalogue-date 2019-11-25 21:45:20 +0100
catalogue-license bsd2
catalogue-topics japanese class
catalogue-version 1.9i
@@ -41219,7 +40734,6 @@ runfiles size=4
RELOC/tex/latex/bxnewfont/bxnewfont.sty
catalogue-contact-home https://github.com/zr-tex8r/BXnewfont
catalogue-ctan /macros/latex/contrib/bxnewfont
-catalogue-date 2017-05-02 23:06:45 +0200
catalogue-license mit
catalogue-topics font-sel
catalogue-version 0.2b
@@ -41244,7 +40758,6 @@ runfiles size=2
RELOC/tex/latex/bxorigcapt/bxorigcapt.sty
catalogue-contact-home https://github.com/zr-tex8r/BXorigcapt
catalogue-ctan /macros/latex/contrib/bxorigcapt
-catalogue-date 2018-09-09 06:33:26 +0200
catalogue-license mit
catalogue-topics typesetting
catalogue-version 0.3
@@ -41269,7 +40782,6 @@ runfiles size=4
RELOC/tex/latex/bxpapersize/bxpapersize.sty
catalogue-contact-home https://github.com/zr-tex8r/BXpapersize
catalogue-ctan /macros/latex/contrib/bxpapersize
-catalogue-date 2019-10-06 16:18:28 +0200
catalogue-license mit
catalogue-topics page-control
catalogue-version 0.4
@@ -41296,7 +40808,6 @@ docfiles size=6
runfiles size=7
RELOC/tex/latex/bxpdfver/bxpdfver.sty
catalogue-ctan /macros/latex/contrib/bxpdfver
-catalogue-date 2017-02-14 00:26:52 +0100
catalogue-license mit
catalogue-topics pdf-feat
catalogue-version 0.4
@@ -41330,7 +40841,6 @@ runfiles size=5
catalogue-also hologo
catalogue-contact-home https://github.com/zr-tex8r/BXtexlogo
catalogue-ctan /macros/latex/contrib/bxtexlogo
-catalogue-date 2018-04-03 05:07:13 +0200
catalogue-license mit
catalogue-topics logo
catalogue-version 0.4
@@ -41363,7 +40873,6 @@ runfiles size=7
RELOC/tex/latex/bxwareki/bxwareki2019.def
catalogue-contact-repository https://github.com/zr-tex8r/BXwareki
catalogue-ctan /language/japanese/BX/bxwareki
-catalogue-date 2019-06-01 13:19:12 +0200
catalogue-license mit
catalogue-topics calendar japanese
catalogue-version 0.6
@@ -41394,7 +40903,6 @@ srcfiles size=33
runfiles size=5
RELOC/tex/latex/bytefield/bytefield.sty
catalogue-ctan /macros/latex/contrib/bytefield
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license lppl1.3c
catalogue-topics engineering comp-sci comp-net
catalogue-version 2.4
@@ -41425,7 +40933,6 @@ runfiles size=9
RELOC/tex/generic/c-pascal/cap_pas.tex
RELOC/tex/generic/c-pascal/cap_pyt.tex
catalogue-ctan /macros/generic/c_pascal
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics listing
catalogue-version 1.2
@@ -42093,7 +41600,6 @@ runfiles size=1875
RELOC/tex/latex/cabin/TS1Cabin-TLF.fd
RELOC/tex/latex/cabin/cabin.sty
catalogue-ctan /fonts/cabin
-catalogue-date 2019-10-21 17:34:25 +0200
catalogue-license ofl
catalogue-topics font font-sans font-type1 font-otf
@@ -42121,7 +41627,6 @@ 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 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics graphics-prep
catalogue-version 1.0
@@ -42351,7 +41856,6 @@ runfiles size=204
RELOC/tex/latex/caladea/TS1Caladea-TLF.fd
RELOC/tex/latex/caladea/caladea.sty
catalogue-ctan /fonts/caladea
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license apache2
catalogue-topics font font-type1 font-ttf
@@ -42380,7 +41884,6 @@ runfiles size=1
RELOC/tex/latex/calcage/calcage.sty
catalogue-contact-repository https://github.com/ypid/latex-packages/tree/master/calcage
catalogue-ctan /macros/latex/contrib/calcage
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl1.3
catalogue-topics date-time
catalogue-version 0.90
@@ -42406,7 +41909,6 @@ docfiles size=115
runfiles size=5
RELOC/tex/latex/calctab/calctab.sty
catalogue-ctan /macros/latex/contrib/calctab
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics calculation
catalogue-version 0.6.1
@@ -42445,7 +41947,6 @@ srcfiles size=10
runfiles size=3
RELOC/tex/latex/calculation/calculation.sty
catalogue-ctan /macros/latex/contrib/calculation
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics proof maths
catalogue-version 1.0
@@ -42540,7 +42041,6 @@ runfiles size=19
RELOC/tex/latex/calculator/calculator.sty
RELOC/tex/latex/calculator/calculus.sty
catalogue-ctan /macros/latex/contrib/calculator
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.2
catalogue-topics calculation maths
catalogue-version 2.0
@@ -42567,7 +42067,6 @@ runfiles size=76
RELOC/fonts/tfm/public/calligra/callig15.tfm
catalogue-also calligra-type1
catalogue-ctan /fonts/calligra
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license other-free
catalogue-topics font font-calligraphic font-mf
@@ -42590,7 +42089,6 @@ runfiles size=19
RELOC/fonts/map/dvips/calligra-type1/calligra.map
RELOC/fonts/type1/public/calligra-type1/callig15.pfb
catalogue-ctan /fonts/calligra-type1
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license other-free
catalogue-topics font font-calligraphic font-type1
catalogue-version 001.000
@@ -42615,7 +42113,6 @@ docfiles size=77
runfiles size=1
RELOC/tex/latex/callouts/callouts.sty
catalogue-ctan /graphics/pgf/contrib/callouts
-catalogue-date 2017-07-27 16:25:55 +0200
catalogue-license lppl
catalogue-topics graphics pgf-tikz
@@ -42637,7 +42134,6 @@ runfiles size=2
RELOC/tex/latex/calrsfs/OMSrsfs.fd
RELOC/tex/latex/calrsfs/calrsfs.sty
catalogue-ctan /macros/latex/contrib/calrsfs
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics font-supp
@@ -42801,7 +42297,6 @@ runfiles size=6
RELOC/tex/latex/cals/cals.sty
catalogue-also longtable supertabular
catalogue-ctan /macros/latex/contrib/cals
-catalogue-date 2017-01-20 11:13:03 +0100
catalogue-license lppl1.3
catalogue-topics table table-long
catalogue-version 2.4.2
@@ -42832,7 +42327,6 @@ runfiles size=5
RELOC/tex/latex/calxxxx-yyyy/calxxxx-yyyy.tex
catalogue-also calxxxx
catalogue-ctan /macros/latex/contrib/calxxxx-yyyy
-catalogue-date 2018-12-31 17:10:11 +0100
catalogue-license lppl1.3c
catalogue-topics calendar
catalogue-version 20.19a
@@ -42855,7 +42349,6 @@ docfiles size=65
runfiles size=2
RELOC/tex/latex/cancel/cancel.sty
catalogue-ctan /macros/latex/contrib/cancel
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics maths
catalogue-version 2.2
@@ -42882,7 +42375,6 @@ srcfiles size=7
runfiles size=1
RELOC/tex/latex/canoniclayout/canoniclayout.sty
catalogue-ctan /macros/latex/contrib/canoniclayout
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics geometry
catalogue-version 0.4
@@ -43821,7 +43313,6 @@ runfiles size=1295
RELOC/tex/latex/cantarell/X2cantarell-TOsF.fd
RELOC/tex/latex/cantarell/cantarell.sty
catalogue-ctan /fonts/cantarell
-catalogue-date 2019-06-24 22:54:17 +0200
catalogue-license ofllppl1.3c
catalogue-topics font font-sans font-type1
catalogue-version 3.2
@@ -43853,7 +43344,6 @@ catalogue-also caption captdef
catalogue-contact-repository https://github.com/rf-latex/capt-of
catalogue-contact-support https://github.com/rf-latex/capt-of/issues
catalogue-ctan /macros/latex/contrib/capt-of
-catalogue-date 2018-09-14 18:00:39 +0200
catalogue-license lppl
catalogue-topics caption
@@ -43889,7 +43379,6 @@ srcfiles size=11
runfiles size=2
RELOC/tex/latex/captcont/captcont.sty
catalogue-ctan /macros/latex/contrib/captcont
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics caption
catalogue-version 2.0
@@ -43919,7 +43408,6 @@ catalogue-also capt-of
catalogue-contact-repository https://github.com/rf-latex/captdef
catalogue-contact-support https://github.com/rf-latex/captdef/issues
catalogue-ctan /macros/latex/contrib/captdef
-catalogue-date 2018-09-15 15:27:07 +0200
catalogue-license lppl
catalogue-topics caption
@@ -43980,7 +43468,6 @@ catalogue-also subcaption bicaption
catalogue-contact-bugs https://gitlab.com/axelsommerfeldt/caption/issues
catalogue-contact-repository https://gitlab.com/axelsommerfeldt/caption
catalogue-ctan /macros/latex/contrib/caption
-catalogue-date 2019-11-24 20:32:39 +0100
catalogue-license lppl1.3
catalogue-topics caption float
@@ -44007,7 +43494,6 @@ runfiles size=7
RELOC/tex/latex/carbohydrates/carbohydrates.sty
catalogue-contact-repository https://github.com/cgnieder/carbohydrates/
catalogue-ctan /macros/latex/contrib/carbohydrates
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl1.3
catalogue-topics diagram chemistry
catalogue-version 0.1
@@ -44048,7 +43534,6 @@ runfiles size=11
RELOC/tex/latex/carlisle/scalefnt.sty
RELOC/tex/latex/carlisle/slashed.sty
catalogue-ctan /macros/latex/contrib/carlisle
-catalogue-date 2018-05-30 10:45:25 +0200
catalogue-license lppl
catalogue-topics collection
@@ -44296,7 +43781,6 @@ runfiles size=1561
RELOC/tex/latex/carlito/carlito.sty
catalogue-contact-home http://gsdview.appspot.com/chromeos-localmirror/distfiles/crosextrafonts-carlito-20130920.tar.gz
catalogue-ctan /fonts/carlito
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license ofl
catalogue-topics font font-ttf font-type1 font-sans
@@ -44332,7 +43816,6 @@ runfiles size=38
RELOC/fonts/type1/public/carolmin-ps/cminb17.pfb
RELOC/fonts/type1/public/carolmin-ps/cminb7.pfb
catalogue-ctan /fonts/carolmin-ps
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics font font-bookhand font-type1
@@ -44359,7 +43842,6 @@ srcfiles size=6
runfiles size=2
RELOC/tex/latex/cascade/cascade.sty
catalogue-ctan /macros/latex/contrib/cascade
-catalogue-date 2018-07-13 05:39:51 +0200
catalogue-license lppl1.3
catalogue-topics maths
catalogue-version 1.01
@@ -44388,7 +43870,6 @@ runfiles size=11
RELOC/bibtex/bst/cascadilla/cascadilla.bst
RELOC/tex/latex/cascadilla/cascadilla.cls
catalogue-ctan /macros/latex/contrib/cascadilla
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics journalpub
catalogue-version 1.8.2
@@ -44413,7 +43894,6 @@ docfiles size=81
runfiles size=2
RELOC/tex/latex/cases/cases.sty
catalogue-ctan /macros/latex/contrib/cases
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics maths-syseqn
catalogue-version 2.5
@@ -44439,7 +43919,6 @@ runfiles size=9
RELOC/tex/latex/casyl/casyltex.sty
catalogue-also oinuit
catalogue-ctan /language/casyl
-catalogue-date 2017-10-29 14:24:36 +0100
catalogue-license pd
catalogue-topics linguistic font font-mf
catalogue-version 2.0
@@ -44468,7 +43947,6 @@ runfiles size=3
catalogue-contact-bugs https://github.com/ho-tex/catchfile/issues
catalogue-contact-repository https://github.com/ho-tex/catchfile
catalogue-ctan /macros/latex/contrib/catchfile
-catalogue-date 2019-12-10 09:45:53 +0100
catalogue-license lppl1.3
catalogue-topics macro-supp
catalogue-version 1.8
@@ -44500,7 +43978,6 @@ srcfiles size=10
runfiles size=1
RELOC/tex/latex/catchfilebetweentags/catchfilebetweentags.sty
catalogue-ctan /macros/latex/contrib/catchfilebetweentags
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics macro-supp
catalogue-version 1.1
@@ -44540,7 +44017,6 @@ runfiles size=7
RELOC/tex/generic/catcodes/stacklet.sty
catalogue-contact-support http://www.webdesign-bu.de/uwe_lueck/contact.html
catalogue-ctan /macros/generic/catcodes
-catalogue-date 2017-05-05 20:28:50 +0200
catalogue-license lppl1.3
catalogue-topics macro-supp quote-marks macro-gen
catalogue-version r0.2
@@ -44571,7 +44047,6 @@ srcfiles size=7
runfiles size=1
RELOC/tex/latex/catechis/catechis.sty
catalogue-ctan /macros/latex/contrib/catechis
-catalogue-date 2018-11-02 22:33:14 +0100
catalogue-license lppl1.3
catalogue-topics theology
catalogue-version 2.5
@@ -44601,7 +44076,6 @@ runfiles size=47
RELOC/tex/latex/catoptions/catoptions-guide.cfg
RELOC/tex/latex/catoptions/catoptions.sty
catalogue-ctan /macros/latex/contrib/catoptions
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics macro-supp keyval
catalogue-version 0.2.7h
@@ -44639,7 +44113,6 @@ runfiles size=72
RELOC/tex/latex/cbcoptic/lcopcoptic.fd
RELOC/tex/latex/cbcoptic/prnthyph.sty
catalogue-ctan /language/coptic/cbcoptic
-catalogue-date 2017-10-29 14:28:43 +0100
catalogue-license lppl
catalogue-topics coptic font font-mf font-type1
catalogue-version 0.2
@@ -47591,7 +47064,6 @@ runfiles size=20512
RELOC/fonts/type1/public/cbfonts/gttu2986.pfb
RELOC/fonts/type1/public/cbfonts/gttu3583.pfb
catalogue-ctan /fonts/greek/cbfonts
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics greek font font-greek font-mf font-type1
@@ -47628,7 +47100,6 @@ runfiles size=13
RELOC/tex/latex/cbfonts-fd/lgrlmss.fd
RELOC/tex/latex/cbfonts-fd/lgrlmtt.fd
catalogue-ctan /fonts/greek/cbfonts-fd
-catalogue-date 2017-07-29 20:12:21 +0200
catalogue-license lppl1.3
catalogue-topics font-supp font-greek
catalogue-version 1.2
@@ -47686,7 +47157,6 @@ runfiles size=150
RELOC/fonts/type1/public/cc-pl/pcslc9.pfb
RELOC/fonts/type1/public/cc-pl/pcti10.pfb
catalogue-ctan /fonts/cc-pl
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics polish font font-serif font-mf font-type1
catalogue-version 1.02.2
@@ -47718,7 +47188,6 @@ runfiles size=6
RELOC/tex/latex/ccaption/ccaption.sty
catalogue-also float caption
catalogue-ctan /macros/latex/contrib/ccaption
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics caption
catalogue-version 3.2c
@@ -47751,7 +47220,6 @@ runfiles size=3
RELOC/tex/latex/ccfonts/ts1ccr.fd
catalogue-also ecc
catalogue-ctan /macros/latex/contrib/ccfonts
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics font-supp
catalogue-version 1.1
@@ -47788,7 +47256,6 @@ runfiles size=10
RELOC/tex/latex/ccicons/ccicons.sty
catalogue-contact-home https://github.com/ummels/ccicons
catalogue-ctan /fonts/ccicons
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license lppl1.3cofl
catalogue-topics font font-symbol font-type1
catalogue-version 1.6
@@ -47816,7 +47283,6 @@ srcfiles size=4
runfiles size=2
RELOC/tex/latex/cclicenses/cclicenses.sty
catalogue-ctan /macros/latex/contrib/cclicenses
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics logo
@@ -47850,7 +47316,6 @@ runfiles size=6
RELOC/tex/latex/cd/cd.cls
catalogue-also cdcover
catalogue-ctan /macros/latex/contrib/cd
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics labels
catalogue-version 1.4
@@ -47880,7 +47345,6 @@ runfiles size=4
RELOC/tex/latex/cd-cover/cd-cover.cls
catalogue-also cd
catalogue-ctan /macros/latex/contrib/cd-cover
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics covers
catalogue-version 1.0
@@ -47929,7 +47393,6 @@ runfiles size=28
RELOC/tex/latex/cdpbundl/hp-laserjet-4500.def
RELOC/tex/latex/cdpbundl/letteracdp.cls
catalogue-ctan /macros/latex/contrib/cdpbundl
-catalogue-date 2018-02-12 06:16:41 +0100
catalogue-license lppl
catalogue-topics letter
catalogue-version 0.36d
@@ -47952,7 +47415,6 @@ runfiles size=10
RELOC/bibtex/bst/cell/cell.bst
RELOC/tex/latex/cell/cell.sty
catalogue-ctan /macros/latex/contrib/cell
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics bibtex-sty
@@ -47983,7 +47445,6 @@ runfiles size=8
catalogue-contact-bugs https://gitlab.com/frnchfrgg-latex/cellprops/issues
catalogue-contact-repository https://gitlab.com/frnchfrgg-latex/cellprops
catalogue-ctan /macros/latex/contrib/cellprops
-catalogue-date 2019-09-29 19:44:48 +0200
catalogue-license gpl3+
catalogue-topics table
catalogue-version 1.6
@@ -48014,7 +47475,6 @@ docfiles size=88
runfiles size=2
RELOC/tex/latex/cellspace/cellspace.sty
catalogue-ctan /macros/latex/contrib/cellspace
-catalogue-date 2019-03-13 17:45:58 +0100
catalogue-license lppl
catalogue-topics table
catalogue-version 1.8.1
@@ -48042,7 +47502,6 @@ srcfiles size=10
runfiles size=5
RELOC/tex/latex/celtic/tikzlibraryceltic.code.tex
catalogue-ctan /graphics/pgf/contrib/celtic
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics graphics pgf-tikz
catalogue-version 1.1
@@ -48069,7 +47528,6 @@ docfiles size=57
runfiles size=2
RELOC/tex/latex/censor/censor.sty
catalogue-ctan /macros/latex/contrib/censor
-catalogue-date 2018-11-15 18:18:31 +0100
catalogue-license lppl1.3
catalogue-topics security
catalogue-version 3.22
@@ -48094,7 +47552,6 @@ docfiles size=1
runfiles size=1
RELOC/tex/latex/centeredline/centeredline.sty
catalogue-ctan /macros/latex/contrib/centeredline
-catalogue-date 2019-05-03 18:32:29 +0200
catalogue-license lppl1.3c
catalogue-topics layout alignment
catalogue-version 1.1
@@ -48126,7 +47583,6 @@ runfiles size=5
catalogue-contact-bugs https://github.com/alexpacini/cesenaexam/issues
catalogue-contact-repository https://github.com/alexpacini/cesenaexam
catalogue-ctan /macros/latex/contrib/cesenaexam
-catalogue-date 2017-08-07 04:55:20 +0200
catalogue-license lppl1.3c
catalogue-topics exam class
catalogue-version 0.2
@@ -48178,7 +47634,6 @@ runfiles size=23
RELOC/tex/latex/cfr-initials/Typocaps.sty
RELOC/tex/latex/cfr-initials/Zallman.sty
catalogue-ctan /macros/latex/contrib/cfr-initials
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics font-supp font-decor
catalogue-version 1.01
@@ -49118,7 +48573,6 @@ runfiles size=1536
RELOC/tex/latex/cfr-lm/uclmt.fd
RELOC/tex/latex/cfr-lm/uclmv.fd
catalogue-ctan /fonts/cfr-lm
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics font-supp
catalogue-version 1.5
@@ -49162,7 +48616,6 @@ runfiles size=9
RELOC/tex/latex/changebar/changebar.sty
catalogue-also chbar xechangebar backgrnd
catalogue-ctan /macros/latex/contrib/changebar
-catalogue-date 2018-03-11 17:41:18 +0100
catalogue-license lppl1.3
catalogue-topics editorial
catalogue-version 3.6c
@@ -49186,7 +48639,6 @@ docfiles size=19
runfiles size=5
RELOC/tex/latex/changelayout/changelayout.sty
catalogue-ctan /macros/latex/contrib/changelayout
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics geometry-adj
catalogue-version 1.0
@@ -49214,7 +48666,6 @@ runfiles size=2
catalogue-contact-bugs https://github.com/9999years/latex-changelog/issues
catalogue-contact-repository https://github.com/9999years/latex-changelog
catalogue-ctan /macros/latex/contrib/changelog
-catalogue-date 2019-07-07 05:51:34 +0200
catalogue-license gpl3
catalogue-topics version-control doc-mgmt
catalogue-version 2.1.0
@@ -49247,7 +48698,6 @@ runfiles size=4
RELOC/tex/latex/changepage/changepage.sty
RELOC/tex/latex/changepage/chngpage.sty
catalogue-ctan /macros/latex/contrib/changepage
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics geometry-adj
catalogue-version 1.0c
@@ -49434,7 +48884,6 @@ catalogue-contact-home http://changes.sourceforge.net/
catalogue-contact-repository https://gitlab.com/ekleinod/changes/
catalogue-contact-support https://gitlab.com/ekleinod/changes/issues
catalogue-ctan /macros/latex/contrib/changes
-catalogue-date 2019-11-17 17:35:43 +0100
catalogue-license lppl1.3
catalogue-topics editorial doc-tool
catalogue-version 3.2.1
@@ -49463,7 +48912,6 @@ runfiles size=1
catalogue-contact-repository https://github.com/rf-latex/chappg
catalogue-contact-support https://github.com/rf-latex/chappg/issues
catalogue-ctan /macros/latex/contrib/chappg
-catalogue-date 2018-09-15 15:30:15 +0200
catalogue-license lppl
catalogue-topics page-nos
catalogue-version 2.1b
@@ -49494,7 +48942,6 @@ srcfiles size=5
runfiles size=2
RELOC/tex/latex/chapterfolder/chapterfolder.sty
catalogue-ctan /macros/latex/contrib/chapterfolder
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics doc-mgmt
catalogue-version 2.0.1
@@ -49572,7 +49019,6 @@ runfiles size=127
RELOC/fonts/vf/bitstrea/charter/bchro8c.vf
RELOC/fonts/vf/bitstrea/charter/bchro8t.vf
catalogue-ctan /fonts/charter
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license other-free
catalogue-topics font font-serif font-type1
@@ -49594,7 +49040,6 @@ docfiles size=44
runfiles size=1
RELOC/tex/latex/chbibref/chbibref.sty
catalogue-ctan /macros/latex/contrib/chbibref
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics headings
catalogue-version 1.0
@@ -49624,7 +49069,6 @@ runfiles size=2
catalogue-contact-bugs https://github.com/ACHinrichs/LaTeX-templates/issues
catalogue-contact-repository https://github.com/ACHinrichs/LaTeX-templates
catalogue-ctan /macros/latex/contrib/cheatsheet
-catalogue-date 2017-08-20 06:11:29 +0200
catalogue-license mit
catalogue-topics tut-cheat
catalogue-version 0.8
@@ -49650,7 +49094,6 @@ runfiles size=7
catalogue-contact-bugs https://github.com/cereda/checkcites/issues
catalogue-contact-repository https://github.com/cereda/checkcites
catalogue-ctan /support/checkcites
-catalogue-date 2019-09-03 13:10:18 +0200
catalogue-license lppl1.3
catalogue-topics debug-supp
catalogue-version 2.4
@@ -49822,7 +49265,6 @@ runfiles size=1
catalogue-contact-home http://www.texnia.com/
catalogue-contact-repository https://github.com/jbezos
catalogue-ctan /macros/latex/contrib/checkend
-catalogue-date 2019-06-26 19:06:30 +0200
catalogue-license mit
catalogue-topics macro-supp
catalogue-version 1.0
@@ -49861,7 +49303,6 @@ runfiles size=6
texmf-dist/tex/latex/checklistings/checklistings.sty
catalogue-contact-repository https://github.com/tbrk/checklistings
catalogue-ctan /macros/latex/contrib/checklistings
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl1.2
catalogue-topics callback listing
catalogue-version 1.0
@@ -50018,7 +49459,6 @@ runfiles size=20
RELOC/bibtex/bst/chem-journal/pccp.bst
RELOC/bibtex/bst/chem-journal/revcompchem.bst
catalogue-ctan /biblio/bibtex/contrib/chem-journal
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics chemistry bibtex-supp journalpub
@@ -50061,7 +49501,6 @@ runfiles size=9
RELOC/tex/latex/chemarrow/chemarrow.sty
catalogue-also chemarr
catalogue-ctan /macros/latex/contrib/chemarrow
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics chemistry diagram
catalogue-version 0.9
@@ -50099,7 +49538,6 @@ runfiles size=48
RELOC/bibtex/bst/chembst/JAmChemSoc_all.bst
RELOC/bibtex/bst/chembst/cv.bst
catalogue-ctan /biblio/bibtex/contrib/chembst
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics bibtex-sty chemistry
catalogue-version 0.2.5
@@ -50129,7 +49567,6 @@ srcfiles size=8
runfiles size=2
RELOC/tex/latex/chemcompounds/chemcompounds.sty
catalogue-ctan /macros/latex/contrib/chemcompounds
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics chemistry
@@ -50156,7 +49593,6 @@ runfiles size=7
RELOC/tex/latex/chemcono/drftcono.sty
RELOC/tex/latex/chemcono/showkeysff.sty
catalogue-ctan /macros/latex/contrib/chemcono
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics chemistry
catalogue-version 1.3
@@ -50183,7 +49619,6 @@ docfiles size=131
runfiles size=9
RELOC/tex/latex/chemexec/chemexec.sty
catalogue-ctan /macros/latex/contrib/chemexec
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics chemistry exercise
catalogue-version 1.0
@@ -50218,7 +49653,6 @@ runfiles size=29
catalogue-contact-bugs https://framagit.org/unbonpetit/chemfig/issues
catalogue-contact-repository https://framagit.org/unbonpetit/chemfig/tree/master
catalogue-ctan /macros/generic/chemfig
-catalogue-date 2019-05-21 21:02:44 +0200
catalogue-license lppl1.3c
catalogue-topics graphics diagram chemistry pgf-tikz etex
catalogue-version 1.41
@@ -50245,7 +49679,6 @@ runfiles size=33
RELOC/tex/latex/chemformula/chemformula.sty
catalogue-contact-repository https://github.com/cgnieder/chemformula/
catalogue-ctan /macros/latex/contrib/chemformula
-catalogue-date 2019-10-13 19:31:03 +0200
catalogue-license lppl1.3
catalogue-topics chemistry expl3
catalogue-version 4.15h
@@ -50270,7 +49703,6 @@ runfiles size=12
RELOC/tex/latex/chemgreek/chemgreek.sty
catalogue-contact-repository https://github.com/cgnieder/chemgreek/
catalogue-ctan /macros/latex/contrib/chemgreek
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl1.3
catalogue-topics chemistry
catalogue-version 1.1
@@ -50333,7 +49765,6 @@ runfiles size=107
catalogue-contact-bugs https://github.com/cgnieder/chemmacros/issues
catalogue-contact-repository https://github.com/cgnieder/chemmacros/
catalogue-ctan /macros/latex/contrib/chemmacros
-catalogue-date 2019-11-17 20:10:22 +0100
catalogue-license lppl1.3
catalogue-topics chemistry expl3
catalogue-version 5.9
@@ -50361,7 +49792,6 @@ runfiles size=19
RELOC/tex/latex/chemnum/chemnum.sty
catalogue-also chemcompounds chemcono
catalogue-ctan /macros/latex/contrib/chemnum
-catalogue-date 2019-10-02 17:51:21 +0200
catalogue-license lppl1.3
catalogue-topics chemistry expl3
catalogue-version 1.2c
@@ -50391,7 +49821,6 @@ docfiles size=267
runfiles size=11
RELOC/tex/latex/chemplants/chemplants.sty
catalogue-ctan /graphics/pgf/contrib/chemplants
-catalogue-date 2019-11-19 20:28:21 +0100
catalogue-license lppl1.3c
catalogue-topics chemistry graphics pgf-tikz diagram-flow
catalogue-version 0.9.8
@@ -50430,7 +49859,6 @@ runfiles size=10
RELOC/tex/latex/chemschemex/chemschemex.sty
catalogue-also chemscheme
catalogue-ctan /macros/latex/contrib/chemschemex
-catalogue-date 2018-02-23 21:15:29 +0100
catalogue-license lppl1.2
catalogue-topics chemistry
catalogue-version 1.2
@@ -50468,7 +49896,6 @@ runfiles size=4
catalogue-contact-home https://github.com/jfinn24985/chemsec/wiki
catalogue-contact-repository https://github.com/jfinn24985/chemsec
catalogue-ctan /macros/latex/contrib/chemsec
-catalogue-date 2018-04-29 07:15:59 +0200
catalogue-license lppl1.3
catalogue-topics label-ref
catalogue-version 1.12a
@@ -50514,7 +49941,6 @@ runfiles size=14
RELOC/tex/latex/chemstyle/config/rsc.chemstyle.cfg
RELOC/tex/latex/chemstyle/config/tetlett.chemstyle.cfg
catalogue-ctan /macros/latex/contrib/chemstyle
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license lppl1.3
catalogue-topics chemistry
catalogue-version 2.0m
@@ -50547,7 +49973,6 @@ runfiles size=8
RELOC/tex/latex/cherokee/cherokee.sty
catalogue-also ocherokee
catalogue-ctan /fonts/cherokee
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license other-free
catalogue-topics font font-nonroman font-mf
@@ -50600,7 +50025,6 @@ runfiles size=21
RELOC/fonts/tfm/public/chess/chessfig10.tfm
RELOC/tex/latex/chess/chess.sty
catalogue-ctan /fonts/chess/chess
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics font font-chess games
catalogue-version 1.2
@@ -50628,7 +50052,6 @@ srcfiles size=26
runfiles size=14
RELOC/tex/latex/chess-problem-diagrams/diagram.sty
catalogue-ctan /macros/latex/contrib/chess-problem-diagrams
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.2
catalogue-topics games
catalogue-version 1.12
@@ -50673,7 +50096,6 @@ runfiles size=50
catalogue-contact-repository https://github.com/u-fischer/chessboard
catalogue-contact-support https://github.com/u-fischer/chessboard/issues
catalogue-ctan /macros/latex/contrib/chessboard
-catalogue-date 2019-06-24 05:47:40 +0200
catalogue-license lppl
catalogue-topics games
catalogue-version 1.8
@@ -50737,7 +50159,6 @@ runfiles size=47
RELOC/tex/latex/chessfss/lsiskak.fd
RELOC/tex/latex/chessfss/lsiskaknew.fd
catalogue-ctan /macros/latex/contrib/chessfss
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license lppl
catalogue-topics font-supp games
catalogue-version 1.2a
@@ -50761,7 +50182,6 @@ runfiles size=7
RELOC/bibtex/bst/chet/chetref.bst
RELOC/tex/latex/chet/chet.sty
catalogue-ctan /macros/latex/contrib/chet
-catalogue-date 2017-08-19 23:16:49 +0200
catalogue-license lppl1.3
catalogue-topics layout
catalogue-version 2.2
@@ -50799,7 +50219,6 @@ runfiles size=11
RELOC/tex/latex/chextras/t1lmvttos.fd
catalogue-also chletter
catalogue-ctan /macros/latex/contrib/chextras
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics swiss
catalogue-version 1.01
@@ -50819,7 +50238,6 @@ runfiles size=13
RELOC/bibtex/bst/chicago/chicago.bst
RELOC/tex/latex/chicago/chicago.sty
catalogue-ctan /biblio/bibtex/contrib/chicago
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license other-free
catalogue-topics bibtex-sty
@@ -50839,7 +50257,6 @@ docfiles size=1
runfiles size=10
RELOC/bibtex/bst/chicago-annote/chicago-annote.bst
catalogue-ctan /biblio/bibtex/contrib/chicago-annote
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics bibtex-sty bibtex-annote
@@ -50855,7 +50272,6 @@ containerchecksum 47cd96b4933b6c0bc4af01e5085af2450b60168813715c946ea18e3e7e5f6b
runfiles size=10
RELOC/bibtex/bst/chicagoa/chicagoa.bst
catalogue-ctan /biblio/bibtex/contrib/misc/chicagoa.bst
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license other-free
catalogue-topics bibtex-sty bibtex-annote
@@ -50888,7 +50304,6 @@ runfiles size=13
RELOC/tex/luatex/chickenize/chickenize.tex
catalogue-contact-repository https://github.com/alt/chickenize
catalogue-ctan /macros/luatex/generic/chickenize
-catalogue-date 2017-08-19 23:03:49 +0200
catalogue-license lppl1.3
catalogue-topics typesetting games luatex
catalogue-version 0.2.5
@@ -50924,7 +50339,6 @@ runfiles size=1
RELOC/tex/latex/childdoc/childdoc.def
catalogue-also subfiles
catalogue-ctan /macros/latex/contrib/childdoc
-catalogue-date 2018-12-30 17:14:03 +0100
catalogue-license lppl1.3
catalogue-topics subdocs
catalogue-version 2.0
@@ -51991,7 +51405,6 @@ runfiles size=2509
RELOC/tex/latex/chivo/TS1Chivo-TOsF.fd
catalogue-contact-home https://www.omnibus-type.com/fonts/chivo/
catalogue-ctan /fonts/chivo
-catalogue-date 2019-07-20 09:06:57 +0200
catalogue-license ofllppl1.3c
catalogue-topics font font-body font-proportional font-sans font-otf font-type1 font-supp font-t1enc
catalogue-version 2.1
@@ -52015,7 +51428,6 @@ docfiles size=15
runfiles size=1
RELOC/tex/latex/chkfloat/chkfloat.sty
catalogue-ctan /macros/latex/contrib/chkfloat
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics debug-supp
catalogue-version 0.1
@@ -52049,7 +51461,6 @@ runfiles size=5
catalogue-contact-bugs https://github.com/jlelong/chklref/issues
catalogue-contact-repository https://github.com/jlelong/chklref
catalogue-ctan /support/chklref
-catalogue-date 2019-11-05 11:10:09 +0100
catalogue-license gpl3
catalogue-topics debug-supp
catalogue-version 3.1.2
@@ -52224,7 +51635,6 @@ runfiles size=8
texmf-dist/scripts/chktex/deweb.pl
catalogue-contact-home http://www.nongnu.org/chktex/
catalogue-ctan /support/chktex
-catalogue-date 2019-01-06 07:22:27 +0100
catalogue-license gpl2
catalogue-topics debug-supp
catalogue-version 1.7.6
@@ -52431,7 +51841,6 @@ srcfiles size=17
runfiles size=3
RELOC/tex/latex/chletter/chletter.cls
catalogue-ctan /macros/latex/contrib/chletter
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics letter swiss
catalogue-version 2.0
@@ -52455,7 +51864,6 @@ docfiles size=59
runfiles size=2
RELOC/tex/latex/chngcntr/chngcntr.sty
catalogue-ctan /macros/latex/contrib/chngcntr
-catalogue-date 2018-04-10 16:59:30 +0200
catalogue-license lppl
catalogue-topics macro-supp counter-mgmt
catalogue-version 1.1a
@@ -52489,7 +51897,6 @@ runfiles size=3
catalogue-contact-bugs https://github.com/skramm/chordbars/issues
catalogue-contact-repository https://github.com/skramm/chordbars
catalogue-ctan /graphics/pgf/contrib/chordbars
-catalogue-date 2018-12-31 21:35:08 +0100
catalogue-license lppl1.3
catalogue-topics music chords pgf-tikz
catalogue-version 1.1
@@ -52516,7 +51923,6 @@ runfiles size=2
catalogue-contact-bugs https://github.com/sfranzen/chordbox/issues
catalogue-contact-repository https://github.com/sfranzen/chordbox
catalogue-ctan /graphics/pgf/contrib/chordbox
-catalogue-date 2019-04-20 09:00:43 +0200
catalogue-license lppl1.3
catalogue-topics music chords pgf-tikz
catalogue-version 1.0
@@ -52541,7 +51947,6 @@ docfiles size=6
runfiles size=1
RELOC/tex/latex/chronology/chronology.sty
catalogue-ctan /macros/latex/contrib/chronology
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics planning calendar
catalogue-version 1.1.1
@@ -52569,7 +51974,6 @@ runfiles size=12
RELOC/tex/generic/chronosys/chronosyschr.tex
RELOC/tex/generic/chronosys/x-chronosys.tex
catalogue-ctan /macros/latex/contrib/chronosys
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics diagram
catalogue-version 1.2
@@ -52599,7 +52003,6 @@ docfiles size=56
runfiles size=2
RELOC/tex/latex/chs-physics-report/chs-physics-report.sty
catalogue-ctan /macros/latex/contrib/chs-physics-report
-catalogue-date 2018-09-06 05:15:28 +0200
catalogue-license pdcc-by-sa-3
catalogue-topics physics report-like
@@ -52628,7 +52031,6 @@ runfiles size=9
RELOC/bibtex/bst/chscite/chscite.bst
RELOC/tex/latex/chscite/chscite.sty
catalogue-ctan /macros/latex/contrib/chscite
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license lppl1.2
catalogue-topics bibtex-supp
catalogue-version 2.9999
@@ -52669,7 +52071,6 @@ runfiles size=11
catalogue-also fonts-churchslavonic
catalogue-contact-repository https://github.com/slavonic/cu-tex
catalogue-ctan /language/churchslavonic
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license mit
catalogue-topics churchslavonic multilingual-addon
catalogue-version 0.2.1
@@ -52786,7 +52187,6 @@ runfiles size=431
RELOC/tex/latex/cinzel/cinzel.sty
catalogue-contact-home http://ndiscovered.com
catalogue-ctan /fonts/cinzel
-catalogue-date 2019-05-12 19:45:33 +0200
catalogue-license ofllppl
catalogue-topics font font-decor font-type1 font-ttf
@@ -52844,7 +52244,6 @@ runfiles size=43
RELOC/tex/latex/circ/physics.def
catalogue-also circuit-macros
catalogue-ctan /macros/generic/diagrams/circ
-catalogue-date 2017-10-29 14:32:55 +0100
catalogue-license gpl
catalogue-topics diagram-circ font font-mf
catalogue-version 1.1
@@ -52872,7 +52271,6 @@ runfiles size=1
catalogue-contact-home https://github.com/Rmano/circledsteps
catalogue-contact-support https://github.com/circuitikz/circuitikz/issues
catalogue-ctan /macros/latex/contrib/circledsteps
-catalogue-date 2019-11-01 20:30:36 +0100
catalogue-license lppl1.3c
catalogue-topics numbers
catalogue-version 1.1
@@ -53271,7 +52669,6 @@ catalogue-also circ circuitikz
catalogue-contact-home https://ece.uwaterloo.ca/~aplevich/Circuit_macros/
catalogue-contact-repository https://ece.uwaterloo.ca/~aplevich/Circuit_macros/
catalogue-ctan /graphics/circuit_macros
-catalogue-date 2019-10-15 23:00:28 +0200
catalogue-license lppl
catalogue-topics diagram-circ electronic
catalogue-version 9.1
@@ -53333,7 +52730,6 @@ catalogue-contact-bugs https://github.com/circuitikz/circuitikz/issues
catalogue-contact-repository https://github.com/circuitikz/circuitikz
catalogue-contact-support https://github.com/circuitikz/circuitikz/issues
catalogue-ctan /graphics/pgf/contrib/circuitikz
-catalogue-date 2019-12-01 11:35:30 +0100
catalogue-license lpplgpl
catalogue-topics graphics diagram-circ pgf-tikz
catalogue-version 0.9.7
@@ -53366,7 +52762,6 @@ runfiles size=18
RELOC/tex/latex/cite/overcite.sty
catalogue-also natbib
catalogue-ctan /macros/latex/contrib/cite
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license other-free
catalogue-topics cite-supp
catalogue-version 5.5
@@ -53390,7 +52785,6 @@ docfiles size=31
runfiles size=2
RELOC/tex/latex/citeall/citeall.sty
catalogue-ctan /macros/latex/contrib/biblatex-contrib/citeall
-catalogue-date 2017-12-03 20:33:16 +0100
catalogue-license lppl1.3
catalogue-topics biblatex
catalogue-version 1.4
@@ -53413,7 +52807,6 @@ runfiles size=1
RELOC/tex/latex/citeref/citeref.sty
catalogue-also backref
catalogue-ctan /macros/latex/contrib/citeref
-catalogue-date 2018-04-29 07:15:59 +0200
catalogue-license bsd4
catalogue-topics bibtex-supp
catalogue-version 1.1
@@ -53446,7 +52839,6 @@ runfiles size=31
RELOC/tex/latex/cje/cjenatbib.sty
RELOC/tex/latex/cje/cjeupmath.sty
catalogue-ctan /macros/latex/contrib/cje
-catalogue-date 2018-02-23 14:47:15 +0100
catalogue-license lppl1.3c
catalogue-topics journalpub
catalogue-version 1.06
@@ -53489,7 +52881,6 @@ runfiles size=27
RELOC/fonts/vf/public/cjhebrew/cjhbltx.vf
RELOC/tex/latex/cjhebrew/cjhebrew.sty
catalogue-ctan /language/hebrew/cjhebrew
-catalogue-date 2017-03-09 19:41:20 +0100
catalogue-license lppl
catalogue-topics hebrew font font-type1 font-hebrew font-supp
catalogue-version 0.2a
@@ -53897,7 +53288,6 @@ runfiles size=294
RELOC/tex/latex/cjk/utils/pyhyphen/pinyin.ldf
catalogue-also cjk-fonts
catalogue-ctan /language/chinese/CJK
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics font-use font-cjk chinese japanese korean thai
catalogue-version 4.8.4
@@ -53961,7 +53351,6 @@ runfiles size=68
texmf-dist/scripts/cjk-gs-integrate/cjk-gs-integrate.pl
catalogue-contact-repository https://github.com/texjporg/cjk-gs-support
catalogue-ctan /fonts/utilities/cjk-gs-integrate
-catalogue-date 2019-08-16 17:12:42 +0200
catalogue-license gpl3
catalogue-topics font-util
catalogue-version 20190816.0
@@ -54138,7 +53527,6 @@ runfiles size=11
RELOC/tex/latex/cjk-ko/kotex.sty
catalogue-contact-repository https://github.com/dohyunkim/cjk-ko
catalogue-ctan /language/korean/cjk-ko
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license other-free
catalogue-topics korean
catalogue-version 1.8
@@ -54172,7 +53560,6 @@ runfiles size=6
RELOC/tex/latex/cjkpunct/CJKpunct.spa
RELOC/tex/latex/cjkpunct/CJKpunct.sty
catalogue-ctan /language/chinese/cjkpunct
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics chinese japanese korean
catalogue-version 4.8.4
@@ -54229,7 +53616,6 @@ runfiles size=16
texmf-dist/hbf2gf/ksso17.cfg
catalogue-also cjk-fonts
catalogue-ctan /language/chinese/CJK
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics font-use font-cjk chinese japanese korean thai
catalogue-version 4.8.4
@@ -54717,7 +54103,6 @@ docfiles size=55
runfiles size=1
RELOC/tex/latex/classics/classics.sty
catalogue-ctan /macros/latex/contrib/classics
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics humanities cite-supp
catalogue-version 0.1
@@ -54785,7 +54170,6 @@ catalogue-contact-bugs https://bitbucket.org/amiede/classicthesis/issues
catalogue-contact-home https://bitbucket.org/amiede/classicthesis/wiki/Home
catalogue-contact-repository https://bitbucket.org/amiede/classicthesis
catalogue-ctan /macros/latex/contrib/classicthesis
-catalogue-date 2018-06-17 19:02:36 +0200
catalogue-license gpl2+
catalogue-topics dissertation
catalogue-version 4.6
@@ -54825,7 +54209,6 @@ srcfiles size=33
runfiles size=1
RELOC/tex/latex/classpack/classpack.sty
catalogue-ctan /support/classpack
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics class-supp
catalogue-version 0.77
@@ -54868,7 +54251,6 @@ docfiles size=489
runfiles size=7
RELOC/tex/latex/cleanthesis/cleanthesis.sty
catalogue-ctan /macros/latex/contrib/cleanthesis
-catalogue-date 2019-06-25 21:53:35 +0200
catalogue-license lppl1.3
catalogue-topics dissertation
catalogue-version 0.4.0
@@ -55008,7 +54390,6 @@ runfiles size=962
RELOC/tex/latex/clearsans/T1ClearSans-TLF.fd
RELOC/tex/latex/clearsans/TS1ClearSans-TLF.fd
catalogue-ctan /fonts/clearsans
-catalogue-date 2019-10-25 18:49:37 +0200
catalogue-license apache2lppl
catalogue-topics font font-body font-proportional font-sans font-ttf font-type1 font-supp font-t1enc
@@ -55048,7 +54429,6 @@ srcfiles size=9
runfiles size=1
RELOC/tex/latex/clefval/clefval.sty
catalogue-ctan /macros/latex/contrib/clefval
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics keyval
catalogue-version 0
@@ -55085,7 +54465,6 @@ runfiles size=81
RELOC/tex/latex/cleveref/cleveref.sty
catalogue-contact-home http://www.dr-qubit.org/cleveref.html
catalogue-ctan /macros/latex/contrib/cleveref
-catalogue-date 2018-04-19 15:40:06 +0200
catalogue-license lppl1.2
catalogue-topics label-ref
catalogue-version 0.21.4
@@ -55109,7 +54488,6 @@ docfiles size=44
runfiles size=1
RELOC/tex/latex/clipboard/clipboard.sty
catalogue-ctan /macros/latex/contrib/clipboard
-catalogue-date 2018-05-18 08:42:31 +0200
catalogue-license lppl1.3
catalogue-topics quotation-imp
catalogue-version 0.3
@@ -55143,7 +54521,6 @@ runfiles size=4
RELOC/tex/latex/clock/clock.sty
RELOC/tex/latex/clock/clock.tex
catalogue-ctan /macros/latex/contrib/clock
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license other-free
catalogue-topics date-time
@@ -55184,7 +54561,6 @@ catalogue-contact-home https://gitlab.com/elancha/clojure-pamphlet
catalogue-contact-repository https://gitlab.com/elancha/clojure-pamphlet
catalogue-contact-support https://gitlab.com/elancha/clojure-pamphlet/merge_requests
catalogue-ctan /web/clojure-pamphlet
-catalogue-date 2019-09-10 22:25:41 +0200
catalogue-license gpl3+
catalogue-topics litprog litprog-tools
catalogue-version 1.3
@@ -55361,7 +54737,6 @@ runfiles size=5
RELOC/tex/lualatex/cloze/cloze.sty
catalogue-contact-repository https://github.com/Josef-Friedrich/cloze
catalogue-ctan /macros/luatex/latex/cloze
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl1.3
catalogue-topics exam luatex
catalogue-version 1.2
@@ -55395,7 +54770,6 @@ runfiles size=1
RELOC/tex/latex/clrdblpg/clrdblpg.sty
catalogue-also fancyhdr
catalogue-ctan /macros/latex/contrib/clrdblpg
-catalogue-date 2018-05-07 04:39:01 +0200
catalogue-license lppl1.3
catalogue-topics page-hf
catalogue-version 1.0
@@ -55424,7 +54798,6 @@ runfiles size=3
RELOC/tex/latex/clrscode/clrscode.sty
catalogue-also newalg clrscode3e
catalogue-ctan /macros/latex/contrib/clrscode
-catalogue-date 2019-05-15 17:29:17 +0200
catalogue-license lppl
catalogue-topics pseudocode
catalogue-version 1.7
@@ -55453,7 +54826,6 @@ runfiles size=4
RELOC/tex/latex/clrscode3e/clrscode3e.sty
catalogue-also newalg clrscode
catalogue-ctan /macros/latex/contrib/clrscode3e
-catalogue-date 2019-05-15 17:42:59 +0200
catalogue-license lppl
catalogue-topics pseudocode
@@ -55480,7 +54852,6 @@ runfiles size=1
catalogue-also tcolorbox
catalogue-contact-repository https://github.com/Skillmon/ltx_clrstrip
catalogue-ctan /macros/latex/contrib/clrstrip
-catalogue-date 2019-11-03 21:51:33 +0100
catalogue-license lppl1.3c
catalogue-topics colour
@@ -55561,7 +54932,6 @@ runfiles size=27
catalogue-contact-bugs https://github.com/minoki/cluttex/issues
catalogue-contact-repository https://github.com/minoki/cluttex
catalogue-ctan /support/cluttex
-catalogue-date 2019-08-21 12:53:07 +0200
catalogue-license gpl3
catalogue-topics compilation use-lua
catalogue-version 0.4
@@ -55973,7 +55343,6 @@ runfiles size=340
RELOC/fonts/tfm/public/cm/cmu10.tfm
RELOC/fonts/tfm/public/cm/cmvtt10.tfm
catalogue-ctan /fonts/cm
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license knuth
catalogue-topics font font-mf font-proportional font-mono font-cm
@@ -56650,7 +56019,6 @@ runfiles size=5154
RELOC/tex/latex/cm-lgc/ut1fcs.fd
RELOC/tex/latex/cm-lgc/ut1fct.fd
catalogue-ctan /fonts/ps-type1/cm-lgc
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics font font-serif font-sans font-mono font-greek font-cyrillic font-type1 omega
catalogue-version 0.5
@@ -56680,7 +56048,6 @@ runfiles size=15
RELOC/fonts/tfm/public/cm-mf-extra-bold/cmbtt9.tfm
RELOC/fonts/tfm/public/cm-mf-extra-bold/cmttb10.tfm
catalogue-ctan /fonts/cm/mf-extra/bold
-catalogue-date 2017-11-12 11:19:12 +0100
catalogue-license gplpd
catalogue-topics font font-mf
@@ -57555,7 +56922,6 @@ runfiles size=17068
RELOC/fonts/type1/public/cm-super/sfxc3583.pfb
RELOC/tex/latex/cm-super/type1ec.sty
catalogue-ctan /fonts/ps-type1/cm-super
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics font font-proportional font-mono font-cyrillic font-type1 font-cm
@@ -57713,7 +57079,6 @@ runfiles size=6942
RELOC/fonts/type1/public/cm-unicode/cmunvt.pfb
catalogue-contact-home http://canopus.iacp.dvo.ru/~panov/cm-unicode/
catalogue-ctan /fonts/cm-unicode
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license ofl
catalogue-topics font font-serif font-sans font-proportional font-mono font-cyrillic font-greek font-type1 font-otf font-cm
catalogue-version 0.7.0
@@ -57753,7 +57118,6 @@ runfiles size=12
RELOC/tex/latex/cmap/t5.cmap
catalogue-also pdftex mmap
catalogue-ctan /macros/latex/contrib/cmap
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics pdf-feat
catalogue-version 1.0h
@@ -57803,7 +57167,6 @@ runfiles size=59
RELOC/metapost/cmarrows/tgbx0027.mp
catalogue-also pst-text
catalogue-ctan /graphics/metapost/contrib/macros/cmarrows
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics graphics-symb
catalogue-version 0.9
@@ -58015,7 +57378,6 @@ runfiles size=337
RELOC/tex/latex/cmbright/ts1cmbr.fd
RELOC/tex/latex/cmbright/ts1cmtl.fd
catalogue-ctan /fonts/cmbright
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics font font-maths font-sans font-mf
catalogue-version 8.1
@@ -58786,7 +58148,6 @@ runfiles size=979
RELOC/fonts/vf/public/cmcyr/ycmtt9.vf
RELOC/fonts/vf/public/cmcyr/ycmu10.vf
catalogue-ctan /fonts/cyrillic/cmcyr
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics font font-cyrillic font-type1 font-mf
@@ -58808,7 +58169,6 @@ docfiles size=90
runfiles size=1
RELOC/tex/latex/cmdstring/cmdstring.sty
catalogue-ctan /macros/latex/contrib/cmdstring
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics macro-supp
catalogue-version 1.1
@@ -58842,7 +58202,6 @@ srcfiles size=5
runfiles size=2
RELOC/tex/latex/cmdtrack/cmdtrack.sty
catalogue-ctan /macros/latex/contrib/cmdtrack
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1
catalogue-topics debug-supp
@@ -58925,7 +58284,6 @@ runfiles size=58
RELOC/fonts/tfm/public/cmextra/gen8.tfm
RELOC/fonts/tfm/public/cmextra/gen9.tfm
catalogue-ctan /systems/knuth/local
-catalogue-date 2017-01-28 12:48:42 +0100
catalogue-license knuth
catalogue-topics collection
@@ -59062,7 +58420,6 @@ runfiles size=191
RELOC/tex/latex/cmll/ucmllss.fd
RELOC/tex/latex/cmll/ueull.fd
catalogue-ctan /fonts/cmll
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics font font-maths font-mf font-type1
@@ -59093,7 +58450,6 @@ runfiles size=13
RELOC/fonts/tfm/public/cmpica/cmpicab.tfm
RELOC/fonts/tfm/public/cmpica/cmpicati.tfm
catalogue-ctan /fonts/cmpica
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics font font-mf
@@ -59130,7 +58486,6 @@ runfiles size=76
RELOC/tex/latex/cmpj/cmpj3.sty
catalogue-contact-home http://www.icmp.lviv.ua/journal/Instructions.html
catalogue-ctan /macros/latex/contrib/cmpj
-catalogue-date 2019-07-18 13:31:22 +0200
catalogue-license lppl
catalogue-topics physics journalpub
catalogue-version 3.02
@@ -59162,7 +58517,6 @@ runfiles size=3
RELOC/tex/latex/cmsd/t1cmsd.fd
RELOC/tex/latex/cmsd/ts1cmsd.fd
catalogue-ctan /macros/latex/contrib/cmsd
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics font-supp
@@ -59493,7 +58847,6 @@ runfiles size=1249
RELOC/tex/latex/cmsrb/x2cmsrbs.fd
RELOC/tex/latex/cmsrb/x2cmsrbt.fd
catalogue-ctan /fonts/cmsrb
-catalogue-date 2019-08-16 18:07:50 +0200
catalogue-license gpl
catalogue-topics font font-cm font-serif font-sans font-mono font-cyrillic font-multilingual font-proportional font-type1 font-supp font-t1enc
catalogue-version 3.1
@@ -59598,7 +58951,6 @@ runfiles size=165
RELOC/tex/latex/cmtiup/cmtiup.sty
catalogue-also cmslup
catalogue-ctan /fonts/cm/cmtiup
-catalogue-date 2017-10-29 14:38:38 +0100
catalogue-license lppl1.3
catalogue-topics font font-mf font-virtual
catalogue-version 2.1
@@ -59639,7 +58991,6 @@ runfiles size=15
RELOC/tex/latex/cnbwp/cnbwp.cls
RELOC/tex/latex/cnbwp/cnbwpsizes.clo
catalogue-ctan /macros/latex/contrib/cnbwp
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics misc-paper
@@ -59683,7 +59034,6 @@ runfiles size=51
RELOC/tex/latex/cnltx/cnltx.sty
catalogue-contact-repository https://github.com/cgnieder/cnltx/
catalogue-ctan /macros/latex/contrib/cnltx
-catalogue-date 2019-11-01 20:02:00 +0100
catalogue-license lppl1.3
catalogue-topics doc-supp class expl3
catalogue-version 0.15
@@ -59987,7 +59337,6 @@ runfiles size=2650
RELOC/fonts/tfm/cns/c7so12/c7so1226.tfm
catalogue-also arphic wadalab
catalogue-ctan /fonts/CJK
-catalogue-date 2017-11-27 19:32:52 +0100
catalogue-license pd
catalogue-topics font font-cjk chinese japanese korean
catalogue-version 4.2.0
@@ -60012,7 +59361,6 @@ runfiles size=3
RELOC/tex/latex/cntformats/cntformats.sty
catalogue-contact-repository https://github.com/cgnieder/cntformats/
catalogue-ctan /macros/latex/contrib/cntformats
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl1.3
catalogue-topics numbers
catalogue-version 0.7
@@ -60044,7 +59392,6 @@ runfiles size=3
RELOC/tex/latex/cntperchap/cntperchap.sty
catalogue-also xcntperchap
catalogue-ctan /macros/latex/contrib/cntperchap
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics counter-mgmt macro-supp
catalogue-version 0.3
@@ -60820,7 +60167,6 @@ runfiles size=5114
RELOC/tex/latex/cochineal/omlzcochmi.fd
RELOC/tex/latex/cochineal/uzcochmia.fd
catalogue-ctan /fonts/cochineal
-catalogue-date 2019-11-19 13:34:52 +0100
catalogue-license ofllppl1.3
catalogue-topics font font-body font-serif font-multilingual font-greek font-cyrillic font-proportional font-otf font-type1 font-t1enc font-supp
catalogue-version 1.059
@@ -60859,7 +60205,6 @@ catalogue-contact-bugs https://github.com/hpb-htw/codeanatomy/issues
catalogue-contact-home https://github.com/hpb-htw/codeanatomy
catalogue-contact-repository https://github.com/hpb-htw/codeanatomy.git
catalogue-ctan /graphics/pgf/contrib/codeanatomy
-catalogue-date 2019-07-12 19:45:46 +0200
catalogue-license lppl1.3c
catalogue-topics program-doc graphics pgf-tikz expl3
catalogue-version 0.4-Alpha
@@ -60891,7 +60236,6 @@ runfiles size=12
RELOC/tex/latex/codedoc/codedoc.cls
catalogue-also doc gmdoc
catalogue-ctan /macros/latex/contrib/codedoc
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics doc-supp
catalogue-version 0.3
@@ -60932,7 +60276,6 @@ runfiles size=26
RELOC/tex/latex/codepage/shapecm.tex
RELOC/tex/latex/codepage/shapedc.tex
catalogue-ctan /macros/latex/contrib/codepage
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license other-free
catalogue-topics inputenc
@@ -60963,7 +60306,6 @@ runfiles size=2
RELOC/tex/latex/codesection/codesection.sty
catalogue-also comment optional version
catalogue-ctan /macros/latex/contrib/codesection
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics cond-comp
catalogue-version 0.1
@@ -60992,7 +60334,6 @@ srcfiles size=6
runfiles size=1
RELOC/tex/latex/codicefiscaleitaliano/codicefiscaleitaliano.sty
catalogue-ctan /macros/latex/contrib/codicefiscaleitaliano
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics calculation italian
catalogue-version 1.2
@@ -61658,7 +60999,6 @@ runfiles size=3564
RELOC/tex/latex/coelacanth/TS1Coelacanth-TOsF.fd
RELOC/tex/latex/coelacanth/coelacanth.sty
catalogue-ctan /fonts/coelacanth
-catalogue-date 2019-10-16 19:15:47 +0200
catalogue-license ofllppl
catalogue-topics font font-body font-serif font-proportional font-type1 font-otf font-supp font-t1enc
catalogue-version 0.005
@@ -61690,7 +61030,6 @@ srcfiles size=8
runfiles size=2
RELOC/tex/latex/collcell/collcell.sty
catalogue-ctan /macros/latex/contrib/collcell
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics table
catalogue-version 0.5
@@ -61725,7 +61064,6 @@ srcfiles size=9
runfiles size=3
RELOC/tex/latex/collectbox/collectbox.sty
catalogue-ctan /macros/latex/contrib/collectbox
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics boxing
catalogue-version 0.4b
@@ -62092,7 +61430,7 @@ containerchecksum 21aa181d7a3e8c16dbb30e12e30822d18db1386e088103a0987dc2a0a4d611
name collection-fontsextra
category Collection
-revision 52997
+revision 53106
shortdesc Additional fonts
relocated 1
depend collection-basic
@@ -62186,6 +61524,7 @@ depend dejavu-otf
depend dice
depend dictsym
depend dingbat
+depend domitian
depend doublestroke
depend dozenal
depend drm
@@ -62391,8 +61730,8 @@ depend yfonts
depend yfonts-t1
depend yinit-otf
depend zlmtt
-containersize 1760
-containerchecksum fabed1fe4bfa37831d0bd5b9fbd9541b4e11168f88ba0d5d4a77c0d93f58eb4da5674da45128ba4727ec47c960b10ff1581e746b88da49cdd811f16c6165d644
+containersize 1764
+containerchecksum 0d2ea74abc3f96796c9c13ec74a4107b41353d57435c1747a3ed2c25d9828d9bd9e0fee8db24a4adcc5f789a68110885027d0c371a255997d257cc6ce8a15e7a
name collection-fontsrecommended
category Collection
@@ -65878,7 +65217,6 @@ runfiles size=1
RELOC/tex/latex/collref/collref.sty
catalogue-also mcite
catalogue-ctan /macros/latex/contrib/collref
-catalogue-date 2018-01-17 14:22:05 +0100
catalogue-license lppl1.3
catalogue-topics cite-supp
catalogue-version 2.0c
@@ -65915,7 +65253,6 @@ srcfiles size=6
runfiles size=2
RELOC/tex/latex/colophon/colophon.sty
catalogue-ctan /macros/latex/contrib/colophon
-catalogue-date 2018-06-03 15:59:08 +0200
catalogue-license lppl1.3
catalogue-topics typeset-tool
catalogue-version 1.1
@@ -65948,7 +65285,6 @@ srcfiles size=11
runfiles size=2
RELOC/tex/latex/colordoc/colordoc.sty
catalogue-ctan /macros/latex/contrib/colordoc
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1
catalogue-topics doc-supp
@@ -65967,7 +65303,6 @@ docfiles size=2
runfiles size=2
RELOC/tex/latex/colorinfo/colorinfo.sty
catalogue-ctan /macros/latex/contrib/colorinfo
-catalogue-date 2016-06-18 16:48:54 +0200
catalogue-license lppl
catalogue-topics colour
catalogue-version 0.3c
@@ -65993,7 +65328,6 @@ runfiles size=1
RELOC/tex/latex/coloring/coloring.sty
catalogue-contact-repository https://github.com/zohooo/coloring
catalogue-ctan /macros/latex/contrib/coloring
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl1.3
catalogue-topics colour
catalogue-version 0.2
@@ -66019,7 +65353,6 @@ runfiles size=33
RELOC/tex/generic/colorprofiles/colorprofiles.tex
RELOC/tex/generic/colorprofiles/sRGB.icc
catalogue-ctan /support/colorprofiles
-catalogue-date 2018-11-12 08:43:52 +0100
catalogue-license other-free
catalogue-topics colour
catalogue-version 20181105
@@ -66035,7 +65368,6 @@ containerchecksum 3c6387a4c538235181dcaf7b6c3ac51d2893d35fa2c18d95d85810b778feca
runfiles size=2
RELOC/dvips/colorsep/colorsep.pro
catalogue-ctan /graphics/colorsep
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics colour
@@ -66061,7 +65393,6 @@ runfiles size=6
catalogue-contact-home http://www.texnia.com/
catalogue-contact-repository https://github.com/jbezos/colorspace
catalogue-ctan /macros/latex/contrib/colorspace
-catalogue-date 2019-03-25 17:50:16 +0100
catalogue-license mit
catalogue-topics colour
catalogue-version 1.3
@@ -66091,7 +65422,6 @@ runfiles size=7
RELOC/tex/generic/colortab/colortab.sty
RELOC/tex/generic/colortab/colortab.tex
catalogue-ctan /macros/generic/colortab
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license lppl
catalogue-topics colour table
catalogue-version 1.0
@@ -66121,7 +65451,6 @@ runfiles size=3
RELOC/tex/latex/colortbl/colortbl.sty
catalogue-also xcolor
catalogue-ctan /macros/latex/contrib/colortbl
-catalogue-date 2018-12-12 22:35:53 +0100
catalogue-license lppl
catalogue-topics colour table
catalogue-version 1.0d
@@ -66150,7 +65479,6 @@ srcfiles size=7
runfiles size=2
RELOC/tex/latex/colorwav/colorwav.sty
catalogue-ctan /macros/latex/contrib/colorwav
-catalogue-date 2018-10-09 06:16:19 +0200
catalogue-license lgpl
catalogue-topics colour
catalogue-version 1.0
@@ -66180,7 +65508,6 @@ srcfiles size=21
runfiles size=5
RELOC/tex/latex/colorweb/colorweb.sty
catalogue-ctan /macros/latex/contrib/colorweb
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics colour
catalogue-version 1.3
@@ -66207,7 +65534,6 @@ docfiles size=59
runfiles size=2
RELOC/tex/latex/colourchange/colourchange.sty
catalogue-ctan /macros/latex/contrib/colourchange
-catalogue-date 2018-01-07 11:56:15 +0100
catalogue-license gpl3
catalogue-topics presentation colour
catalogue-version 1.22
@@ -66232,7 +65558,6 @@ docfiles size=30
runfiles size=1
RELOC/tex/latex/combelow/combelow.sty
catalogue-ctan /macros/latex/contrib/combelow
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics fake-glyph
catalogue-version 0.99f
@@ -66267,7 +65592,6 @@ runfiles size=16
RELOC/tex/latex/combine/combnat.sty
catalogue-also docmute includex newclude standalone
catalogue-ctan /macros/latex/contrib/combine
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics subdocs
catalogue-version 0.7a
@@ -66317,7 +65641,6 @@ srcfiles size=10
runfiles size=4
RELOC/tex/latex/combinedgraphics/combinedgraphics.sty
catalogue-ctan /macros/latex/contrib/combinedgraphics
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics graphics-supp
catalogue-version 0.2.2
@@ -66350,7 +65673,6 @@ runfiles size=1
catalogue-contact-repository https://github.com/u-fischer/combofont
catalogue-contact-support https://github.com/u-fischer/combofont
catalogue-ctan /macros/luatex/latex/combofont
-catalogue-date 2019-06-08 16:41:14 +0200
catalogue-license lppl1.3c
catalogue-topics luatex font-mgmt
catalogue-version 0.3
@@ -66548,7 +65870,6 @@ runfiles size=515
RELOC/tex/latex/comfortaa/X2comfortaa.fd
RELOC/tex/latex/comfortaa/comfortaa.sty
catalogue-ctan /fonts/comfortaa
-catalogue-date 2019-06-24 23:10:30 +0200
catalogue-license ofllppl1.3c
catalogue-topics font font-sans font-supp
catalogue-version 3.2
@@ -66811,7 +66132,6 @@ runfiles size=453
RELOC/tex/latex/comicneue/comicneue.sty
catalogue-contact-repository https://github.com/silkeh/latex-comicneue/issues
catalogue-ctan /fonts/comicneue
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license ofl
catalogue-topics font font-otf font-supp font-type1
catalogue-version 1.1
@@ -66834,7 +66154,6 @@ docfiles size=41
runfiles size=1
RELOC/tex/latex/comma/comma.sty
catalogue-ctan /macros/latex/contrib/comma
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics numbers
catalogue-version 1.2
@@ -66875,7 +66194,6 @@ runfiles size=3
catalogue-also loops
catalogue-contact-support http://www.webdesign-bu.de/uwe_lueck/contact.html
catalogue-ctan /macros/generic/commado
-catalogue-date 2017-05-05 20:31:25 +0200
catalogue-license lppl1.3
catalogue-topics macro-supp
catalogue-version r0.11a
@@ -66900,7 +66218,6 @@ docfiles size=37
runfiles size=3
RELOC/tex/latex/commath/commath.sty
catalogue-ctan /macros/latex/contrib/commath
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics maths
catalogue-version 0.3
@@ -66938,7 +66255,6 @@ catalogue-contact-bugs https://github.com/borisveytsman/commedit/issues
catalogue-contact-home https://github.com/borisveytsman/commedit
catalogue-contact-repository https://github.com/borisveytsman/commedit
catalogue-ctan /macros/latex/contrib/commedit
-catalogue-date 2019-02-26 05:14:40 +0100
catalogue-license lppl1.3
catalogue-topics editorial crit-ed
catalogue-version 1.02
@@ -66983,7 +66299,6 @@ docfiles size=145
runfiles size=3
RELOC/tex/latex/comment/comment.sty
catalogue-ctan /macros/latex/contrib/comment
-catalogue-date 2016-08-25 07:53:37 +0200
catalogue-license gpl2
catalogue-topics cond-comp editorial
catalogue-version 3.8
@@ -67000,7 +66315,6 @@ containerchecksum dbc3bb28178a656b400a2a72e48ec813d6e282ddba7c70bb4dd0b5ed7f76e9
runfiles size=2
RELOC/tex/latex/compactbib/compactbib.sty
catalogue-ctan /macros/latex/contrib/compactbib
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics bibtex-supp
@@ -67029,7 +66343,6 @@ srcfiles size=4
runfiles size=2
RELOC/tex/latex/competences/competences.sty
catalogue-ctan /macros/latex/contrib/competences
-catalogue-date 2018-05-05 05:37:43 +0200
catalogue-license lppl1.3
catalogue-topics exam
catalogue-version 1.0
@@ -67059,7 +66372,6 @@ runfiles size=8
RELOC/tex/latex/complexity/complexity.sty
RELOC/tex/latex/complexity/mycomplexity.sty
catalogue-ctan /macros/latex/contrib/complexity
-catalogue-date 2017-09-16 18:13:49 +0200
catalogue-license lppl1.3c
catalogue-topics graphics-symb
catalogue-version 0.81a
@@ -67084,7 +66396,6 @@ docfiles size=11
RELOC/doc/generic/components-of-TeX/names.sty
RELOC/doc/generic/components-of-TeX/texrep.sty
catalogue-ctan /info/components-of-TeX
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license gpl
catalogue-topics documentation
@@ -67132,7 +66443,6 @@ docfiles size=4800
RELOC/doc/latex/comprehensive/source/unicode2eps.pe
RELOC/doc/latex/comprehensive/symbols-a4.pdf details="The document (for A4 paper)"
catalogue-ctan /info/symbols/comprehensive
-catalogue-date 2017-03-07 16:00:12 +0100
catalogue-license lppl1.3
catalogue-topics font-index ref-latex
catalogue-version 12.3
@@ -67192,7 +66502,6 @@ runfiles size=57
RELOC/tex/latex/computational-complexity/relabel.sty
RELOC/tex/latex/computational-complexity/thcc.sty
catalogue-ctan /macros/latex/contrib/computational-complexity
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.2
catalogue-topics journalpub class
catalogue-version 2.25f
@@ -67226,7 +66535,6 @@ docfiles size=89
runfiles size=7
RELOC/tex/latex/concepts/concepts.sty
catalogue-ctan /macros/latex/contrib/concepts
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics editorial-consistency
catalogue-version 0.0.5-r1
@@ -67266,7 +66574,6 @@ runfiles size=9
RELOC/tex/latex/concmath/uccb.fd
catalogue-also concrete ccfonts
catalogue-ctan /macros/latex/contrib/concmath
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics font-supp
@@ -67345,7 +66652,6 @@ runfiles size=78
RELOC/fonts/tfm/public/concmath-fonts/xccsy8.tfm
RELOC/fonts/tfm/public/concmath-fonts/xccsy9.tfm
catalogue-ctan /fonts/concmath
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics font font-mf font-maths
@@ -67365,7 +66671,6 @@ docfiles size=1
runfiles size=4
RELOC/tex/latex/concprog/ConcProg.cls
catalogue-ctan /macros/latex/contrib/concprog
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics advert
@@ -67419,7 +66724,6 @@ runfiles size=28
RELOC/fonts/tfm/public/concrete/ccslc9.tfm
RELOC/fonts/tfm/public/concrete/ccti10.tfm
catalogue-ctan /fonts/concrete
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license knuth
catalogue-topics font font-mf
@@ -67556,7 +66860,6 @@ runfiles size=23
RELOC/tex/latex/confproc/confproc.cls
RELOC/tex/latex/confproc/newapave.sty
catalogue-ctan /macros/latex/contrib/conferences/confproc
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license lppl
catalogue-topics confproc
catalogue-version 0.8
@@ -67585,7 +66888,6 @@ srcfiles size=7
runfiles size=2
RELOC/tex/latex/constants/constants.sty
catalogue-ctan /macros/latex/contrib/constants
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics maths
catalogue-version 1.0
@@ -67617,7 +66919,6 @@ runfiles size=2
RELOC/tex/latex/conteq/conteq.sty
catalogue-contact-repository https://github.com/nomeata/conteq
catalogue-ctan /macros/latex/contrib/conteq
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl1.3
catalogue-topics maths
catalogue-version 0.1.1
@@ -71622,7 +70923,6 @@ runfiles size=14836
texmf-dist/tex/latex/context/ppchtex/m-pictex.sty
catalogue-contact-home http://www.pragma-ade.com/
catalogue-ctan /macros/context/current
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license other-free
catalogue-topics format context
@@ -71650,7 +70950,6 @@ runfiles size=11
RELOC/tex/context/third/account/t-floatnumber.mkiv
RELOC/tex/context/third/account/t-floatnumber.tex
catalogue-ctan /macros/context/contrib/context-account
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license pd
catalogue-topics calculation
@@ -71672,7 +70971,6 @@ runfiles size=5
RELOC/tex/context/third/algorithmic/t-algorithmic.mkii
RELOC/tex/context/third/algorithmic/t-algorithmic.mkiv
catalogue-ctan /macros/context/contrib/context-algorithmic
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics pseudocode
@@ -71695,7 +70993,6 @@ runfiles size=5
RELOC/tex/context/interface/third/t-animation.xml
RELOC/tex/context/third/animation/t-animation.mkvi
catalogue-ctan /macros/context/contrib/context-animation
-catalogue-date 2018-08-11 07:01:12 +0200
catalogue-license gpl3
catalogue-topics graphics-motion
@@ -71720,7 +71017,6 @@ runfiles size=13
RELOC/tex/context/third/annotation/t-annotation.lua
RELOC/tex/context/third/annotation/t-annotation.mkvi
catalogue-ctan /macros/context/contrib/context-annotation
-catalogue-date 2018-08-11 15:25:05 +0200
catalogue-license gpl
catalogue-topics context
@@ -71749,7 +71045,6 @@ docfiles size=72
runfiles size=2
RELOC/tex/context/third/bnf/t-bnf.tex
catalogue-ctan /macros/context/contrib/context-bnf
-catalogue-date 2018-08-11 15:30:50 +0200
catalogue-license gpl
catalogue-topics formal-spec
@@ -71771,7 +71066,6 @@ docfiles size=61
runfiles size=2
RELOC/tex/context/third/chromato/t-chromato.tex
catalogue-ctan /macros/context/contrib/context-chromato
-catalogue-date 2018-08-11 07:01:12 +0200
catalogue-license gpl
catalogue-topics diagram-lab
@@ -71795,7 +71089,6 @@ docfiles size=45
runfiles size=1
RELOC/tex/context/third/cmscbf/t-cmscbf.tex
catalogue-ctan /macros/context/contrib/context-cmscbf
-catalogue-date 2017-11-12 11:24:51 +0100
catalogue-license gpl
catalogue-topics font-supp
@@ -71819,7 +71112,6 @@ docfiles size=45
runfiles size=1
RELOC/tex/context/third/cmttbf/t-cmttbf.tex
catalogue-ctan /macros/context/contrib/context-cmttbf
-catalogue-date 2017-11-12 11:33:59 +0100
catalogue-license gpl
catalogue-topics font-supp
@@ -71841,7 +71133,6 @@ docfiles size=120
runfiles size=2
RELOC/tex/context/third/construction-plan/t-construction-plan.tex
catalogue-ctan /macros/context/contrib/context-construction-plan
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics graphics-use
@@ -71869,7 +71160,6 @@ runfiles size=10
RELOC/tex/context/third/cyrillicnumbers/t-cyrillicnumbers.mkii
RELOC/tex/context/third/cyrillicnumbers/t-cyrillicnumbers.mkvi
catalogue-ctan /macros/context/contrib/context-cyrillicnumbers
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license bsd
catalogue-topics cyrillic numbers
@@ -71891,7 +71181,6 @@ runfiles size=2
RELOC/tex/context/third/degrade/t-degrade.tex
catalogue-also degrade
catalogue-ctan /macros/context/contrib/context-degrade
-catalogue-date 2016-06-18 16:48:54 +0200
catalogue-license gpl
catalogue-topics graphics-use
@@ -71917,7 +71206,6 @@ runfiles size=7
RELOC/tex/context/third/fancybreak/t-fancybreak.mkii
RELOC/tex/context/third/fancybreak/t-fancybreak.mkvi
catalogue-ctan /macros/context/contrib/context-fancybreak
-catalogue-date 2018-08-11 07:01:12 +0200
catalogue-license gpl
catalogue-topics typesetting
@@ -71947,7 +71235,6 @@ runfiles size=12
RELOC/tex/context/third/filter/t-module-catcodes.mkii
RELOC/tex/context/third/filter/t-module-catcodes.mkiv
catalogue-ctan /macros/context/contrib/context-filter
-catalogue-date 2018-08-11 06:19:01 +0200
catalogue-license bsd2
catalogue-topics ext-code
@@ -71970,7 +71257,6 @@ docfiles size=113
runfiles size=1
RELOC/tex/context/third/french/t-french.mkiv
catalogue-ctan /macros/context/contrib/context-french
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics french
@@ -71995,7 +71281,6 @@ runfiles size=7
RELOC/tex/context/third/fullpage/t-fullpage.mkii
RELOC/tex/context/third/fullpage/t-fullpage.mkiv
catalogue-ctan /macros/context/contrib/context-fullpage
-catalogue-date 2018-08-11 15:30:23 +0200
catalogue-license gpl
catalogue-topics geometry
@@ -72026,7 +71311,6 @@ runfiles size=8
RELOC/tex/context/third/gantt/gantt-s-tikz.tex
RELOC/tex/context/third/gantt/t-gantt.tex
catalogue-ctan /macros/context/contrib/context-gantt
-catalogue-date 2018-08-11 07:01:12 +0200
catalogue-license pd
catalogue-topics diagram gantt
@@ -72058,7 +71342,6 @@ runfiles size=27
catalogue-also gnuplottex
catalogue-contact-home http://wiki.contextgarden.net/Gnuplot
catalogue-ctan /macros/context/contrib/context-gnuplot
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license gpl
catalogue-topics graphics-inline
@@ -72087,7 +71370,6 @@ catalogue-contact-home http://www.handlecsv.tk
catalogue-contact-repository https://github.com/ousia/handlecsv
catalogue-contact-support https://github.com/ousia/handlecsv/issues
catalogue-ctan /macros/context/contrib/context-handlecsv
-catalogue-date 2019-06-03 05:38:18 +0200
catalogue-license gpl3
catalogue-topics context csv-support
@@ -72114,7 +71396,6 @@ docfiles size=24
runfiles size=2
RELOC/tex/context/third/inifile/t-inifile.tex
catalogue-ctan /macros/context/contrib/context-inifile
-catalogue-date 2018-08-11 07:01:12 +0200
catalogue-license gpl
catalogue-topics data-disp
@@ -72137,7 +71418,6 @@ docfiles size=54
runfiles size=3
RELOC/tex/context/third/layout/t-layout.tex
catalogue-ctan /macros/context/contrib/context-layout
-catalogue-date 2018-01-07 14:49:11 +0100
catalogue-license gpl
catalogue-topics context
@@ -72227,7 +71507,6 @@ runfiles size=120
RELOC/tex/context/third/letter/style/resume-imp-classic.mkiv
RELOC/tex/context/third/letter/style/resume-imp-default.mkiv
catalogue-ctan /macros/context/contrib/context-letter
-catalogue-date 2018-08-11 15:29:10 +0200
catalogue-license gpl
catalogue-topics letter
@@ -72251,7 +71530,6 @@ runfiles size=3
RELOC/tex/context/interface/third/lettrine.xml
RELOC/tex/context/third/lettrine/t-lettrine.tex
catalogue-ctan /macros/context/contrib/context-lettrine
-catalogue-date 2018-08-11 07:01:12 +0200
catalogue-license pd
catalogue-topics lettrine
@@ -72275,7 +71553,6 @@ runfiles size=4
RELOC/tex/context/interface/third/t-mathsets.xml
RELOC/tex/context/third/mathsets/t-mathsets.tex
catalogue-ctan /macros/context/contrib/context-mathsets
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license other-free
catalogue-topics maths
@@ -72316,7 +71593,6 @@ docfiles size=252
RELOC/doc/context/third/context-notes-zh-cn/src/t-zhfonts.mkiv
RELOC/doc/context/third/context-notes-zh-cn/src/t-zhspuncs.lua
catalogue-ctan /info/context-notes-zh-cn
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics chinese-doc
@@ -72358,7 +71634,6 @@ runfiles size=42
RELOC/tex/context/third/rst/rst_setups.lua
RELOC/tex/context/third/rst/t-rst.mkiv
catalogue-ctan /macros/context/contrib/context-rst
-catalogue-date 2018-08-11 15:28:39 +0200
catalogue-license other-free
catalogue-topics foreign-import
@@ -72385,7 +71660,6 @@ runfiles size=9
RELOC/tex/context/third/ruby/t-ruby.mkiv
RELOC/tex/context/third/ruby/t-ruby.mkvi
catalogue-ctan /macros/context/contrib/context-ruby
-catalogue-date 2018-08-11 07:01:12 +0200
catalogue-license pd
catalogue-topics notes
@@ -72409,7 +71683,6 @@ runfiles size=16
RELOC/tex/context/third/simplefonts/t-simplefonts.mkii
RELOC/tex/context/third/simplefonts/t-simplefonts.mkiv
catalogue-ctan /macros/context/contrib/context-simplefonts
-catalogue-date 2018-08-11 07:01:12 +0200
catalogue-license gpl
catalogue-topics font-supp context
@@ -72495,7 +71768,6 @@ runfiles size=65
RELOC/tex/context/third/simpleslides/s-simpleslides-fontsdefault.mkiv
RELOC/tex/context/third/simpleslides/t-simpleslides.mkiv
catalogue-ctan /macros/context/contrib/context-simpleslides
-catalogue-date 2018-08-11 15:28:08 +0200
catalogue-license gpl
catalogue-topics context
@@ -72520,7 +71792,6 @@ runfiles size=2
RELOC/tex/context/interface/third/t-title.xml
RELOC/tex/context/third/title/t-title.mkvi
catalogue-ctan /macros/context/contrib/context-title
-catalogue-date 2018-08-11 15:27:37 +0200
catalogue-license gpl
catalogue-topics context
@@ -72567,7 +71838,6 @@ runfiles size=112
RELOC/tex/context/third/transliterator/transliterator.run
RELOC/tex/context/third/transliterator/transliterator.tuc
catalogue-ctan /macros/context/contrib/context-transliterator
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license bsd
catalogue-topics enc-juggle
@@ -72590,7 +71860,6 @@ docfiles size=22
runfiles size=1
RELOC/tex/context/third/typearea/t-typearea.tex
catalogue-ctan /macros/context/contrib/context-typearea
-catalogue-date 2018-08-11 07:01:12 +0200
catalogue-license gpl
catalogue-topics geometry context
@@ -72678,7 +71947,6 @@ runfiles size=71
RELOC/tex/context/third/typescripts/type-vollkorn.mkii
RELOC/tex/context/third/typescripts/type-vollkorn.mkiv
catalogue-ctan /macros/context/contrib/context-typescripts
-catalogue-date 2018-08-11 07:01:12 +0200
catalogue-license gpl2
catalogue-topics font-use context
@@ -72713,7 +71981,6 @@ runfiles size=11
RELOC/tex/context/third/vim/t-vim.tex
catalogue-also context-filter
catalogue-ctan /macros/context/contrib/context-vim
-catalogue-date 2018-08-11 06:19:01 +0200
catalogue-license bsd
catalogue-topics synt-hlt ext-code context
@@ -72743,7 +72010,6 @@ runfiles size=4
RELOC/tex/context/third/visualcounter/t-visualcounter.mkvi
catalogue-contact-repository https://github.com/adityam/visualcounter
catalogue-ctan /macros/context/contrib/context-visualcounter
-catalogue-date 2018-08-11 15:25:56 +0200
catalogue-license bsd2
catalogue-topics context
@@ -73016,7 +72282,6 @@ runfiles size=2
RELOC/tex/latex/continue/continue.sty
catalogue-also fwlw turnthepage
catalogue-ctan /macros/latex/contrib/continue
-catalogue-date 2019-01-11 20:04:18 +0100
catalogue-license lppl1.3
catalogue-topics layout page-hf
catalogue-version 0.2
@@ -73052,7 +72317,6 @@ runfiles size=7
RELOC/tex/latex/contour/pdftex.cnt
RELOC/tex/latex/contour/vtex.cnt
catalogue-ctan /macros/latex/contrib/contour
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics decoration colour
catalogue-version 2.14
@@ -73085,7 +72349,6 @@ runfiles size=8
catalogue-contact-bugs https://github.com/samwhited/contracard/issues
catalogue-contact-repository https://github.com/SamWhited/contracard.git
catalogue-ctan /macros/latex/contrib/contracard
-catalogue-date 2019-03-03 19:22:34 +0100
catalogue-license lppl1.3c
catalogue-topics music class
catalogue-version 2.0.0
@@ -73116,7 +72379,6 @@ srcfiles size=5
runfiles size=2
RELOC/tex/latex/conv-xkv/conv-xkv.sty
catalogue-ctan /macros/latex/contrib/conv-xkv
-catalogue-date 2017-03-20 15:11:14 +0100
catalogue-license lppl1.2
catalogue-topics macro-supp
@@ -73138,7 +72400,6 @@ runfiles size=4
texmf-dist/scripts/convbkmk/convbkmk.rb
catalogue-contact-repository https://github.com/t-tk/convbkmk
catalogue-ctan /support/convbkmk
-catalogue-date 2018-11-25 13:02:44 +0100
catalogue-license mit
catalogue-topics pdfprocess
catalogue-version 0.30
@@ -73312,7 +72573,6 @@ runfiles size=1
RELOC/tex/latex/cooking/cooking.sty
catalogue-also cuisine
catalogue-ctan /macros/latex/contrib/cooking
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics cooking
catalogue-version 0.9b
@@ -73344,7 +72604,6 @@ runfiles size=29
RELOC/tex/latex/cooking-units/cooking-units.sty
catalogue-contact-repository https://github.com/Vidabe/cooking-units
catalogue-ctan /macros/latex/contrib/cooking-units
-catalogue-date 2018-09-24 15:23:01 +0200
catalogue-license lppl
catalogue-topics cooking units
catalogue-version 1.45
@@ -73374,7 +72633,6 @@ runfiles size=5
RELOC/fonts/tfm/public/cookingsymbols/cookingsymbols.tfm
RELOC/tex/latex/cookingsymbols/cookingsymbols.sty
catalogue-ctan /macros/latex/contrib/cookingsymbols
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics font font-mf font-symbol cooking
catalogue-version 1.1
@@ -73409,7 +72667,6 @@ srcfiles size=46
runfiles size=19
RELOC/tex/latex/cool/cool.sty
catalogue-ctan /macros/latex/contrib/cool
-catalogue-date 2018-10-09 06:17:38 +0200
catalogue-license lgpl
catalogue-topics maths struc-mkup
catalogue-version 1.35
@@ -73440,7 +72697,6 @@ srcfiles size=9
runfiles size=3
RELOC/tex/latex/coollist/coollist.sty
catalogue-ctan /macros/latex/contrib/coollist
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lgpl
catalogue-topics data-manip
catalogue-version 1.4
@@ -73470,7 +72726,6 @@ srcfiles size=10
runfiles size=3
RELOC/tex/latex/coolstr/coolstr.sty
catalogue-ctan /macros/latex/contrib/coolstr
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lgpl
catalogue-topics string
catalogue-version 2.2
@@ -73499,7 +72754,6 @@ srcfiles size=9
runfiles size=2
RELOC/tex/latex/coolthms/coolthms.sty
catalogue-ctan /macros/latex/contrib/coolthms
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics maths-theorem label-ref
catalogue-version 1.2
@@ -73529,7 +72783,6 @@ srcfiles size=9
runfiles size=2
RELOC/tex/latex/cooltooltips/cooltooltips.sty
catalogue-ctan /macros/latex/contrib/cooltooltips
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics pdf-feat
catalogue-version 1.0
@@ -73563,7 +72816,6 @@ runfiles size=9
RELOC/tex/latex/coordsys/logsys.sty
catalogue-also logsys
catalogue-ctan /macros/latex/contrib/coordsys
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics graphics-in-tex
catalogue-version 1.4
@@ -73603,7 +72855,6 @@ srcfiles size=7
runfiles size=3
RELOC/tex/latex/copyedit/copyedit.sty
catalogue-ctan /macros/latex/contrib/copyedit
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics english
catalogue-version 1.6
@@ -73628,14 +72879,13 @@ docfiles size=765
runfiles size=1
RELOC/tex/latex/copyrightbox/copyrightbox.sty
catalogue-ctan /macros/latex/contrib/copyrightbox
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics typesetting
catalogue-version 0.1
name cormorantgaramond
category Package
-revision 53067
+revision 53104
shortdesc Cormorant Garamond family of fonts
relocated 1
longdesc This package provides LaTeX, pdfLaTeX, XeLaTeX and LuaLaTeX
@@ -73644,83 +72894,79 @@ longdesc Christian Thalman of Catharsis Fonts. The family includes
longdesc light, regular, medium, semi-bold, and bold weights, with
longdesc italics.
execute addMap CormorantGaramond.map
-containersize 5582788
-containerchecksum 4a2cf66d4510557c37d5dc80739c88c47172bbb681d0651a7fbde4e0c196294839bdf9111429fecae0606d3f9dd34452622ced061e5f355ddc975af1818f4976
-doccontainersize 158020
-doccontainerchecksum 55835953df5f5485565483e6bfa5f255cf10f79fb19da6a800b625e16556a851ea981a848c33608f55df691f33284964b4fa8f5f4a2b477ede54aa78e4579862
+containersize 5582672
+containerchecksum 0af6f9252834ef4c2f4b147704ffb29e1a745da3287a4458888ad1eb50e08215f014926f93704e24c50b746f4d8bfb41913413c80736b496546b2d6dcf9d2e89
+doccontainersize 158016
+doccontainerchecksum 9f5133a155813be17d45c5ad52b2724c9c51c7e9429e9ed0116528fbbb78a1b73253ff9390d09b41bd6e3753e0002b74fa25c9157df5ba85089b4139b2e88aad
docfiles size=42
RELOC/doc/fonts/cormorantgaramond/OFL.txt
RELOC/doc/fonts/cormorantgaramond/README details="Readme"
RELOC/doc/fonts/cormorantgaramond/cormorantgaramond.pdf details="Font samples"
RELOC/doc/fonts/cormorantgaramond/cormorantgaramond.tex
-runfiles size=5259
+runfiles size=5258
RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_2ahxjn.enc
- RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_2dmsey.enc
RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_2fszuh.enc
- RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_2lk3hg.enc
+ RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_2qzove.enc
RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_2woykf.enc
+ RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_2xvhcw.enc
RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_33cvom.enc
RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_36gbzh.enc
- RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_3yisgl.enc
+ RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_45xxtj.enc
RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_4fize4.enc
RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_554p77.enc
+ RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_575fly.enc
+ RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_5ezmem.enc
+ RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_5zuknm.enc
RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_6cgyqp.enc
+ RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_726bjo.enc
RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_7l65a5.enc
RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_ahqoow.enc
RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_baamnb.enc
- RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_brevmk.enc
- RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_cavuvz.enc
+ RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_bndooo.enc
+ RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_cjaria.enc
+ RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_cpu34x.enc
RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_ctw2ju.enc
- RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_d6dwy7.enc
+ RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_czjvuz.enc
RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_edlrwy.enc
RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_ehskq2.enc
- RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_elwezr.enc
RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_ezmsqi.enc
- RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_ffyb57.enc
RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_fnl4sj.enc
- RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_foxgxp.enc
RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_fqbaih.enc
- RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_fvphkr.enc
RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_g7ehha.enc
RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_gfgzzm.enc
RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_ggoxrw.enc
- RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_hghaxu.enc
+ RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_goqtbf.enc
RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_hnmd4t.enc
RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_ho7x2y.enc
- RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_i256wl.enc
RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_i4ztt6.enc
- RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_ijkaup.enc
RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_imua2m.enc
RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_ira4mj.enc
+ RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_iuhjfz.enc
+ RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_iyf2ai.enc
RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_j2hlib.enc
- RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_j3d225.enc
+ RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_j5xrmg.enc
RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_jg7lls.enc
- RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_jmc6fu.enc
- RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_jsp4ta.enc
RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_jwbavo.enc
RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_k54atz.enc
- RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_kssxfj.enc
+ RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_kbv5uy.enc
+ RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_ksmxc6.enc
RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_kwxzcp.enc
+ RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_l5f566.enc
+ RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_ldw23p.enc
RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_lksf3x.enc
- RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_mbw5ca.enc
+ RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_mcvd3c.enc
RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_mq3pk7.enc
RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_myrl74.enc
RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_nniu67.enc
+ RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_nswxfs.enc
RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_nxkups.enc
RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_nxzswi.enc
- RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_nz72va.enc
- RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_o3cfq5.enc
RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_od3ly4.enc
RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_olzkph.enc
- RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_ourxch.enc
- RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_p2rbif.enc
- RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_p2vmxo.enc
- RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_p3liqf.enc
RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_p4fks4.enc
RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_p5fsj2.enc
- RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_p75lhd.enc
- RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_ptyukg.enc
- RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_q6iycd.enc
+ RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_payxmf.enc
+ RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_pm4rjs.enc
RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_qaa67y.enc
RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_qco72e.enc
RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_qnkxku.enc
@@ -73728,31 +72974,35 @@ runfiles size=5259
RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_rnb5y6.enc
RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_rohdbu.enc
RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_ry5pl7.enc
+ RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_s2pyjf.enc
RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_s4zbbx.enc
+ RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_sfoqzm.enc
RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_sowbon.enc
- RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_sq3ew7.enc
RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_txosmw.enc
+ RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_tzoazu.enc
RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_usix3v.enc
+ RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_uys5qk.enc
+ RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_v2z4dl.enc
RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_v7t4yx.enc
+ RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_vabk2p.enc
RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_vdpe4c.enc
RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_vnv5uk.enc
+ RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_vqhfd3.enc
RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_vs5evg.enc
RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_vuc6nl.enc
- RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_w4zlgd.enc
- RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_wqocre.enc
- RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_wxr4jp.enc
- RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_x3eqji.enc
- RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_x4jcxc.enc
+ RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_xrzidp.enc
RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_xwhmgi.enc
+ RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_xzjjkx.enc
+ RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_y22u7a.enc
RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_yah5fp.enc
RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_ycbsw5.enc
- RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_ygpojz.enc
+ RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_ye4dng.enc
RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_yifvzr.enc
RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_yksu3h.enc
RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_yo6qap.enc
- RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_zapu5s.enc
+ RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_zc6byq.enc
RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_zcfdr3.enc
- RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_zl5xe4.enc
+ RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_zkhuis.enc
RELOC/fonts/enc/dvips/cormorantgaramond/cgrm_zzgqip.enc
RELOC/fonts/map/dvips/cormorantgaramond/CormorantGaramond.map
RELOC/fonts/tfm/catharsis/cormorantgaramond/CormorantGaramond-Bold-inf-ly1.tfm
@@ -74657,7 +73907,6 @@ runfiles size=5259
RELOC/tex/latex/cormorantgaramond/TS1CormorantGaramond-TLF.fd
RELOC/tex/latex/cormorantgaramond/TS1CormorantGaramond-TOsF.fd
catalogue-ctan /fonts/cormorantgaramond
-catalogue-date 2019-12-08 23:13:50 +0100
catalogue-license ofllppl
catalogue-topics font font-body font-proportional font-serif font-ttf font-type1 font-supp font-t1enc
catalogue-version 3.601
@@ -74682,7 +73931,6 @@ docfiles size=204
runfiles size=1
RELOC/tex/latex/correctmathalign/correctmathalign.sty
catalogue-ctan /macros/latex/contrib/correctmathalign
-catalogue-date 2018-01-07 11:56:15 +0100
catalogue-license bsd
catalogue-topics maths
catalogue-version 1.1
@@ -74710,7 +73958,6 @@ runfiles size=1
RELOC/tex/latex/coseoul/coseoul.sty
catalogue-also modular
catalogue-ctan /macros/latex/contrib/coseoul
-catalogue-date 2017-05-01 08:28:39 +0200
catalogue-license lppl1.3
catalogue-topics headings
catalogue-version 1.1
@@ -74745,7 +73992,6 @@ runfiles size=72
RELOC/fonts/type1/public/countriesofeurope/countriesofeurope.pfb
RELOC/tex/latex/countriesofeurope/countriesofeurope.sty
catalogue-ctan /fonts/countriesofeurope
-catalogue-date 2019-10-03 15:46:20 +0200
catalogue-license ofllppl
catalogue-topics font font-type1 font-novelty
catalogue-version 0.23
@@ -74773,7 +74019,6 @@ srcfiles size=3
runfiles size=1
RELOC/tex/latex/counttexruns/counttexruns.sty
catalogue-ctan /macros/latex/contrib/counttexruns
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics compilation
catalogue-version 1.00a
@@ -74914,7 +74159,6 @@ runfiles size=291
RELOC/tex/latex/courier/ts1ucr.fd
catalogue-also tex-gyre
catalogue-ctan /fonts/urw/base35
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics font font-type1 font-collection
@@ -74947,7 +74191,6 @@ runfiles size=11
RELOC/tex/latex/courier-scaled/ts1pcrs.fd
RELOC/tex/latex/courier-scaled/xl2pcrs.fd
catalogue-ctan /fonts/psfonts/courier-scaled
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.2
catalogue-topics font-use
@@ -74967,7 +74210,6 @@ docfiles size=2
runfiles size=3
RELOC/tex/latex/courseoutline/courseoutline.cls
catalogue-ctan /macros/latex/contrib/courseoutline
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license other-free
catalogue-topics teaching
catalogue-version 1.0
@@ -74988,7 +74230,6 @@ docfiles size=2
runfiles size=4
RELOC/tex/latex/coursepaper/coursepaper.cls
catalogue-ctan /macros/latex/contrib/coursepaper
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license other-free
catalogue-topics essay
catalogue-version 2.0
@@ -75034,7 +74275,6 @@ runfiles size=3
RELOC/tex/latex/coverpage/CoverPage.cfg
RELOC/tex/latex/coverpage/CoverPage.sty
catalogue-ctan /macros/latex/contrib/coverpage
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.2
catalogue-topics journalpub
catalogue-version 1.01
@@ -75062,7 +74302,6 @@ catalogue-also gb4e
catalogue-contact-bugs https://github.com/jspitz/covington/issues
catalogue-contact-repository https://github.com/jspitz/covington
catalogue-ctan /macros/latex/contrib/covington
-catalogue-date 2019-06-22 17:01:57 +0200
catalogue-license lppl1.3
catalogue-topics linguistic
catalogue-version 2.3
@@ -75094,7 +74333,6 @@ srcfiles size=11
runfiles size=3
RELOC/tex/latex/cprotect/cprotect.sty
catalogue-ctan /macros/latex/contrib/cprotect
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics verbatim
catalogue-version 1.0e
@@ -75133,7 +74371,6 @@ catalogue-also cquthesis
catalogue-contact-bugs https://github.com/CQUtug/CQUBeamer
catalogue-contact-repository https://github.com/Godblesswz/CQUBeamerTemplate
catalogue-ctan /macros/xetex/latex/cqubeamer
-catalogue-date 2018-05-12 04:59:36 +0200
catalogue-license mitcc-by-4
catalogue-topics presentation xetex doc-templ chinese
catalogue-version 1.0
@@ -75188,7 +74425,6 @@ catalogue-contact-bugs https://github.com/nanmu42/CQUThesis/issues
catalogue-contact-development https://github.com/nanmu42/CQUThesis/blob/master/CONTRIBUTORS.md
catalogue-contact-repository https://github.com/nanmu42/CQUThesis
catalogue-ctan /macros/latex/contrib/cquthesis
-catalogue-date 2019-10-12 15:19:03 +0200
catalogue-license lppl1.3
catalogue-topics dissertation class chinese
catalogue-version 1.40
@@ -75213,7 +74449,6 @@ runfiles size=1
catalogue-contact-bugs https://github.com/bidi-tex/crbox/issues
catalogue-contact-repository https://github.com/bidi-tex/crbox
catalogue-ctan /macros/latex/contrib/crbox
-catalogue-date 2018-11-28 19:11:53 +0100
catalogue-license lppl
catalogue-topics boxing typesetting decoration
catalogue-version 0.1
@@ -75343,7 +74578,6 @@ runfiles size=655
RELOC/tex/latex/crimson/crimson.sty
catalogue-also crimsonpro
catalogue-ctan /fonts/crimson
-catalogue-date 2018-12-22 13:05:48 +0100
catalogue-license ofllppl
catalogue-topics font font-serif font-t1enc font-proportional font-otf font-type1
@@ -76308,7 +75542,6 @@ runfiles size=3406
RELOC/tex/latex/crimsonpro/TS1CrimsonPro-TOsF.fd
catalogue-also crimson
catalogue-ctan /fonts/crimsonpro
-catalogue-date 2019-10-22 05:45:51 +0200
catalogue-license ofllppl
catalogue-topics font font-serif font-t1enc font-proportional font-ttf font-type1
@@ -76345,7 +75578,6 @@ runfiles size=5
RELOC/tex/latex/crop/crop.sty
catalogue-also zwpagelayout
catalogue-ctan /macros/latex/contrib/crop
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics layout-page
catalogue-version 1.5
@@ -76375,7 +75607,6 @@ srcfiles size=4
runfiles size=1
RELOC/tex/latex/crossreference/crossreference.sty
catalogue-ctan /macros/latex/contrib/crossreference
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics label-ref
@@ -76402,7 +75633,6 @@ runfiles size=4
catalogue-also cleveref
catalogue-contact-home http://www.ich-rede-mich-um-kopf-und-kragen.de
catalogue-ctan /macros/latex/contrib/crossreftools
-catalogue-date 2019-01-03 16:16:07 +0100
catalogue-license lppl1.3
catalogue-topics label-ref
catalogue-version 0.9
@@ -76455,7 +75685,6 @@ catalogue-contact-bugs https://github.com/borisveytsman/crossrefware/issues
catalogue-contact-development https://github.com/borisveytsman/crossrefware/pulls
catalogue-contact-repository https://github.com/borisveytsman/crossrefware
catalogue-ctan /support/crossrefware
-catalogue-date 2018-05-28 08:15:25 +0200
catalogue-license gpl
catalogue-topics bibtex-util
@@ -76721,7 +75950,6 @@ runfiles size=3
RELOC/tex/latex/crossword/cwpuzzle.sty
catalogue-also crosswrd
catalogue-ctan /macros/latex/contrib/gene/crossword
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license other-free
catalogue-topics games cwpuzzle
catalogue-version 1.9
@@ -76756,7 +75984,6 @@ srcfiles size=17
runfiles size=3
RELOC/tex/latex/crosswrd/crosswrd.sty
catalogue-ctan /macros/latex/contrib/crosswrd
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics games cwpuzzle
catalogue-version 3.0
@@ -76784,7 +76011,6 @@ docfiles size=272
runfiles size=19
RELOC/tex/latex/cryptocode/cryptocode.sty
catalogue-ctan /macros/latex/contrib/cryptocode
-catalogue-date 2018-11-11 20:45:37 +0100
catalogue-license lppl1.3
catalogue-topics pseudocode
catalogue-version 0.3.0
@@ -76811,7 +76037,6 @@ runfiles size=23
RELOC/fonts/tfm/public/cryst/cryst.tfm
RELOC/fonts/type1/public/cryst/cryst.pfb
catalogue-ctan /fonts/cryst
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics font font-type1 font-mf font-symbol
@@ -77231,7 +76456,6 @@ runfiles size=919
RELOC/fonts/vf/cs/cs-charter/bchri8z.vf
catalogue-contact-home http://petr.olsak.net/cstex/
catalogue-ctan /macros/cstex/base/csfonts.tar.gz
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license gpl
catalogue-topics czech slovak font font-mf
@@ -77260,7 +76484,6 @@ runfiles size=13
RELOC/tex/latex/csbulletin/csbulobalka.sty
RELOC/tex/latex/csbulletin/csbulv1.cls
catalogue-ctan /macros/latex/contrib/csbulletin
-catalogue-date 2019-01-12 11:49:08 +0100
catalogue-license lppl1.3
catalogue-topics journalpub class
catalogue-version 1.2
@@ -77335,7 +76558,6 @@ runfiles size=46
texmf-dist/tex/cslatex/cspsfonts/xl2pzc.fd
catalogue-contact-home http://petr.olsak.net/cstex/
catalogue-ctan /macros/cstex/base/cslatex.tar.gz
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license gpl
catalogue-topics czech slovak format
@@ -77619,7 +76841,6 @@ runfiles size=216
texmf-dist/tex/csplain/opmac/pdfuni.tex
catalogue-contact-home http://petr.olsak.net/csplain-e.html
catalogue-ctan /macros/cstex/base/csplain.tar.gz
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license other-free
catalogue-topics czech slovak format
@@ -77833,7 +77054,6 @@ runfiles size=25
RELOC/tex/latex/csquotes/csquotes.def
RELOC/tex/latex/csquotes/csquotes.sty
catalogue-ctan /macros/latex/contrib/csquotes
-catalogue-date 2019-12-06 17:13:27 +0100
catalogue-license lppl1.3c
catalogue-topics quote-marks etex
catalogue-version 5.2j
@@ -77854,7 +77074,6 @@ docfiles size=143
RELOC/doc/latex/csquotes-de/csquotes-DE.pdf details="The document itself"
RELOC/doc/latex/csquotes-de/csquotes-DE.tex
catalogue-ctan /info/translations/csquotes/de
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics quote-marks translation
catalogue-version 1.01
@@ -77878,7 +77097,6 @@ docfiles size=521
runfiles size=2
RELOC/tex/latex/css-colors/css-colors.sty
catalogue-ctan /macros/latex/contrib/css-colors
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license lpplgpl
catalogue-topics colour
catalogue-version 1.02
@@ -77937,7 +77155,6 @@ docfiles size=1156
catalogue-also cslatex
catalogue-contact-home http://math.feld.cvut.cz/olsak/cstex/
catalogue-ctan /macros/cstex
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license other-free
catalogue-topics distribution
@@ -77965,7 +77182,6 @@ runfiles size=4
RELOC/tex/luatex/cstypo/cstypo.lua
catalogue-contact-repository https://github.com/wilx/cstypo
catalogue-ctan /macros/luatex/generic/cstypo
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license mit
catalogue-topics luatex czech
catalogue-version 0.03
@@ -77998,7 +77214,6 @@ srcfiles size=13
runfiles size=3
RELOC/tex/latex/csvmerge/csvmerge.sty
catalogue-ctan /macros/latex/contrib/csvmerge
-catalogue-date 2019-08-10 17:57:11 +0200
catalogue-license lppl1.3
catalogue-topics csv-support
catalogue-version 1.0
@@ -78037,7 +77252,6 @@ runfiles size=7
RELOC/tex/latex/csvsimple/csvsimple.sty
catalogue-also csvtools datatool
catalogue-ctan /macros/latex/contrib/csvsimple
-catalogue-date 2019-04-28 12:45:29 +0200
catalogue-license lppl1.3
catalogue-topics data-import data-disp csv-support
catalogue-version 1.21
@@ -78099,7 +77313,6 @@ srcfiles size=14
runfiles size=3
RELOC/tex/latex/ctable/ctable.sty
catalogue-ctan /macros/latex/contrib/ctable
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics table float
catalogue-version 1.31
@@ -78130,7 +77343,6 @@ srcfiles size=3
runfiles size=1
RELOC/tex/luatex/ctablestack/ctablestack.sty
catalogue-ctan /macros/luatex/generic/ctablestack
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics luatex
catalogue-version 1.0
@@ -78174,7 +77386,6 @@ catalogue-contact-bugs https://github.com/ge-ne/ctan-o-mat/issues
catalogue-contact-home https://github.com/ge-ne/ctan-o-mat
catalogue-contact-repository https://github.com/ge-ne/ctan-o-mat
catalogue-ctan /support/ctan-o-mat
-catalogue-date 2017-11-25 09:56:55 +0100
catalogue-license bsd3
catalogue-topics ctan
catalogue-version 1.2
@@ -78343,7 +77554,6 @@ docfiles size=64
RELOC/doc/support/ctan_chk/ctan_chk.w
RELOC/doc/support/ctan_chk/ctan_chk_bash
catalogue-ctan /support/ctan_chk
-catalogue-date 2017-02-11 20:31:30 +0100
catalogue-license gpl3
catalogue-topics ctan
catalogue-version 1.0
@@ -78372,7 +77582,6 @@ runfiles size=2
catalogue-contact-bugs https://github.com/michal-h21/ctanbib/issues
catalogue-contact-repository https://github.com/michal-h21/ctanbib
catalogue-ctan /support/ctanbib
-catalogue-date 2019-09-21 20:28:25 +0200
catalogue-license lppl1.3
catalogue-topics bibtex-gen ctan luatex use-lua
catalogue-version 0.1d
@@ -78550,7 +77759,6 @@ runfiles size=6
texmf-dist/scripts/ctanify/ctanify
catalogue-also ctanupload
catalogue-ctan /support/ctanify
-catalogue-date 2017-04-23 06:09:52 +0200
catalogue-license lppl1.3c
catalogue-topics ctan
catalogue-version 1.9.1
@@ -78722,7 +77930,6 @@ runfiles size=5
texmf-dist/scripts/ctanupload/ctanupload.pl
catalogue-also ctanify
catalogue-ctan /support/ctanupload
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl3
catalogue-topics ctan
catalogue-version 1.2c
@@ -78969,7 +78176,6 @@ catalogue-contact-home http://www.ctex.org/HomePage
catalogue-contact-repository https://github.com/CTeX-org/ctex-kit
catalogue-contact-support https://github.com/CTeX-org/ctex-kit/issues
catalogue-ctan /language/chinese/ctex
-catalogue-date 2019-05-29 17:23:03 +0200
catalogue-license lppl1.3c
catalogue-topics chinese book-pub class
catalogue-version 2.4.16
@@ -78992,7 +78198,6 @@ docfiles size=180
RELOC/doc/latex/ctex-faq/src/ctex-faq.tex
RELOC/doc/latex/ctex-faq/src/make.bat
catalogue-ctan /info/ctex-faq
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license fdl
catalogue-topics chinese-doc faq
@@ -79038,7 +78243,6 @@ runfiles size=206
RELOC/tex/latex/ctib/lctctib.fd
RELOC/tex/latex/ctib/lctenc.def
catalogue-ctan /language/tibetan/ctib
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics tibetan
@@ -79057,7 +78261,6 @@ docfiles size=6
texmf-dist/doc/man/man1/ctie.1
texmf-dist/doc/man/man1/ctie.man1.pdf
catalogue-ctan /web/c_cpp/ctie
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license gpl
catalogue-topics litprog
catalogue-version 1.1
@@ -79229,7 +78432,6 @@ runfiles size=4
RELOC/tex/latex/cuisine/cuisine.sty
catalogue-also recipe
catalogue-ctan /macros/latex/contrib/cuisine
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics cooking
catalogue-version 0.7
@@ -79264,7 +78466,6 @@ runfiles size=113
RELOC/tex/latex/cuprum/cuprum.sty
RELOC/tex/latex/cuprum/t1cpr.fd
catalogue-ctan /fonts/cuprum
-catalogue-date 2019-02-05 05:26:48 +0100
catalogue-license ofl
catalogue-topics font font-body font-sans font-ttf font-t1enc font-proportional
@@ -79295,7 +78496,6 @@ catalogue-also siunitx
catalogue-contact-bugs https://github.com/antoinelejay/currency/issues
catalogue-contact-repository https://github.com/antoinelejay/currency
catalogue-ctan /macros/latex/contrib/currency
-catalogue-date 2018-10-24 21:28:00 +0200
catalogue-license lppl1.3
catalogue-topics units scientific-docs
catalogue-version 0.4
@@ -79332,7 +78532,6 @@ runfiles size=5
RELOC/tex/latex/currfile/currfile-abspath.sty
RELOC/tex/latex/currfile/currfile.sty
catalogue-ctan /macros/latex/contrib/currfile
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics doc-tool
catalogue-version 0.7c
@@ -79363,7 +78562,6 @@ runfiles size=2
RELOC/tex/latex/currvita/currvita.sty
catalogue-also curve cv esieecv europecv vita
catalogue-ctan /macros/latex/contrib/currvita
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics cv
@@ -79399,7 +78597,6 @@ docfiles size=1908
RELOC/doc/latex/cursolatex/tipografia.pdf
RELOC/doc/latex/cursolatex/ubuntu.pdf
catalogue-ctan /info/portuguese/cursolatex
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics tut-latex portuguese-doc
@@ -79444,7 +78641,6 @@ runfiles size=7
RELOC/tex/latex/curve/curve.cls
catalogue-also currvita cv esieecv europecv vita
catalogue-ctan /macros/latex/contrib/curve
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics cv class
catalogue-version 1.16
@@ -79477,7 +78673,6 @@ runfiles size=15
RELOC/tex/latex/curve2e/curve2e-v161.sty
RELOC/tex/latex/curve2e/curve2e.sty
catalogue-ctan /macros/latex/contrib/curve2e
-catalogue-date 2019-12-06 18:14:14 +0100
catalogue-license lppl1.3c
catalogue-topics graphics graphics-in-tex graphics-curve
catalogue-version 2.0.7
@@ -79512,7 +78707,6 @@ runfiles size=5
RELOC/tex/latex/curves/curves.sty
RELOC/tex/latex/curves/curvesls.sty
catalogue-ctan /macros/latex/contrib/curves
-catalogue-date 2017-09-09 11:04:30 +0200
catalogue-license lppl1.3
catalogue-topics graphics-in-tex graphics-curve
catalogue-version 1.55
@@ -79567,7 +78761,6 @@ runfiles size=140
RELOC/tex/latex/custom-bib/suppjour.mbs
RELOC/tex/latex/custom-bib/svenska.mbs
catalogue-ctan /macros/latex/contrib/custom-bib
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics bibtex-sty
catalogue-version 4.33
@@ -79596,7 +78789,6 @@ srcfiles size=10
runfiles size=3
RELOC/tex/latex/cutwin/cutwin.sty
catalogue-ctan /macros/latex/contrib/cutwin
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics text-flow
catalogue-version 0.1
@@ -79625,7 +78817,6 @@ runfiles size=1
RELOC/tex/latex/cv/CV.sty
catalogue-also moderncv curve
catalogue-ctan /macros/latex/contrib/cv
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics cv class
@@ -79656,7 +78847,6 @@ runfiles size=9
catalogue-also moderncv curve
catalogue-contact-repository https://github.com/Cicatrice/cv4tw
catalogue-ctan /macros/latex/contrib/cv4tw
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license other-free
catalogue-topics cv class
catalogue-version 0.2
@@ -79704,7 +78894,6 @@ runfiles size=19
texmf-dist/tex/plain/cweb/cwebmac.tex
catalogue-contact-repository https://github.com/ascherer/cwebbin
catalogue-ctan /web/c_cpp/cwebbin
-catalogue-date 2019-02-17 09:26:11 +0100
catalogue-license mit
catalogue-topics litprog
catalogue-version 3.64c
@@ -79803,7 +78992,6 @@ runfiles size=33
RELOC/tex/latex/cweb-latex/cwebbase.tex
RELOC/tex/latex/cweb-latex/keyvald.sty
catalogue-ctan /macros/latex/contrib/cweb
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics litprog
@@ -80057,7 +79245,6 @@ srcfiles size=11
runfiles size=3
RELOC/tex/latex/cyber/cyber.sty
catalogue-ctan /macros/latex/contrib/cyber
-catalogue-date 2018-03-01 06:15:11 +0100
catalogue-license mit
catalogue-topics doc-supp
catalogue-version 2.2
@@ -80092,7 +79279,6 @@ srcfiles size=6
runfiles size=2
RELOC/tex/latex/cybercic/cybercic.sty
catalogue-ctan /macros/latex/contrib/cybercic
-catalogue-date 2016-12-18 08:45:22 +0100
catalogue-license mit
catalogue-topics doc-supp toc-etc
catalogue-version 2.1
@@ -80200,7 +79386,6 @@ runfiles size=364
RELOC/tex/latex/cyklop/t1cyklop.fd
RELOC/tex/latex/cyklop/t5cyklop.fd
catalogue-ctan /fonts/cyklop
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gfl
catalogue-topics font font-sans font-otf font-type1
catalogue-version 0.915
@@ -80355,7 +79540,6 @@ runfiles size=133
RELOC/tex/latex/cyrillic/x2lcmss.fd
RELOC/tex/latex/cyrillic/x2lcmtt.fd
catalogue-ctan /macros/latex/required/cyrillic
-catalogue-date 2018-04-07 06:08:02 +0200
catalogue-license lppl1.3
catalogue-topics cyrillic
@@ -80558,7 +79742,6 @@ runfiles size=17
RELOC/tex/plain/cyrplain/txxdefs.tex
RELOC/tex/plain/cyrplain/txxextra.tex
catalogue-ctan /macros/latex/contrib/t2
-catalogue-date 2018-05-08 17:14:58 +0200
catalogue-license lppl
catalogue-topics fontenc cyrillic
@@ -80610,7 +79793,6 @@ runfiles size=2588
RELOC/tex/lualatex/dad/T1dad.fd
RELOC/tex/lualatex/dad/dad.sty
catalogue-ctan /language/arabic/dad
-catalogue-date 2018-03-19 16:37:57 +0100
catalogue-license lppl
catalogue-topics arabic luatex font-type1
catalogue-version 1.2
@@ -80639,7 +79821,6 @@ runfiles size=9
RELOC/fonts/source/public/dancers/dancers.mf
RELOC/fonts/tfm/public/dancers/dancers.tfm
catalogue-ctan /fonts/dancers
-catalogue-date 2016-06-30 21:37:14 +0200
catalogue-license other-free
catalogue-topics font font-mf font-novelty
@@ -80688,7 +79869,6 @@ runfiles size=37
RELOC/tex/latex/dantelogo/T1DANTE.fd
RELOC/tex/latex/dantelogo/dantelogo.sty
catalogue-ctan /fonts/dantelogo
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics font font-otf font-type1
catalogue-version 0.03
@@ -80715,7 +79895,6 @@ srcfiles size=5
runfiles size=2
RELOC/tex/latex/dashbox/dashbox.sty
catalogue-ctan /macros/latex/contrib/dashbox
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics boxing
catalogue-version 1.14
@@ -80750,7 +79929,6 @@ srcfiles size=6
runfiles size=1
RELOC/tex/latex/dashrule/dashrule.sty
catalogue-ctan /macros/latex/contrib/dashrule
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics line-patt
catalogue-version 1.3
@@ -80788,7 +79966,6 @@ catalogue-contact-bugs https://github.com/FrankMittelbach/fmitex/issues
catalogue-contact-home https://www.latex-project.org
catalogue-contact-repository https://github.com/FrankMittelbach/fmitex
catalogue-ctan /macros/latex/contrib/dashundergaps
-catalogue-date 2018-11-18 22:46:59 +0100
catalogue-license lppl
catalogue-topics underline line-patt
catalogue-version 2.0d
@@ -80814,7 +79991,6 @@ runfiles size=7
RELOC/tex/latex/dataref/dataref.sty
catalogue-contact-repository https://github.com/stettberger/dataref
catalogue-ctan /macros/latex/contrib/dataref
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl1.3
catalogue-topics label-ref data-manip
catalogue-version 0.6
@@ -80913,7 +80089,6 @@ runfiles size=119
RELOC/tex/latex/datatool/datatool.sty
RELOC/tex/latex/datatool/person.sty
catalogue-ctan /macros/latex/contrib/datatool
-catalogue-date 2019-09-27 21:27:57 +0200
catalogue-license lppl1.3
catalogue-topics data-import data-disp data-manip
catalogue-version 2.32
@@ -80945,7 +80120,6 @@ srcfiles size=19
runfiles size=4
RELOC/tex/latex/dateiliste/dateiliste.sty
catalogue-ctan /macros/latex/contrib/dateiliste
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics doc-mgmt
catalogue-version 0.6
@@ -80983,7 +80157,6 @@ runfiles size=8
RELOC/tex/latex/datenumber/datenumbergerman.ldf
RELOC/tex/latex/datenumber/datenumberspanish.ldf
catalogue-ctan /macros/latex/contrib/datenumber
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics date-time
catalogue-version 0.02
@@ -81076,7 +80249,6 @@ runfiles size=66
RELOC/tex/latex/datetime/dt-usorbian.def
RELOC/tex/latex/datetime/dt-welsh.def
catalogue-ctan /obsolete/macros/latex/contrib/datetime
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics date-time multilingual obsolete
catalogue-version 2.60
@@ -81129,7 +80301,6 @@ runfiles size=17
RELOC/tex/latex/datetime2/datetime2.sty
catalogue-contact-home http://www.dickimaw-books.com/faqs/datetime2faq.html
catalogue-ctan /macros/latex/contrib/datetime2
-catalogue-date 2019-11-11 20:37:59 +0100
catalogue-license lppl1.3
catalogue-topics date-time multilingual
catalogue-version 1.5.5
@@ -81158,7 +80329,6 @@ srcfiles size=4
runfiles size=2
RELOC/tex/latex/datetime2-bahasai/datetime2-bahasai.ldf
catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-bahasai
-catalogue-date 2018-01-10 22:14:01 +0100
catalogue-license lppl1.3
catalogue-topics date-time multilingual
catalogue-version 1.01
@@ -81188,7 +80358,6 @@ srcfiles size=5
runfiles size=3
RELOC/tex/latex/datetime2-basque/datetime2-basque.ldf
catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-basque
-catalogue-date 2018-03-21 20:14:45 +0100
catalogue-license lppl1.3
catalogue-topics date-time multilingual basque
catalogue-version 1.2a
@@ -81219,7 +80388,6 @@ runfiles size=4
RELOC/tex/latex/datetime2-breton/datetime2-breton-utf8.ldf
RELOC/tex/latex/datetime2-breton/datetime2-breton.ldf
catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-breton
-catalogue-date 2019-11-05 13:35:56 +0100
catalogue-license lppl1.3
catalogue-topics date-time multilingual
catalogue-version 1.2
@@ -81250,7 +80418,6 @@ runfiles size=5
RELOC/tex/latex/datetime2-bulgarian/datetime2-bulgarian-utf8.ldf
RELOC/tex/latex/datetime2-bulgarian/datetime2-bulgarian.ldf
catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-bulgarian
-catalogue-date 2018-03-19 17:38:12 +0100
catalogue-license lppl1.3
catalogue-topics date-time multilingual
catalogue-version 1.1
@@ -81281,7 +80448,6 @@ runfiles size=4
RELOC/tex/latex/datetime2-catalan/datetime2-catalan-utf8.ldf
RELOC/tex/latex/datetime2-catalan/datetime2-catalan.ldf
catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-catalan
-catalogue-date 2018-03-19 17:52:59 +0100
catalogue-license lppl1.3
catalogue-topics date-time multilingual
catalogue-version 1.1
@@ -81310,7 +80476,6 @@ runfiles size=4
RELOC/tex/latex/datetime2-croatian/datetime2-croatian-utf8.ldf
RELOC/tex/latex/datetime2-croatian/datetime2-croatian.ldf
catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-croatian
-catalogue-date 2018-01-07 11:22:54 +0100
catalogue-license lppl1.3
catalogue-topics date-time multilingual
catalogue-version 1.0
@@ -81341,7 +80506,6 @@ runfiles size=4
RELOC/tex/latex/datetime2-czech/datetime2-czech-utf8.ldf
RELOC/tex/latex/datetime2-czech/datetime2-czech.ldf
catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-czech
-catalogue-date 2018-03-19 17:42:42 +0100
catalogue-license lppl1.3
catalogue-topics date-time multilingual
catalogue-version 1.1
@@ -81372,7 +80536,6 @@ runfiles size=4
RELOC/tex/latex/datetime2-danish/datetime2-danish-utf8.ldf
RELOC/tex/latex/datetime2-danish/datetime2-danish.ldf
catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-danish
-catalogue-date 2018-03-19 18:12:26 +0100
catalogue-license lppl1.3
catalogue-topics date-time multilingual
catalogue-version 1.1
@@ -81401,7 +80564,6 @@ srcfiles size=5
runfiles size=2
RELOC/tex/latex/datetime2-dutch/datetime2-dutch.ldf
catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-dutch
-catalogue-date 2018-04-07 06:36:05 +0200
catalogue-license lppl1.3
catalogue-topics date-time multilingual
catalogue-version 1.1
@@ -81437,7 +80599,6 @@ srcfiles size=7
runfiles size=4
RELOC/tex/latex/datetime2-en-fulltext/datetime2-en-fulltext.sty
catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-en-fulltext
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics date-time multilingual
catalogue-version 1.0
@@ -81487,7 +80648,6 @@ runfiles size=26
RELOC/tex/latex/datetime2-english/datetime2-english-base.ldf
RELOC/tex/latex/datetime2-english/datetime2-english.ldf
catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-english
-catalogue-date 2019-10-21 13:10:15 +0200
catalogue-license lppl1.3
catalogue-topics date-time multilingual
catalogue-version 1.05
@@ -81518,7 +80678,6 @@ runfiles size=4
RELOC/tex/latex/datetime2-esperanto/datetime2-esperanto-utf8.ldf
RELOC/tex/latex/datetime2-esperanto/datetime2-esperanto.ldf
catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-esperanto
-catalogue-date 2018-04-07 06:41:21 +0200
catalogue-license lppl1.3
catalogue-topics date-time multilingual
catalogue-version 1.1
@@ -81549,7 +80708,6 @@ runfiles size=4
RELOC/tex/latex/datetime2-estonian/datetime2-estonian-utf8.ldf
RELOC/tex/latex/datetime2-estonian/datetime2-estonian.ldf
catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-estonian
-catalogue-date 2018-04-13 13:59:22 +0200
catalogue-license lppl1.3
catalogue-topics date-time multilingual
catalogue-version 1.1
@@ -81579,7 +80737,6 @@ runfiles size=5
RELOC/tex/latex/datetime2-finnish/datetime2-finnish-utf8.ldf
RELOC/tex/latex/datetime2-finnish/datetime2-finnish.ldf
catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-finnish
-catalogue-date 2018-03-21 05:28:56 +0100
catalogue-license lppl1.3
catalogue-topics date-time multilingual
catalogue-version 1.2
@@ -81615,7 +80772,6 @@ runfiles size=7
RELOC/tex/latex/datetime2-french/datetime2-french-utf8.ldf
RELOC/tex/latex/datetime2-french/datetime2-french.ldf
catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-french
-catalogue-date 2017-04-08 19:22:56 +0200
catalogue-license lppl1.3
catalogue-topics date-time multilingual
catalogue-version 1.02
@@ -81646,7 +80802,6 @@ runfiles size=4
RELOC/tex/latex/datetime2-galician/datetime2-galician-utf8.ldf
RELOC/tex/latex/datetime2-galician/datetime2-galician.ldf
catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-galician
-catalogue-date 2018-01-07 11:37:20 +0100
catalogue-license lppl1.3
catalogue-topics date-time multilingual
catalogue-version 1.0
@@ -81680,7 +80835,6 @@ runfiles size=10
catalogue-contact-bugs https://github.com/SFr682k/datetime2-german/issues
catalogue-contact-repository https://github.com/SFr682k/datetime2-german
catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-german
-catalogue-date 2017-11-13 22:45:08 +0100
catalogue-license lppl1.3c
catalogue-topics date-time multilingual
catalogue-version 2.1
@@ -81711,7 +80865,6 @@ runfiles size=4
RELOC/tex/latex/datetime2-greek/datetime2-greek-utf8.ldf
RELOC/tex/latex/datetime2-greek/datetime2-greek.ldf
catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-greek
-catalogue-date 2018-04-18 15:02:50 +0200
catalogue-license lppl1.3
catalogue-topics date-time multilingual
catalogue-version 1.1
@@ -81740,7 +80893,6 @@ srcfiles size=4
runfiles size=2
RELOC/tex/latex/datetime2-hebrew/datetime2-hebrew.ldf
catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-hebrew
-catalogue-date 2018-04-18 18:21:23 +0200
catalogue-license lppl1.3
catalogue-topics date-time hebrew multilingual
catalogue-version 1.1
@@ -81771,7 +80923,6 @@ runfiles size=4
RELOC/tex/latex/datetime2-icelandic/datetime2-icelandic-utf8.ldf
RELOC/tex/latex/datetime2-icelandic/datetime2-icelandic.ldf
catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-icelandic
-catalogue-date 2018-04-24 15:17:28 +0200
catalogue-license lppl1.3
catalogue-topics date-time multilingual
catalogue-version 1.1
@@ -81804,7 +80955,6 @@ runfiles size=8
RELOC/tex/latex/datetime2-irish/datetime2-irish-utf8.ldf
RELOC/tex/latex/datetime2-irish/datetime2-irish.ldf
catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-irish
-catalogue-date 2018-04-24 15:30:19 +0200
catalogue-license lppl1.3
catalogue-topics date-time multilingual
catalogue-version 1.1
@@ -81848,7 +80998,6 @@ runfiles size=10
RELOC/tex/latex/datetime2-it-fulltext/datetime2-it-fulltext-utf8.ldf
RELOC/tex/latex/datetime2-it-fulltext/datetime2-it-fulltext.sty
catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-it-fulltext
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics date-time multilingual
catalogue-version 1.6
@@ -81896,7 +81045,6 @@ runfiles size=5
RELOC/tex/latex/datetime2-italian/datetime2-italian-utf8.ldf
RELOC/tex/latex/datetime2-italian/datetime2-italian.ldf
catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-italian
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics date-time multilingual
catalogue-version 1.3
@@ -81925,7 +81073,6 @@ srcfiles size=5
runfiles size=2
RELOC/tex/latex/datetime2-latin/datetime2-latin.ldf
catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-latin
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics date-time multilingual
catalogue-version 1.0
@@ -81956,7 +81103,6 @@ runfiles size=4
RELOC/tex/latex/datetime2-lsorbian/datetime2-lsorbian-utf8.ldf
RELOC/tex/latex/datetime2-lsorbian/datetime2-lsorbian.ldf
catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-lsorbian
-catalogue-date 2018-05-18 15:18:08 +0200
catalogue-license lppl1.3
catalogue-topics date-time multilingual
catalogue-version 1.1
@@ -81987,7 +81133,6 @@ runfiles size=4
RELOC/tex/latex/datetime2-magyar/datetime2-magyar-utf8.ldf
RELOC/tex/latex/datetime2-magyar/datetime2-magyar.ldf
catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-magyar
-catalogue-date 2018-07-24 14:47:49 +0200
catalogue-license lppl1.3
catalogue-topics date-time multilingual
catalogue-version 1.1
@@ -82018,7 +81163,6 @@ runfiles size=4
RELOC/tex/latex/datetime2-norsk/datetime2-norsk-utf8.ldf
RELOC/tex/latex/datetime2-norsk/datetime2-norsk.ldf
catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-norsk
-catalogue-date 2018-07-24 14:57:16 +0200
catalogue-license lppl1.3
catalogue-topics date-time multilingual
catalogue-version 1.1
@@ -82049,7 +81193,6 @@ runfiles size=4
RELOC/tex/latex/datetime2-polish/datetime2-polish-utf8.ldf
RELOC/tex/latex/datetime2-polish/datetime2-polish.ldf
catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-polish
-catalogue-date 2018-08-21 21:59:42 +0200
catalogue-license lppl1.3
catalogue-topics date-time multilingual
catalogue-version 1.1
@@ -82080,7 +81223,6 @@ runfiles size=4
RELOC/tex/latex/datetime2-portuges/datetime2-portuges-utf8.ldf
RELOC/tex/latex/datetime2-portuges/datetime2-portuges.ldf
catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-portuges
-catalogue-date 2018-08-21 21:51:52 +0200
catalogue-license lppl1.3
catalogue-topics date-time multilingual
catalogue-version 1.1
@@ -82116,7 +81258,6 @@ runfiles size=5
RELOC/tex/latex/datetime2-romanian/datetime2-romanian-utf8.ldf
RELOC/tex/latex/datetime2-romanian/datetime2-romanian.ldf
catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-romanian
-catalogue-date 2017-04-08 18:57:01 +0200
catalogue-license lppl1.3
catalogue-topics date-time multilingual
catalogue-version 1.01
@@ -82147,7 +81288,6 @@ runfiles size=4
RELOC/tex/latex/datetime2-russian/datetime2-russian-utf8.ldf
RELOC/tex/latex/datetime2-russian/datetime2-russian.ldf
catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-russian
-catalogue-date 2018-12-07 18:03:48 +0100
catalogue-license lppl1.3
catalogue-topics date-time multilingual
catalogue-version 1.1
@@ -82178,7 +81318,6 @@ runfiles size=4
RELOC/tex/latex/datetime2-samin/datetime2-samin-utf8.ldf
RELOC/tex/latex/datetime2-samin/datetime2-samin.ldf
catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-samin
-catalogue-date 2018-12-07 19:11:58 +0100
catalogue-license lppl1.3
catalogue-topics date-time multilingual
catalogue-version 1.1
@@ -82209,7 +81348,6 @@ runfiles size=4
RELOC/tex/latex/datetime2-scottish/datetime2-scottish-utf8.ldf
RELOC/tex/latex/datetime2-scottish/datetime2-scottish.ldf
catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-scottish
-catalogue-date 2019-09-14 22:47:55 +0200
catalogue-license lppl1.3
catalogue-topics date-time multilingual
catalogue-version 1.1
@@ -82252,7 +81390,6 @@ runfiles size=35
catalogue-contact-bugs https://gitlab.com/andrejr/datetime2-serbian/issues
catalogue-contact-home https://gitlab.com/andrejr/datetime2-serbian
catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-serbian
-catalogue-date 2019-11-22 20:29:49 +0100
catalogue-license lppl1.3
catalogue-topics date-time multilingual serbian
catalogue-version 2.1.0
@@ -82283,7 +81420,6 @@ runfiles size=4
RELOC/tex/latex/datetime2-slovak/datetime2-slovak-utf8.ldf
RELOC/tex/latex/datetime2-slovak/datetime2-slovak.ldf
catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-slovak
-catalogue-date 2019-10-04 19:11:51 +0200
catalogue-license lppl1.3
catalogue-topics date-time multilingual
catalogue-version 1.1
@@ -82314,7 +81450,6 @@ runfiles size=4
RELOC/tex/latex/datetime2-slovene/datetime2-slovene-utf8.ldf
RELOC/tex/latex/datetime2-slovene/datetime2-slovene.ldf
catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-slovene
-catalogue-date 2019-10-04 19:30:17 +0200
catalogue-license lppl1.3
catalogue-topics date-time multilingual
catalogue-version 1.1
@@ -82345,7 +81480,6 @@ runfiles size=4
RELOC/tex/latex/datetime2-spanish/datetime2-spanish-utf8.ldf
RELOC/tex/latex/datetime2-spanish/datetime2-spanish.ldf
catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-spanish
-catalogue-date 2017-11-13 15:03:30 +0100
catalogue-license lppl1.3
catalogue-topics date-time multilingual
catalogue-version 1.1
@@ -82376,7 +81510,6 @@ runfiles size=4
RELOC/tex/latex/datetime2-swedish/datetime2-swedish-utf8.ldf
RELOC/tex/latex/datetime2-swedish/datetime2-swedish.ldf
catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-swedish
-catalogue-date 2018-01-07 11:39:41 +0100
catalogue-license lppl1.3
catalogue-topics date-time multilingual
catalogue-version 1.0
@@ -82407,7 +81540,6 @@ runfiles size=4
RELOC/tex/latex/datetime2-turkish/datetime2-turkish-utf8.ldf
RELOC/tex/latex/datetime2-turkish/datetime2-turkish.ldf
catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-turkish
-catalogue-date 2019-10-10 13:05:36 +0200
catalogue-license lppl1.3
catalogue-topics date-time multilingual
catalogue-version 1.1
@@ -82436,7 +81568,6 @@ runfiles size=8
RELOC/tex/latex/datetime2-ukrainian/datetime2-ukrainian-utf8.ldf
RELOC/tex/latex/datetime2-ukrainian/datetime2-ukrainian.ldf
catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-ukrainian
-catalogue-date 2018-04-15 19:39:57 +0200
catalogue-license lppl1.3
catalogue-topics date-time multilingual
catalogue-version 1.2a
@@ -82467,7 +81598,6 @@ runfiles size=4
RELOC/tex/latex/datetime2-usorbian/datetime2-usorbian-utf8.ldf
RELOC/tex/latex/datetime2-usorbian/datetime2-usorbian.ldf
catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-usorbian
-catalogue-date 2019-10-10 13:19:18 +0200
catalogue-license lppl1.3
catalogue-topics date-time multilingual
catalogue-version 1.1
@@ -82498,7 +81628,6 @@ runfiles size=4
RELOC/tex/latex/datetime2-welsh/datetime2-welsh-utf8.ldf
RELOC/tex/latex/datetime2-welsh/datetime2-welsh.ldf
catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-welsh
-catalogue-date 2019-10-28 19:41:12 +0100
catalogue-license lppl1.3
catalogue-topics date-time multilingual
catalogue-version 1.1
@@ -82522,7 +81651,6 @@ docfiles size=55
runfiles size=2
RELOC/tex/latex/dblfloatfix/dblfloatfix.sty
catalogue-ctan /macros/latex/contrib/dblfloatfix
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics float
catalogue-version 1.0a
@@ -82562,7 +81690,6 @@ runfiles size=25
catalogue-contact-bugs https://github.com/DigitalCurationCentre/dccpaper/issues
catalogue-contact-repository https://github.com/DigitalCurationCentre/dccpaper
catalogue-ctan /macros/latex/contrib/dccpaper
-catalogue-date 2019-10-07 20:08:22 +0200
catalogue-license lppl1.3ccc-by-4
catalogue-topics journalpub confproc class
catalogue-version 1.8.1
@@ -82596,7 +81723,6 @@ runfiles size=14
RELOC/tex/generic/dcpic/dcpic.sty
RELOC/tex/generic/dcpic/europroc.cls
catalogue-ctan /macros/generic/diagrams/dcpic
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics diagram-comm
catalogue-version 5.0.0
@@ -82623,7 +81749,6 @@ docfiles size=73
runfiles size=3
RELOC/tex/latex/ddphonism/ddphonism.sty
catalogue-ctan /macros/latex/contrib/ddphonism
-catalogue-date 2019-09-01 16:54:06 +0200
catalogue-license lppl1.3c
catalogue-topics music diagram pgf-tikz
catalogue-version 0.2
@@ -82651,7 +81776,6 @@ docfiles size=15
runfiles size=9
texmf-dist/scripts/de-macro/de-macro
catalogue-ctan /support/de-macro
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license other-free
catalogue-topics macro-supp
catalogue-version 1.3
@@ -82822,7 +81946,6 @@ srcfiles size=5
runfiles size=1
RELOC/tex/latex/decimal/decimal.sty
catalogue-ctan /macros/latex/contrib/decimal
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1
catalogue-topics typesetting
@@ -82854,7 +81977,6 @@ runfiles size=1
RELOC/tex/latex/decorule/decorule.sty
catalogue-also swrule
catalogue-ctan /macros/latex/contrib/decorule
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics line-weight decoration
catalogue-version 0.6
@@ -82882,7 +82004,6 @@ runfiles size=57
RELOC/tex/generic/dehyph/dehyphtex.tex
catalogue-alias ghyphen gnhyph
catalogue-ctan /language/hyphenation/dehyph
-catalogue-date 2018-09-01 15:39:22 +0200
catalogue-license lppl1
catalogue-topics german hyphenation
@@ -82926,7 +82047,6 @@ runfiles size=143
RELOC/tex/generic/dehyph-exptl/dehyphts-x-2019-04-04.tex
catalogue-contact-home http://projekte.dante.de/Trennmuster/WebHome
catalogue-ctan /language/hyphenation/dehyph-exptl
-catalogue-date 2019-04-04 14:10:17 +0200
catalogue-license mitlppl
catalogue-topics hyphenation german
catalogue-version 0.6
@@ -83537,7 +82657,6 @@ runfiles size=6222
RELOC/tex/latex/dejavu/X2DejaVuSerifCondensed-TLF.fd
RELOC/tex/latex/dejavu/dejavu.sty
catalogue-ctan /fonts/dejavu
-catalogue-date 2017-10-02 08:25:07 +0200
catalogue-license lppl
catalogue-topics font font-greek font-cyrillic font-ttf font-type1 font-sans font-serif font-mono font-t1enc
catalogue-version 2.34
@@ -83577,7 +82696,6 @@ docfiles size=89
runfiles size=2
RELOC/tex/latex/dejavu-otf/dejavu-otf.sty
catalogue-ctan /fonts/dejavu-otf
-catalogue-date 2018-01-07 14:49:11 +0100
catalogue-license lppl1.3
catalogue-topics font-absent font-otf font-ttf font-sans font-serif font-mono
catalogue-version 0.04
@@ -83605,7 +82723,6 @@ runfiles size=1
RELOC/tex/latex/delim/delim.sty
catalogue-also delimseasy
catalogue-ctan /macros/latex/contrib/delim
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.2
catalogue-topics maths
catalogue-version 1.0
@@ -83633,7 +82750,6 @@ runfiles size=7
RELOC/tex/latex/delimseasy/delimseasy.sty
catalogue-also delim
catalogue-ctan /macros/latex/contrib/delimseasy
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics maths
catalogue-version 2.0
@@ -83663,7 +82779,6 @@ runfiles size=2
RELOC/tex/latex/delimset/delimset.sty
catalogue-also delim delimseasy
catalogue-ctan /macros/latex/contrib/delimset
-catalogue-date 2018-12-30 15:38:52 +0100
catalogue-license lppl1.3
catalogue-topics maths
catalogue-version 1.1
@@ -83697,7 +82812,6 @@ srcfiles size=4
runfiles size=2
RELOC/tex/latex/delimtxt/delimtxt.sty
catalogue-ctan /macros/latex/exptl/delimtxt
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics foreign-import
@@ -83723,7 +82837,6 @@ srcfiles size=19
runfiles size=13
RELOC/tex/latex/denisbdoc/denisbdoc.sty
catalogue-ctan /macros/latex/contrib/denisbdoc
-catalogue-date 2017-01-01 22:02:36 +0100
catalogue-license lppl1.3
catalogue-topics doc-supp
catalogue-version 0.7
@@ -83753,7 +82866,6 @@ runfiles size=11
RELOC/tex/latex/derivative/derivative.sty
catalogue-also diffcoeff
catalogue-ctan /macros/latex/contrib/derivative
-catalogue-date 2019-09-21 11:42:52 +0200
catalogue-license lppl1.3
catalogue-topics maths expl3
catalogue-version 0.95b
@@ -83777,7 +82889,6 @@ docfiles size=8
texmf-dist/doc/man/man1/detex.man1.pdf
catalogue-contact-home http://www.cs.purdue.edu/homes/trinkle/detex/
catalogue-ctan /support/detex
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license other-free
catalogue-topics plain-text
@@ -83961,7 +83072,6 @@ runfiles size=4
RELOC/tex/latex/dhua/dhua.sty
catalogue-contact-support http://www.webdesign-bu.de/uwe_lueck/contact.html
catalogue-ctan /macros/latex/contrib/dhua
-catalogue-date 2017-05-05 20:35:46 +0200
catalogue-license lppl1.3
catalogue-topics shortcut german
catalogue-version 0.11
@@ -84008,7 +83118,6 @@ runfiles size=10
texmf-dist/tex/latex/diadia/diadia.sty
catalogue-contact-repository https://bitbucket.org/kleberj/diadia/
catalogue-ctan /macros/latex/contrib/diadia
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl
catalogue-topics data-disp
catalogue-version 1.1
@@ -84186,7 +83295,6 @@ runfiles size=3
RELOC/tex/latex/diagbox/diagbox.sty
catalogue-contact-repository https://github.com/leo-liu/tex-pkg
catalogue-ctan /macros/latex/contrib/diagbox
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl1.3
catalogue-topics table
catalogue-version 2.2
@@ -84212,7 +83320,6 @@ docfiles size=75
runfiles size=11
RELOC/tex/latex/diagmac2/diagmac2.sty
catalogue-ctan /macros/latex/contrib/diagmac2
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics diagram-comm graphics-in-tex
catalogue-version 2.1
@@ -84238,7 +83345,6 @@ docfiles size=29
runfiles size=1
RELOC/tex/latex/diagnose/diagnose.sty
catalogue-ctan /macros/latex/contrib/diagnose
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics install-mgmt
catalogue-version 0.2
@@ -84281,7 +83387,6 @@ runfiles size=29
RELOC/tex/latex/dialogl/listout.tex
RELOC/tex/latex/dialogl/menus.sty
catalogue-ctan /macros/latex/contrib/dialogl
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics macro-supp
@@ -84303,7 +83408,6 @@ runfiles size=6
RELOC/fonts/tfm/public/dice/dice3d.tfm
catalogue-also epsdice
catalogue-ctan /fonts/dice
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics graphics-use font font-mf
@@ -84330,7 +83434,6 @@ runfiles size=2
RELOC/tex/latex/dichokey/dichokey.sty
catalogue-also identkey
catalogue-ctan /macros/latex/contrib/dichokey
-catalogue-date 2018-10-29 07:40:45 +0100
catalogue-license pd
catalogue-topics biology
@@ -84518,7 +83621,6 @@ docfiles size=2142
RELOC/doc/latex/dickimaw/src/thesis/thesis.bib
catalogue-contact-home http://www.dickimaw-books.com/latex/
catalogue-ctan /info/dickimaw
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license fdl
catalogue-topics tut-latex doc-debug
@@ -84549,7 +83651,6 @@ runfiles size=20
RELOC/fonts/type1/public/dictsym/dictsym.pfm
RELOC/tex/latex/dictsym/dictsym.sty
catalogue-ctan /fonts/dictsym
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics font font-symbol font-type1 linguistic
@@ -84583,7 +83684,6 @@ runfiles size=7
RELOC/tex/latex/diffcoeff/diffcoeff-doc.def
RELOC/tex/latex/diffcoeff/diffcoeff.sty
catalogue-ctan /macros/latex/contrib/diffcoeff
-catalogue-date 2019-03-10 08:30:44 +0100
catalogue-license lppl1.3c
catalogue-topics maths
catalogue-version 3.1
@@ -84609,7 +83709,6 @@ docfiles size=34
runfiles size=2
RELOC/tex/latex/digiconfigs/digiconfigs.sty
catalogue-ctan /macros/latex/contrib/digiconfigs
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics diagram
catalogue-version 0.5
@@ -84635,7 +83734,6 @@ docfiles size=96
runfiles size=5
RELOC/tex/latex/dijkstra/dijkstra.sty
catalogue-ctan /macros/latex/contrib/dijkstra
-catalogue-date 2017-09-10 09:41:01 +0200
catalogue-license lppl1.3c
catalogue-topics maths automata
catalogue-version 0.11
@@ -84664,7 +83762,6 @@ runfiles size=67
RELOC/bibtex/bst/din1505/unsrtdin.bst
catalogue-also dinat
catalogue-ctan /biblio/bibtex/contrib/german/din1505
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license other-free
catalogue-topics bibtex-sty
@@ -84687,7 +83784,6 @@ runfiles size=11
RELOC/bibtex/bst/dinat/dinat.bst
catalogue-also din1505
catalogue-ctan /biblio/bibtex/contrib/german/dinat
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics bibtex-sty
catalogue-version 2.5
@@ -84737,7 +83833,6 @@ runfiles size=17
RELOC/tex/latex/dinbrief/dinbrief.sty
catalogue-also akletter envlab formlett g-brief
catalogue-ctan /macros/latex/contrib/dinbrief
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics std-conform letter class
@@ -84772,7 +83867,6 @@ runfiles size=14
RELOC/tex/latex/dingbat/uark.fd
RELOC/tex/latex/dingbat/udingbat.fd
catalogue-ctan /fonts/dingbat
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics font font-mf font-symbol
catalogue-version 1.0
@@ -84808,7 +83902,6 @@ runfiles size=33
RELOC/tex/latex/directory/directory.sty
catalogue-contact-home http://geuz.org/directory
catalogue-ctan /biblio/bibtex/contrib/directory
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl
catalogue-topics addr-list
catalogue-version 1.20
@@ -84838,7 +83931,6 @@ runfiles size=3
RELOC/tex/generic/dirtree/dirtree.sty
RELOC/tex/generic/dirtree/dirtree.tex
catalogue-ctan /macros/generic/dirtree
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics tree
catalogue-version 0.32
@@ -84866,7 +83958,6 @@ srcfiles size=4
runfiles size=1
RELOC/tex/latex/dirtytalk/dirtytalk.sty
catalogue-ctan /macros/latex/contrib/dirtytalk
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics quote-marks
catalogue-version 1.0
@@ -85067,7 +84158,6 @@ runfiles size=21
RELOC/tex/latex/disser/specialist.rtx
RELOC/tex/latex/disser/titledefs.rtx
catalogue-ctan /macros/latex/contrib/disser
-catalogue-date 2017-03-06 17:15:59 +0100
catalogue-license lppl1.3
catalogue-topics dissertation class
catalogue-version 1.5.0
@@ -85100,7 +84190,6 @@ catalogue-contact-development https://github.com/dakusui/latex-ditaa/issues/1
catalogue-contact-home https://github.com/dakusui/latex-ditaa
catalogue-contact-repository https://github.com/dakusui/latex-ditaa.git
catalogue-ctan /macros/latex/contrib/ditaa
-catalogue-date 2018-10-20 05:13:28 +0200
catalogue-license lppl
catalogue-topics diagram
catalogue-version 0.9
@@ -85130,7 +84219,6 @@ docfiles size=78
runfiles size=5
RELOC/tex/latex/dithesis/dithesis.cls
catalogue-ctan /macros/latex/contrib/dithesis
-catalogue-date 2017-10-06 19:54:19 +0200
catalogue-license lppl
catalogue-topics dissertation greek
catalogue-version 0.2
@@ -85173,7 +84261,6 @@ runfiles size=42
RELOC/tex/latex/dk-bib/dk-apali.sty
RELOC/tex/latex/dk-bib/dk-bib.sty
catalogue-ctan /biblio/bibtex/contrib/dk-bib
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license other-free
catalogue-topics bibtex-sty danish
catalogue-version 0.6
@@ -85223,7 +84310,6 @@ runfiles size=26
RELOC/tex/latex/dlfltxb/dlfltxbmisc.sty
RELOC/tex/latex/dlfltxb/dlfltxbtocconfig.sty
catalogue-ctan /macros/latex/contrib/dlfltxb
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics book-ex danish
@@ -85252,7 +84338,6 @@ srcfiles size=3
runfiles size=1
RELOC/tex/latex/dnaseq/dnaseq.sty
catalogue-ctan /macros/latex/contrib/dnaseq
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics molbio
catalogue-version 0.01
@@ -85283,7 +84368,6 @@ docfiles size=1
RELOC/doc/generic/doc-pictex/Doc-PiCTeX.txt
catalogue-contact-support http://www.webdesign-bu.de/uwe_lueck/contact.html
catalogue-ctan /info/pictex/Doc-PiCTeX.txt
-catalogue-date 2017-05-05 20:39:25 +0200
catalogue-license other-free
catalogue-topics doc-mgmt
@@ -85318,7 +84402,6 @@ runfiles size=10
RELOC/tex/generic/docbytex/docby.tex
catalogue-contact-home http://www.olsak.net/docbytex.html
catalogue-ctan /macros/generic/docbytex
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license other-free
catalogue-topics program-doc
@@ -85409,7 +84492,6 @@ runfiles size=180
catalogue-contact-bugs https://github.com/ypid/latex-packages/issues
catalogue-contact-repository https://github.com/ypid/latex-packages/tree/master/doclicense
catalogue-ctan /macros/latex/contrib/doclicense
-catalogue-date 2019-06-06 05:50:08 +0200
catalogue-license lppl1.3
catalogue-topics licence-mgmt
catalogue-version 1.10.0
@@ -85437,7 +84519,6 @@ srcfiles size=8
runfiles size=2
RELOC/tex/latex/docmfp/docmfp.sty
catalogue-ctan /macros/latex/contrib/docmfp
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics doc-supp
catalogue-version 1.2d
@@ -85466,7 +84547,6 @@ runfiles size=1
RELOC/tex/latex/docmute/docmute.sty
catalogue-also combine includex newclude standalone
catalogue-ctan /macros/latex/contrib/docmute
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics subdocs
catalogue-version 1.4
@@ -85492,7 +84572,6 @@ docfiles size=96
RELOC/doc/latex/docsurvey/docsurvey.tex
catalogue-contact-home http://bdtechconcepts.com/
catalogue-ctan /info/docsurvey
-catalogue-date 2018-10-18 09:43:59 +0200
catalogue-license lppl1.3
catalogue-topics ref-latex review-document tut-latex tut-latex-prg
@@ -85518,7 +84597,6 @@ srcfiles size=11
runfiles size=5
RELOC/tex/latex/doctools/doctools.sty
catalogue-ctan /macros/latex/contrib/doctools
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics doc-supp
catalogue-version 0.1
@@ -85546,7 +84624,6 @@ srcfiles size=6
runfiles size=2
RELOC/tex/latex/documentation/documentation.sty
catalogue-ctan /macros/latex/contrib/documentation
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.2
catalogue-topics listing
catalogue-version 0.1
@@ -85575,7 +84652,6 @@ catalogue-contact-bugs https://github.com/ho-tex/doi/issues
catalogue-contact-home https://github.com/ho-tex
catalogue-contact-repository https://github.com/ho-tex/doi
catalogue-ctan /macros/latex/contrib/doi
-catalogue-date 2018-09-09 21:40:17 +0200
catalogue-license lppl
catalogue-topics hyper
@@ -85605,11 +84681,42 @@ srcfiles size=4
runfiles size=1
RELOC/tex/latex/doipubmed/doipubmed.sty
catalogue-ctan /macros/latex/contrib/doipubmed
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics cite-supp
catalogue-version 1.01
+name domitian
+category Package
+revision 53106
+shortdesc Drop-in replacement for Palatino
+relocated 1
+longdesc The Domitian fonts are a free and open-source OpenType font
+longdesc family, based on the Palatino design by Hermann Zapf
+longdesc (1918-2015), as implemented in Palladio, the version
+longdesc distributed as part of URW's free Core 35 PostScript fonts
+longdesc (2.0). Domitian is meant as a drop-in replacement for Adobe's
+longdesc version of Palatino. It extends Palladio with small capitals,
+longdesc old-style figures and scientific inferiors. The metrics have
+longdesc been adjusted to more closely match Adobe Palatino, and hinting
+longdesc has been improved.
+containersize 704
+containerchecksum f5ac46517ccb4f21e88009f439ec9c3e62d5f7f2afa4bf7a619aade7ae02acf12a81940c49e6e2dda155ba215c130259677d0259e33d7e93e4874252913f63ac
+doccontainersize 273444
+doccontainerchecksum 2293fb624f2ae0563544cdd7bfd51f4546977542ed08ad305f550152c7d84993b0a68589a91ae58103b2a0fc60d2c2c92d70c64a83ee2d304174ce281a0aa389
+docfiles size=147
+ RELOC/doc/fonts/domitian/COPYING
+ RELOC/doc/fonts/domitian/README details="Readme"
+ RELOC/doc/fonts/domitian/opentype/Domitian-Bold.otf
+ RELOC/doc/fonts/domitian/opentype/Domitian-BoldItalic.otf
+ RELOC/doc/fonts/domitian/opentype/Domitian-Italic.otf
+ RELOC/doc/fonts/domitian/opentype/Domitian-Roman.otf
+catalogue-contact-bugs https://github.com/dbenjaminmiller/domitian/issues
+catalogue-contact-repository https://github.com/dbenjaminmiller/domitian
+catalogue-ctan /fonts/domitian
+catalogue-license lppl1.3coflother-free
+catalogue-topics font-otf
+catalogue-version 1.0
+
name dosepsbin
category Package
revision 29752
@@ -85649,7 +84756,6 @@ srcfiles size=20
runfiles size=3
texmf-dist/scripts/dosepsbin/dosepsbin.pl
catalogue-ctan /support/dosepsbin
-catalogue-date 2016-07-05 18:29:32 +0200
catalogue-license artistic
catalogue-topics image-supp
catalogue-version 1.2
@@ -85828,7 +84934,6 @@ docfiles size=95
runfiles size=3
RELOC/tex/latex/dot2texi/dot2texi.sty
catalogue-ctan /macros/latex/contrib/dot2texi
-catalogue-date 2018-09-15 11:27:31 +0200
catalogue-license gpl
catalogue-topics foreign-import graphics
catalogue-version 3.0
@@ -85856,7 +84961,6 @@ srcfiles size=4
runfiles size=2
RELOC/tex/latex/dotarrow/DotArrow.sty
catalogue-ctan /macros/latex/contrib/dotarrow
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics maths-symbol
catalogue-version 0.01a
@@ -85881,7 +84985,6 @@ catalogue-also dotlessj
catalogue-contact-home http://www.texnia.com/
catalogue-contact-repository https://github.com/jbezos
catalogue-ctan /macros/latex/contrib/dotlessi
-catalogue-date 2019-06-26 19:06:30 +0200
catalogue-license mit
catalogue-topics typesetting
catalogue-version 1.1
@@ -85911,7 +85014,6 @@ srcfiles size=5
runfiles size=1
RELOC/tex/latex/dotseqn/dotseqn.sty
catalogue-ctan /macros/latex/contrib/dotseqn
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license other-free
catalogue-topics maths
catalogue-version 1.1
@@ -85945,7 +85047,6 @@ srcfiles size=5
runfiles size=2
RELOC/tex/latex/dottex/dottex.sty
catalogue-ctan /macros/latex/contrib/dottex
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics graphics-inline
catalogue-version 0.6
@@ -85999,7 +85100,6 @@ runfiles size=58
RELOC/tex/latex/doublestroke/dsfont.sty
catalogue-also bbm bbold mbboard
catalogue-ctan /fonts/doublestroke
-catalogue-date 2016-07-29 06:41:49 +0200
catalogue-license other-free
catalogue-topics font font-maths font-type1 font-mf font-bbd
catalogue-version 1.111
@@ -86040,7 +85140,6 @@ runfiles size=6
RELOC/tex/generic/dowith/dowith.sty
catalogue-contact-support http://www.webdesign-bu.de/uwe_lueck/contact.html
catalogue-ctan /macros/generic/dowith
-catalogue-date 2017-05-05 20:43:02 +0200
catalogue-license lppl1.3
catalogue-topics macro-supp
catalogue-version r0.32
@@ -86070,7 +85169,6 @@ srcfiles size=5
runfiles size=2
RELOC/tex/latex/download/download.sty
catalogue-ctan /macros/latex/contrib/download
-catalogue-date 2019-10-02 09:51:27 +0200
catalogue-license lppl1.3
catalogue-topics ext-code
catalogue-version 1.2
@@ -86107,7 +85205,6 @@ runfiles size=2
catalogue-contact-home http://www.lrde.epita.fr/~didier/software/latex.php#dox
catalogue-contact-repository https://github.com/didierverna/dox
catalogue-ctan /macros/latex/contrib/dox
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license lppl1.3
catalogue-topics doc-supp
catalogue-version 2.4
@@ -86257,7 +85354,6 @@ runfiles size=170
RELOC/fonts/type1/public/dozenal/dozchsl9.pfb
RELOC/tex/latex/dozenal/dozenal.sty
catalogue-ctan /fonts/dozenal
-catalogue-date 2018-05-11 21:00:13 +0200
catalogue-license lppl1.3
catalogue-topics font font-specialist font-mf font-type1 numbers
catalogue-version 7.2
@@ -86283,7 +85379,6 @@ docfiles size=51
runfiles size=1
RELOC/tex/latex/dpfloat/dpfloat.sty
catalogue-ctan /macros/latex/contrib/dpfloat
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics float
@@ -86313,7 +85408,6 @@ srcfiles size=3
runfiles size=2
RELOC/tex/latex/dprogress/dprogress.sty
catalogue-ctan /macros/latex/contrib/dprogress
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics doc-debug
catalogue-version 0.1
@@ -86349,7 +85443,6 @@ srcfiles size=12
runfiles size=1
RELOC/tex/latex/drac/drac.sty
catalogue-ctan /macros/latex/contrib/drac
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license lppl
catalogue-topics macro-supp
catalogue-version 1
@@ -86399,7 +85492,6 @@ runfiles size=5
RELOC/tex/latex/draftcopy/draftcopy.cfg
RELOC/tex/latex/draftcopy/draftcopy.sty
catalogue-ctan /macros/latex/contrib/draftcopy
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics editorial
catalogue-version 2.16
@@ -86428,7 +85520,6 @@ catalogue-contact-home https://github.com/LukasCBossert/draftfigure/
catalogue-contact-repository https://github.com/LukasCBossert/draftfigure
catalogue-contact-support https://github.com/LukasCBossert/draftfigure
catalogue-ctan /macros/latex/contrib/draftfigure
-catalogue-date 2018-01-07 14:52:23 +0100
catalogue-license lppl1.3
catalogue-topics comp-supp editorial layout
catalogue-version 0.2
@@ -86463,7 +85554,6 @@ runfiles size=1
catalogue-also eso-pic
catalogue-contact-repository https://github.com/callegar/LaTeX-draftwatermark
catalogue-ctan /macros/latex/contrib/draftwatermark
-catalogue-date 2017-05-22 12:38:58 +0200
catalogue-license lppl1.3
catalogue-topics editorial watermark
catalogue-version 1.2
@@ -86495,7 +85585,6 @@ runfiles size=4
RELOC/tex/latex/dramatist/dramatist.sty
catalogue-also sides
catalogue-ctan /macros/latex/contrib/dramatist
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics drama-script
catalogue-version 1.2e
@@ -86520,7 +85609,6 @@ runfiles size=54
RELOC/tex/generic/dratex/TeXProject.sty
RELOC/tex/generic/dratex/wotree.sty
catalogue-ctan /graphics/dratex
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics graphics-in-tex
@@ -86549,7 +85637,6 @@ runfiles size=3
catalogue-contact-bugs https://github.com/elmar-peise/drawmatrix/issues
catalogue-contact-repository https://github.com/elmar-peise/drawmatrix
catalogue-ctan /macros/latex/contrib/drawmatrix
-catalogue-date 2017-06-05 22:45:20 +0200
catalogue-license mit
catalogue-topics matrix
catalogue-version 1.5.0
@@ -86574,7 +85661,6 @@ docfiles size=31
runfiles size=2
RELOC/tex/latex/drawstack/drawstack.sty
catalogue-ctan /macros/latex/contrib/drawstack
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics comp-sci graphics-use
@@ -88352,7 +87438,6 @@ runfiles size=8144
RELOC/fonts/type1/public/drm/drmuibx9.pfb
RELOC/tex/latex/drm/drm.sty
catalogue-ctan /fonts/drm
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics font font-otf font-type1 font-mf
catalogue-version 4.4
@@ -88773,7 +87858,6 @@ runfiles size=1500
RELOC/tex/latex/droid/droidsansmono.sty
RELOC/tex/latex/droid/droidserif.sty
catalogue-ctan /fonts/droid
-catalogue-date 2019-06-24 23:45:24 +0200
catalogue-license lppl1.3capache2
catalogue-topics font font-sans font-mono font-supp font-ttf font-type1
catalogue-version 3.2
@@ -88818,7 +87902,6 @@ runfiles size=10
RELOC/tex/latex/droit-fr/droit-fr.cbx
RELOC/tex/latex/droit-fr/droit-fr.cls
catalogue-ctan /macros/latex/contrib/droit-fr
-catalogue-date 2016-07-05 18:29:32 +0200
catalogue-license lppl1.3
catalogue-topics dissertation legal biblatex french class
catalogue-version 1.2
@@ -88846,7 +87929,6 @@ docfiles size=30
runfiles size=3
RELOC/tex/latex/drs/drs.sty
catalogue-ctan /macros/latex/contrib/drs
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics linguistic
catalogue-version 1.1b
@@ -88885,7 +87967,6 @@ docfiles size=160
runfiles size=21
RELOC/metapost/drv/drv.mp
catalogue-ctan /graphics/metapost/contrib/macros/drv
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics tree
catalogue-version 0.97
@@ -88917,7 +87998,6 @@ runfiles size=13
RELOC/tex/latex/dsptricks/dspfunctions.sty
RELOC/tex/latex/dsptricks/dsptricks.sty
catalogue-ctan /graphics/pstricks/contrib/dsptricks
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics pstricks
catalogue-version 1.0
@@ -88968,7 +88048,6 @@ runfiles size=33
RELOC/tex/latex/dsserif/dsserif.sty
RELOC/tex/latex/dsserif/udsserif.fd
catalogue-ctan /fonts/dsserif
-catalogue-date 2018-05-05 05:37:43 +0200
catalogue-license ofllppllppl1.3
catalogue-topics font font-serif font-maths font-bbd font-type1
catalogue-version 1.00
@@ -89011,7 +88090,6 @@ runfiles size=23
catalogue-contact-bugs https://github.com/rolfn/dtk/issues
catalogue-contact-repository https://github.com/rolfn/dtk
catalogue-ctan /usergrps/dante/dtk
-catalogue-date 2019-11-10 11:49:52 +0100
catalogue-license lppl1.3c
catalogue-topics journalpub class
catalogue-version 2.08f
@@ -89037,7 +88115,6 @@ docfiles size=21
texmf-dist/doc/man/man1/dv2dt.1
texmf-dist/doc/man/man1/dv2dt.man1.pdf
catalogue-ctan /dviware/dtl
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics dvi-struc
catalogue-version 0.6.1
@@ -89244,7 +88321,6 @@ runfiles size=5
catalogue-also doc
catalogue-contact-home http://bdtechconcepts.com
catalogue-ctan /macros/latex/contrib/dtxdescribe
-catalogue-date 2019-07-16 13:01:49 +0200
catalogue-license lppl1.3
catalogue-topics doc-supp
catalogue-version 1.02
@@ -89275,7 +88351,6 @@ docfiles size=100
RELOC/doc/latex/dtxgallery/single-source.dtx
RELOC/doc/latex/dtxgallery/single-source.pdf
catalogue-ctan /info/dtxgallery
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics demo-code
catalogue-version 1
@@ -89298,7 +88373,6 @@ docfiles size=15
runfiles size=4
texmf-dist/scripts/dtxgen/dtxgen
catalogue-ctan /support/dtxgen
-catalogue-date 2019-07-18 06:31:32 +0200
catalogue-license gpl
catalogue-topics file-mgmt
catalogue-version 1.08
@@ -89460,7 +88534,6 @@ docfiles size=98
RELOC/doc/latex/dtxtut/skeleton.ins
catalogue-also makedtx sty2dtx
catalogue-ctan /info/dtxtut
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics tut-latex-prg
catalogue-version 2.1
@@ -89494,7 +88567,6 @@ runfiles size=13
catalogue-contact-bugs https://github.com/Skillmon/ltx_ducksay/issues
catalogue-contact-repository https://github.com/Skillmon/ltx_ducksay
catalogue-ctan /macros/latex/contrib/ducksay
-catalogue-date 2019-09-28 23:01:25 +0200
catalogue-license lppl1.3c
catalogue-topics games graphics
catalogue-version 2.4.1
@@ -89535,7 +88607,6 @@ runfiles size=147
catalogue-also lipsum tikzducks
catalogue-contact-repository https://github.com/Skillmon/ltx_duckuments
catalogue-ctan /macros/latex/contrib/duckuments
-catalogue-date 2019-10-03 20:32:43 +0200
catalogue-license lppl1.3c
catalogue-topics macro-supp dummy-gen
catalogue-version 0.5
@@ -89574,7 +88645,6 @@ runfiles size=30
RELOC/fonts/tfm/public/duerer/cdtt10.tfm
catalogue-also duerer-latex
catalogue-ctan /fonts/duerer
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics font font-mf
@@ -89600,7 +88670,6 @@ runfiles size=5
RELOC/tex/latex/duerer-latex/ot1cdss.fd
RELOC/tex/latex/duerer-latex/ot1cdtt.fd
catalogue-ctan /macros/latex/contrib/duerer-latex
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics font-supp
catalogue-version 1.1
@@ -89624,7 +88693,6 @@ docfiles size=45
runfiles size=10
RELOC/tex/latex/duotenzor/duotenzor.sty
catalogue-ctan /graphics/duotenzor
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics diagram diagram-circ
catalogue-version 1.00
@@ -89661,7 +88729,6 @@ runfiles size=20
RELOC/tex/latex/dutchcal/dutchcal.sty
RELOC/tex/latex/dutchcal/udutchcal.fd
catalogue-ctan /fonts/dutchcal
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics font font-calligraphic font-type1
catalogue-version 1.0
@@ -89728,7 +88795,6 @@ runfiles size=42
RELOC/tex/latex/dvdcoll/dvdcoll.cls
RELOC/tex/latex/dvdcoll/pdfnotiz.sty
catalogue-ctan /macros/latex/contrib/dvdcoll
-catalogue-date 2016-08-23 21:10:12 +0200
catalogue-license lppl
catalogue-topics catalogue class
catalogue-version 1.1a
@@ -89759,7 +88825,6 @@ runfiles size=1
RELOC/tex/latex/dvgloss/dvgloss.sty
catalogue-also gb4e tree-dvips
catalogue-ctan /macros/latex/contrib/dvgloss
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics linguistic
catalogue-version 0.1
@@ -89783,7 +88848,6 @@ docfiles size=14
texmf-dist/doc/man/man1/dvi2tty.man1.pdf
catalogue-contact-repository https://github.com/t-tk/dvi2tty
catalogue-ctan /dviware/dvi2tty
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license gpl2
catalogue-topics plain-text dvi-proc
catalogue-version 6.0.0
@@ -89970,7 +89034,6 @@ catalogue-contact-bugs https://github.com/khaledhosny/dviasm/issues
catalogue-contact-development https://github.com/khaledhosny/dviasm
catalogue-contact-repository https://github.com/khaledhosny/dviasm
catalogue-ctan /dviware/dviasm
-catalogue-date 2019-11-26 22:08:14 +0100
catalogue-license gpl3
catalogue-topics dvi-struc
@@ -90138,7 +89201,6 @@ catalogue-contact-bugs http://lists.tug.org/tex-k
catalogue-contact-repository http://tug.org/svn/texlive/trunk/Build/source/texk/web2c/
catalogue-contact-support http://lists.tug.org/tex-k
catalogue-ctan /obsolete/dviware/dvicopy
-catalogue-date 2019-01-02 05:45:25 +0100
catalogue-license gpl
catalogue-topics dvi-proc
catalogue-version 1.5
@@ -90303,7 +89365,6 @@ docfiles size=7
texmf-dist/doc/man/man1/dvidvi.1
texmf-dist/doc/man/man1/dvidvi.man1.pdf
catalogue-ctan /dviware/dvidvi
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license other-free
catalogue-topics dvi-proc
@@ -90483,7 +89544,6 @@ runfiles size=2
RELOC/metapost/dviincl/fix_brks.mp
RELOC/metapost/dviincl/fix_page.mp
catalogue-ctan /graphics/metapost/contrib/macros/dviincl
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics dvi-proc
catalogue-version 1.00
@@ -90506,7 +89566,6 @@ runfiles size=3
texmf-dist/scripts/dviinfox/dviinfox.pl
catalogue-contact-repository https://github.com/aminophen/tex-assort
catalogue-ctan /dviware/dviinfox
-catalogue-date 2017-08-08 22:51:51 +0200
catalogue-license mit
catalogue-topics metadata dvi-struc
catalogue-version 1.04
@@ -90683,7 +89742,6 @@ docfiles size=92
texmf-dist/doc/man/man1/dvilj6.1
texmf-dist/doc/man/man1/dvilj6.man1.pdf
catalogue-ctan /dviware/dviljk
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics dvi-print
@@ -91297,7 +90355,6 @@ binfiles arch=win32 size=1201
tlpkg/dviout/srctex.exe
tlpkg/dviout/ttindex.exe
catalogue-ctan /dviware/dviout
-catalogue-date 2019-04-03 10:06:08 +0200
catalogue-license other-free
catalogue-topics dvi-prev dvi-print omega
catalogue-version 3.18.4
@@ -91373,7 +90430,6 @@ catalogue-contact-bugs https://lists.tug.org/dvipdfmx
catalogue-contact-home http://project.ktug.or.kr/dvipdfmx/
catalogue-contact-repository https://tug.org/svn/texlive/trunk/Build/source/texk/dvipdfm-x/
catalogue-contact-support https://lists.tug.org/dvipdfmx
-catalogue-date 2019-07-31 13:16:15 +0200
catalogue-license gpl
catalogue-topics dvi-pdf
@@ -91635,7 +90691,6 @@ docfiles size=119
catalogue-also dvi2bitmap
catalogue-contact-repository http://savannah.nongnu.org/projects/dvipng/
catalogue-ctan /dviware/dvipng
-catalogue-date 2019-01-06 07:24:08 +0100
catalogue-license lgpl3
catalogue-topics dvi-bit
catalogue-version 1.15
@@ -92062,7 +91117,6 @@ catalogue-contact-bugs http://lists.tug.org/tex-k
catalogue-contact-home http://tug.org/dvips
catalogue-contact-repository http://tug.org/svn/texlive/trunk/Build/source/texk/dvipsk/
catalogue-contact-support http://lists.tug.org/tex-k
-catalogue-date 2019-01-07 05:25:05 +0100
catalogue-license other-free
catalogue-topics dvi-print
@@ -92276,7 +91330,6 @@ runfiles size=39
RELOC/dvips/dvipsconfig/config.usledger
RELOC/dvips/dvipsconfig/config.usletter
catalogue-ctan /dviware/dvipsconfig
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics dvi-print
catalogue-version 1.6
@@ -92311,7 +91364,6 @@ catalogue-contact-bugs https://github.com/mgieseki/dvisvgm/issues
catalogue-contact-home https://dvisvgm.de
catalogue-contact-repository https://github.com/mgieseki/dvisvgm
catalogue-ctan /dviware/dvisvgm
-catalogue-date 2019-11-15 16:24:37 +0100
catalogue-license gpl3+
catalogue-topics dvi-proc
catalogue-version 2.8.1
@@ -92491,7 +91543,6 @@ runfiles size=1
RELOC/tex/latex/dynamicnumber/dynamicnumber.sty
catalogue-contact-repository https://github.com/opieters/DynamicNumber
catalogue-ctan /macros/latex/contrib/dynamicnumber
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license mit
catalogue-topics data-import
catalogue-version 0.1.3
@@ -92532,7 +91583,6 @@ docfiles size=216
runfiles size=2
RELOC/tex/latex/dynblocks/dynblocks.sty
catalogue-ctan /macros/latex/contrib/beamer-contrib/dynblocks
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics presentation
catalogue-version 0.2b
@@ -92565,7 +91615,6 @@ runfiles size=31
RELOC/tex/latex/dynkin-diagrams/dynkin-diagrams.sty
catalogue-contact-home http://euclid.ucc.ie/Mckay/
catalogue-ctan /graphics/pgf/contrib/dynkin-diagrams
-catalogue-date 2019-12-04 17:22:22 +0100
catalogue-license lppl1.3c
catalogue-topics graphics diagram pgf-tikz expl3
catalogue-version 3.141592653
@@ -92596,7 +91645,6 @@ srcfiles size=12
runfiles size=3
RELOC/tex/latex/dyntree/dyntree.sty
catalogue-ctan /macros/latex/contrib/dyntree
-catalogue-date 2018-10-09 06:11:35 +0200
catalogue-license lgpl
catalogue-topics tree maths
catalogue-version 1.0
@@ -92721,7 +91769,6 @@ runfiles size=103
catalogue-contact-home http://www.efrench.org/
catalogue-contact-repository https://svn.tuxfamily.org/viewvc.cgi/efrench_efrenchsources/trunk/
catalogue-ctan /language/french/e-french
-catalogue-date 2019-09-04 19:27:35 +0200
catalogue-license lppl1.3
catalogue-topics french
catalogue-version 6.11
@@ -92746,7 +91793,6 @@ runfiles size=4
RELOC/tex/generic/ean/ean8.tex
catalogue-also barcodes code128
catalogue-ctan /macros/generic/ean
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics barcode
@@ -92770,7 +91816,6 @@ docfiles size=87
runfiles size=1
RELOC/tex/latex/ean13isbn/ean13isbn.sty
catalogue-ctan /macros/latex/contrib/ean13isbn
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics barcode
@@ -92807,7 +91852,6 @@ runfiles size=20
RELOC/tex/latex/easy/easytable.sty
RELOC/tex/latex/easy/easyvector.sty
catalogue-ctan /macros/latex/contrib/easy
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics collection
catalogue-version 0.99
@@ -92831,7 +91875,6 @@ docfiles size=38
runfiles size=1
RELOC/tex/latex/easy-todo/easy-todo.sty
catalogue-ctan /macros/latex/contrib/easy-todo
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license apache2
catalogue-topics notes editorial
@@ -92869,7 +91912,6 @@ catalogue-contact-bugs https://bitbucket.org/martin_scharrer/easyfig/issues
catalogue-contact-home https://bitbucket.org/martin_scharrer/easyfig/
catalogue-contact-repository https://bitbucket.org/martin_scharrer/easyfig/src
catalogue-ctan /macros/latex/contrib/easyfig
-catalogue-date 2018-03-30 20:57:32 +0200
catalogue-license lppl1.3
catalogue-topics float graphics-use
catalogue-version 1.2a
@@ -92897,7 +91939,6 @@ runfiles size=2
catalogue-contact-bugs https://github.com/ElecProg/easyformat/issues
catalogue-contact-repository https://github.com/ElecProg/easyformat
catalogue-ctan /macros/latex/contrib/easyformat
-catalogue-date 2017-06-10 09:03:50 +0200
catalogue-license gpl3+
catalogue-topics markup
catalogue-version 1.4.0
@@ -92924,7 +91965,6 @@ runfiles size=8
RELOC/tex/latex/easylist/easylist.sty
catalogue-contact-home http://paulisambert.free.fr/
catalogue-ctan /macros/latex/contrib/easylist
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl
catalogue-topics list
catalogue-version 1.3
@@ -92956,7 +91996,6 @@ runfiles size=1
RELOC/tex/latex/easyreview/easyReview.sty
catalogue-contact-repository https://github.com/jmamatos/easyReview
catalogue-ctan /macros/latex/contrib/easyreview
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl
catalogue-topics notes editorial
catalogue-version 1.0
@@ -92986,7 +92025,6 @@ runfiles size=5
RELOC/tex/latex/ebezier/ebezier.sty
catalogue-also pst-bezier
catalogue-ctan /macros/latex/contrib/ebezier
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics graphics-curve graphics-in-tex
catalogue-version 4
@@ -94302,7 +93340,6 @@ runfiles size=6055
RELOC/tex/latex/ebgaramond/TS1EBGaramondInitials-TLF.fd
RELOC/tex/latex/ebgaramond/ebgaramond.sty
catalogue-ctan /fonts/ebgaramond
-catalogue-date 2019-10-22 21:04:50 +0200
catalogue-license ofllppl
catalogue-topics font font-body font-proportional font-t1enc font-serif font-otf font-type1
@@ -94334,7 +93371,6 @@ runfiles size=5
RELOC/tex/latex/ebgaramond-maths/ebgaramond-maths.sty
catalogue-also ebgaramond
catalogue-ctan /fonts/ebgaramond-maths
-catalogue-date 2019-09-24 10:38:08 +0200
catalogue-license lppl1.3
catalogue-topics font font-maths font-virtual
catalogue-version 1.2
@@ -94361,7 +93397,6 @@ docfiles size=27
runfiles size=2
texmf-dist/scripts/ebong/ebong.py
catalogue-ctan /language/ebong
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics indic
@@ -94527,7 +93562,6 @@ docfiles size=1
runfiles size=1
RELOC/tex/latex/ebook/ebook.sty
catalogue-ctan /macros/latex/contrib/ebook
-catalogue-date 2018-01-07 14:32:13 +0100
catalogue-license pd
catalogue-topics geometry font-use ebook
@@ -94556,7 +93590,6 @@ runfiles size=6
catalogue-also bussproofs
catalogue-contact-repository https://framagit.org/manu/ebproof
catalogue-ctan /macros/latex/contrib/ebproof
-catalogue-date 2017-05-17 18:37:56 +0200
catalogue-license lppl1.3
catalogue-topics maths proof
catalogue-version 2.0
@@ -94585,7 +93618,6 @@ srcfiles size=8
runfiles size=6
RELOC/tex/latex/ebsthesis/ebsthesis.cls
catalogue-ctan /macros/latex/contrib/ebsthesis
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics dissertation class
catalogue-version 1.0
@@ -95860,7 +94892,6 @@ runfiles size=1445
RELOC/fonts/tfm/jknappen/ec/tcvt3583.tfm
catalogue-also eco
catalogue-ctan /fonts/ec
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license other-free
catalogue-topics font font-mf font-serif font-sans font-proportional font-mono font-cm
catalogue-version 1.0
@@ -95949,7 +94980,6 @@ runfiles size=71
RELOC/fonts/tfm/public/ecc/toti10.tfm
catalogue-also ccfonts
catalogue-ctan /fonts/ecc
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics font font-mf font-t1enc
@@ -95978,7 +95008,6 @@ srcfiles size=7
runfiles size=2
RELOC/tex/latex/ecclesiastic/ecclesiastic.sty
catalogue-ctan /macros/latex/contrib/ecclesiastic
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics multilingual-addon
catalogue-version 0.3
@@ -96007,7 +95036,6 @@ srcfiles size=13
runfiles size=3
RELOC/tex/latex/ecgdraw/ecgdraw.sty
catalogue-ctan /graphics/ecgdraw
-catalogue-date 2018-01-07 12:02:30 +0100
catalogue-license lppl1.3
catalogue-topics medical
catalogue-version 0.1
@@ -96031,7 +95059,6 @@ runfiles size=2
RELOC/tex/latex/ecltree/ecltree.sty
catalogue-also epic eepic
catalogue-ctan /macros/latex/contrib/eclbip
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics tree linguistic
catalogue-version 1.1a
@@ -96570,7 +95597,6 @@ runfiles size=916
RELOC/tex/latex/eco/T1cmovt.fd
RELOC/tex/latex/eco/eco.sty
catalogue-ctan /fonts/eco
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics font font-virtual
catalogue-version 1.3
@@ -96598,7 +95624,6 @@ runfiles size=2
RELOC/tex/latex/ecobiblatex/ecobiblatex.bbx
RELOC/tex/latex/ecobiblatex/ecobiblatex.cbx
catalogue-ctan /macros/latex/contrib/biblatex-contrib/ecobiblatex
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics biblatex
catalogue-version 1.0
@@ -96655,7 +95680,6 @@ runfiles size=20
catalogue-also economic
catalogue-contact-home https://github.com/ShiroTakeda/econ-bst
catalogue-ctan /biblio/bibtex/contrib/econ-bst
-catalogue-date 2018-12-19 05:04:41 +0100
catalogue-license lppl1.3
catalogue-topics bibtex-sty
catalogue-version 2.5
@@ -96684,7 +95708,6 @@ docfiles size=53
runfiles size=2
RELOC/tex/latex/econometrics/econometrics.sty
catalogue-ctan /macros/latex/contrib/econometrics
-catalogue-date 2018-01-07 12:02:30 +0100
catalogue-license lppl1.3
catalogue-topics statistics
catalogue-version 1.0
@@ -96772,7 +95795,6 @@ runfiles size=171
RELOC/tex/latex/economic/worlddev.cls
catalogue-contact-repository http://sourceforge.net/projects/economtex/
catalogue-ctan /biblio/bibtex/contrib/economic
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl
catalogue-topics bibtex-sty
@@ -96813,7 +95835,6 @@ docfiles size=104
RELOC/doc/latex/ecothesis/res_abs.tex
catalogue-contact-repository https://github.com/ViniciusBRodrigues/TeseUFVLatex
catalogue-ctan /macros/latex/contrib/ecothesis
-catalogue-date 2018-06-20 05:09:58 +0200
catalogue-license lppl1.3c
catalogue-topics dissertation
catalogue-version 1.2
@@ -96854,7 +95875,6 @@ runfiles size=6
RELOC/tex/latex/ecv/ecvNLS.sty
catalogue-also curve europecv
catalogue-ctan /macros/latex/contrib/ecv
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license other-free
catalogue-topics cv class
catalogue-version 0.3
@@ -96887,7 +95907,6 @@ runfiles size=2
RELOC/tex/latex/ed/ed.sty
catalogue-contact-home https://gl.kwarc.info/kwarc/macros/tree/master/ed
catalogue-ctan /macros/latex/contrib/ed
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl1
catalogue-topics editorial
catalogue-version 1.8
@@ -96921,7 +95940,6 @@ runfiles size=11
RELOC/tex/latex/edfnotes/edfnotes.sty
catalogue-contact-support http://www.webdesign-bu.de/uwe_lueck/contact.html
catalogue-ctan /macros/latex/contrib/edfnotes
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license lppl1.3
catalogue-topics crit-ed footnote
catalogue-version 0.6b
@@ -96959,7 +95977,6 @@ runfiles size=17
catalogue-also ledmac ednotes manyfoot lineno poemscol
catalogue-contact-home http://tug.org/edmac
catalogue-ctan /macros/plain/contrib/edmac
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license gpl2
catalogue-topics crit-ed
catalogue-version 3.17
@@ -96993,7 +96010,6 @@ srcfiles size=16
runfiles size=6
RELOC/tex/latex/edmargin/edmargin.sty
catalogue-ctan /macros/latex/contrib/edmargin
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics crit-ed notes
catalogue-version 1.2
@@ -97034,7 +96050,6 @@ catalogue-also edmac ledmac manyfoot lineno poemscol
catalogue-contact-home http://www.webdesign-bu.de/uwe_lueck/critedltx.html
catalogue-contact-support http://www.webdesign-bu.de/uwe_lueck/contact.html
catalogue-ctan /macros/latex/contrib/ednotes
-catalogue-date 2017-05-05 22:15:23 +0200
catalogue-license lppl
catalogue-topics crit-ed
catalogue-version 1.3a
@@ -97069,7 +96084,6 @@ runfiles size=1
RELOC/tex/latex/eemeir/eemeir.sty
catalogue-also he-she gender
catalogue-ctan /macros/latex/contrib/eemeir
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics linguistic typesetting
catalogue-version 1.1b
@@ -97109,7 +96123,6 @@ runfiles size=13
RELOC/tex/latex/eepic/eepicemu.sty
RELOC/tex/latex/eepic/epic.sty
catalogue-ctan /macros/latex/contrib/eepic
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics graphics-in-tex
catalogue-version 1.1e
@@ -97138,7 +96151,6 @@ srcfiles size=4
runfiles size=2
RELOC/tex/latex/efbox/efbox.sty
catalogue-ctan /macros/latex/contrib/efbox
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics boxing
catalogue-version 1.0
@@ -97165,7 +96177,6 @@ docfiles size=51
runfiles size=11
RELOC/tex/latex/egameps/egameps.sty
catalogue-ctan /macros/latex/contrib/egameps
-catalogue-date 2018-09-15 11:29:33 +0200
catalogue-license lppl
catalogue-topics games graphics-in-tex
catalogue-version 1.1
@@ -97196,7 +96207,6 @@ srcfiles size=15
runfiles size=3
RELOC/tex/latex/egplot/egplot.sty
catalogue-ctan /macros/latex/contrib/egplot
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics graphics-inline
catalogue-version 1.02a
@@ -97222,7 +96232,6 @@ catalogue-also hhline
catalogue-contact-bugs https://bitbucket.org/OpCode-eu-org/latex-libs/issues
catalogue-contact-repository https://bitbucket.org/OpCode-eu-org/LaTeX-libs/
catalogue-ctan /macros/latex/contrib/ehhline
-catalogue-date 2019-05-14 14:47:30 +0200
catalogue-license mit
catalogue-topics table-rule
catalogue-version 1.0
@@ -97325,7 +96334,6 @@ runfiles size=86
RELOC/tex/latex/eiad/OT1eiadss.fd
RELOC/tex/latex/eiad/OT1eiadtt.fd
catalogue-ctan /fonts/eiad
-catalogue-date 2017-10-29 14:41:24 +0100
catalogue-license pd
catalogue-topics font font-mf irish-gaelic
@@ -97353,7 +96361,6 @@ runfiles size=3
RELOC/fonts/source/public/eiad-ltx/Fr10.mf
RELOC/tex/latex/eiad-ltx/eiad.sty
catalogue-ctan /macros/latex/contrib/eiad
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics font-supp irish-gaelic
catalogue-version 1.0
@@ -97374,7 +96381,6 @@ runfiles size=9
RELOC/tex/generic/eijkhout/DB_process.tex
RELOC/tex/generic/eijkhout/repeat.tex
catalogue-ctan /macros/generic/eijkhout
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license collection
catalogue-topics collection
@@ -98516,7 +97522,6 @@ docfiles size=1167
RELOC/doc/latex/einfuehrung/textdemo.sty
catalogue-contact-home http://www.dante.de/index/Literatur/Einfuehrung.html
catalogue-ctan /info/examples/Einfuehrung
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl1.3
catalogue-topics book-ex
@@ -99698,7 +98703,6 @@ docfiles size=1369
RELOC/doc/latex/einfuehrung2/utf8char.bib
catalogue-contact-home http://www.dante.de/index/Literatur/Einfuehrung.html
catalogue-ctan /info/examples/Einfuehrung2
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl1.3
catalogue-topics book-ex
@@ -99732,7 +98736,6 @@ srcfiles size=6
runfiles size=4
RELOC/tex/latex/ejpecp/ejpecp.cls
catalogue-ctan /macros/latex/contrib/ejpecp
-catalogue-date 2019-04-04 16:29:28 +0200
catalogue-license lppl1.2
catalogue-topics journalpub class
catalogue-version 1.7
@@ -99762,7 +98765,6 @@ srcfiles size=10
runfiles size=2
RELOC/tex/latex/ekaia/ekaia.sty
catalogue-ctan /macros/latex/contrib/ekaia
-catalogue-date 2019-01-06 07:25:00 +0100
catalogue-license lppl1.2
catalogue-topics journalpub
catalogue-version 1.06
@@ -99794,7 +98796,6 @@ srcfiles size=5
runfiles size=2
RELOC/tex/latex/elbioimp/elbioimp.cls
catalogue-ctan /macros/latex/contrib/elbioimp
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics journalpub class
catalogue-version 1.2
@@ -100129,7 +99130,6 @@ runfiles size=846
RELOC/tex/latex/electrum/ts1yesw.fd
catalogue-contact-home http://arkandis.tuxfamily.org/tugfonts.htm
catalogue-ctan /fonts/electrumadf
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license other-free
catalogue-topics font font-type1
catalogue-version 1.005-b
@@ -100161,7 +99161,6 @@ runfiles size=1
RELOC/tex/latex/eledform/eledform.sty
catalogue-contact-repository https://github.com/maieul/eledform
catalogue-ctan /macros/latex/contrib/eledform
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl1.3
catalogue-topics crit-ed
catalogue-version 1.1a
@@ -100258,7 +99257,6 @@ catalogue-contact-bugs https://github.com/maieul/ledmac/issues/
catalogue-contact-repository https://github.com/maieul/ledmac/
catalogue-contact-support http://geekographie.maieul.net/146
catalogue-ctan /macros/latex/contrib/eledmac
-catalogue-date 2017-09-25 19:05:52 +0200
catalogue-license lppl1.3
catalogue-topics crit-ed
catalogue-version 1.24.12
@@ -100299,7 +99297,6 @@ catalogue-contact-home https://elegantlatex.org/
catalogue-contact-repository https://github.com/ElegantLaTeX/ElegantBook
catalogue-contact-support https://github.com/ElegantLaTeX/ElegantBook/issues
catalogue-ctan /macros/latex/contrib/elegantbook
-catalogue-date 2019-08-18 17:49:35 +0200
catalogue-license lppl1.3c
catalogue-topics class chinese book-pub
catalogue-version 3.09
@@ -100337,7 +99334,6 @@ catalogue-contact-home https://elegantlatex.org/
catalogue-contact-repository https://github.com/ElegantLaTeX/ElegantNote
catalogue-contact-support https://github.com/ElegantLaTeX/ElegantNote/issues
catalogue-ctan /macros/latex/contrib/elegantnote
-catalogue-date 2019-12-08 19:19:06 +0100
catalogue-license lppl1.3c
catalogue-topics class
catalogue-version 2.20
@@ -100372,7 +99368,6 @@ catalogue-contact-home https://elegantlatex.org/
catalogue-contact-repository https://github.com/ElegantLaTeX/ElegantPaper/
catalogue-contact-support https://github.com/ElegantLaTeX/ElegantPaper/issues
catalogue-ctan /macros/latex/contrib/elegantpaper
-catalogue-date 2019-10-17 09:20:52 +0200
catalogue-license lppl1.3c
catalogue-topics class
catalogue-version 0.08
@@ -100406,7 +99401,6 @@ runfiles size=19
catalogue-contact-bugs https://github.com/cgnieder/elements/issues
catalogue-contact-repository https://github.com/cgnieder/elements/
catalogue-ctan /macros/latex/contrib/elements
-catalogue-date 2019-10-14 22:13:20 +0200
catalogue-license lppl1.3
catalogue-topics chemistry
catalogue-version 0.3
@@ -100433,7 +99427,6 @@ srcfiles size=13
runfiles size=3
RELOC/tex/latex/ellipse/ellipse.sty
catalogue-ctan /graphics/ellipse
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics graphics
catalogue-version 1.0
@@ -100463,7 +99456,6 @@ runfiles size=1
RELOC/tex/latex/ellipsis/ellipsis.sty
catalogue-also lips
catalogue-ctan /macros/latex/contrib/ellipsis
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics typesetting
@@ -100490,7 +99482,6 @@ srcfiles size=4
runfiles size=3
RELOC/tex/latex/elmath/elmath.sty
catalogue-ctan /macros/latex/contrib/elmath
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics greek maths
catalogue-version 1.2
@@ -100518,7 +99509,6 @@ runfiles size=1
RELOC/tex/latex/elocalloc/elocalloc.sty
catalogue-also etex-pkg
catalogue-ctan /macros/latex/contrib/elocalloc
-catalogue-date 2016-12-15 10:25:53 +0100
catalogue-license lppl
catalogue-topics macro-supp
catalogue-version 0.03
@@ -100543,7 +99533,6 @@ docfiles size=58
runfiles size=1
RELOC/tex/latex/elpres/elpres.cls
catalogue-ctan /macros/latex/contrib/elpres
-catalogue-date 2018-01-24 05:05:36 +0100
catalogue-license lppl
catalogue-topics presentation class
catalogue-version 0.4a
@@ -100595,7 +99584,6 @@ runfiles size=29
RELOC/tex/latex/els-cas-templates/cas-dc.cls
RELOC/tex/latex/els-cas-templates/cas-sc.cls
catalogue-ctan /macros/latex/contrib/els-cas-templates
-catalogue-date 2019-04-05 18:15:15 +0200
catalogue-license lppl1.2
catalogue-topics class journalpub
catalogue-version 1.0
@@ -100644,7 +99632,6 @@ runfiles size=33
RELOC/bibtex/bst/elsarticle/elsarticle-num.bst
RELOC/tex/latex/elsarticle/elsarticle.cls
catalogue-ctan /macros/latex/contrib/elsarticle
-catalogue-date 2019-04-05 20:33:17 +0200
catalogue-license lppl1.2
catalogue-topics journalpub class
catalogue-version 3.2
@@ -100675,7 +99662,6 @@ srcfiles size=6
runfiles size=1
RELOC/tex/latex/elteikthesis/elteikthesis.cls
catalogue-ctan /macros/latex/contrib/elteikthesis
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.2
catalogue-topics dissertation hungarian class
catalogue-version 1.2
@@ -100710,7 +99696,6 @@ runfiles size=26
RELOC/tex/latex/eltex/eltex7.tex
catalogue-also circuit-macros circuitikz
catalogue-ctan /macros/latex/contrib/eltex
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics diagram-circ
catalogue-version 2.0
@@ -100742,7 +99727,6 @@ runfiles size=22
RELOC/fonts/tfm/public/elvish/teng10.tfm
catalogue-also tengwar
catalogue-ctan /fonts/elvish
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license other-free
catalogue-topics font font-mf font-invented
@@ -100774,7 +99758,6 @@ srcfiles size=23
runfiles size=7
RELOC/tex/latex/elzcards/elzcards.sty
catalogue-ctan /macros/latex/contrib/elzcards
-catalogue-date 2019-08-17 09:45:16 +0200
catalogue-license lppl1.3
catalogue-topics card-gen
catalogue-version 1.60
@@ -100813,7 +99796,6 @@ srcfiles size=9
runfiles size=1
RELOC/tex/latex/emarks/emarks.sty
catalogue-ctan /macros/latex/contrib/emarks
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics typesetting
catalogue-version 1.0
@@ -100843,7 +99825,6 @@ srcfiles size=5
runfiles size=2
RELOC/tex/latex/embedall/embedall.sty
catalogue-ctan /macros/latex/contrib/embedall
-catalogue-date 2019-05-20 21:36:38 +0200
catalogue-license lppl1.2
catalogue-topics pdf-feat archival
catalogue-version 2.0
@@ -100877,7 +99858,6 @@ catalogue-also attachfile attachfile2
catalogue-contact-bugs https://github.com/ho-tex/embedfile/issues
catalogue-contact-repository https://github.com/ho-tex/embedfile
catalogue-ctan /macros/latex/contrib/embedfile
-catalogue-date 2019-12-04 05:36:47 +0100
catalogue-license lppl1.3
catalogue-topics pdf-feat
catalogue-version 2.9
@@ -100906,7 +99886,6 @@ runfiles size=5
catalogue-contact-bugs https://bitbucket.org/cgnieder/embrac/issues
catalogue-contact-repository https://bitbucket.org/cgnieder/embrac/
catalogue-ctan /macros/latex/contrib/embrac
-catalogue-date 2019-10-01 20:46:51 +0200
catalogue-license lppl1.3
catalogue-topics typesetting paren-mgmt expl3
catalogue-version 0.8
@@ -100933,7 +99912,6 @@ docfiles size=89
runfiles size=1
RELOC/tex/latex/emf/emf.sty
catalogue-ctan /macros/latex/contrib/emf
-catalogue-date 2016-09-14 05:04:20 +0200
catalogue-license gpl3
catalogue-topics text-symbol electronic
catalogue-version 1
@@ -100972,7 +99950,6 @@ runfiles size=18
RELOC/tex/latex/emisa/emisa.cls
catalogue-contact-repository https://github.com/emisa-journal/emisa-latex-package
catalogue-ctan /macros/latex/contrib/emisa
-catalogue-date 2018-02-24 13:29:05 +0100
catalogue-license lppl1.3c
catalogue-topics publisher class
catalogue-version 2.2.0
@@ -101013,7 +99990,6 @@ runfiles size=2
RELOC/tex/latex/emp/emp.sty
catalogue-also metatex
catalogue-ctan /macros/latex/contrib/emp
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics graphics-inline
@@ -101039,7 +100015,6 @@ srcfiles size=2
runfiles size=1
RELOC/tex/latex/emptypage/emptypage.sty
catalogue-ctan /macros/latex/contrib/emptypage
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.2
catalogue-topics layout
catalogue-version 1.2
@@ -101064,7 +100039,6 @@ runfiles size=16
RELOC/tex/latex/emulateapj/emulateapj.cls
catalogue-contact-home http://hea-www.harvard.edu/~alexey/emulateapj
catalogue-ctan /macros/latex/contrib/emulateapj
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl
catalogue-topics journalpub astronomy class
@@ -101138,7 +100112,6 @@ runfiles size=62
RELOC/tex/generic/enctex/utf8unkn.tex
RELOC/tex/generic/enctex/utf8warn.tex
catalogue-ctan /systems/enctex
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license gpl
catalogue-topics engine
@@ -101168,7 +100141,6 @@ runfiles size=3
RELOC/tex/plain/encxvlna/encxvlna.tex
catalogue-also luavlna xevlna
catalogue-ctan /macros/generic/encxvlna
-catalogue-date 2018-05-30 19:45:49 +0200
catalogue-license lppl
catalogue-topics typesetting czech slovak
catalogue-version 1.1
@@ -101205,7 +100177,6 @@ runfiles size=5
catalogue-contact-bugs https://gitlab.com/axelsommerfeldt/endfloat/issues
catalogue-contact-repository https://gitlab.com/axelsommerfeldt/endfloat
catalogue-ctan /macros/latex/contrib/endfloat
-catalogue-date 2019-05-05 20:54:15 +0200
catalogue-license gpl
catalogue-topics float
catalogue-version 2.7
@@ -101236,7 +100207,6 @@ srcfiles size=8
runfiles size=2
RELOC/tex/latex/endheads/endheads.sty
catalogue-ctan /macros/latex/contrib/endheads
-catalogue-date 2017-04-08 06:57:54 +0200
catalogue-license lppl
catalogue-topics endnote page-hf
catalogue-version 1.6
@@ -101260,7 +100230,6 @@ docfiles size=167
runfiles size=17
RELOC/tex/latex/endiagram/endiagram.sty
catalogue-ctan /macros/latex/contrib/endiagram
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics chemistry expl3
catalogue-version 0.1d
@@ -101286,7 +100255,6 @@ catalogue-also fnpara footmisc footnpag
catalogue-contact-repository https://github.com/rf-latex/endnotes
catalogue-contact-support https://github.com/rf-latex/endnotes/issues
catalogue-ctan /macros/latex/contrib/endnotes
-catalogue-date 2018-09-14 18:05:06 +0200
catalogue-license lppl1.2
catalogue-topics endnote
@@ -101312,7 +100280,6 @@ runfiles size=5
RELOC/tex/latex/endnotesj/endnotesj.sty
catalogue-contact-repository https://github.com/aminophen/endnotesj
catalogue-ctan /language/japanese/endnotesj
-catalogue-date 2018-05-15 04:44:19 +0200
catalogue-license bsd3
catalogue-topics endnote japanese
catalogue-version 3.0
@@ -101335,7 +100302,6 @@ docfiles size=3
runfiles size=1
RELOC/tex/latex/endofproofwd/endofproofwd.sty
catalogue-ctan /graphics/endofproofwd
-catalogue-date 2017-08-26 05:30:39 +0200
catalogue-license lppl1.3
catalogue-topics graphics maths font-symbol-maths
@@ -101375,7 +100341,6 @@ runfiles size=4
RELOC/tex/latex/engpron/engpron-tools.sty
RELOC/tex/latex/engpron/engpron.sty
catalogue-ctan /macros/latex/contrib/engpron
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics phonetic linguistic
catalogue-version 2
@@ -101408,7 +100373,6 @@ runfiles size=2
RELOC/tex/latex/engrec/engrec.sty
catalogue-also greekctr
catalogue-ctan /macros/latex/contrib/engrec
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics list list-enum greek
catalogue-version 1.1
@@ -101433,7 +100397,6 @@ docfiles size=210
runfiles size=4
RELOC/tex/latex/engtlc/engtlc.sty
catalogue-ctan /macros/latex/contrib/engtlc
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics engineering
catalogue-version 3.2
@@ -101464,7 +100427,6 @@ runfiles size=19
RELOC/tex/latex/enigma/enigma.sty
RELOC/tex/plain/enigma/enigma.tex
catalogue-ctan /macros/luatex/generic/enigma
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license bsd
catalogue-topics security luatex
catalogue-version 0.1
@@ -101493,7 +100455,6 @@ catalogue-also endnote endnotes
catalogue-contact-bugs https://bitbucket.org/cgnieder/enotez/issues
catalogue-contact-repository https://bitbucket.org/cgnieder/enotez/
catalogue-ctan /macros/latex/contrib/enotez
-catalogue-date 2019-10-12 11:03:06 +0200
catalogue-license lppl1.3
catalogue-topics endnote expl3
catalogue-version 0.10a
@@ -101523,7 +100484,6 @@ runfiles size=13
catalogue-contact-home http://www.texnia.com/enumitem.html
catalogue-contact-repository https://github.com/jbezos/enumitem
catalogue-ctan /macros/latex/contrib/enumitem
-catalogue-date 2019-06-22 16:35:43 +0200
catalogue-license mit
catalogue-topics list
catalogue-version 3.9
@@ -101560,7 +100520,6 @@ srcfiles size=26
runfiles size=7
RELOC/tex/latex/enumitem-zref/enumitem-zref.sty
catalogue-ctan /macros/latex/contrib/enumitem-zref
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics label-ref list
catalogue-version 1.8
@@ -101580,7 +100539,6 @@ docfiles size=1
runfiles size=1
RELOC/tex/latex/envbig/envbig.sty
catalogue-ctan /macros/latex/contrib/envbig
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics letter
@@ -101611,7 +100569,6 @@ srcfiles size=6
runfiles size=2
RELOC/tex/latex/environ/environ.sty
catalogue-ctan /macros/latex/contrib/environ
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics macro-supp
catalogue-version 0.3
@@ -101647,7 +100604,6 @@ runfiles size=7
catalogue-also akletter dinbrief formlett
catalogue-contact-home http://users.lk.net/~borisv/latex.html
catalogue-ctan /macros/latex/contrib/envlab
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl
catalogue-topics letter barcode class
catalogue-version 1.2
@@ -101732,7 +100688,6 @@ runfiles size=161
RELOC/tex/latex/epigrafica/ot1epigrafica.fd
catalogue-contact-home http://myria.math.aegean.gr/labs/dt/
catalogue-ctan /fonts/greek/epigrafica
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license gpl
catalogue-topics font font-type1 font-greek font-sans
catalogue-version 1.01
@@ -101750,7 +100705,6 @@ containerchecksum 8952dbb6f7c573028b1f9621cd9c947a264847e59e1ead9547d386d71c2c15
runfiles size=1
RELOC/tex/generic/epigram/epigram.tex
catalogue-ctan /macros/generic/misc/epigram.tex
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics epigram
@@ -101777,7 +100731,6 @@ srcfiles size=9
runfiles size=2
RELOC/tex/latex/epigraph/epigraph.sty
catalogue-ctan /macros/latex/contrib/epigraph
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics epigram
catalogue-version 1.5c
@@ -101808,7 +100761,6 @@ runfiles size=34
RELOC/fonts/type1/public/epiolmec/Epi-Olmec.pfb
RELOC/tex/latex/epiolmec/epiolmec.sty
catalogue-ctan /language/epiolmec
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics font font-type1 font-archaic
@@ -101870,7 +100822,6 @@ runfiles size=50
texmf-dist/tex/eplain/eplain.tex
catalogue-contact-home http://tug.org/eplain/
catalogue-ctan /macros/eplain
-catalogue-date 2019-05-31 19:50:44 +0200
catalogue-license gpl2
catalogue-topics plain-ext format
catalogue-version 3.9
@@ -102050,7 +101001,6 @@ runfiles size=5
RELOC/tex/latex/epsdice/epsdice.sty
catalogue-also dice
catalogue-ctan /macros/latex/contrib/epsdice
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics graphics-use
catalogue-version 2.1
@@ -102094,7 +101044,6 @@ runfiles size=14
RELOC/tex/generic/epsf/epsf.tex
catalogue-also epsfx
catalogue-ctan /macros/generic/epsf
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics graphics-incl
catalogue-version 2.7.4
@@ -102120,7 +101069,6 @@ docfiles size=3
runfiles size=1
RELOC/tex/plain/epsf-dvipdfmx/epsf-dvipdfmx.tex
catalogue-ctan /macros/plain/contrib/epsf-dvipdfmx
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics graphics-epspdf
catalogue-version 2014
@@ -102148,7 +101096,6 @@ docfiles size=9
runfiles size=1
RELOC/metapost/epsincl/epsincl.mp
catalogue-ctan /graphics/metapost/contrib/macros/epsincl
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics graphics-prep
catalogue-version 0.2
@@ -102227,7 +101174,6 @@ docfiles size=824
RELOC/doc/latex/epslatex-fr/widecenter.sty
RELOC/doc/latex/epslatex-fr/xb.sty
catalogue-ctan /info/epslatex/french
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics graphics french-doc translation
@@ -102264,7 +101210,6 @@ runfiles size=32
texmf-dist/scripts/epspdf/epspdftk.tcl
catalogue-also epstopdf
catalogue-ctan /support/epspdf
-catalogue-date 2019-02-06 12:56:04 +0100
catalogue-license gpl2
catalogue-topics graphics-epspdf
catalogue-version 0.6.4
@@ -102452,7 +101397,6 @@ docfiles size=119
runfiles size=3
RELOC/tex/latex/epspdfconversion/epspdfconversion.sty
catalogue-ctan /macros/latex/contrib/epspdfconversion
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics graphics-epspdf callback
catalogue-version 0.61
@@ -102489,7 +101433,6 @@ runfiles size=9
catalogue-also epstopdf-pkg
catalogue-contact-home http://tug.org/epstopdf/
catalogue-ctan /support/epstopdf
-catalogue-date 2018-11-15 17:13:00 +0100
catalogue-license other-free
catalogue-topics graphics-epspdf
catalogue-version 2.28
@@ -102524,7 +101467,6 @@ catalogue-also epstopdf
catalogue-contact-bugs https://github.com/ho-tex/epstopdf/issues
catalogue-contact-repository https://github.com/ho-tex/epstopdf
catalogue-ctan /macros/latex/contrib/epstopdf-pkg
-catalogue-date 2019-12-09 15:17:07 +0100
catalogue-license lppl1.3
catalogue-topics graphics-epspdf callback
catalogue-version 2.10
@@ -102707,7 +101649,6 @@ docfiles size=48
runfiles size=1
RELOC/tex/latex/eqell/eqell.sty
catalogue-ctan /macros/latex/contrib/eqell
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics typesetting
@@ -102735,7 +101676,6 @@ catalogue-also nomencl
catalogue-contact-bugs https://github.com/konstantin-morenko/latex-equation-explanation/issues
catalogue-contact-repository https://github.com/konstantin-morenko/latex-equation-explanation
catalogue-ctan /macros/latex/contrib/eqexpl
-catalogue-date 2019-07-01 20:50:25 +0200
catalogue-license cc-by-sa-4
catalogue-topics alignment maths
catalogue-version 1.1
@@ -102764,7 +101704,6 @@ srcfiles size=7
runfiles size=1
RELOC/tex/latex/eqlist/eqlist.sty
catalogue-ctan /macros/latex/contrib/eqlist
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics list list-descr
catalogue-version 2.1
@@ -102794,7 +101733,6 @@ runfiles size=1
RELOC/tex/latex/eqnalign/eqnalign.sty
catalogue-also eqnarray amsmath
catalogue-ctan /macros/latex/contrib/eqnalign
-catalogue-date 2017-02-22 05:31:05 +0100
catalogue-license lppl1.3
catalogue-topics maths maths-syseqn
catalogue-version 1.0a
@@ -102812,7 +101750,6 @@ containerchecksum 1717aa83439019ba2c07ced56ca5dc969a68b78c9a711d97d0a168d432c6e2
runfiles size=1
RELOC/tex/latex/eqname/eqname.sty
catalogue-ctan /macros/latex/contrib/gene/eqname
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license other-free
catalogue-topics maths
@@ -102842,7 +101779,6 @@ srcfiles size=6
runfiles size=2
RELOC/tex/latex/eqnarray/eqnarray.sty
catalogue-ctan /macros/latex/contrib/eqnarray
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl3
catalogue-topics maths maths-syseqn
catalogue-version 1.3
@@ -102869,7 +101805,6 @@ runfiles size=2
RELOC/tex/latex/eqnnumwarn/eqnnumwarn.sty
catalogue-also latex-amsmath
catalogue-ctan /macros/latex/contrib/eqnnumwarn
-catalogue-date 2018-01-07 12:02:30 +0100
catalogue-license lppl1.3
catalogue-topics comp-supp
catalogue-version 1.0
@@ -102905,7 +101840,6 @@ srcfiles size=17
runfiles size=3
RELOC/tex/latex/eqparbox/eqparbox.sty
catalogue-ctan /macros/latex/contrib/eqparbox
-catalogue-date 2017-09-04 06:03:42 +0200
catalogue-license lppl1.3c
catalogue-topics boxing
catalogue-version 4.1
@@ -102943,7 +101877,6 @@ srcfiles size=17
runfiles size=5
RELOC/tex/latex/erdc/erdc.cls
catalogue-ctan /macros/latex/contrib/erdc
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics report-like class
catalogue-version 1.1
@@ -103827,7 +102760,6 @@ runfiles size=2600
RELOC/tex/latex/erewhon/erewhon.sty
RELOC/tex/latex/erewhon/newtx-erewhon-subs.tex
catalogue-ctan /fonts/erewhon
-catalogue-date 2019-11-13 19:41:03 +0100
catalogue-license ofllppl1.3
catalogue-topics font font-body font-multilingual font-cyrillic font-proportional font-serif font-otf font-type1 font-supp font-t1enc
catalogue-version 1.102
@@ -103855,7 +102787,6 @@ runfiles size=72
RELOC/fonts/opentype/public/erewhon-math/Erewhon-Math.otf
RELOC/tex/latex/erewhon-math/fourier-otf.sty
catalogue-ctan /fonts/erewhon-math
-catalogue-date 2019-12-02 22:06:01 +0100
catalogue-license ofllppl1.3
catalogue-topics font font-proportional font-otf font-supp font-maths
catalogue-version 0.40
@@ -103886,7 +102817,6 @@ srcfiles size=6
runfiles size=1
RELOC/tex/latex/errata/errata.sty
catalogue-ctan /macros/latex/contrib/errata
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1
catalogue-topics editorial
catalogue-version 0.3
@@ -103921,7 +102851,6 @@ runfiles size=3
catalogue-contact-home https://github.com/er-cpp/edu-latex3
catalogue-contact-support https://github.com/er-cpp/edu-latex3/issues
catalogue-ctan /macros/latex/contrib/erw-l3
-catalogue-date 2018-06-22 06:13:31 +0200
catalogue-license lppl1.3c
catalogue-topics latex3
catalogue-version 0.1.3
@@ -103945,7 +102874,6 @@ docfiles size=306
RELOC/doc/generic/es-tex-faq/FAQ-CervanTeX.sgml
RELOC/doc/generic/es-tex-faq/FAQ-CervanTeX.tex
catalogue-ctan /help/es-tex-faq
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics faq spanish-doc
catalogue-version 1.97
@@ -104013,7 +102941,6 @@ runfiles size=28
RELOC/tex/latex/esami/es-spanish.lng
RELOC/tex/latex/esami/esami.sty
catalogue-ctan /macros/latex/contrib/esami
-catalogue-date 2018-05-07 15:16:29 +0200
catalogue-license lppl
catalogue-topics exam
catalogue-version 2.5
@@ -104043,7 +102970,6 @@ srcfiles size=4
runfiles size=2
RELOC/tex/latex/esdiff/esdiff.sty
catalogue-ctan /macros/latex/contrib/esdiff
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1
catalogue-topics maths
catalogue-version 1.2
@@ -104071,7 +102997,6 @@ runfiles size=3
catalogue-contact-home http://www.texnia.com/
catalogue-contact-repository https://github.com/jbezos
catalogue-ctan /macros/latex/contrib/esindex
-catalogue-date 2019-10-11 19:42:20 +0200
catalogue-license mit
catalogue-topics index spanish
catalogue-version 1.7
@@ -104109,7 +103034,6 @@ runfiles size=18
RELOC/tex/latex/esint/uesint.fd
catalogue-also esint-type1
catalogue-ctan /macros/latex/contrib/esint
-catalogue-date 2019-08-28 20:16:01 +0200
catalogue-license lppl
catalogue-topics font font-symbol-maths font-mf font-supp
catalogue-version 1.2d
@@ -104142,7 +103066,6 @@ runfiles size=12
RELOC/fonts/type1/public/esint-type1/esint10.pfb
RELOC/tex/plain/esint-type1/esint.tex
catalogue-ctan /fonts/ps-type1/esint
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics font font-symbol-maths font-type1
@@ -104180,7 +103103,6 @@ srcfiles size=18
runfiles size=3
RELOC/tex/latex/esk/esk.sty
catalogue-ctan /macros/latex/contrib/esk
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics graphics-inline
catalogue-version 1.0
@@ -104211,7 +103133,6 @@ runfiles size=5
RELOC/tex/latex/eskd/eskd.cls
catalogue-also eskdx
catalogue-ctan /macros/latex/contrib/eskd
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics class russian
@@ -104324,7 +103245,6 @@ runfiles size=46
RELOC/tex/latex/eskdx/eskdtotal.sty
RELOC/tex/latex/eskdx/eskdukrainian.def
catalogue-ctan /macros/latex/contrib/eskdx
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics class russian
catalogue-version 0.98
@@ -104361,7 +103281,6 @@ runfiles size=4
RELOC/tex/latex/eso-pic/eso-pic.sty
RELOC/tex/latex/eso-pic/showframe.sty
catalogue-ctan /macros/latex/contrib/eso-pic
-catalogue-date 2018-05-12 20:23:32 +0200
catalogue-license lppl1.2
catalogue-topics defer-stuff
catalogue-version 2.0h
@@ -104411,7 +103330,6 @@ runfiles size=17
RELOC/tex/latex/esrelation/esrelation.sty
RELOC/tex/latex/esrelation/uesrelation.fd
catalogue-ctan /fonts/esrelation
-catalogue-date 2017-10-29 14:49:17 +0100
catalogue-license lppl1.3
catalogue-topics font font-mf font-type1 font-maths
@@ -104522,7 +103440,6 @@ runfiles size=117
RELOC/tex/latex/esstix/uesstixcal.fd
RELOC/tex/latex/esstix/uesstixfrak.fd
catalogue-ctan /fonts/esstix
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license ofl
catalogue-topics font font-maths font-bbd font-type1
catalogue-version 1.0
@@ -104559,7 +103476,6 @@ srcfiles size=9
runfiles size=2
RELOC/tex/latex/estcpmm/estcpmm.cls
catalogue-ctan /macros/latex/contrib/estcpmm
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics report-like class
catalogue-version 0.4
@@ -104612,7 +103528,6 @@ runfiles size=58
RELOC/tex/latex/esvect/esvect.sty
RELOC/tex/latex/esvect/uesvect.fd
catalogue-ctan /macros/latex/contrib/esvect
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics font font-symbol font-mf
catalogue-version 1.3
@@ -104641,7 +103556,6 @@ runfiles size=1
RELOC/tex/latex/etaremune/etaremune.sty
catalogue-also revnum
catalogue-ctan /macros/latex/contrib/etaremune
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics list list-enum
catalogue-version 1.2
@@ -104685,7 +103599,6 @@ docfiles size=499
RELOC/doc/latex/etdipa/diplomarbeit.tex
RELOC/doc/latex/etdipa/etdipa.sty
catalogue-ctan /macros/latex/contrib/etdipa
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics scientific-docs
catalogue-version 2.6
@@ -104727,7 +103640,6 @@ runfiles size=11
catalogue-contact-bugs http://lists.tug.org/tex-k
catalogue-contact-repository https://tug.org/svn/texlive/trunk/Build/source/texk/web2c/etexdir
catalogue-contact-support http://lists.tug.org/tex-k
-catalogue-date 2019-01-02 05:38:30 +0100
catalogue-license knuth
catalogue-topics engine
@@ -104752,7 +103664,6 @@ runfiles size=5
catalogue-also elocalloc
catalogue-contact-repository https://github.com/davidcarlisle/dpctex/tree/master/etex-pkg
catalogue-ctan /macros/latex/contrib/etex-pkg
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl1.3
catalogue-topics macro-supp
catalogue-version 2.7
@@ -104794,7 +103705,6 @@ runfiles size=14
RELOC/tex/latex/etextools/etextools.sty
catalogue-also etoolbox
catalogue-ctan /macros/latex/contrib/etextools
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics macro-supp csv-support
catalogue-version 3.1415926
@@ -105000,7 +103910,6 @@ runfiles size=337
catalogue-also ethiop-t1
catalogue-contact-home http://www.informatik.uni-hamburg.de/TGI/mitarbeiter/wimis/kummer/ethiop_eng.html
catalogue-ctan /language/ethiopia/ethiop
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license gpl
catalogue-topics amharic
catalogue-version 0.7
@@ -105067,7 +103976,6 @@ runfiles size=1348
RELOC/fonts/type1/public/ethiop-t1/ethbsb9.pfb
RELOC/fonts/type1/public/ethiop-t1/ethbtt10.pfb
catalogue-ctan /fonts/ps-type1/ethiop
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics font font-nonroman font-type1 amharic
@@ -105136,7 +104044,6 @@ runfiles size=14
RELOC/tex/latex/etoc/etoc.sty
catalogue-also titletoc tocbasic
catalogue-ctan /macros/latex/contrib/etoc
-catalogue-date 2019-11-17 14:31:10 +0100
catalogue-license lppl1.3c
catalogue-topics toc-etc etex
catalogue-version 1.09b
@@ -105170,7 +104077,6 @@ runfiles size=13
catalogue-contact-bugs https://github.com/josephwright/etoolbox/issues
catalogue-contact-repository https://github.com/josephwright/etoolbox/
catalogue-ctan /macros/latex/contrib/etoolbox
-catalogue-date 2019-09-22 00:04:44 +0200
catalogue-license lppl1.3c
catalogue-topics macro-supp etex
catalogue-version 2.5h
@@ -105189,7 +104095,6 @@ docfiles size=99
RELOC/doc/latex/etoolbox-de/etoolbox-DE.pdf details="The document itself"
RELOC/doc/latex/etoolbox-de/etoolbox-DE.tex
catalogue-ctan /info/translations/etoolbox/de
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics german-doc translation macro-supp
catalogue-version 1
@@ -105219,7 +104124,6 @@ docfiles size=1
runfiles size=1
RELOC/tex/latex/etsvthor/etsvthor.sty
catalogue-ctan /macros/latex/contrib/etsvthor
-catalogue-date 2018-07-13 05:06:29 +0200
catalogue-license lppl1.3c
catalogue-topics shortcut dutch
catalogue-version 1.0
@@ -105269,7 +104173,6 @@ runfiles size=14
RELOC/tex/latex/euenc/eu2lmvtt.fd
catalogue-also xunicode
catalogue-ctan /macros/latex/contrib/euenc
-catalogue-date 2016-10-08 11:33:19 +0200
catalogue-license lppl1.3
catalogue-topics font-supp unicode
catalogue-version 0.1h
@@ -105301,7 +104204,6 @@ srcfiles size=15
runfiles size=1
RELOC/tex/latex/euflag/euflag.sty
catalogue-ctan /graphics/euflag
-catalogue-date 2019-02-07 20:48:20 +0100
catalogue-license lppl1.3
catalogue-topics graphics
catalogue-version 0.4
@@ -105332,7 +104234,6 @@ runfiles size=1
RELOC/tex/latex/eukdate/eukdate.sty
catalogue-also dayofweek weekday
catalogue-ctan /macros/latex/contrib/eukdate
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics date-time
catalogue-version 1.04
@@ -105365,7 +104266,6 @@ runfiles size=3
RELOC/tex/latex/euler/euler.sty
catalogue-also beton eulervm
catalogue-ctan /macros/latex/contrib/euler
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics font-supp-maths
catalogue-version 2.5
@@ -105394,7 +104294,6 @@ docfiles size=1
runfiles size=2
RELOC/tex/latex/eulerpx/eulerpx.sty
catalogue-ctan /fonts/eulerpx
-catalogue-date 2017-10-09 07:42:22 +0200
catalogue-license lppl1.3
catalogue-topics font-supp
catalogue-version 0.2.1
@@ -105479,7 +104378,6 @@ runfiles size=32
RELOC/tex/latex/eulervm/uzeur.fd
RELOC/tex/latex/eulervm/uzeus.fd
catalogue-ctan /fonts/eulervm
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics font font-virtual font-maths
catalogue-version 4.0
@@ -105511,7 +104409,6 @@ srcfiles size=13
runfiles size=2
RELOC/tex/latex/euro/euro.sty
catalogue-ctan /macros/latex/contrib/euro
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics calculation
catalogue-version 1.1
@@ -105557,7 +104454,6 @@ runfiles size=26
RELOC/fonts/tfm/public/euro-ce/eurosl.tfm
RELOC/fonts/tfm/public/euro-ce/eurosp.tfm
catalogue-ctan /fonts/euro-ce
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license bsd
catalogue-topics font font-specialist font-mf
catalogue-version 3.0b
@@ -105622,7 +104518,6 @@ catalogue-contact-bugs https://github.com/gmazzamuto/europasscv/issues
catalogue-contact-home https://www.devrandom.it/software/europasscv/
catalogue-contact-repository https://github.com/gmazzamuto/europasscv
catalogue-ctan /macros/latex/contrib/europasscv
-catalogue-date 2019-01-14 10:30:18 +0100
catalogue-license lppl1.3
catalogue-topics cv class
@@ -105705,7 +104600,6 @@ runfiles size=64
catalogue-also europasscv curve currvita cv esieecv vita
catalogue-contact-repository https://github.com/gsilano/EuropeCV
catalogue-ctan /macros/latex/contrib/europecv
-catalogue-date 2019-03-19 16:08:26 +0100
catalogue-license lppl
catalogue-topics cv class
@@ -105769,7 +104663,6 @@ runfiles size=72
catalogue-also europs marvosym
catalogue-contact-home http://www.theiling.de/eurosym.html
catalogue-ctan /fonts/eurosym
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license other-free
catalogue-topics font font-specialist font-mf
catalogue-version 1.4-subrfix
@@ -105819,7 +104712,6 @@ srcfiles size=6
runfiles size=2
RELOC/tex/latex/everyhook/everyhook.sty
catalogue-ctan /macros/latex/contrib/everyhook
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license lppl1.3
catalogue-topics macro-supp
catalogue-version 1.2
@@ -105851,7 +104743,6 @@ runfiles size=1
RELOC/tex/latex/everypage/everypage.sty
catalogue-also everyshi bophook
catalogue-ctan /macros/latex/contrib/everypage
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics defer-stuff
catalogue-version 1.1
@@ -105896,7 +104787,6 @@ runfiles size=69
RELOC/tex/latex/exam/exam.cls
catalogue-contact-home http://www-math.mit.edu/~psh/
catalogue-ctan /macros/latex/contrib/exam
-catalogue-date 2017-12-17 18:57:55 +0100
catalogue-license lppl1.3
catalogue-topics exam class
catalogue-version 2.603
@@ -105959,7 +104849,6 @@ runfiles size=11
RELOC/tex/latex/exam-n/exam-n.cls
catalogue-contact-home http://purl.org/nxg/dist/exam-n
catalogue-ctan /macros/latex/contrib/exam-n
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl1.3
catalogue-topics exam
catalogue-version 1.1.4
@@ -105994,7 +104883,6 @@ catalogue-also exam
catalogue-contact-repository https://bitbucket.org/jesseopdenbrouw/exam-randomizechoices
catalogue-contact-support mailto:J.E.J.opdenBrouw@hhs.nl
catalogue-ctan /macros/latex/contrib/exam-randomizechoices
-catalogue-date 2019-01-12 09:12:53 +0100
catalogue-license lppl1.3
catalogue-topics exam
catalogue-version 0.1
@@ -106042,7 +104930,6 @@ runfiles size=12
RELOC/tex/latex/examdesign/examdesign.cls
catalogue-also exams exam
catalogue-ctan /macros/latex/contrib/examdesign
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics exam class
catalogue-version 1.101
@@ -106061,7 +104948,6 @@ runfiles size=4
RELOC/tex/latex/example/example.sty
catalogue-also examplep
catalogue-ctan /macros/latex209/contrib/misc/example.sty
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license gpl
catalogue-topics listing
@@ -106107,7 +104993,6 @@ runfiles size=34
RELOC/tex/latex/examplep/examplep.sty
RELOC/tex/latex/examplep/verbfwr.sty
catalogue-ctan /macros/latex/contrib/examplep
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics listing
catalogue-version 0.04
@@ -106141,7 +105026,6 @@ runfiles size=6
texmf-dist/scripts/exceltex/exceltex
texmf-dist/tex/latex/exceltex/exceltex.sty
catalogue-ctan /macros/latex/contrib/exceltex
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics foreign-import
catalogue-version 0.5.1
@@ -106311,7 +105195,6 @@ docfiles size=56
runfiles size=1
RELOC/tex/latex/excludeonly/excludeonly.sty
catalogue-ctan /macros/latex/contrib/excludeonly
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics compilation
catalogue-version 1.0
@@ -106345,7 +105228,6 @@ srcfiles size=17
runfiles size=9
RELOC/tex/latex/exercise/exercise.sty
catalogue-ctan /macros/latex/contrib/exercise
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl2
catalogue-topics exercise
catalogue-version 1.6
@@ -106373,7 +105255,6 @@ runfiles size=9
catalogue-contact-bugs https://github.com/Strauman/exercisebank/issues
catalogue-contact-repository https://github.com/Strauman/exercisebank
catalogue-ctan /macros/latex/contrib/exercisebank
-catalogue-date 2019-03-18 10:53:02 +0100
catalogue-license lppl1.3c
catalogue-topics exercise exam doc-templ
catalogue-version 0.3.0
@@ -106405,7 +105286,6 @@ catalogue-contact-development https://github.com/henningkerstan/exercisepoints
catalogue-contact-home https://github.com/henningkerstan/exercisepoints
catalogue-contact-repository https://github.com/henningkerstan/exercisepoints
catalogue-ctan /macros/latex/contrib/exercisepoints
-catalogue-date 2019-01-05 05:03:15 +0100
catalogue-license lppl1.3
catalogue-topics exercise
catalogue-version 1.2.3
@@ -106434,7 +105314,6 @@ srcfiles size=9
runfiles size=3
RELOC/tex/latex/exercises/exercises.sty
catalogue-ctan /macros/latex/contrib/exercises
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.2
catalogue-topics exercise
catalogue-version 1.0
@@ -106477,7 +105356,6 @@ srcfiles size=53
runfiles size=15
RELOC/tex/latex/exframe/exframe.sty
catalogue-ctan /macros/latex/contrib/exframe
-catalogue-date 2019-06-16 08:35:04 +0200
catalogue-license lppl1.3
catalogue-topics exam exercise
catalogue-version 3.3
@@ -106508,7 +105386,6 @@ srcfiles size=5
runfiles size=1
RELOC/tex/latex/exp-testopt/exp-testopt.sty
catalogue-ctan /macros/latex/contrib/exp-testopt
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics macro-supp
catalogue-version 0.3
@@ -106542,7 +105419,6 @@ srcfiles size=14
runfiles size=2
RELOC/tex/latex/expdlist/expdlist.sty
catalogue-ctan /macros/latex/contrib/expdlist
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics list-descr
catalogue-version 2.4
@@ -106572,7 +105448,6 @@ runfiles size=24
RELOC/tex/generic/expex/expex.sty
RELOC/tex/generic/expex/expex.tex
catalogue-ctan /macros/generic/expex
-catalogue-date 2017-05-26 16:42:23 +0200
catalogue-license lppl
catalogue-topics linguistic
catalogue-version 5.1b
@@ -106604,7 +105479,6 @@ runfiles size=6
RELOC/tex/latex/export/dvipaste.sty
RELOC/tex/latex/export/export.sty
catalogue-ctan /macros/latex/contrib/export
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics macro-supp
catalogue-version 1.8
@@ -106644,7 +105518,6 @@ runfiles size=23
RELOC/metapost/expressg/expressg.mp
catalogue-also metauml
catalogue-ctan /graphics/metapost/contrib/macros/expressg
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics diagram graphics-in-tex
catalogue-version 1.5
@@ -106687,7 +105560,6 @@ runfiles size=42
catalogue-also xsim
catalogue-contact-repository https://bitbucket.org/cgnieder/exsheets/
catalogue-ctan /macros/latex/contrib/exsheets
-catalogue-date 2019-09-30 17:42:25 +0200
catalogue-license lppl1.3
catalogue-topics exercise exam expl3
catalogue-version 0.21k
@@ -106729,7 +105601,6 @@ srcfiles size=13
runfiles size=4
RELOC/tex/latex/exsol/exsol.sty
catalogue-ctan /macros/latex/contrib/exsol
-catalogue-date 2018-10-23 09:24:04 +0200
catalogue-license lppl1.3
catalogue-topics exercise
catalogue-version 1.4
@@ -106755,7 +105626,6 @@ docfiles size=10
runfiles size=1
RELOC/tex/latex/extarrows/extarrows.sty
catalogue-ctan /macros/latex/contrib/extarrows
-catalogue-date 2018-10-09 06:08:39 +0200
catalogue-license lgpl
catalogue-topics maths
catalogue-version 1.0b
@@ -106782,7 +105652,6 @@ docfiles size=55
runfiles size=3
RELOC/metapost/exteps/exteps.mp
catalogue-ctan /graphics/metapost/contrib/macros/exteps
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license gpl
catalogue-topics graphics-prep
catalogue-version 0.41
@@ -106810,7 +105679,6 @@ srcfiles size=6
runfiles size=1
RELOC/tex/latex/extpfeil/extpfeil.sty
catalogue-ctan /macros/latex/contrib/extpfeil
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics maths
catalogue-version 0.4
@@ -106857,7 +105725,6 @@ srcfiles size=19
runfiles size=5
RELOC/tex/latex/extract/extract.sty
catalogue-ctan /macros/latex/contrib/extract
-catalogue-date 2019-09-18 21:11:08 +0200
catalogue-license lppl1.3
catalogue-topics editorial
catalogue-version 1.9a
@@ -106895,7 +105762,6 @@ runfiles size=35
RELOC/tex/latex/extsizes/size8.clo
RELOC/tex/latex/extsizes/size9.clo
catalogue-ctan /macros/latex/contrib/extsizes
-catalogue-date 2018-03-02 11:58:24 +0100
catalogue-license lppl
catalogue-topics book-pub class
catalogue-version 1.4a
@@ -106931,7 +105797,6 @@ runfiles size=5
RELOC/tex/latex/facsimile/fac-en.cfg
RELOC/tex/latex/facsimile/facsimile.cls
catalogue-ctan /macros/latex/contrib/facsimile
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics letter class
catalogue-version 1.0
@@ -106985,7 +105850,6 @@ runfiles size=31
RELOC/tex/latex/factura/factura.cls
RELOC/tex/latex/factura/factura.def
catalogue-ctan /macros/latex/contrib/factura
-catalogue-date 2019-08-17 09:20:05 +0200
catalogue-license lppl1.3c
catalogue-topics invoice spanish class
catalogue-version 3.70
@@ -107024,7 +105888,6 @@ runfiles size=3
catalogue-also invoice factura
catalogue-contact-repository https://github.com/maieul/facture
catalogue-ctan /macros/xetex/latex/facture
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license cc-by-sa-2
catalogue-topics invoice class xetex
catalogue-version 1.2.2
@@ -107074,7 +105937,6 @@ catalogue-contact-home https://gitlab.adullact.net/zenjo/facture-belge-simple-sa
catalogue-contact-repository https://gitlab.adullact.net/zenjo/facture-belge-simple-sans-tva/tree/master
catalogue-contact-support http://myblog.robert.sebille.name/spip.php?page=contact
catalogue-ctan /macros/xetex/latex/facture-belge-simple-sans-tva
-catalogue-date 2018-10-27 19:30:16 +0200
catalogue-license lppl1.3c
catalogue-topics invoice xetex
catalogue-version 2.1
@@ -107105,7 +105967,6 @@ srcfiles size=3
runfiles size=1
RELOC/tex/latex/faktor/faktor.sty
catalogue-ctan /macros/latex/contrib/faktor
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics maths
catalogue-version 0.1b
@@ -107132,7 +105993,6 @@ docfiles size=84
runfiles size=7
RELOC/tex/latex/fancybox/fancybox.sty
catalogue-ctan /macros/latex/contrib/fancybox
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.2
catalogue-topics boxing
catalogue-version 1.4
@@ -107166,7 +106026,6 @@ runfiles size=3
catalogue-contact-bugs https://github.com/sfr682k/fancyhandout/issues
catalogue-contact-repository https://github.com/sfr682k/fancyhandout
catalogue-ctan /macros/latex/contrib/fancyhandout
-catalogue-date 2018-01-23 05:35:34 +0100
catalogue-license lppl1.3c
catalogue-topics class presentation
@@ -107197,7 +106056,6 @@ runfiles size=5
RELOC/tex/latex/fancyhdr/fancyheadings.sty
catalogue-also titleps
catalogue-ctan /macros/latex/contrib/fancyhdr
-catalogue-date 2019-01-31 19:34:00 +0100
catalogue-license lppl
catalogue-topics page-hf
catalogue-version 3.10
@@ -107219,7 +106077,6 @@ docfiles size=114
RELOC/doc/latex/fancyhdr-it/itfancyhdr.pdf details="The document itself"
RELOC/doc/latex/fancyhdr-it/itfancyhdr.tex
catalogue-ctan /info/translations/fancyhdr/it
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics italian-doc
@@ -107245,7 +106102,6 @@ srcfiles size=17
runfiles size=9
RELOC/tex/latex/fancylabel/fancylabel.sty
catalogue-ctan /macros/latex/contrib/fancylabel
-catalogue-date 2018-02-23 21:24:38 +0100
catalogue-license lppl1.2
catalogue-topics label-ref chemistry
catalogue-version 1.1
@@ -107279,7 +106135,6 @@ srcfiles size=6
runfiles size=1
RELOC/tex/latex/fancynum/fancynum.sty
catalogue-ctan /macros/latex/contrib/fancynum
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license other-free
catalogue-topics numbers
catalogue-version 0.92
@@ -107312,7 +106167,6 @@ runfiles size=2
RELOC/tex/latex/fancypar/fancypar.sty
catalogue-also boites framed
catalogue-ctan /macros/latex/contrib/fancypar
-catalogue-date 2019-01-22 21:47:18 +0100
catalogue-license lppl1.3
catalogue-topics decoration
catalogue-version 1.2
@@ -107344,7 +106198,6 @@ srcfiles size=21
runfiles size=4
RELOC/tex/latex/fancyref/fancyref.sty
catalogue-ctan /macros/latex/contrib/fancyref
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics label-ref
catalogue-version 0.9c
@@ -107383,7 +106236,6 @@ docfiles size=994
runfiles size=1
RELOC/tex/latex/fancyslides/fancyslides.cls
catalogue-ctan /macros/latex/contrib/fancyslides
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics presentation class
catalogue-version 1.0
@@ -107410,7 +106262,6 @@ srcfiles size=4
runfiles size=1
RELOC/tex/latex/fancytabs/fancytabs.sty
catalogue-ctan /macros/latex/contrib/fancytabs
-catalogue-date 2016-06-27 10:08:39 +0200
catalogue-license lppl1.3
catalogue-topics decoration
catalogue-version 1.9
@@ -107466,7 +106317,6 @@ runfiles size=10
RELOC/tex/latex/fancytooltips/fancytooltips.sty
catalogue-contact-repository http://bitbucket.org/robert.marik/fancytooltips/
catalogue-ctan /macros/latex/contrib/fancytooltips
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license lppl1.2
catalogue-topics pdf-feat
catalogue-version 1.8
@@ -107497,7 +106347,6 @@ runfiles size=17
RELOC/tex/latex/fancyvrb/hbaw.sty
RELOC/tex/latex/fancyvrb/hcolor.sty
catalogue-ctan /macros/latex/contrib/fancyvrb
-catalogue-date 2019-11-09 19:23:40 +0100
catalogue-license lppl1.3
catalogue-topics verbatim
catalogue-version 3.4
@@ -107527,7 +106376,6 @@ runfiles size=8526
RELOC/fonts/opentype/public/fandol/FandolSong-Bold.otf
RELOC/fonts/opentype/public/fandol/FandolSong-Regular.otf
catalogue-ctan /fonts/fandol
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics font chinese font-cjk font-otf
catalogue-version 0.3
@@ -107583,7 +106431,6 @@ runfiles size=5
catalogue-also schule
catalogue-contact-home http://fascicules.serveblog.net/
catalogue-ctan /macros/latex/contrib/fascicules
-catalogue-date 2018-12-21 06:32:50 +0100
catalogue-license lppl
catalogue-topics teaching
catalogue-version 1
@@ -107624,7 +106471,6 @@ docfiles size=405
runfiles size=5
RELOC/tex/latex/fast-diagram/fast-diagram.sty
catalogue-ctan /graphics/pgf/contrib/fast-diagram
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics diagram pgf-tikz
catalogue-version 1.1
@@ -108302,7 +107148,6 @@ runfiles size=1356
RELOC/tex/latex/fbb/fbb.fontspec
RELOC/tex/latex/fbb/fbb.sty
catalogue-ctan /fonts/fbb
-catalogue-date 2017-09-12 08:39:22 +0200
catalogue-license ofllppl1.3
catalogue-topics font font-serif font-type1 font-otf font-t1enc
catalogue-version 1.14
@@ -108340,7 +107185,6 @@ runfiles size=7
RELOC/tex/latex/fbithesis/fbithesis.cfg
RELOC/tex/latex/fbithesis/fbithesis.cls
catalogue-ctan /macros/latex/contrib/fbithesis
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license other-free
catalogue-topics dissertation
catalogue-version 1.2m
@@ -108367,7 +107211,6 @@ docfiles size=12
runfiles size=1
RELOC/tex/latex/fbox/fbox.sty
catalogue-ctan /macros/latex/contrib/fbox
-catalogue-date 2019-11-04 13:28:41 +0100
catalogue-license lppl1.3c
catalogue-topics boxing
catalogue-version 0.03
@@ -108387,7 +107230,6 @@ containerchecksum 2d5bce7890fd8e087e035e60064bf134d8ac7ca2646f7b846df8fca7c59484
runfiles size=7
RELOC/bibtex/bst/fbs/fbs.bst
catalogue-ctan /biblio/bibtex/contrib/misc/fbs.bst
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics journalpub biology bibtex-sty
@@ -108899,7 +107741,6 @@ runfiles size=591
RELOC/tex/latex/fc/t4fcr.fd
RELOC/tex/latex/fc/t4phonet.sty
catalogue-ctan /fonts/jknappen/fc
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl2
catalogue-topics font font-mf multilingual
catalogue-version 1.4
@@ -108930,7 +107771,6 @@ runfiles size=20
RELOC/tex/latex/fcavtex/fcavtex.cls
catalogue-contact-repository https://github.com/waltermaldonado/fcavTeX
catalogue-ctan /macros/latex/contrib/fcavtex
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl1.3
catalogue-topics dissertation class
catalogue-version 1.1
@@ -108958,7 +107798,6 @@ srcfiles size=22
runfiles size=9
RELOC/tex/latex/fcltxdoc/fcltxdoc.sty
catalogue-ctan /macros/latex/contrib/fcltxdoc
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics doc-supp
catalogue-version 1.0
@@ -108989,7 +107828,6 @@ srcfiles size=15
runfiles size=3
RELOC/tex/latex/fcolumn/fcolumn.sty
catalogue-ctan /macros/latex/contrib/fcolumn
-catalogue-date 2019-04-24 23:00:04 +0200
catalogue-license lppl1.3
catalogue-topics table
catalogue-version 1.2
@@ -109117,7 +107955,6 @@ runfiles size=471
RELOC/tex/latex/fdsymbol/fdsymbol.sty
catalogue-contact-repository http://github.com/ummels/fdsymbol
catalogue-ctan /fonts/fdsymbol
-catalogue-date 2017-10-29 15:19:12 +0100
catalogue-license ofl
catalogue-topics font font-symbol font-symbol-maths font-type1 font-otf font-mf
catalogue-version 0.8
@@ -109163,7 +108000,6 @@ catalogue-also thuthesis cquthesis
catalogue-contact-bugs https://github.com/stone-zeng/fduthesis/issues
catalogue-contact-repository https://github.com/stone-zeng/fduthesis
catalogue-ctan /macros/latex/contrib/fduthesis
-catalogue-date 2019-04-03 11:09:26 +0200
catalogue-license lppl1.3c
catalogue-topics dissertation class chinese latex3
catalogue-version 0.7d
@@ -110055,7 +108891,6 @@ runfiles size=36
RELOC/metapost/featpost/featpost.mp
RELOC/metapost/featpost/featpost3Dplus2D.mp
catalogue-ctan /graphics/metapost/contrib/macros/featpost
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license gpl
catalogue-topics graphics-3d
catalogue-version 0.8.8
@@ -110100,7 +108935,6 @@ catalogue-contact-bugs http://github.com/douglasrizzo/Classe-Latex-FEI/issues
catalogue-contact-repository http://github.com/douglasrizzo/Classe-Latex-FEI/
catalogue-contact-support https://groups.google.com/forum/#!forum/grupo-latex-fei
catalogue-ctan /macros/latex/contrib/fei
-catalogue-date 2019-10-08 22:03:54 +0200
catalogue-license lppl1.3c
catalogue-topics dissertation class
catalogue-version 4.6
@@ -110131,7 +108965,6 @@ runfiles size=4
RELOC/tex/generic/fenixpar/fenixpar.sty
RELOC/tex/generic/fenixpar/fenixtok.sty
catalogue-ctan /macros/generic/fenixpar
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics macro-supp
catalogue-version 0.92
@@ -110351,7 +109184,6 @@ runfiles size=3026
RELOC/tex/latex/fetamont/fetamont.sty
catalogue-also metalogo mflogo
catalogue-ctan /fonts/fetamont
-catalogue-date 2017-04-15 14:54:39 +0200
catalogue-license lppl1.3
catalogue-topics font font-mf font-type1 font-otf
@@ -110385,7 +109217,6 @@ runfiles size=1
RELOC/tex/latex/fetchcls/fetchcls.sty
catalogue-contact-repository https://github.com/giannotr/fetchcls
catalogue-ctan /macros/latex/contrib/fetchcls
-catalogue-date 2017-09-10 06:11:36 +0200
catalogue-license lppl1.3c
catalogue-topics macro-supp
catalogue-version 1.0
@@ -110428,7 +109259,6 @@ docfiles size=116
runfiles size=5
RELOC/tex/latex/feupphdteses/feupphdteses.sty
catalogue-ctan /macros/latex/contrib/feupphdteses
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics dissertation
catalogue-version 4.0
@@ -110509,7 +109339,6 @@ catalogue-contact-bugs https://bitbucket.org/nxg/feyn/issues
catalogue-contact-home http://purl.org/nxg/dist/feyn
catalogue-contact-repository https://bitbucket.org/nxg/feyn/
catalogue-ctan /fonts/feyn
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license bsd
catalogue-topics graphics-use physics font font-mf
catalogue-version 0.4.1
@@ -110561,7 +109390,6 @@ runfiles size=40
RELOC/tex/latex/feynmf/feynmf.sty
RELOC/tex/latex/feynmf/feynmp.sty
catalogue-ctan /macros/latex/contrib/feynmf
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license gpl
catalogue-topics graphics-use mp-use physics
catalogue-version 1.08
@@ -110590,7 +109418,6 @@ srcfiles size=4
runfiles size=1
RELOC/tex/latex/feynmp-auto/feynmp-auto.sty
catalogue-ctan /macros/latex/contrib/feynmp-auto
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics graphics-inline
catalogue-version 1.1
@@ -110628,7 +109455,6 @@ docfiles size=729
runfiles size=4
RELOC/tex/latex/ffslides/ffslides.cls
catalogue-ctan /macros/latex/contrib/ffslides
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics presentation
@@ -110669,7 +109495,6 @@ runfiles size=30
RELOC/tex/latex/fge/fge.sty
catalogue-contact-home http://soliton.vm.bytemark.co.uk/pub/jjg/en/code/fge.html
catalogue-ctan /fonts/fge
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license lppl
catalogue-topics font font-mf font-type1 maths
catalogue-version 1.25
@@ -110702,7 +109527,6 @@ runfiles size=12
RELOC/tex/latex/fgruler/fgruler.sty
catalogue-also ruler
catalogue-ctan /macros/latex/contrib/fgruler
-catalogue-date 2018-01-07 12:02:30 +0100
catalogue-license lppl1.3
catalogue-topics misc-support
catalogue-version 1.0
@@ -110815,7 +109639,6 @@ catalogue-contact-home https://www.fi.muni.cz/lemma/projekty/fithesis3/#fibeamer
catalogue-contact-repository https://github.com/Witiko/fibeamer
catalogue-contact-support https://github.com/Witiko/fibeamer/issues
catalogue-ctan /macros/latex/contrib/beamer-contrib/themes/fibeamer
-catalogue-date 2017-05-07 13:42:49 +0200
catalogue-license lppl1.3
catalogue-topics dissertation presentation
catalogue-version 1.1.7
@@ -110866,7 +109689,6 @@ srcfiles size=29
RELOC/source/latex/fifinddo-info/makevars/texvars.sh
catalogue-contact-support http://www.webdesign-bu.de/uwe_lueck/contact.html
catalogue-ctan /info/fifinddo-info
-catalogue-date 2017-05-06 08:05:02 +0200
catalogue-license lppl1.3
catalogue-topics documentation cvt-html
catalogue-version 1.1b
@@ -110900,7 +109722,6 @@ runfiles size=2
RELOC/tex/latex/fifo-stack/fifo-stack.sty
catalogue-contact-repository https://github.com/diSimplex/latexFifoStack
catalogue-ctan /macros/latex/contrib/fifo-stack
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl
catalogue-topics macro-supp
catalogue-version 1.0
@@ -110930,7 +109751,6 @@ docfiles size=28
runfiles size=2
texmf-dist/scripts/fig4latex/fig4latex
catalogue-ctan /graphics/fig4latex
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl3
catalogue-topics graphics-incl
catalogue-version 0.2
@@ -111111,7 +109931,6 @@ runfiles size=14
RELOC/fonts/type1/public/figbas/cmssj.pfb
RELOC/fonts/type1/public/figbas/plrj.pfb
catalogue-ctan /fonts/figbas
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics music
catalogue-version 1.0.3
@@ -111145,7 +109964,6 @@ runfiles size=5
RELOC/bibtex/bst/figbib/figbib1.bst
RELOC/tex/latex/figbib/figbib.sty
catalogue-ctan /macros/latex/contrib/figbib
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics bibtex-util
@@ -111170,7 +109988,6 @@ docfiles size=1
runfiles size=1
RELOC/tex/plain/figflow/figflow.tex
catalogue-ctan /macros/plain/contrib/figflow
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license other-free
catalogue-topics text-flow
@@ -111201,7 +110018,6 @@ docfiles size=39
runfiles size=1
RELOC/tex/latex/figsize/figsize.sty
catalogue-ctan /macros/latex/contrib/figsize
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics graphics
catalogue-version 0.1
@@ -111241,7 +110057,6 @@ srcfiles size=5
runfiles size=1
RELOC/tex/latex/filecontents/filecontents.sty
catalogue-ctan /macros/latex/contrib/filecontents
-catalogue-date 2019-09-21 10:56:20 +0200
catalogue-license lppl1.3c
catalogue-topics file-mgmt
catalogue-version 1.5
@@ -111285,7 +110100,6 @@ runfiles size=2
RELOC/tex/latex/filecontentsdef/filecontentsdef.sty
catalogue-also filecontents
catalogue-ctan /macros/latex/contrib/filecontentsdef
-catalogue-date 2019-09-29 13:17:23 +0200
catalogue-license lppl1.3
catalogue-topics file-mgmt
catalogue-version 1.5
@@ -111319,7 +110133,6 @@ runfiles size=6
RELOC/tex/latex/filedate/filedate.sty
catalogue-contact-support http://www.webdesign-bu.de/uwe_lueck/contact.html
catalogue-ctan /macros/latex/contrib/filedate
-catalogue-date 2017-05-06 08:10:03 +0200
catalogue-license lppl
catalogue-topics file-mgmt date-time
@@ -111355,7 +110168,6 @@ runfiles size=10
RELOC/tex/latex/filehook/pgf-filehook.sty
catalogue-contact-bugs https://bitbucket.org/martin_scharrer/filehook/issues
catalogue-ctan /macros/latex/contrib/filehook
-catalogue-date 2019-10-03 18:08:10 +0200
catalogue-license lppl1.3
catalogue-topics macro-supp
catalogue-version 0.6
@@ -111394,7 +110206,6 @@ runfiles size=7
RELOC/tex/latex/fileinfo/readprov.sty
catalogue-contact-support http://www.webdesign-bu.de/uwe_lueck/contact.html
catalogue-ctan /macros/latex/contrib/fileinfo
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license lppl1.3
catalogue-topics doc-mgmt
catalogue-version 0.81a
@@ -111427,7 +110238,6 @@ runfiles size=8
RELOC/tex/latex/filemod/filemod.sty
catalogue-also stampinclude
catalogue-ctan /macros/latex/contrib/filemod
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics doc-tool
catalogue-version 1.2
@@ -111443,7 +110253,6 @@ containerchecksum 14f08cdc92a2d6d511c112c480efb0112d45c199023e89c9314740c2b9b835
runfiles size=7
RELOC/bibtex/bst/finbib/finplain.bst
catalogue-ctan /biblio/bibtex/contrib/misc/finplain.bst
-catalogue-date 2016-06-18 16:48:54 +0200
catalogue-license other-free
catalogue-topics bibtex-sty finnish
@@ -111470,7 +110279,6 @@ docfiles size=17
runfiles size=3
texmf-dist/scripts/findhyph/findhyph
catalogue-ctan /support/findhyph
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl2
catalogue-topics hyph-gen
catalogue-version 3.4
@@ -111652,7 +110460,6 @@ runfiles size=2
RELOC/tex/latex/fink/fink.sty
catalogue-also currfile
catalogue-ctan /macros/latex/contrib/fink
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license lppl
catalogue-topics doc-tool
catalogue-version 2.2.1
@@ -111686,7 +110493,6 @@ runfiles size=2
RELOC/tex/latex/finstrut/finstrut.sty
catalogue-contact-support http://www.webdesign-bu.de/uwe_lueck/contact.html
catalogue-ctan /macros/latex/contrib/finstrut
-catalogue-date 2017-05-06 08:18:57 +0200
catalogue-license lppl1.3
catalogue-topics macro-supp
catalogue-version 0.5
@@ -113885,7 +112691,6 @@ runfiles size=14277
RELOC/tex/latex/fira/TS1FiraSans-TOsF.fd
catalogue-contact-repository https://github.com/buildingfirefoxos/Building-Blocks/tree/gh-pages/fonts/FiraSans
catalogue-ctan /fonts/fira
-catalogue-date 2019-10-11 06:57:12 +0200
catalogue-license ofllppl
catalogue-topics font font-body font-sans font-mono font-otf font-type1 font-proportional font-supp font-t1enc
catalogue-version 4.3
@@ -113918,7 +112723,6 @@ catalogue-contact-bugs https://github.com/firamath/firamath/issues
catalogue-contact-home https://firamath.github.io/
catalogue-contact-repository https://github.com/firamath/firamath
catalogue-ctan /fonts/firamath
-catalogue-date 2019-06-06 05:35:52 +0200
catalogue-license ofl
catalogue-topics font font-otf font-sans font-maths
catalogue-version 0.3.2
@@ -113943,7 +112747,6 @@ runfiles size=1
RELOC/tex/latex/firamath-otf/firamath-otf.sty
catalogue-also firamath
catalogue-ctan /fonts/firamath-otf
-catalogue-date 2019-04-03 15:40:23 +0200
catalogue-license lppl1.3
catalogue-topics font-use font-otf font-sans font-maths
catalogue-version 0.02a
@@ -113976,7 +112779,6 @@ docfiles size=157
RELOC/doc/latex/first-latex-doc/latex-second-d.tex
RELOC/doc/latex/first-latex-doc/latex-second-e.tex
catalogue-ctan /info/first-latex-doc
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics tut-latex
@@ -114015,7 +112817,6 @@ catalogue-contact-bugs https://github.com/borisveytsman/fitbox/issues
catalogue-contact-home https://github.com/borisveytsman/fitbox
catalogue-contact-repository https://github.com/borisveytsman/fitbox/
catalogue-ctan /macros/latex/contrib/fitbox
-catalogue-date 2019-02-21 19:23:28 +0100
catalogue-license lppl1.3
catalogue-topics boxing
catalogue-version 1.02
@@ -114177,7 +112978,6 @@ catalogue-contact-development https://github.com/Witiko/fithesis3/pulls
catalogue-contact-home https://www.fi.muni.cz/lemma/projekty/fithesis3/#fithesis
catalogue-contact-repository https://github.com/Witiko/fithesis3
catalogue-ctan /macros/latex/contrib/fithesis
-catalogue-date 2018-04-09 00:17:56 +0200
catalogue-license lppl1.3
catalogue-topics dissertation class
catalogue-version 0.3.50
@@ -114210,7 +113010,6 @@ srcfiles size=6
runfiles size=2
RELOC/tex/latex/fix2col/fix2col.sty
catalogue-ctan /macros/latex/contrib/fix2col
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics typesetting macro-supp
catalogue-version 0.04
@@ -114243,7 +113042,6 @@ srcfiles size=3
runfiles size=1
RELOC/tex/latex/fixcmex/fixcmex.sty
catalogue-ctan /macros/latex/contrib/fixcmex
-catalogue-date 2019-08-05 17:04:19 +0200
catalogue-license lppl1.3c
catalogue-topics font-supp-maths
catalogue-version 1.1
@@ -114272,7 +113070,6 @@ catalogue-also savefnmark
catalogue-contact-repository https://github.com/rf-latex/fixfoot
catalogue-contact-support https://github.com/rf-latex/fixfoot/issues
catalogue-ctan /macros/latex/contrib/fixfoot
-catalogue-date 2018-09-15 15:36:28 +0200
catalogue-license lppl
catalogue-topics footnote
catalogue-version 0.3a
@@ -114297,7 +113094,6 @@ runfiles size=3
catalogue-also bxjaprnind
catalogue-contact-repository https://github.com/Man-Ting-Fang/fixjfm
catalogue-ctan /macros/generic/fixjfm
-catalogue-date 2018-03-24 18:21:02 +0100
catalogue-license knuth
catalogue-topics macro-supp chinese japanese
catalogue-version 0.8
@@ -114327,7 +113123,6 @@ runfiles size=3
RELOC/makeindex/fixlatvian/lv.ist
RELOC/tex/xelatex/fixlatvian/fixlatvian.sty
catalogue-ctan /macros/xetex/latex/fixlatvian
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics multilingual-addon
catalogue-version 1a
@@ -114357,7 +113152,6 @@ srcfiles size=5
runfiles size=1
RELOC/tex/latex/fixltxhyph/fixltxhyph.sty
catalogue-ctan /macros/latex/contrib/fixltxhyph
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics catalan french italian
catalogue-version 0.4
@@ -114420,7 +113214,6 @@ runfiles size=24
catalogue-contact-home https://www.lrde.epita.fr/~didier/software/latex.php#fixme
catalogue-contact-repository https://github.com/didierverna/fixme
catalogue-ctan /macros/latex/contrib/fixme
-catalogue-date 2019-01-03 18:29:08 +0100
catalogue-license lppl1.3
catalogue-topics editorial
catalogue-version 4.5
@@ -114450,7 +113243,6 @@ runfiles size=1
RELOC/tex/latex/fixmetodonotes/fixmetodonotes.sty
catalogue-also fixme todonotes
catalogue-ctan /macros/latex/contrib/fixmetodonotes
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics notes editorial
catalogue-version 0.2.2
@@ -114469,7 +113261,6 @@ containerchecksum 733995ec82df92bea5a674fc25a3a6af2102739c3c73eeed7c9f40cd54bc4c
runfiles size=1
RELOC/tex/plain/fixpdfmag/fixpdfmag.tex
catalogue-ctan /macros/plain/contrib/misc/fixpdfmag.tex
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics geometry
@@ -114498,7 +113289,6 @@ runfiles size=23
catalogue-contact-bugs https://github.com/jemmybutton/fiziko/issues
catalogue-contact-repository https://github.com/jemmybutton/fiziko
catalogue-ctan /graphics/metapost/contrib/macros/fiziko
-catalogue-date 2019-03-08 16:31:18 +0100
catalogue-license gpl3+cc-by-sa-4
catalogue-topics physics graphics graphics-mpost
catalogue-version 0.1.3
@@ -114524,7 +113314,6 @@ docfiles size=125
runfiles size=2
RELOC/tex/latex/fjodor/fjodor.sty
catalogue-ctan /macros/latex/contrib/fjodor
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics geometry
@@ -114554,7 +113343,6 @@ srcfiles size=11
runfiles size=2
RELOC/tex/latex/flabels/flabels.sty
catalogue-ctan /macros/latex/contrib/flabels
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license lppl
catalogue-topics labels
catalogue-version 1.0
@@ -114584,7 +113372,6 @@ runfiles size=2
RELOC/tex/latex/flacards/flacards.cls
catalogue-also flashcard flashcards
catalogue-ctan /macros/latex/contrib/flacards
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics card-flash class
catalogue-version 0.1.1b
@@ -114614,7 +113401,6 @@ srcfiles size=14
runfiles size=2
RELOC/tex/latex/flagderiv/flagderiv.sty
catalogue-ctan /macros/latex/contrib/flagderiv
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics maths
catalogue-version 0.10
@@ -114649,7 +113435,6 @@ runfiles size=6
RELOC/tex/latex/flashcards/flashcards.cls
catalogue-also flashcard ecards
catalogue-ctan /macros/latex/contrib/flashcards
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics card-flash
catalogue-version 1.0.1
@@ -114686,7 +113471,6 @@ runfiles size=12
RELOC/tex/latex/flashmovie/player_flv_maxi.swf
catalogue-also movie15
catalogue-ctan /macros/latex/contrib/flashmovie
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics graphics-motion
catalogue-version 0.4
@@ -114852,7 +113636,6 @@ docfiles size=365
runfiles size=2
RELOC/tex/latex/flipbook/flipbook.sty
catalogue-ctan /macros/latex/contrib/flipbook
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics graphics-motion graphics-use
catalogue-version 0.2
@@ -114882,7 +113665,6 @@ srcfiles size=3
runfiles size=1
RELOC/tex/latex/flippdf/flippdf.sty
catalogue-ctan /macros/latex/contrib/flippdf
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics book-pub
catalogue-version 1.0
@@ -114915,7 +113697,6 @@ runfiles size=2
RELOC/tex/latex/float/float.sty
catalogue-also rotfloat
catalogue-ctan /macros/latex/contrib/float
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics float
catalogue-version 1.3d
@@ -114948,7 +113729,6 @@ runfiles size=3
RELOC/tex/latex/floatflt/floatflt.sty
catalogue-also wrapfig
catalogue-ctan /macros/latex/contrib/floatflt
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics text-flow
catalogue-version 1.31
@@ -115001,7 +113781,6 @@ runfiles size=22
RELOC/tex/latex/floatrow/fr-subfig.sty
RELOC/tex/latex/floatrow/listpen.sty
catalogue-ctan /macros/latex/contrib/floatrow
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics float
catalogue-version 0.3b
@@ -115031,7 +113810,6 @@ runfiles size=3
RELOC/tex/latex/flowchart/flowchart.sty
catalogue-also nassflow struktex
catalogue-ctan /graphics/pgf/contrib/flowchart
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics diagram-flow pgf-tikz
catalogue-version 3.3
@@ -115096,7 +113874,6 @@ runfiles size=58
RELOC/scripts/flowfram/flowfram.perl
RELOC/tex/latex/flowfram/flowfram.sty
catalogue-ctan /macros/latex/contrib/flowfram
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics layout poster magazine
catalogue-version 1.17
@@ -115127,7 +113904,6 @@ runfiles size=7
RELOC/tex/generic/fltpoint/fltpoint.tex
catalogue-also fp
catalogue-ctan /macros/latex/contrib/fltpoint
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license other-free
catalogue-topics arithmetic calculation
catalogue-version 1.1b
@@ -115153,7 +113929,6 @@ srcfiles size=8
runfiles size=2
RELOC/tex/latex/fmp/fmp.sty
catalogue-ctan /macros/latex/contrib/fmp
-catalogue-date 2016-06-18 16:48:54 +0200
catalogue-license lppl
catalogue-topics graphics-inline
@@ -115211,7 +113986,6 @@ runfiles size=71
catalogue-contact-bugs https://github.com/nlct/fmtcount/issues
catalogue-contact-repository https://github.com/nlct/fmtcount
catalogue-ctan /macros/latex/contrib/fmtcount
-catalogue-date 2017-12-27 23:42:13 +0100
catalogue-license lppl1.3
catalogue-topics numbers
catalogue-version 3.05
@@ -115234,7 +114008,6 @@ runfiles size=1
RELOC/tex/latex/fn2end/fn2end.sty
catalogue-also endnotes
catalogue-ctan /macros/latex/contrib/fn2end
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics footnote endnote
catalogue-version 1.1
@@ -115266,7 +114039,6 @@ srcfiles size=5
runfiles size=2
RELOC/tex/latex/fnbreak/fnbreak.sty
catalogue-ctan /macros/latex/contrib/fnbreak
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics footnote
catalogue-version 1.30
@@ -115307,7 +114079,6 @@ runfiles size=5
RELOC/tex/latex/fncychap/fncychap.sty
catalogue-also memoirchapterstyles
catalogue-ctan /macros/latex/contrib/fncychap
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics headings
catalogue-version 1.34
@@ -115338,7 +114109,6 @@ runfiles size=1
catalogue-contact-repository https://github.com/rf-latex/fncylab
catalogue-contact-support https://github.com/rf-latex/fncylab/issues
catalogue-ctan /macros/latex/contrib/fncylab
-catalogue-date 2019-09-13 22:09:34 +0200
catalogue-license lppl
catalogue-topics label-ref
catalogue-version 1.1
@@ -115364,7 +114134,6 @@ docfiles size=45
runfiles size=2
RELOC/tex/latex/fnpara/fnpara.sty
catalogue-ctan /macros/latex/contrib/fnpara
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics footnote
@@ -115389,7 +114158,6 @@ runfiles size=11
RELOC/tex/latex/fnpct/fnpct.sty
catalogue-contact-repository https://bitbucket.org/cgnieder/fnpct/
catalogue-ctan /macros/latex/contrib/fnpct
-catalogue-date 2019-10-05 15:57:25 +0200
catalogue-license lppl1.3
catalogue-topics footnote
catalogue-version 0.5
@@ -115418,7 +114186,6 @@ runfiles size=2
catalogue-contact-home https://bitbucket.org/Zemaster/fnspe-latex-package
catalogue-contact-repository https://bitbucket.org/Zemaster/fnspe-latex-package
catalogue-ctan /macros/latex/contrib/fnspe
-catalogue-date 2017-09-20 10:22:38 +0200
catalogue-license lppl
catalogue-topics dissertation
catalogue-version 1.2a
@@ -115446,7 +114213,6 @@ docfiles size=57
runfiles size=4
RELOC/tex/generic/fntproof/fntproof.tex
catalogue-ctan /macros/generic/fntproof
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics font-devel
@@ -115479,7 +114245,6 @@ runfiles size=1
RELOC/tex/latex/fnumprint/fnumprint.sty
catalogue-contact-repository https://github.com/ypid/latex-packages/tree/master/fnumprint
catalogue-ctan /macros/latex/contrib/fnumprint
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl1.3
catalogue-topics numbers
catalogue-version 1.1a
@@ -115510,7 +114275,6 @@ runfiles size=8
RELOC/tex/latex/foekfont/ot1foekfont.fd
RELOC/tex/latex/foekfont/t1foekfont.fd
catalogue-ctan /fonts/foekfont
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics font font-novelty font-type1
@@ -115543,7 +114307,6 @@ runfiles size=4
RELOC/tex/latex/foilhtml/foilhtml.sty
catalogue-contact-home http://users.lk.net/~borisv/latex.html
catalogue-ctan /macros/latex/contrib/foilhtml
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl
catalogue-topics presentation
catalogue-version 1.2
@@ -115588,7 +114351,6 @@ runfiles size=37
RELOC/tex/latex/fonetika/fonetika.sty
RELOC/tex/latex/fonetika/t1fonetika.fd
catalogue-ctan /fonts/fonetika
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license other-free
catalogue-topics font font-specialist font-sans phonetic
@@ -115665,7 +114427,6 @@ runfiles size=135
RELOC/tex/plain/font-change/font_times.tex
RELOC/tex/plain/font-change/font_utopia.tex
catalogue-ctan /macros/plain/contrib/font-change
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license other-free
catalogue-topics font-supp plain-ext
catalogue-version 2015.2
@@ -115697,7 +114458,6 @@ docfiles size=158
runfiles size=13
RELOC/tex/xetex/font-change-xetex/font-change-xetex.tex
catalogue-ctan /macros/xetex/plain/font-change-xetex
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license other-free
catalogue-topics font-supp plain-ext xetex
catalogue-version 2016.1
@@ -115738,7 +114498,6 @@ runfiles size=120
RELOC/tex/latex/fontawesome/ufontawesometwo.fd
catalogue-contact-repository https://github.com/xdanaux/fontawesome-latex
catalogue-ctan /fonts/fontawesome
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl1.3
catalogue-topics font font-supp-symbol font-symbol font-otf font-type1
catalogue-version 4.6.3.2
@@ -115802,7 +114561,6 @@ runfiles size=308
RELOC/tex/latex/fontawesome5/ufontawesomefree3.fd
catalogue-also fontawesome
catalogue-ctan /fonts/fontawesome5
-catalogue-date 2019-06-07 15:05:50 +0200
catalogue-license ofllppl1.3c
catalogue-topics font font-supp-symbol font-symbol font-otf font-type1
catalogue-version 5.9.0
@@ -115833,7 +114591,6 @@ srcfiles size=12
runfiles size=4
RELOC/tex/latex/fontaxes/fontaxes.sty
catalogue-ctan /macros/latex/contrib/fontaxes
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics font-use
catalogue-version 1.0d
@@ -115862,7 +114619,6 @@ srcfiles size=3
runfiles size=1
RELOC/tex/xelatex/fontbook/fontbook.sty
catalogue-ctan /macros/xetex/latex/fontbook
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics font-devel
catalogue-version 0.2
@@ -115901,7 +114657,6 @@ runfiles size=21
RELOC/tex/plain/fontch/fontch_doc.tex
catalogue-also font-selection ofs plnfss
catalogue-ctan /macros/plain/contrib/fontch
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics font-sel plain-ext
catalogue-version 2.2
@@ -116090,7 +114845,6 @@ runfiles size=255
texmf-dist/tex/fontinst/smblmtx/unsetnum.mtx
texmf-dist/tex/latex/fontinst/fontdoc.sty
catalogue-ctan /fonts/utilities/fontinst
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics font-cvt
catalogue-version 1.933
@@ -116255,7 +115009,6 @@ runfiles size=21
catalogue-also fontawesome
catalogue-contact-repository https://github.com/kdungs/latex-fontmfizz/
catalogue-ctan /fonts/fontmfizz
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license mit
catalogue-topics font font-supp-symbol font-symbol font-ttf
@@ -116343,7 +115096,6 @@ runfiles size=377
RELOC/fonts/map/fontname/width.map
RELOC/fonts/map/fontname/yandy.map
catalogue-ctan /info/fontname
-catalogue-date 2016-11-04 04:57:17 +0100
catalogue-license gpl
catalogue-topics font-doc
@@ -116393,7 +115145,6 @@ runfiles size=51
texmf-dist/scripts/fontools/ot2kpx
catalogue-alias autoinst
catalogue-ctan /fonts/utilities/fontools
-catalogue-date 2019-11-26 22:25:20 +0100
catalogue-license gpl2
catalogue-topics font-devel
@@ -116609,7 +115360,6 @@ runfiles size=1049
catalogue-also churchslavonic
catalogue-contact-repository https://github.com/typiconman/fonts-cu/
catalogue-ctan /fonts/fonts-churchslavonic
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license ofl
catalogue-topics font font-otf churchslavonic
catalogue-version 1.1
@@ -117122,7 +115872,6 @@ catalogue-contact-home http://linux.thai.net/projects/fonts-tlwg
catalogue-contact-repository https://github.com/tlwg/fonts-tlwg
catalogue-contact-support https://groups.google.com/forum/#!forum/thai-linux-foss-devel
catalogue-ctan /fonts/thai/fonts-tlwg
-catalogue-date 2018-11-05 07:54:33 +0100
catalogue-license gpl2+lppl1.3other-free
catalogue-topics font font-thai thai
catalogue-version 0.7.1
@@ -117202,7 +115951,6 @@ runfiles size=80
catalogue-contact-bugs https://github.com/wspr/fontspec/issues
catalogue-contact-repository https://github.com/wspr/fontspec/
catalogue-ctan /macros/latex/contrib/fontspec
-catalogue-date 2019-10-19 16:25:50 +0200
catalogue-license lppl1.3c
catalogue-topics font-sel luatex xetex
catalogue-version 2.7d
@@ -117237,7 +115985,6 @@ runfiles size=4
RELOC/tex/latex/fonttable/fonttable.sty
catalogue-contact-repository https://github.com/wspr/herries-press
catalogue-ctan /macros/latex/contrib/fonttable
-catalogue-date 2017-07-14 12:50:17 +0200
catalogue-license lppl1.3c
catalogue-topics font-devel
catalogue-version 1.6c
@@ -117272,7 +116019,6 @@ catalogue-contact-bugs http://lists.tug.org/tex-k
catalogue-contact-repository http://tug.org/svn/texlive/trunk/Build/source/texk/web2c/
catalogue-contact-support http://lists.tug.org/tex-k
catalogue-ctan /systems/knuth/dist/etc
-catalogue-date 2018-12-31 06:11:12 +0100
catalogue-license knuth
catalogue-topics font-supp
@@ -117490,7 +116236,6 @@ docfiles size=77
runfiles size=18
RELOC/tex/xelatex/fontwrap/fontwrap.sty
catalogue-ctan /macros/xetex/latex/fontwrap
-catalogue-date 2016-10-08 11:40:26 +0200
catalogue-license gpl
catalogue-topics font-sel font-supp unicode
@@ -117525,7 +116270,6 @@ runfiles size=7
RELOC/tex/latex/footbib/footbib.sty
catalogue-also jurabib
catalogue-ctan /macros/latex/contrib/footbib
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics cite-foot
catalogue-version 2.0.7
@@ -117567,7 +116311,6 @@ runfiles size=7
catalogue-also endnotes ftnright footmisx
catalogue-contact-bugs https://github.com/FrankMittelbach/fmitex/issues
catalogue-ctan /macros/latex/contrib/footmisc
-catalogue-date 2018-09-13 17:02:53 +0200
catalogue-license lppl1.3
catalogue-topics footnote
catalogue-version 5.5b
@@ -117609,7 +116352,6 @@ runfiles size=7
RELOC/tex/latex/footmisx/footmisx.sty
catalogue-also endnotes ftnright
catalogue-ctan /macros/latex/contrib/footmisx
-catalogue-date 2016-12-06 05:11:09 +0100
catalogue-license lppl1.3
catalogue-topics footnote
catalogue-version 20161201
@@ -117633,7 +116375,6 @@ docfiles size=32
runfiles size=1
RELOC/tex/latex/footnotebackref/footnotebackref.sty
catalogue-ctan /macros/latex/contrib/footnotebackref
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics footnote hyper
catalogue-version 1.0
@@ -117662,7 +116403,6 @@ runfiles size=3
RELOC/tex/latex/footnotehyper/footnotehyper.sty
catalogue-also footnote
catalogue-ctan /macros/latex/contrib/footnotehyper
-catalogue-date 2019-11-07 19:27:08 +0100
catalogue-license lppl1.3
catalogue-topics footnote macro-supp
catalogue-version 1.1a
@@ -117698,7 +116438,6 @@ runfiles size=2
RELOC/tex/latex/footnoterange/footnoterange.sty
catalogue-also footmisc
catalogue-ctan /macros/latex/contrib/footnoterange
-catalogue-date 2019-11-24 20:28:15 +0100
catalogue-license lppl1.3c
catalogue-topics footnote label-ref
catalogue-version 1.0c
@@ -117742,7 +116481,6 @@ runfiles size=5
RELOC/tex/latex/footnpag/footnpag.sty
catalogue-also footmisc
catalogue-ctan /macros/latex/contrib/footnpag
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics footnote
@@ -117779,7 +116517,6 @@ srcfiles size=19
runfiles size=5
RELOC/tex/latex/forarray/forarray.sty
catalogue-ctan /macros/latex/contrib/forarray
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics macro-supp
catalogue-version 1.01
@@ -117806,7 +116543,6 @@ srcfiles size=6
runfiles size=2
RELOC/tex/latex/foreign/foreign.sty
catalogue-ctan /macros/latex/contrib/foreign
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics typesetting
catalogue-version 2.7
@@ -117857,7 +116593,6 @@ runfiles size=100
catalogue-also forest-quickstart
catalogue-contact-repository https://github.com/sasozivanovic/forest
catalogue-ctan /graphics/pgf/contrib/forest
-catalogue-date 2017-07-14 14:58:06 +0200
catalogue-license lppl1.3
catalogue-topics tree pgf-tikz linguistic
catalogue-version 2.1.5
@@ -117881,7 +116616,6 @@ docfiles size=127
RELOC/doc/latex/forest-quickstart/README details="Readme"
catalogue-also forest
catalogue-ctan /info/forest-quickstart
-catalogue-date 2016-11-15 05:42:32 +0100
catalogue-license fdl
catalogue-topics linguistic docu-pkg
@@ -117907,7 +116641,6 @@ srcfiles size=3
runfiles size=1
RELOC/tex/latex/forloop/forloop.sty
catalogue-ctan /macros/latex/contrib/forloop
-catalogue-date 2018-10-09 09:13:05 +0200
catalogue-license lgpl
catalogue-topics macro-iterate macro-supp
catalogue-version 3.0
@@ -118028,7 +116761,6 @@ srcfiles size=714
catalogue-contact-home https://vigou3.github.io/formation-latex-ul
catalogue-contact-repository https://gitlab.com/vigou3/formation-latex-ul
catalogue-ctan /info/formation-latex-ul
-catalogue-date 2019-03-02 08:51:04 +0100
catalogue-license cc-by-4
catalogue-topics course-material tut-latex french-doc
catalogue-version 2019.03
@@ -118053,7 +116785,6 @@ runfiles size=17
RELOC/tex/generic/formlett/formlett.sty
catalogue-also akletter dinbrief envlab
catalogue-ctan /macros/generic/formlett
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics letter
catalogue-version 2.3
@@ -118096,7 +116827,6 @@ runfiles size=2
RELOC/tex/latex/forms16be/forms16be.sty
RELOC/tex/latex/forms16be/uni4basic-latin.def
catalogue-ctan /macros/latex/contrib/forms16be
-catalogue-date 2019-06-03 19:37:03 +0200
catalogue-license lppl1.2
catalogue-topics form-fillin pdf-feat adobe-distiller
catalogue-version 1.3
@@ -118125,7 +116855,6 @@ srcfiles size=9
runfiles size=3
RELOC/tex/latex/formular/formular.sty
catalogue-ctan /macros/latex/contrib/formular
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics form-fillin
catalogue-version 1.0a
@@ -118219,7 +116948,6 @@ srcfiles size=4
runfiles size=1
RELOC/tex/latex/fouridx/fouridx.sty
catalogue-ctan /macros/latex/contrib/fouridx
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license lppl
catalogue-topics subsup-pos maths
catalogue-version 2.00
@@ -118520,7 +117248,6 @@ runfiles size=491
RELOC/tex/latex/fourier/ufuts.fd
catalogue-also utopia
catalogue-ctan /fonts/fourier-GUT
-catalogue-date 2019-12-01 16:23:12 +0100
catalogue-license lppl
catalogue-topics font font-maths font-type1
catalogue-version 2.0
@@ -118582,7 +117309,6 @@ runfiles size=23
RELOC/tex/latex/fouriernc/t1fnc.fd
RELOC/tex/latex/fouriernc/ts1fnc.fd
catalogue-ctan /fonts/fouriernc
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics font font-maths font-virtual
@@ -118618,7 +117344,6 @@ runfiles size=37
RELOC/tex/plain/fp/fp.tex
catalogue-also fltpoint
catalogue-ctan /macros/latex/contrib/fp
-catalogue-date 2019-01-14 22:49:01 +0100
catalogue-license lppl
catalogue-topics arithmetic calculation
catalogue-version 2.1d
@@ -118684,7 +117409,6 @@ runfiles size=168
catalogue-contact-bugs https://github.com/rstub/fpl/issues
catalogue-contact-repository https://github.com/rstub/fpl
catalogue-ctan /fonts/fpl
-catalogue-date 2019-01-04 17:37:23 +0100
catalogue-license gpl2lppl
catalogue-topics font font-type1 font-sfd font-serif font-body font-proportional
catalogue-version 1.003
@@ -118721,7 +117445,6 @@ docfiles size=75
runfiles size=5
texmf-dist/scripts/fragmaster/fragmaster.pl
catalogue-ctan /support/fragmaster
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics graphics-prep
catalogue-version 1.6
@@ -118895,7 +117618,6 @@ runfiles size=4
catalogue-contact-repository https://github.com/rf-latex/fragments
catalogue-contact-support https://github.com/rf-latex/fragments/issues
catalogue-ctan /macros/latex/contrib/fragments
-catalogue-date 2018-09-13 20:21:43 +0200
catalogue-license collection
catalogue-topics collection
@@ -118922,7 +117644,6 @@ runfiles size=2
RELOC/tex/generic/frame/frame.tex
catalogue-also boxit
catalogue-ctan /macros/generic/frame
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics boxing decoration
catalogue-version 1.0
@@ -118951,7 +117672,6 @@ runfiles size=6
RELOC/tex/latex/framed/framed.sty
catalogue-also mdframed
catalogue-ctan /macros/latex/contrib/framed
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license other-free
catalogue-topics boxing box-breaking decoration
catalogue-version 0.96
@@ -118977,7 +117697,6 @@ runfiles size=19
RELOC/bibtex/bst/francais-bst/francaissc.bst
RELOC/tex/latex/francais-bst/francaisbst.tex
catalogue-ctan /biblio/bibtex/contrib/francais-bst
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics bibtex-sty french
catalogue-version 1.1
@@ -119092,7 +117811,6 @@ runfiles size=191
RELOC/tex/latex/frankenstein/titles.sty
catalogue-also frankenstein-unsupported
catalogue-ctan /macros/latex/contrib/frankenstein
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license collection
catalogue-topics collection
@@ -119189,7 +117907,6 @@ runfiles size=548
RELOC/tex/latex/frcursive/t1frc.fd
catalogue-contact-repository https://framagit.org/manu/french-cursive
catalogue-ctan /fonts/frcursive
-catalogue-date 2018-05-11 17:20:36 +0200
catalogue-license lppl1.2
catalogue-topics font font-calligraphic font-mf font-type1
@@ -119214,7 +117931,6 @@ docfiles size=89
runfiles size=22
RELOC/fonts/opentype/public/frederika2016/Frederika2016.otf
catalogue-ctan /fonts/frederika2016
-catalogue-date 2016-09-28 05:06:55 +0200
catalogue-license ofl
catalogue-topics font font-otf
catalogue-version 1.000 2016 initial release
@@ -119247,7 +117963,6 @@ runfiles size=17
RELOC/tex/latex/frege/frege.sty
catalogue-also bguq begriff grundgesetze
catalogue-ctan /macros/latex/contrib/frege
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics maths logic
catalogue-version 1.3
@@ -119278,7 +117993,6 @@ srcfiles size=6
runfiles size=1
RELOC/tex/latex/frenchmath/frenchmath.sty
catalogue-ctan /macros/latex/contrib/frenchmath
-catalogue-date 2019-05-22 19:53:08 +0200
catalogue-license lppl1.3
catalogue-topics maths french
catalogue-version 1.4
@@ -119301,7 +118015,6 @@ docfiles size=1
runfiles size=1
RELOC/tex/latex/frletter/frletter.cls
catalogue-ctan /macros/latex/contrib/frletter
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics letter class
@@ -119348,7 +118061,6 @@ runfiles size=5
RELOC/tex/latex/frontespizio/frontespizio.sty
catalogue-also toptesi
catalogue-ctan /macros/latex/contrib/frontespizio
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics dissertation typesetting
catalogue-version 1.4a
@@ -119394,7 +118106,6 @@ docfiles size=1704
runfiles size=7
RELOC/tex/latex/ftc-notebook/ftc-notebook.sty
catalogue-ctan /macros/latex/contrib/ftc-notebook
-catalogue-date 2019-02-17 09:57:58 +0100
catalogue-license lppl1.3
catalogue-topics memorandum
catalogue-version 1.1
@@ -119419,7 +118130,6 @@ docfiles size=55
runfiles size=1
RELOC/tex/latex/ftcap/ftcap.sty
catalogue-ctan /macros/latex/contrib/ftcap
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics caption table
catalogue-version 1.4
@@ -119450,7 +118160,6 @@ catalogue-also footnote footmisc
catalogue-contact-bugs https://github.com/bidi-tex/ftnxtra/issues
catalogue-contact-repository https://github.com/bidi-tex/ftnxtra
catalogue-ctan /macros/latex/contrib/ftnxtra
-catalogue-date 2018-11-28 19:25:02 +0100
catalogue-license lppl
catalogue-topics footnote
catalogue-version 0.1
@@ -119478,7 +118187,6 @@ srcfiles size=4
runfiles size=1
RELOC/tex/latex/fullblck/fullblck.sty
catalogue-ctan /macros/latex/contrib/fullblck
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics letter
catalogue-version 1.03
@@ -119511,7 +118219,6 @@ srcfiles size=4
runfiles size=1
RELOC/tex/latex/fullminipage/fullminipage.sty
catalogue-ctan /macros/latex/contrib/fullminipage
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl3
catalogue-topics layout
catalogue-version 0.1.1
@@ -119539,7 +118246,6 @@ docfiles size=74
runfiles size=4
RELOC/tex/latex/fullwidth/fullwidth.sty
catalogue-ctan /macros/latex/contrib/fullwidth
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics geometry
catalogue-version 0.1
@@ -119571,7 +118277,6 @@ srcfiles size=12
runfiles size=3
RELOC/tex/latex/functan/functan.sty
catalogue-ctan /macros/latex/contrib/functan
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics maths
@@ -119596,7 +118301,6 @@ srcfiles size=3
runfiles size=1
RELOC/tex/latex/fundus-calligra/calligra.sty
catalogue-ctan /macros/latex/contrib/fundus/calligra
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license other-free
catalogue-topics font-supp
catalogue-version 1.2
@@ -119615,7 +118319,6 @@ containerchecksum de84ebbe6e70f61bf9765b9368df95fa5ae607a8d6e1c5535240e8665bb097
runfiles size=1
RELOC/tex/latex/fundus-cyr/cyr.sty
catalogue-ctan /macros/latex/contrib/fundus/cyr/cyr.sty
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics font-supp
@@ -119641,7 +118344,6 @@ srcfiles size=3
runfiles size=1
RELOC/tex/latex/fundus-sueterlin/suetterl.sty
catalogue-ctan /macros/latex/contrib/fundus/suetterl
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics font-supp
catalogue-version 1.2
@@ -119671,7 +118373,6 @@ runfiles size=20
RELOC/tex/latex/fvextra/fvextra.sty
catalogue-contact-home https://github.com/gpoore/fvextra
catalogue-ctan /macros/latex/contrib/fvextra
-catalogue-date 2019-02-04 23:09:39 +0100
catalogue-license lppl1.3
catalogue-topics verbatim
catalogue-version 1.4
@@ -119697,7 +118398,6 @@ docfiles size=12
runfiles size=2
RELOC/tex/latex/fwlw/fwlw.sty
catalogue-ctan /macros/latex/contrib/fwlw
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license other-free
catalogue-topics page-hf
@@ -119734,7 +118434,6 @@ runfiles size=11
RELOC/tex/latex/g-brief/g-brief2.sty
catalogue-also akletter dinbrief scrlttr2 scrletter envlab
catalogue-ctan /macros/latex/contrib/g-brief
-catalogue-date 2019-03-16 09:49:24 +0100
catalogue-license lppl1
catalogue-topics class letter german
catalogue-version 4.0.3
@@ -119759,7 +118458,6 @@ docfiles size=60
runfiles size=16
RELOC/tex/latex/gaceta/gaceta.cls
catalogue-ctan /macros/latex/contrib/gaceta
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics journalpub class
catalogue-version 1.06
@@ -119787,7 +118485,6 @@ srcfiles size=8
runfiles size=2
RELOC/tex/latex/galois/galois.sty
catalogue-ctan /macros/latex/contrib/galois
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics maths
catalogue-version 1.5
@@ -119818,7 +118515,6 @@ srcfiles size=4
runfiles size=1
RELOC/tex/latex/gamebook/gamebook.sty
catalogue-ctan /macros/latex/contrib/gamebook
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics games
catalogue-version 1.0
@@ -119843,7 +118539,6 @@ runfiles size=12
RELOC/bibtex/bst/gammas/gammas.bst
RELOC/tex/latex/gammas/gammas.cls
catalogue-ctan /macros/latex/contrib/gammas
-catalogue-date 2019-02-17 05:29:19 +0100
catalogue-license lppl1.3c
catalogue-topics journalpub
catalogue-version 1.0
@@ -119884,7 +118579,6 @@ catalogue-contact-bugs https://github.com/dbenjaminmiller/garamond-libre/issues
catalogue-contact-home https://dbmiller.org/type/garamond-libre.html
catalogue-contact-repository https://github.com/dbenjaminmiller/garamond-libre
catalogue-ctan /fonts/garamond-libre
-catalogue-date 2019-07-22 10:44:07 +0200
catalogue-license mit
catalogue-topics font font-body font-otf font-serif font-greek font-cyrillic font-multilingual font-proportional
catalogue-version 1.1
@@ -119918,7 +118612,6 @@ catalogue-contact-bugs https://github.com/YuanshengZhao/Garamond-Math/issues
catalogue-contact-home https://github.com/YuanshengZhao/Garamond-Math
catalogue-contact-repository https://github.com/YuanshengZhao/Garamond-Math
catalogue-ctan /fonts/garamond-math
-catalogue-date 2019-11-16 10:38:07 +0100
catalogue-license ofl
catalogue-topics font font-otf font-maths font-serif font-sans font-bbd
@@ -119942,7 +118635,6 @@ docfiles size=2
runfiles size=9
RELOC/metapost/garrigues/garrigues.mp
catalogue-ctan /graphics/metapost/contrib/macros/garrigues
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics calculation
@@ -119993,7 +118685,6 @@ runfiles size=22
catalogue-also pstricks-base
catalogue-contact-home http://www.lsv.ens-cachan.fr/~gastin/gastex/gastex.html
catalogue-ctan /graphics/gastex
-catalogue-date 2018-09-15 11:08:35 +0200
catalogue-license lppl
catalogue-topics graphics-in-tex
catalogue-version 2.8
@@ -120036,7 +118727,6 @@ runfiles size=40
RELOC/tex/latex/gatech-thesis/gatech-thesis-patch.sty
RELOC/tex/latex/gatech-thesis/gatech-thesis.cls
catalogue-ctan /macros/latex/contrib/gatech-thesis
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics class dissertation
catalogue-version 1.8
@@ -120075,7 +118765,6 @@ runfiles size=15
RELOC/tex/generic/gates/gates.tex
RELOC/tex/generic/gates/t-gates.tex
catalogue-ctan /macros/generic/gates
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics macro-supp
catalogue-version 0.2
@@ -120114,7 +118803,6 @@ runfiles size=1
catalogue-contact-bugs https://gitlab.com/frnchfrgg-latex/gatherenum/issues
catalogue-contact-repository https://gitlab.com/frnchfrgg-latex/gatherenum
catalogue-ctan /macros/latex/contrib/gatherenum
-catalogue-date 2019-09-29 19:51:25 +0200
catalogue-license gpl3+
catalogue-topics list expl3
catalogue-version 1.8
@@ -120139,7 +118827,6 @@ runfiles size=16
RELOC/tex/latex/gauss/gauss.sty
catalogue-contact-home http://www.kauers.de
catalogue-ctan /macros/latex/contrib/gauss
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license lppl
catalogue-topics maths
@@ -120163,7 +118850,6 @@ runfiles size=6
RELOC/tex/latex/gb4e/cgloss4e.sty
RELOC/tex/latex/gb4e/gb4e.sty
catalogue-ctan /macros/latex/contrib/gb4e
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.2
catalogue-topics linguistic
@@ -120200,7 +118886,6 @@ catalogue-contact-announce https://github.com/zepinglee/gbt7714-bibtex-style/rel
catalogue-contact-bugs https://github.com/zepinglee/gbt7714-bibtex-style/issues
catalogue-contact-repository https://github.com/CTeX-org/gbt7714-bibtex-style
catalogue-ctan /biblio/bibtex/contrib/gbt7714
-catalogue-date 2019-11-20 08:46:08 +0100
catalogue-license lppl1.3c
catalogue-topics bibtex-supp chinese
catalogue-version 1.1.2
@@ -120229,7 +118914,6 @@ docfiles size=38
runfiles size=1
RELOC/tex/latex/gcard/gcard.sty
catalogue-ctan /macros/latex/contrib/gcard
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics letter graphics-use
@@ -120257,7 +118941,6 @@ runfiles size=3
RELOC/tex/latex/gchords/gchords.sty
catalogue-contact-home http://kasper.phi-sci.com/gchords/
catalogue-ctan /graphics/gchords
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license gpl
catalogue-topics music
catalogue-version 1.20
@@ -120292,7 +118975,6 @@ srcfiles size=6
runfiles size=1
RELOC/tex/latex/gcite/gcite.sty
catalogue-ctan /macros/latex/exptl/gcite
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics biblatex german
catalogue-version 1.0.1
@@ -120323,7 +119005,6 @@ runfiles size=2
RELOC/tex/latex/gender/gender.sty
catalogue-also he-she eemeir
catalogue-ctan /macros/latex/contrib/gender
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics linguistic typesetting
catalogue-version 1.0
@@ -120346,7 +119027,6 @@ docfiles size=27
runfiles size=2
RELOC/tex/latex/gene-logic/gn-logic14.sty
catalogue-ctan /macros/latex/contrib/gene/logic
-catalogue-date 2016-07-17 13:14:32 +0200
catalogue-license other-free
catalogue-topics maths
catalogue-version 1.4
@@ -120374,7 +119054,6 @@ runfiles size=4
RELOC/fonts/source/public/genealogy/drgen10.mf
RELOC/fonts/tfm/public/genealogy/drgen10.tfm
catalogue-ctan /fonts/genealogy
-catalogue-date 2017-02-19 14:06:21 +0100
catalogue-license lppl
catalogue-topics genealogy font font-symbol font-specialist font-mf
@@ -120426,7 +119105,6 @@ runfiles size=57
RELOC/tex/latex/genealogytree/gtrlib.templates.code.tex
catalogue-also pst-pdgr
catalogue-ctan /macros/latex/contrib/genealogytree
-catalogue-date 2019-04-08 19:17:19 +0200
catalogue-license lppl1.3
catalogue-topics genealogy pgf-tikz humanities
catalogue-version 1.32
@@ -120505,7 +119183,6 @@ srcfiles size=4
runfiles size=2
RELOC/tex/latex/genmpage/genmpage.sty
catalogue-ctan /macros/latex/contrib/genmpage
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics layout boxing
catalogue-version 0.3.1
@@ -120728,7 +119405,6 @@ runfiles size=3440
RELOC/tex/latex/gentium-tug/x2gentium.fd
catalogue-contact-home http://tug.org/gentium
catalogue-ctan /fonts/gentium-tug
-catalogue-date 2019-07-11 08:01:15 +0200
catalogue-license oflother-free
catalogue-topics font font-body font-multilingual font-greek font-cyrillic font-serif font-proportional font-type1 font-ttf font-supp font-t1enc
catalogue-version 1.1.1
@@ -120749,7 +119425,6 @@ docfiles size=145
RELOC/doc/plain/gentle/gentle.tex
catalogue-also gentl-gr
catalogue-ctan /info/gentle
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license other-free
catalogue-topics tut-plaintex
@@ -120795,7 +119470,6 @@ runfiles size=9
RELOC/tex/latex/gentombow/pxgentombow.sty
catalogue-contact-repository https://github.com/aminophen/gentombow
catalogue-ctan /macros/latex/contrib/gentombow
-catalogue-date 2019-07-21 14:39:06 +0200
catalogue-license bsd3
catalogue-topics japanese layout-page page-control
@@ -120840,7 +119514,6 @@ catalogue-also vmargin typearea
catalogue-contact-bugs https://github.com/davidcarlisle/geometry/issues
catalogue-contact-repository https://github.com/davidcarlisle/geometry
catalogue-ctan /macros/latex/contrib/geometry
-catalogue-date 2018-05-07 13:41:20 +0200
catalogue-license lppl
catalogue-topics geometry
catalogue-version 5.8
@@ -120864,7 +119537,6 @@ docfiles size=157
RELOC/doc/latex/geometry-de/geometry.ins
catalogue-also geometry vmargin typearea
catalogue-ctan /macros/latex/contrib/geometry-de
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics geometry german-doc translation
catalogue-version 1.1
@@ -120896,7 +119568,6 @@ runfiles size=14
RELOC/tex/generic/german/german.sty
RELOC/tex/generic/german/ngerman.sty
catalogue-ctan /language/german
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics german
catalogue-version 2.5e
@@ -120938,7 +119609,6 @@ runfiles size=37
RELOC/tex/latex/germbib/bibgerm.sty
RELOC/tex/latex/germbib/mynormal.sty
catalogue-ctan /biblio/bibtex/contrib/germbib
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license other-free
catalogue-topics bibtex-sty german
@@ -120964,7 +119634,6 @@ runfiles size=2
RELOC/tex/latex/germkorr/germkorr.sty
catalogue-also german
catalogue-ctan /macros/latex/contrib/germkorr
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics quote-marks german
catalogue-version 1.0
@@ -120994,7 +119663,6 @@ runfiles size=9
RELOC/tex/latex/geschichtsfrkl/geschichtsfrkl.cbx
RELOC/tex/latex/geschichtsfrkl/geschichtsfrkldoc.sty
catalogue-ctan /macros/latex/contrib/biblatex-contrib/geschichtsfrkl
-catalogue-date 2016-09-21 12:39:48 +0200
catalogue-license lppl
catalogue-topics humanities biblatex
catalogue-version 1.4
@@ -121019,7 +119687,6 @@ docfiles size=34
runfiles size=2
RELOC/tex/latex/getfiledate/getfiledate.sty
catalogue-ctan /macros/latex/contrib/getfiledate
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics file-mgmt
catalogue-version 1.2
@@ -121048,7 +119715,6 @@ srcfiles size=5
runfiles size=1
RELOC/tex/latex/getitems/getitems.sty
catalogue-ctan /macros/latex/contrib/getitems
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics text-manip macro-supp
catalogue-version 1.0
@@ -121083,7 +119749,6 @@ runfiles size=10
texmf-dist/tex/latex/getmap/getmap.sty
catalogue-contact-home http://getmap.jklatex.de/
catalogue-ctan /macros/latex/contrib/getmap
-catalogue-date 2019-03-25 15:25:51 +0100
catalogue-license lppl
catalogue-topics cartography
catalogue-version 1.11
@@ -121255,7 +119920,6 @@ runfiles size=4
RELOC/tex/plain/getoptk/getoptk.tex
RELOC/tex/plain/getoptk/guide.tex
catalogue-ctan /macros/plain/contrib/getoptk
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license other-free
catalogue-topics macro-def
catalogue-version 1.0
@@ -121281,7 +119945,6 @@ docfiles size=63
runfiles size=22
RELOC/tex/plain/gfnotation/GFnotation.tex
catalogue-ctan /macros/plain/contrib/gfnotation
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl3
catalogue-topics logic maths
catalogue-version 2.9
@@ -121428,7 +120091,6 @@ runfiles size=459
RELOC/tex/latex/gfsartemisia/uartemisianums.fd
catalogue-contact-home http://myria.math.aegean.gr/labs/dt/
catalogue-ctan /fonts/greek/gfs/gfsartemisia
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license other-free
catalogue-topics font font-type1 font-otf font-greek
catalogue-version 1.0
@@ -121467,7 +120129,6 @@ runfiles size=53
RELOC/tex/latex/gfsbaskerville/lgrgfsbaskerville.fd
catalogue-contact-home http://myria.math.aegean.gr/labs/dt/
catalogue-ctan /fonts/greek/gfs/gfsbaskerville
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license other-free
catalogue-topics font font-type1 font-otf font-greek
catalogue-version 1.0
@@ -121608,7 +120269,6 @@ runfiles size=443
RELOC/tex/latex/gfsbodoni/ubodoninums.fd
catalogue-contact-home http://myria.math.aegean.gr/labs/dt/
catalogue-ctan /fonts/greek/gfs/gfsbodoni
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license ofl
catalogue-topics font font-type1 font-otf font-greek
catalogue-version 1.01
@@ -121652,7 +120312,6 @@ runfiles size=58
RELOC/tex/latex/gfscomplutum/lgrcomplutum.fd
catalogue-contact-home http://myria.math.aegean.gr/labs/dt/
catalogue-ctan /fonts/greek/gfs/gfscomplutum
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license ofl
catalogue-topics font font-type1 font-otf font-greek
catalogue-version 1.0
@@ -121898,7 +120557,6 @@ runfiles size=660
RELOC/tex/latex/gfsdidot/uudidotnums.fd
catalogue-contact-home http://myria.math.aegean.gr/labs/dt/
catalogue-ctan /fonts/greek/gfs/gfsdidot
-catalogue-date 2018-01-14 14:07:56 +0100
catalogue-license other-free
catalogue-topics font font-serif font-greek font-multilingual font-type1 font-otf font-t1enc
@@ -121919,7 +120577,6 @@ docfiles size=2
runfiles size=16
RELOC/fonts/opentype/public/gfsdidotclassic/GFSDidot_Classic.otf
catalogue-ctan /fonts/greek/gfs/gfsdidotclassic
-catalogue-date 2019-11-13 08:12:42 +0100
catalogue-license ofl
catalogue-topics font font-body font-otf font-greek
catalogue-version 001.001
@@ -122063,7 +120720,6 @@ runfiles size=445
RELOC/tex/latex/gfsneohellenic/uneohellenicnums.fd
catalogue-contact-home http://myria.math.aegean.gr/labs/dt/
catalogue-ctan /fonts/greek/gfs/gfsneohellenic
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license other-free
catalogue-topics font font-type1 font-otf font-greek
@@ -122094,7 +120750,6 @@ runfiles size=166
RELOC/fonts/opentype/public/gfsneohellenicmath/GFSNeohellenicMath.otf
RELOC/tex/latex/gfsneohellenicmath/gfsneohellenicot.sty
catalogue-ctan /fonts/gfsneohellenicmath
-catalogue-date 2019-10-29 19:11:18 +0100
catalogue-license ofl
catalogue-topics font font-type1 font-otf font-greek maths font-maths
catalogue-version 1.0.1
@@ -122133,7 +120788,6 @@ runfiles size=47
RELOC/tex/latex/gfsporson/lgrporson.fd
catalogue-contact-home http://myria.math.aegean.gr/labs/dt/
catalogue-ctan /fonts/greek/gfs/gfsporson
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license other-free
catalogue-topics font font-type1 font-otf font-greek
catalogue-version 1.01
@@ -122170,7 +120824,6 @@ runfiles size=44
RELOC/tex/latex/gfssolomos/lgrsolomos.fd
catalogue-contact-home http://myria.math.aegean.gr/labs/dt/
catalogue-ctan /fonts/greek/gfs/gfssolomos
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license ofl
catalogue-topics font font-type1 font-otf font-greek
catalogue-version 1.0
@@ -122197,7 +120850,6 @@ runfiles size=2
catalogue-contact-bugs https://github.com/bidi-tex/ghab/issues
catalogue-contact-repository https://github.com/bidi-tex/ghab
catalogue-ctan /macros/latex/contrib/ghab
-catalogue-date 2018-11-28 19:38:14 +0100
catalogue-license lppl
catalogue-topics boxing decoration
catalogue-version 0.5
@@ -122383,7 +121035,6 @@ runfiles size=1491
RELOC/tex/latex/ghsystem/pictures/ghsystem_skull.tex
catalogue-contact-repository https://github.com/cgnieder/ghsystem/
catalogue-ctan /macros/latex/contrib/ghsystem
-catalogue-date 2019-09-30 22:39:06 +0200
catalogue-license lppl1.3
catalogue-topics chemistry expl3
catalogue-version 4.8a
@@ -122445,7 +121096,6 @@ runfiles size=39
RELOC/tex/latex/gillcm/t1cmg.fd
RELOC/tex/latex/gillcm/ts1cmg.fd
catalogue-ctan /fonts/gillcm
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license bsd
catalogue-topics font-virtual
catalogue-version 1.1
@@ -122791,7 +121441,6 @@ runfiles size=628
RELOC/tex/latex/gillius/gillius2.sty
catalogue-contact-home http://arkandis.tuxfamily.org/adffonts.html
catalogue-ctan /fonts/gillius
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license gpl2
catalogue-topics font font-sans font-type1 font-otf
@@ -122823,7 +121472,6 @@ srcfiles size=5
runfiles size=1
RELOC/tex/latex/gincltex/gincltex.sty
catalogue-ctan /macros/latex/contrib/gincltex
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics graphics listing
catalogue-version 0.3
@@ -122850,7 +121498,6 @@ runfiles size=3
catalogue-contact-home http://www.texnia.com
catalogue-contact-repository https://github.com/jbezos/gindex
catalogue-ctan /macros/latex/contrib/gindex
-catalogue-date 2019-10-07 17:07:10 +0200
catalogue-license mit
catalogue-topics index index-proc
catalogue-version 0.2
@@ -122901,7 +121548,6 @@ runfiles size=18
RELOC/tex/latex/ginpenc/latin9.gie
RELOC/tex/latex/ginpenc/next.gie
catalogue-ctan /macros/latex/contrib/ginpenc
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics inputenc
catalogue-version 1.0
@@ -122941,7 +121587,6 @@ runfiles size=2
RELOC/tex/latex/gitfile-info/gitfile-info.sty
catalogue-also gitinfo2
catalogue-ctan /support/gitfile-info
-catalogue-date 2019-08-21 14:43:53 +0200
catalogue-license lppl1.3
catalogue-topics version-control
catalogue-version 0.5
@@ -122971,7 +121616,6 @@ runfiles size=2
RELOC/tex/latex/gitinfo/gitinfo.sty
RELOC/tex/latex/gitinfo/gitsetinfo.sty
catalogue-ctan /macros/latex/contrib/gitinfo
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics version-control doc-mgmt
catalogue-version 1.0
@@ -123004,7 +121648,6 @@ runfiles size=4
RELOC/tex/latex/gitinfo2/gitexinfo.sty
RELOC/tex/latex/gitinfo2/gitinfo2.sty
catalogue-ctan /macros/latex/contrib/gitinfo2
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics version-control doc-mgmt
catalogue-version 2.0.7
@@ -123036,7 +121679,6 @@ runfiles size=3
RELOC/tex/latex/gitlog/gitlog.sty
catalogue-contact-repository https://github.com/Hightor/gitlog/tree/develop
catalogue-ctan /macros/latex/contrib/gitlog
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl1.3
catalogue-topics version-control doc-mgmt
catalogue-version 0.0.beta
@@ -123067,7 +121709,6 @@ runfiles size=2
catalogue-contact-bugs https://github.com/charlesbaynham/gitver/issues
catalogue-contact-repository https://github.com/charlesbaynham/gitver
catalogue-ctan /macros/latex/contrib/gitver
-catalogue-date 2019-02-09 05:47:45 +0100
catalogue-license lppl1.3c
catalogue-topics version-control doc-mgmt
catalogue-version 1.0
@@ -123095,7 +121736,6 @@ runfiles size=1
catalogue-contact-bugs https://github.com/charlesbaynham/globalvals/issues
catalogue-contact-home https://github.com/charlesbaynham/globalvals
catalogue-ctan /macros/latex/contrib/globalvals
-catalogue-date 2019-02-06 20:53:22 +0100
catalogue-license lppl1.3c
catalogue-topics misc-support
catalogue-version 1.1
@@ -123127,7 +121767,6 @@ docfiles size=97
runfiles size=4
RELOC/tex/latex/glosmathtools/glosmathtools.sty
catalogue-ctan /macros/latex/contrib/glosmathtools
-catalogue-date 2019-08-03 09:44:59 +0200
catalogue-license lppl1.3c
catalogue-topics glossary maths etex
catalogue-version 0.5.1
@@ -123155,7 +121794,6 @@ runfiles size=9
RELOC/tex/latex/gloss/gloss.sty
catalogue-also glossary glosstex nomencl
catalogue-ctan /macros/latex/contrib/gloss
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics glossary
catalogue-version 1.5.2
@@ -123178,7 +121816,6 @@ srccontainerchecksum 043c132580baf8e66ac76a01312706996902c448cbd81f596db732cbb90
srcfiles size=5
RELOC/source/latex/gloss-occitan/gloss-occitan.dtx
catalogue-ctan /macros/latex/contrib/gloss-occitan
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics multilingual-addon occitan
catalogue-version 0.1
@@ -123370,7 +122007,6 @@ runfiles size=165
texmf-dist/tex/latex/glossaries/test-entries/example-glossaries-url.tex
catalogue-contact-bugs http://www.dickimaw-books.com/cgi-bin/bugtracker.cgi?category=glossaries
catalogue-ctan /macros/latex/contrib/glossaries
-catalogue-date 2019-12-06 18:37:04 +0100
catalogue-license lppl1.3
catalogue-topics glossary acronym
catalogue-version 4.44
@@ -123397,7 +122033,6 @@ srcfiles size=3
runfiles size=1
RELOC/tex/latex/glossaries-danish/glossaries-danish.ldf
catalogue-ctan /macros/latex/contrib/glossaries-danish
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics glossary danish
catalogue-version 1.0
@@ -123425,7 +122060,6 @@ runfiles size=1
RELOC/tex/latex/glossaries-dutch/glossaries-dutch.ldf
catalogue-also glossaries
catalogue-ctan /macros/latex/contrib/glossaries-dutch
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics glossary
catalogue-version 1.1
@@ -123453,7 +122087,6 @@ runfiles size=1
RELOC/tex/latex/glossaries-english/glossaries-english.ldf
catalogue-also glossaries
catalogue-ctan /macros/latex/contrib/glossaries-english
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics glossary
catalogue-version 1.0
@@ -123485,7 +122118,6 @@ runfiles size=3
catalogue-contact-bugs https://github.com/keeleleek/glossaries-estonian/issues
catalogue-contact-repository https://github.com/keeleleek/glossaries-estonian
catalogue-ctan /macros/latex/contrib/glossaries-estonian
-catalogue-date 2019-02-05 05:26:48 +0100
catalogue-license lppl1.3
catalogue-topics glossary estonian
catalogue-version 1.0
@@ -123640,7 +122272,6 @@ runfiles size=155
catalogue-also glossaries
catalogue-contact-bugs http://www.dickimaw-books.com/cgi-bin/bugtracker.cgi?category=glossaries-extra
catalogue-ctan /macros/latex/contrib/glossaries-extra
-catalogue-date 2019-04-10 08:20:36 +0200
catalogue-license lppl1.3
catalogue-topics glossary acronym
catalogue-version 1.41
@@ -123670,7 +122301,6 @@ runfiles size=3
RELOC/tex/latex/glossaries-finnish/glossaries-finnish.ldf
catalogue-also glossaries
catalogue-ctan /macros/latex/contrib/glossaries-finnish
-catalogue-date 2017-10-29 05:37:01 +0100
catalogue-license lppl1.3
catalogue-topics glossary
catalogue-version 1.0
@@ -123698,7 +122328,6 @@ runfiles size=1
RELOC/tex/latex/glossaries-french/glossaries-french.ldf
catalogue-also glossaries
catalogue-ctan /macros/latex/contrib/glossaries-french
-catalogue-date 2017-01-04 23:59:43 +0100
catalogue-license lppl1.3
catalogue-topics glossary french
catalogue-version 1.1
@@ -123726,7 +122355,6 @@ runfiles size=1
RELOC/tex/latex/glossaries-german/glossaries-german.ldf
catalogue-also glossaries
catalogue-ctan /macros/latex/contrib/glossaries-german
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics glossary
catalogue-version 1.0
@@ -123756,7 +122384,6 @@ runfiles size=3
RELOC/tex/latex/glossaries-irish/glossaries-irish.ldf
catalogue-also glossaries
catalogue-ctan /macros/latex/contrib/glossaries-irish
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics glossary irish-gaelic
catalogue-version 1.0
@@ -123784,7 +122411,6 @@ runfiles size=1
RELOC/tex/latex/glossaries-italian/glossaries-italian.ldf
catalogue-also glossaries
catalogue-ctan /macros/latex/contrib/glossaries-italian
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics glossary italian
catalogue-version 1.0
@@ -123814,7 +122440,6 @@ runfiles size=3
RELOC/tex/latex/glossaries-magyar/glossaries-magyar.ldf
catalogue-also glossaries
catalogue-ctan /macros/latex/contrib/glossaries-magyar
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics glossary
catalogue-version 1.0
@@ -123844,7 +122469,6 @@ runfiles size=3
RELOC/tex/latex/glossaries-polish/glossaries-polish.ldf
catalogue-also glossaries
catalogue-ctan /macros/latex/contrib/glossaries-polish
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics glossary
catalogue-version 1.0
@@ -123874,7 +122498,6 @@ runfiles size=4
RELOC/tex/latex/glossaries-portuges/glossaries-portuges.ldf
RELOC/tex/latex/glossaries-portuges/glossaries-pt-BR.ldf
catalogue-ctan /macros/latex/contrib/glossaries-portuges
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics glossary
catalogue-version 1.1
@@ -123903,7 +122526,6 @@ runfiles size=3
RELOC/tex/latex/glossaries-serbian/glossaries-serbian-utf8.ldf
RELOC/tex/latex/glossaries-serbian/glossaries-serbian.ldf
catalogue-ctan /macros/latex/contrib/glossaries-serbian
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics glossary
catalogue-version 1.0
@@ -123931,7 +122553,6 @@ runfiles size=1
RELOC/tex/latex/glossaries-slovene/glossaries-slovene.ldf
catalogue-contact-home https://github.com/b4d/glossaries-slovene
catalogue-ctan /macros/latex/contrib/glossaries-slovene
-catalogue-date 2019-05-24 14:58:33 +0200
catalogue-license lppl1.3
catalogue-topics glossary
catalogue-version 1.0
@@ -123960,7 +122581,6 @@ runfiles size=3
RELOC/tex/latex/glossaries-spanish/glossaries-spanish-utf8.ldf
RELOC/tex/latex/glossaries-spanish/glossaries-spanish.ldf
catalogue-ctan /macros/latex/contrib/glossaries-spanish
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics glossary
catalogue-version 1.0
@@ -124172,7 +122792,6 @@ runfiles size=42
RELOC/tex/latex/gmdoc/gmoldcomm.sty
catalogue-also gmdoc-enhance
catalogue-ctan /macros/latex/contrib/gmdoc
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license lppl
catalogue-topics doc-supp class
catalogue-version 0.993
@@ -124202,7 +122821,6 @@ runfiles size=3
RELOC/tex/latex/gmdoc-enhance/gmdoc-enhance.sty
catalogue-also gmdoc
catalogue-ctan /macros/latex/contrib/gmdoc-enhance
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics doc-supp
catalogue-version 0.2
@@ -124228,7 +122846,6 @@ runfiles size=2
RELOC/tex/latex/gmiflink/gmiflink.sty
catalogue-also hyperref
catalogue-ctan /macros/latex/contrib/gmiflink
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license lppl
catalogue-topics hyper
catalogue-version 0.97
@@ -124257,7 +122874,6 @@ srcfiles size=23
runfiles size=3
RELOC/tex/latex/gmp/gmp.sty
catalogue-ctan /macros/latex/contrib/gmp
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics mp-supp graphics
catalogue-version 1.0
@@ -124296,7 +122912,6 @@ runfiles size=70
RELOC/tex/latex/gmutils/gmurl.sty
RELOC/tex/latex/gmutils/gmutils.sty
catalogue-ctan /macros/latex/contrib/gmutils
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics macro-supp
catalogue-version 0.996
@@ -124323,7 +122938,6 @@ docfiles size=54
runfiles size=12
RELOC/tex/latex/gmverb/gmverb.sty
catalogue-ctan /macros/latex/contrib/gmverb
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics verbatim
catalogue-version 0.98
@@ -124347,7 +122961,6 @@ docfiles size=55
runfiles size=8
RELOC/tex/latex/gmverse/gmverse.sty
catalogue-ctan /macros/latex/contrib/gmverse
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license lppl
catalogue-topics verse
catalogue-version 0.73
@@ -124463,7 +123076,6 @@ runfiles size=4350
RELOC/fonts/truetype/public/gnu-freefont/FreeSerifItalic.ttf
catalogue-contact-repository http://savannah.gnu.org/projects/freefont/
catalogue-ctan /fonts/gnu-freefont
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license gpl3
catalogue-topics font font-proportional font-mono font-serif font-otf font-sfd
@@ -124499,7 +123111,6 @@ runfiles size=3
RELOC/tex/latex/gnuplottex/gnuplottex.sty
catalogue-also context-gnuplot
catalogue-ctan /macros/latex/contrib/gnuplottex
-catalogue-date 2019-09-23 11:15:01 +0200
catalogue-license gpl2
catalogue-topics graphics-inline
catalogue-version 0.9.3
@@ -124563,7 +123174,6 @@ runfiles size=77
RELOC/tex/latex/go/go.sty
catalogue-also igo
catalogue-ctan /fonts/go
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics games font font-symbol font-mf
@@ -124601,7 +123211,6 @@ runfiles size=3
RELOC/tex/generic/gobble/gobble.tex
catalogue-contact-repository https://bitbucket.org/martin_scharrer/gobble
catalogue-ctan /macros/generic/gobble
-catalogue-date 2019-01-04 22:27:51 +0100
catalogue-license lppl1.3
catalogue-topics macro-supp
catalogue-version 0.2
@@ -124836,7 +123445,6 @@ runfiles size=897
RELOC/tex/latex/gofonts/TS1Go-TLF.fd
RELOC/tex/latex/gofonts/TS1GoMono-TLF.fd
catalogue-ctan /fonts/gofonts
-catalogue-date 2019-10-13 08:09:40 +0200
catalogue-license other-freelppl
catalogue-topics font font-body font-multilingual font-greek font-cyrillic font-proportional font-mono font-sans font-serif font-ttf font-type1 font-supp font-t1enc
@@ -125012,7 +123620,6 @@ runfiles size=257
RELOC/bibtex/csf/gost/utf8cyrillic.csf
catalogue-also biblatex-gost
catalogue-ctan /biblio/bibtex/contrib/gost
-catalogue-date 2017-01-14 14:16:05 +0100
catalogue-license lppl1.3
catalogue-topics bibtex-sty russian
catalogue-version 1.2i
@@ -125118,7 +123725,6 @@ runfiles size=246
RELOC/fonts/tfm/public/gothic/ysmfrak.tfm
RELOC/fonts/tfm/public/gothic/yswab.tfm
catalogue-ctan /fonts/gothic
-catalogue-date 2017-10-29 15:22:05 +0100
catalogue-license collection
catalogue-topics font font-mf font-collection font-gothic
@@ -125147,7 +123753,6 @@ runfiles size=4
RELOC/tex/latex/gotoh/gotoh.sty
catalogue-contact-repository https://github.com/wtsnjp/Gotoh
catalogue-ctan /macros/latex/contrib/gotoh
-catalogue-date 2017-07-07 08:45:27 +0200
catalogue-license mit
catalogue-topics biology
catalogue-version 1.1
@@ -125174,7 +123779,6 @@ runfiles size=1
RELOC/tex/latex/grabbox/grabbox.sty
catalogue-contact-repository https://gitlass.de/jonathan/grabbox
catalogue-ctan /macros/latex/contrib/grabbox
-catalogue-date 2019-05-08 20:23:42 +0200
catalogue-license lppl1.3c
catalogue-topics boxing
catalogue-version 1.4
@@ -125201,7 +123805,6 @@ srcfiles size=4
runfiles size=1
RELOC/tex/latex/gradientframe/gradientframe.sty
catalogue-ctan /macros/latex/contrib/gradientframe
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics decoration
catalogue-version 0.2
@@ -125224,7 +123827,6 @@ docfiles size=3
runfiles size=1
RELOC/tex/latex/gradstudentresume/gradstudentresume.cls
catalogue-ctan /macros/latex/contrib/gradstudentresume
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics cv class
@@ -125251,7 +123853,6 @@ runfiles size=5
catalogue-also tikz-sfc
catalogue-contact-home http://sciences-indus-cpge.papanicola.info/Grafcet-avec-pgf-Tikz
catalogue-ctan /graphics/pgf/contrib/grafcet
-catalogue-date 2018-01-17 07:27:29 +0100
catalogue-license lppl1
catalogue-topics diagram pgf-tikz
catalogue-version 1.3.5
@@ -125292,7 +123893,6 @@ runfiles size=10
RELOC/tex/latex/grant/grant-onr.cls
RELOC/tex/latex/grant/grant.cls
catalogue-ctan /macros/latex/contrib/grant
-catalogue-date 2018-01-07 14:49:11 +0100
catalogue-license mit
catalogue-topics class proposal
catalogue-version 0.0.3
@@ -125331,7 +123931,6 @@ catalogue-contact-home https://framagit.org/spalax/graph35
catalogue-contact-repository https://framagit.org/spalax/graph35
catalogue-contact-support https://framagit.org/spalax/graph35/issues
catalogue-ctan /graphics/graph35
-catalogue-date 2018-04-29 07:15:59 +0200
catalogue-license lppl1.3
catalogue-topics graphics teaching
catalogue-version 0.1.1
@@ -125366,7 +123965,6 @@ srcfiles size=9
runfiles size=2
RELOC/tex/latex/graphbox/graphbox.sty
catalogue-ctan /macros/latex/contrib/graphbox
-catalogue-date 2018-01-17 14:05:37 +0100
catalogue-license lppl1.3
catalogue-topics graphics graphics-incl
catalogue-version 1.1
@@ -125443,7 +124041,6 @@ runfiles size=36
catalogue-contact-bugs https://www.latex-project.org/bugs/
catalogue-contact-home https://www.latex-project.org/
catalogue-ctan /macros/latex/required/graphics
-catalogue-date 2019-10-13 15:19:15 +0200
catalogue-license lppl1.3c
catalogue-topics graphics collection
catalogue-version 2019-10-01 PL1
@@ -125471,7 +124068,6 @@ runfiles size=2
catalogue-also color graphics
catalogue-contact-repository https://github.com/latex3/graphics-cfg
catalogue-ctan /macros/latex/contrib/graphics-cfg
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license pd
catalogue-topics graphics colour
@@ -125503,7 +124099,6 @@ catalogue-contact-bugs https://github.com/latex3/graphics-def/issues
catalogue-contact-home https://www.latex-project.org/
catalogue-contact-repository https://github.com/latex3/graphics-def
catalogue-ctan /macros/latex/contrib/graphics-def
-catalogue-date 2018-01-09 10:47:08 +0100
catalogue-license lppl1.3c
catalogue-topics graphics-drv
@@ -125539,7 +124134,6 @@ catalogue-contact-bugs https://github.com/davidcarlisle/dpctex/issues
catalogue-contact-home https://github.com/davidcarlisle/dpctex/
catalogue-contact-repository https://github.com/davidcarlisle/dpctex/tree/master/graphics-pln
catalogue-ctan /macros/plain/graphics
-catalogue-date 2018-01-17 16:05:35 +0100
catalogue-license lppl1
catalogue-topics graphics-incl plain-ext
@@ -125572,7 +124166,6 @@ runfiles size=2
RELOC/tex/latex/graphicx-psmin/graphicx-psmin.sty
catalogue-also graphics graphicx
catalogue-ctan /macros/latex/contrib/graphicx-psmin
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics graphics-incl
catalogue-version 1.1
@@ -125619,7 +124212,6 @@ runfiles size=1
RELOC/tex/latex/graphicxbox/graphicxbox.sty
catalogue-also graphicxsp color
catalogue-ctan /macros/latex/contrib/graphicxbox
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics graphics-incl boxing
catalogue-version 1.0
@@ -125648,7 +124240,6 @@ runfiles size=1
catalogue-also graphicx
catalogue-contact-repository https://github.com/munepi/graphicxpsd
catalogue-ctan /macros/latex/contrib/graphicxpsd
-catalogue-date 2018-01-30 05:26:20 +0100
catalogue-license mit
catalogue-topics graphics-incl
catalogue-version 1.1
@@ -125687,7 +124278,6 @@ runfiles size=1
catalogue-also dottex
catalogue-contact-home http://www.graphviz.org
catalogue-ctan /macros/latex/contrib/graphviz
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl1.3
catalogue-topics graphics-inline
catalogue-version 0.94
@@ -125728,7 +124318,6 @@ srcfiles size=8
runfiles size=3
RELOC/tex/latex/grayhints/grayhints.sty
catalogue-ctan /macros/latex/contrib/grayhints
-catalogue-date 2018-11-03 09:41:55 +0100
catalogue-license lppl1.2
catalogue-topics misc-support pdf-forms adobe-distiller
@@ -125781,7 +124370,6 @@ runfiles size=44
RELOC/tex/latex/greek-fontenc/textalpha.sty
catalogue-also lgrx
catalogue-ctan /language/greek/greek-fontenc
-catalogue-date 2019-07-11 19:05:01 +0200
catalogue-license lppl1.3
catalogue-topics greek fontenc
catalogue-version 0.13.4
@@ -125813,7 +124401,6 @@ runfiles size=12
RELOC/tex/latex/greek-inputenc/lgrenc.dfu
RELOC/tex/latex/greek-inputenc/macgreek.def
catalogue-ctan /language/greek/greek-inputenc
-catalogue-date 2019-07-11 18:26:13 +0200
catalogue-license lppl1.3
catalogue-topics inputenc greek
catalogue-version 1.7
@@ -125844,7 +124431,6 @@ srcfiles size=10
runfiles size=6
RELOC/tex/latex/greekdates/greekdates.sty
catalogue-ctan /macros/latex/contrib/greekdates
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics date-time greek
catalogue-version 1.0
@@ -125871,7 +124457,6 @@ runfiles size=7
RELOC/tex/latex/greektex/greektex.sty
catalogue-also greektex-fd
catalogue-ctan /fonts/greek/greektex
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics font font-mf font-greek
@@ -125909,7 +124494,6 @@ runfiles size=44
RELOC/tex/latex/greektonoi/greektonoi.sty
catalogue-contact-home http://myria.math.aegean.gr/labs/dt/
catalogue-ctan /language/greek/greektonoi
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lgpl3
catalogue-topics greek multilingual-addon
@@ -125933,7 +124517,6 @@ runfiles size=2
RELOC/fonts/source/public/greenpoint/greenpoint.mf
RELOC/fonts/tfm/public/greenpoint/greenpoint.tfm
catalogue-ctan /fonts/greenpoint
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license gpl
catalogue-topics font font-mf font-specialist
@@ -126013,7 +124596,6 @@ runfiles size=7319
catalogue-contact-home http://gregorio-project.github.io/
catalogue-contact-support http://gregorio-project.github.io/contact.html
catalogue-ctan /support/gregoriotex
-catalogue-date 2019-04-06 23:35:06 +0200
catalogue-license gpl3
catalogue-topics music chords
catalogue-version 5.2.1
@@ -126186,7 +124768,6 @@ runfiles size=2
catalogue-contact-bugs https://github.com/ho-tex/grfext/issues
catalogue-contact-repository https://github.com/ho-tex/grfext
catalogue-ctan /macros/latex/contrib/grfext
-catalogue-date 2019-12-04 05:44:37 +0100
catalogue-license lppl1.3
catalogue-topics graphics-supp
catalogue-version 1.3
@@ -126219,7 +124800,6 @@ runfiles size=5
catalogue-contact-bugs https://github.com/ho-tex/grffile/issues
catalogue-contact-repository https://github.com/ho-tex/grffile
catalogue-ctan /macros/latex/contrib/grffile
-catalogue-date 2019-11-11 23:25:54 +0100
catalogue-license lppl1.3c
catalogue-topics file-mgmt
catalogue-version 2.1
@@ -126246,7 +124826,6 @@ docfiles size=106
runfiles size=2
RELOC/tex/latex/grfpaste/grfpaste.sty
catalogue-ctan /macros/latex/contrib/grfpaste
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics graphics-incl
catalogue-version 0.2
@@ -126282,7 +124861,6 @@ runfiles size=3
RELOC/tex/latex/grid/grid.sty
catalogue-contact-home http://www.river-valley.com
catalogue-ctan /macros/latex/contrib/grid
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl
catalogue-topics typeset-grid
catalogue-version 1.0
@@ -126308,7 +124886,6 @@ runfiles size=1
RELOC/tex/latex/grid-system/grid-system.sty
catalogue-contact-repository https://github.com/bitzl/latex-grid-system
catalogue-ctan /macros/latex/contrib/grid-system
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license apache2
catalogue-topics layout
catalogue-version 0.3.0
@@ -126343,7 +124920,6 @@ runfiles size=5
RELOC/tex/latex/gridset/gridset.sty
catalogue-contact-home http://komascript.de/gridset
catalogue-ctan /macros/latex/contrib/gridset
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl
catalogue-topics typeset-grid
catalogue-version 0.1
@@ -126385,7 +124961,6 @@ runfiles size=3
catalogue-contact-bugs https://github.com/minad/gridslides/issues
catalogue-contact-repository https://github.com/minad/gridslides
catalogue-ctan /macros/latex/contrib/gridslides
-catalogue-date 2017-11-28 17:33:59 +0100
catalogue-license lppl1.3gpl2
catalogue-topics presentation class
catalogue-version 0.1.1
@@ -126433,7 +125008,6 @@ runfiles size=44
RELOC/tex/latex/grotesq/t1ugq.fd
RELOC/tex/latex/grotesq/ts1ugq.fd
catalogue-ctan /fonts/urw/grotesq
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics font font-sans font-type1
@@ -126461,7 +125035,6 @@ runfiles size=3
RELOC/tex/latex/grundgesetze/grundgesetze.sty
catalogue-also begriff frege bguq
catalogue-ctan /macros/latex/contrib/grundgesetze
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl2
catalogue-topics maths logic
catalogue-version 1.02
@@ -126493,7 +125066,6 @@ runfiles size=3
RELOC/tex/latex/gsemthesis/gsemthesis.cls
catalogue-contact-home http://emmanuel.rousseaux.me/gsemthesis
catalogue-ctan /macros/latex/contrib/gsemthesis
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl1.3
catalogue-topics dissertation class
catalogue-version 0.9.4
@@ -126519,7 +125091,6 @@ runfiles size=2
texmf-dist/dvips/gsftopk/render.ps
catalogue-contact-home http://math.berkeley.edu/~vojta/gsftopk.html
catalogue-ctan /fonts/utilities/gsftopk
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license gpl
catalogue-topics font-cvt
catalogue-version 1.19.2
@@ -126696,7 +125267,6 @@ runfiles size=6
catalogue-contact-bugs https://github.com/blefloch/latex-gtl/issues
catalogue-contact-repository https://github.com/blefloch/latex-gtl
catalogue-ctan /macros/generic/gtl
-catalogue-date 2018-12-29 09:59:22 +0100
catalogue-license lppl1.3c
catalogue-topics macro-supp
catalogue-version 0.5
@@ -126723,7 +125293,6 @@ docfiles size=42
runfiles size=5
RELOC/tex/latex/gtrcrd/gtrcrd.sty
catalogue-ctan /macros/latex/contrib/gtrcrd
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics music chords
catalogue-version 1.1
@@ -126755,7 +125324,6 @@ runfiles size=3
catalogue-also genealogytree
catalogue-contact-repository https://github.com/Ri-Ga/gtrlib.largetrees
catalogue-ctan /macros/latex/contrib/gtrlib-largetrees
-catalogue-date 2018-11-03 15:33:05 +0100
catalogue-license lppl1.2
catalogue-topics genealogy
catalogue-version 1.2b
@@ -126783,7 +125351,6 @@ docfiles size=202
runfiles size=8
RELOC/tex/latex/gu/gu.sty
catalogue-ctan /macros/latex/contrib/gu
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics crystallography
@@ -126930,7 +125497,6 @@ srcfiles size=14
runfiles size=2
RELOC/tex/latex/guitar/guitar.sty
catalogue-ctan /macros/latex/contrib/guitar
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license lppl1.3
catalogue-topics music chords
catalogue-version 1.6
@@ -126958,7 +125524,6 @@ runfiles size=6
catalogue-also guitar
catalogue-contact-repository https://bitbucket.org/cgnieder/guitarchordschemes
catalogue-ctan /macros/latex/contrib/guitarchordschemes
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl1.3
catalogue-topics music chords
catalogue-version 0.7
@@ -126987,7 +125552,6 @@ docfiles size=58
runfiles size=3
RELOC/tex/latex/guitartabs/guitartabs.cls
catalogue-ctan /macros/latex/contrib/guitartabs
-catalogue-date 2018-06-30 04:59:57 +0200
catalogue-license lppl1.3c
catalogue-topics music chords class
@@ -127027,7 +125591,6 @@ runfiles size=4
RELOC/tex/latex/guitlogo/guit.cfg
RELOC/tex/latex/guitlogo/guit.sty
catalogue-ctan /macros/latex/contrib/GuIT/GuITlogo
-catalogue-date 2019-07-08 10:39:21 +0200
catalogue-license lppl1.3a
catalogue-topics logo
catalogue-version 1.0.0-alpha.3
@@ -127144,7 +125707,6 @@ runfiles size=66
RELOC/tex/latex/gzt/images/README-PICTOGRAMS.md
RELOC/tex/latex/gzt/images/gzt-logo.pdf
catalogue-ctan /macros/latex/contrib/gzt
-catalogue-date 2018-04-08 13:24:08 +0200
catalogue-license lppl1.3
catalogue-topics journalpub class french
catalogue-version 0.98
@@ -127197,7 +125759,6 @@ docfiles size=147
runfiles size=11
RELOC/tex/latex/h2020proposal/h2020proposal.cls
catalogue-ctan /macros/latex/contrib/h2020proposal
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license gpl3
catalogue-topics proposal class
catalogue-version 1.0
@@ -127228,7 +125789,6 @@ runfiles size=5
catalogue-contact-bugs https://github.com/sfr682k/hackthefootline/issues
catalogue-contact-repository https://github.com/sfr682k/hackthefootline
catalogue-ctan /macros/latex/contrib/beamer-contrib/hackthefootline
-catalogue-date 2018-01-29 23:30:32 +0100
catalogue-license lppl1.3c
catalogue-topics presentation page-hf
@@ -127296,7 +125856,6 @@ runfiles size=106
RELOC/tex/latex/hacm/ot1hkar.fd
RELOC/tex/latex/hacm/ot1hlan.fd
catalogue-ctan /fonts/hacm
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics font font-type1 font-invented lang-invented
catalogue-version 0.1
@@ -127502,7 +126061,6 @@ runfiles size=22
RELOC/tex/latex/hagenberg-thesis/hgbthesis.cls
catalogue-contact-repository https://github.com/Digital-Media/HagenbergThesis
catalogue-ctan /macros/latex/contrib/hagenberg-thesis
-catalogue-date 2019-05-17 10:59:38 +0200
catalogue-license cc-by-4
catalogue-topics dissertation class
@@ -127538,7 +126096,6 @@ srcfiles size=49
runfiles size=11
RELOC/tex/latex/halloweenmath/halloweenmath.sty
catalogue-ctan /macros/latex/contrib/halloweenmath
-catalogue-date 2019-11-01 20:00:26 +0100
catalogue-license lppl1.3
catalogue-topics amusements maths maths-symbol
catalogue-version 0.11
@@ -127568,7 +126125,6 @@ runfiles size=3
catalogue-contact-bugs https://github.com/Strauman/Handin-LaTeX-template/issues
catalogue-contact-repository https://github.com/Strauman/Handin-LaTeX-template
catalogue-ctan /macros/latex/contrib/handin
-catalogue-date 2018-07-22 22:21:50 +0200
catalogue-license lppl1.3c
catalogue-topics doc-templ
catalogue-version 0.1.1
@@ -127620,7 +126176,6 @@ runfiles size=1
catalogue-contact-bugs https://github.com/maieul/handout/issues
catalogue-contact-repository https://github.com/maieul/handout
catalogue-ctan /macros/latex/contrib/handout
-catalogue-date 2017-04-21 20:47:11 +0200
catalogue-license lppl1.3
catalogue-topics presentation
catalogue-version 1.6.0
@@ -127643,7 +126198,6 @@ runfiles size=6
RELOC/fonts/source/public/hands/rvmirror.mf
RELOC/fonts/tfm/public/hands/hands.tfm
catalogue-ctan /fonts/hands
-catalogue-date 2019-02-03 12:27:12 +0100
catalogue-license pd
catalogue-topics font font-mf font-symbol
@@ -127671,7 +126225,6 @@ runfiles size=1
RELOC/tex/latex/hang/hang.sty
catalogue-also hanging
catalogue-ctan /macros/latex/contrib/hang
-catalogue-date 2017-02-19 05:41:33 +0100
catalogue-license lppl1.3
catalogue-topics layout list
catalogue-version 2.1
@@ -127705,7 +126258,6 @@ runfiles size=2
RELOC/tex/latex/hanging/hanging.sty
catalogue-also hang
catalogue-ctan /macros/latex/contrib/hanging
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics layout
catalogue-version 1.2b
@@ -127724,7 +126276,6 @@ containerchecksum efc8c4892ea4cc8ae395907fc428fe74d535d689a68b3b21422c5c944d4def
runfiles size=1
RELOC/tex/plain/hanoi/hanoi.tex
catalogue-ctan /macros/plain/contrib/hanoi
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics games
catalogue-version 20120101
@@ -127744,7 +126295,6 @@ docfiles size=23
RELOC/doc/plain/happy4th/happy4th.pdf details="Package output"
RELOC/doc/plain/happy4th/happy4th.tex
catalogue-ctan /macros/plain/contrib/happy4th
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics games frivolous
catalogue-version 20120102
@@ -127772,7 +126322,6 @@ docfiles size=57
runfiles size=1
RELOC/tex/latex/har2nat/har2nat.sty
catalogue-ctan /macros/latex/contrib/har2nat
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics bibtex-supp
catalogue-version 1.0
@@ -127803,7 +126352,6 @@ srcfiles size=11
runfiles size=3
RELOC/tex/latex/hardwrap/hardwrap.sty
catalogue-ctan /macros/latex/contrib/hardwrap
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license lppl1.3
catalogue-topics layout
catalogue-version 0.2
@@ -127827,7 +126375,6 @@ docfiles size=40
runfiles size=3
RELOC/tex/latex/harmony/harmony.sty
catalogue-ctan /macros/latex/contrib/harmony
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics music
@@ -127849,7 +126396,6 @@ docfiles size=16
runfiles size=2
RELOC/tex/latex/harnon-cv/harnon-cv.cls
catalogue-ctan /macros/latex/contrib/harnon-cv
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics cv class
catalogue-version 1.0
@@ -127873,7 +126419,6 @@ docfiles size=8
runfiles size=1
RELOC/tex/latex/harpoon/harpoon.sty
catalogue-ctan /macros/latex/contrib/harpoon
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics graphics-symb
catalogue-version 1.0
@@ -127925,7 +126470,6 @@ runfiles size=55
RELOC/tex/latex/harvard/harvard.sty
catalogue-also har2nat
catalogue-ctan /macros/latex/contrib/harvard
-catalogue-date 2018-12-22 09:07:14 +0100
catalogue-license lppl
catalogue-topics bibtex-sty bibtex-supp
catalogue-version 2.0.5
@@ -127948,7 +126492,6 @@ docfiles size=39
runfiles size=1
RELOC/tex/latex/harveyballs/harveyballs.sty
catalogue-ctan /graphics/pgf/contrib/harveyballs
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl3
catalogue-topics graphics-symb pgf-tikz
catalogue-version 1.1
@@ -127969,7 +126512,6 @@ docfiles size=5
runfiles size=4
RELOC/tex/plain/harvmac/harvmac.tex
catalogue-ctan /macros/plain/contrib/harvmac
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license other-free
catalogue-topics plain-ext
@@ -127992,7 +126534,6 @@ docfiles size=3
runfiles size=1
RELOC/metapost/hatching/hatching.mp
catalogue-ctan /graphics/metapost/contrib/macros/hatching
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics graphics-subpic
catalogue-version 0.11
@@ -128024,7 +126565,6 @@ runfiles size=5
RELOC/tex/latex/hausarbeit-jura/hausarbeit-jura.cls
catalogue-contact-repository https://github.com/sieversMartin/hausarbeit-jura
catalogue-ctan /macros/latex/contrib/hausarbeit-jura
-catalogue-date 2019-04-04 13:49:38 +0200
catalogue-license lppl1.3
catalogue-topics legal essay class
catalogue-version 2.0
@@ -128051,7 +126591,6 @@ srcfiles size=9
runfiles size=3
RELOC/tex/latex/havannah/havannah.sty
catalogue-ctan /macros/latex/contrib/havannah
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.2
catalogue-topics games pgf-tikz
@@ -128086,7 +126625,6 @@ runfiles size=35
RELOC/tex/latex/hc/hcreport.cls
RELOC/tex/latex/hc/hcslides.cls
catalogue-ctan /macros/latex/contrib/hc
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license other-free
catalogue-topics class presentation letter
@@ -128112,7 +126650,6 @@ runfiles size=3
RELOC/tex/latex/he-she/he-she.sty
catalogue-also gender eemeir
catalogue-ctan /macros/latex/contrib/he-she
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license lppl1.3
catalogue-topics typesetting
catalogue-version 1.3
@@ -128192,7 +126729,6 @@ runfiles size=4
catalogue-contact-home http://www.hec.ca/biblio
catalogue-contact-repository https://github.com/metalogueur/hecthese
catalogue-ctan /macros/latex/contrib/hecthese
-catalogue-date 2019-03-25 17:28:57 +0100
catalogue-license lppl1.3c
catalogue-topics dissertation class
catalogue-version 1.3.2
@@ -128482,7 +127018,6 @@ runfiles size=594
RELOC/tex/latex/helvetic/ts1uhv.fd
catalogue-also tex-gyre
catalogue-ctan /fonts/urw/base35
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics font font-type1 font-collection
@@ -128504,7 +127039,6 @@ docfiles size=2
runfiles size=2
RELOC/tex/latex/hep/hep.sty
catalogue-ctan /macros/latex/contrib/hep
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics physics
catalogue-version 1.0
@@ -128550,7 +127084,6 @@ runfiles size=13
RELOC/tex/latex/hepnames/hepnicenames.sty
RELOC/tex/latex/hepnames/heppennames.sty
catalogue-ctan /macros/latex/contrib/hepnames
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics physics
catalogue-version 2.0
@@ -128591,7 +127124,6 @@ runfiles size=5
RELOC/tex/latex/hepparticles/hepparticles.sty
catalogue-also maybemath
catalogue-ctan /macros/latex/contrib/hepparticles
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics physics
catalogue-version 2.0
@@ -128644,7 +127176,6 @@ docfiles size=248
runfiles size=7
RELOC/tex/latex/hepthesis/hepthesis.cls
catalogue-ctan /macros/latex/contrib/hepthesis
-catalogue-date 2017-12-12 12:49:18 +0100
catalogue-license lppl
catalogue-topics physics dissertation class
catalogue-version 1.5.2
@@ -128671,7 +127202,6 @@ docfiles size=27
runfiles size=2
RELOC/tex/latex/hepunits/hepunits.sty
catalogue-ctan /macros/latex/contrib/hepunits
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics physics
catalogue-version 1.1.1
@@ -128697,7 +127227,6 @@ docfiles size=1
runfiles size=1
RELOC/tex/latex/here/here.sty
catalogue-ctan /macros/latex/contrib/here
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics float
@@ -128953,7 +127482,6 @@ runfiles size=652
RELOC/tex/latex/heuristica/heuristica.fontspec
RELOC/tex/latex/heuristica/heuristica.sty
catalogue-ctan /fonts/heuristica
-catalogue-date 2019-06-11 09:58:58 +0200
catalogue-license ofl
catalogue-topics font font-type1 font-otf font-cyrillic cyrillic
catalogue-version 1.092
@@ -128978,7 +127506,6 @@ docfiles size=11
runfiles size=2
RELOC/tex/latex/hexgame/hexgame.sty
catalogue-ctan /macros/latex/contrib/hexgame
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics games
catalogue-version 1.0
@@ -129005,7 +127532,6 @@ srcfiles size=12
runfiles size=4
RELOC/tex/latex/hf-tikz/hf-tikz.sty
catalogue-ctan /graphics/pgf/contrib/hf-tikz
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics decoration maths presentation
catalogue-version 0.3a
@@ -129084,7 +127610,6 @@ runfiles size=313
RELOC/fonts/type1/public/hfbright/hfsltl10.pfb
RELOC/fonts/type1/public/hfbright/hftl10.pfb
catalogue-ctan /fonts/ps-type1/hfbright
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics font font-sans font-type1
@@ -129795,7 +128320,6 @@ runfiles size=1217
RELOC/tex/latex/hfoldsty/ts1hfott.fd
RELOC/tex/latex/hfoldsty/ts1hfovtt.fd
catalogue-ctan /fonts/hfoldsty
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics font font-virtual font-supp
catalogue-version 1.15
@@ -129826,7 +128350,6 @@ srcfiles size=4
runfiles size=1
RELOC/tex/latex/hhtensor/hhtensor.sty
catalogue-ctan /macros/latex/contrib/hhtensor
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics maths
catalogue-version 0.61
@@ -129852,7 +128375,6 @@ srcfiles size=4
runfiles size=1
RELOC/tex/latex/histogr/histogr.sty
catalogue-ctan /macros/latex/contrib/histogr
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics graphics-plot
catalogue-version 1.01
@@ -129883,7 +128405,6 @@ runfiles size=10
RELOC/tex/latex/historische-zeitschrift/historische-zeitschrift.cbx
RELOC/tex/latex/historische-zeitschrift/historische-zeitschrift.lbx
catalogue-ctan /macros/latex/contrib/biblatex-contrib/historische-zeitschrift
-catalogue-date 2016-12-02 13:27:44 +0100
catalogue-license lppl
catalogue-topics journalpub biblatex
catalogue-version 1.2
@@ -129906,7 +128427,6 @@ docfiles size=7
runfiles size=6
RELOC/tex/latex/hitec/hitec.cls
catalogue-ctan /macros/latex/contrib/hitec
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics class
catalogue-version 0.0(beta)
@@ -129968,7 +128488,6 @@ catalogue-contact-home https://github.com/dustincys/hithesis
catalogue-contact-repository https://github.com/dustincys
catalogue-contact-support https://github.com/dustincys/hithesis/issues
catalogue-ctan /macros/latex/contrib/hithesis
-catalogue-date 2019-02-19 14:16:02 +0100
catalogue-license lppl1.3a
catalogue-topics dissertation
catalogue-version 2.0.6
@@ -130012,7 +128531,6 @@ runfiles size=12
RELOC/tex/latex/hletter/hsetup.sty
RELOC/tex/latex/hletter/mergeh.sty
catalogue-ctan /macros/latex/contrib/hletter
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.2
catalogue-topics letter class
catalogue-version 4.2
@@ -130037,7 +128555,6 @@ runfiles size=9
RELOC/tex/generic/hlist/hlist.sty
RELOC/tex/generic/hlist/hlist.tex
catalogue-ctan /macros/generic/hlist
-catalogue-date 2017-08-08 20:25:45 +0200
catalogue-license lppl1.3c
catalogue-topics list-supp table list
catalogue-version 0.11
@@ -130069,7 +128586,6 @@ catalogue-contact-development http://www.circle9.work/
catalogue-contact-home http://www.circle9.work/cards/intro/hmtrump/index.html
catalogue-contact-repository https://github.com/Hitomi-San/hmtrump
catalogue-ctan /macros/luatex/latex/hmtrump
-catalogue-date 2019-08-06 09:16:07 +0200
catalogue-license cc-by-sa-4other-free
catalogue-topics games luatex font font-ttf font-symbol font-supp-symbol font-supp
catalogue-version 1.2a
@@ -130106,7 +128622,6 @@ runfiles size=19
catalogue-contact-home https://github.com/loopspace/hobby
catalogue-contact-repository https://github.com/loopspace/hobby
catalogue-ctan /graphics/pgf/contrib/hobby
-catalogue-date 2017-06-01 13:47:13 +0200
catalogue-license lppl1.3
catalogue-topics graphics-curve graphics-supp graphics-in-tex expl3
catalogue-version 1.8
@@ -130137,7 +128652,6 @@ runfiles size=7
RELOC/tex/latex/hobete/beamerthemehohenheim.sty
RELOC/tex/latex/hobete/hobete.sty
catalogue-ctan /macros/latex/contrib/beamer-contrib/themes/hobete
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics presentation poster
@@ -130172,7 +128686,6 @@ runfiles size=3
catalogue-contact-bugs https://github.com/ho-tex/hobsub/issues
catalogue-contact-repository https://github.com/ho-tex/hobsub
catalogue-ctan /macros/latex/contrib/hobsub
-catalogue-date 2019-11-15 12:37:15 +0100
catalogue-license lppl1.3c
catalogue-topics macro-supp
@@ -130202,7 +128715,6 @@ runfiles size=14
catalogue-contact-bugs https://github.com/ho-tex/hologo/issues
catalogue-contact-repository https://github.com/ho-tex/hologo
catalogue-ctan /macros/latex/contrib/hologo
-catalogue-date 2019-12-06 05:25:08 +0100
catalogue-license lppl1.3
catalogue-topics logo
catalogue-version 1.14
@@ -130234,7 +128746,6 @@ docfiles size=4
RELOC/doc/support/hook-pre-commit-pkg/pre-commit-latex
catalogue-contact-repository https://github.com/maieul/git-hooks
catalogue-ctan /support/hook-pre-commit-pkg
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license gpl3
catalogue-topics package-devel
catalogue-version 1.1.2
@@ -130265,7 +128776,6 @@ srcfiles size=76
runfiles size=14
RELOC/tex/latex/horoscop/horoscop.sty
catalogue-ctan /macros/latex/contrib/horoscop
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics astrology
catalogue-version 0.92
@@ -130292,7 +128802,6 @@ srcfiles size=12
runfiles size=6
RELOC/tex/latex/hpsdiss/hpsdiss.cls
catalogue-ctan /macros/latex/contrib/hpsdiss
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics dissertation class
catalogue-version 1.0
@@ -130327,7 +128836,6 @@ srcfiles size=12
runfiles size=2
RELOC/tex/latex/hrefhide/hrefhide.sty
catalogue-ctan /macros/latex/contrib/hrefhide
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics hyper
catalogue-version 1.0f
@@ -130363,7 +128871,6 @@ runfiles size=4
RELOC/tex/latex/hrlatex/fsbmath.sty
RELOC/tex/latex/hrlatex/hrlatex.sty
catalogue-ctan /language/croatian/hrlatex
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license lppl
catalogue-topics croatian
catalogue-version 0.23
@@ -130409,7 +128916,6 @@ runfiles size=7
catalogue-contact-bugs https://github.com/LukasCBossert/hu-berlin-bundle/issues
catalogue-contact-repository https://github.com/LukasCBossert/hu-berlin-bundle
catalogue-ctan /macros/latex/contrib/hu-berlin-bundle
-catalogue-date 2019-06-26 16:22:27 +0200
catalogue-license lppl1.3cgpl2bsd3
catalogue-topics class letter
catalogue-version 1.0.3
@@ -130443,7 +128949,6 @@ srcfiles size=43
runfiles size=41
RELOC/tex/latex/hulipsum/hulipsum.sty
catalogue-ctan /macros/latex/contrib/hulipsum
-catalogue-date 2018-04-29 07:15:59 +0200
catalogue-license lppl1.3
catalogue-topics dummy-gen macro-supp hungarian
catalogue-version 1.0
@@ -130478,7 +128983,6 @@ runfiles size=54
RELOC/tex/latex/hustthesis/hustthesis.cls
catalogue-contact-repository https://github.com/hust-latex/hustthesis
catalogue-ctan /macros/latex/contrib/hustthesis
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl1.3
catalogue-topics dissertation class
catalogue-version 1.4
@@ -130614,7 +129118,6 @@ runfiles size=9
RELOC/tex/latex/hvfloat/hvfloat.sty
catalogue-also rotating
catalogue-ctan /macros/latex/contrib/hvfloat
-catalogue-date 2019-08-31 22:21:28 +0200
catalogue-license lppl
catalogue-topics float box-manip
catalogue-version 2.16
@@ -130640,7 +129143,6 @@ docfiles size=23
runfiles size=1
RELOC/tex/latex/hvindex/hvindex.sty
catalogue-ctan /macros/latex/contrib/hvindex
-catalogue-date 2017-12-12 10:21:06 +0100
catalogue-license lppl
catalogue-topics index
catalogue-version 0.04
@@ -130665,7 +129167,6 @@ docfiles size=28
runfiles size=1
RELOC/tex/latex/hvqrurl/hvqrurl.sty
catalogue-ctan /macros/latex/contrib/hvqrurl
-catalogue-date 2019-12-01 11:35:51 +0100
catalogue-license lppl1.3
catalogue-topics qrcode
catalogue-version 0.01a
@@ -130709,7 +129210,6 @@ runfiles size=29
RELOC/tex/latex/hypdvips/hypdvips.sty
catalogue-also breakurl
catalogue-ctan /macros/latex/contrib/hypdvips
-catalogue-date 2019-08-01 10:18:58 +0200
catalogue-license lppl1.3
catalogue-topics hyper
catalogue-version 3.03
@@ -130776,7 +129276,6 @@ runfiles size=49
RELOC/tex/latex/hyper/upref.hyp
RELOC/tex/latex/hyper/xr.hyp
catalogue-ctan /macros/latex/contrib/hyper
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics hyper
catalogue-version 4.2d
@@ -130807,7 +129306,6 @@ runfiles size=2
RELOC/tex/latex/hyperbar/hyperbar.sty
catalogue-also hyperref
catalogue-ctan /macros/latex/contrib/hyperbar
-catalogue-date 2018-07-07 05:11:29 +0200
catalogue-license lppl1.3c
catalogue-topics hyper pdf-feat pdf-forms
catalogue-version 0.1
@@ -130832,7 +129330,6 @@ docfiles size=48
runfiles size=2
RELOC/tex/latex/hypernat/hypernat.sty
catalogue-ctan /macros/latex/contrib/hypernat
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics hyper cite-supp
catalogue-version 1.0b
@@ -130924,7 +129421,6 @@ runfiles size=237
catalogue-contact-bugs https://github.com/latex3/hyperref/issues
catalogue-contact-home https://github.com/latex3/hyperref
catalogue-ctan /macros/latex/contrib/hyperref
-catalogue-date 2019-11-10 23:27:37 +0100
catalogue-license lppl1.3
catalogue-topics hyper pdf-feat adobe-distiller form-fillin
catalogue-version 7.00c
@@ -130978,7 +129474,6 @@ srcfiles size=69
runfiles size=11
RELOC/tex/latex/hyperxmp/hyperxmp.sty
catalogue-ctan /macros/latex/contrib/hyperxmp
-catalogue-date 2019-04-06 06:13:29 +0200
catalogue-license lppl1.3c
catalogue-topics pdf-feat
catalogue-version 4.1
@@ -131068,7 +129563,6 @@ catalogue-contact-home http://www.hyphenation.org
catalogue-contact-repository https://github.com/hyphenation/tex-hyphen
catalogue-contact-support http://tug.org/mailman/listinfo/tex-hyphen
catalogue-ctan /language/hyph-utf8
-catalogue-date 2019-05-19 05:42:51 +0200
catalogue-license other-free
catalogue-topics hyphenation
@@ -131198,7 +129692,6 @@ runfiles size=5
RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-eu.tex
RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-eu.pat.txt
catalogue-ctan /language/basque
-catalogue-date 2016-11-05 05:59:04 +0100
catalogue-license other-free
catalogue-topics basque hyphenation
@@ -131330,7 +129823,6 @@ runfiles size=9
RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-hr.tex
RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-hr.pat.txt
catalogue-ctan /language/hyphenation/hrhyph.tex
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license lppl1.3
catalogue-topics hyphenation croatian
@@ -131372,7 +129864,6 @@ runfiles size=8
RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-da.tex
RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-da.pat.txt
catalogue-ctan /language/hyphenation/dkhyphen
-catalogue-date 2016-11-05 05:59:04 +0100
catalogue-license lppl
catalogue-topics hyphenation danish
@@ -131398,7 +129889,6 @@ runfiles size=66
RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-nl.hyp.txt
RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-nl.pat.txt
catalogue-ctan /language/hyphenation/nehyph.tex
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license lppl
catalogue-topics hyphenation dutch
catalogue-version 1.1
@@ -131524,7 +130014,6 @@ runfiles size=5
RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-fi.tex
RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-fi.pat.txt
catalogue-ctan /language/hyphenation/fihyph
-catalogue-date 2016-07-20 08:22:15 +0200
catalogue-license pd
catalogue-topics hyphenation finnish
@@ -131652,7 +130141,6 @@ runfiles size=406
RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-de-ch-1901.pat.txt
catalogue-alias ghyphen gnhyph
catalogue-ctan /language/hyphenation/dehyph
-catalogue-date 2018-09-01 15:39:22 +0200
catalogue-license lppl1
catalogue-topics german hyphenation
@@ -131693,7 +130181,6 @@ runfiles size=20
RELOC/tex/generic/hyphen/grmhyph5.tex
RELOC/tex/generic/hyphen/grphyph5.tex
catalogue-ctan /language/hyphenation/elhyphen
-catalogue-date 2016-07-20 08:10:44 +0200
catalogue-license other-free
catalogue-topics greek hyphenation
catalogue-version 5
@@ -131725,7 +130212,6 @@ runfiles size=415
RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-hu.tex
RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-hu.pat.txt
catalogue-ctan /language/hungarian/hyphenation
-catalogue-date 2016-11-05 05:59:04 +0100
catalogue-license gpl
catalogue-topics hyphenation hungarian
@@ -131748,7 +130234,6 @@ runfiles size=23
RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-is.tex
RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-is.pat.txt
catalogue-ctan /language/hyphenation/icehyph.tex
-catalogue-date 2016-11-05 05:59:04 +0100
catalogue-license lppl
catalogue-topics hyphenation icelandic
@@ -131890,7 +130375,6 @@ runfiles size=5
RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-it.tex
RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-it.pat.txt
catalogue-ctan /language/hyphenation/ithyph.tex
-catalogue-date 2018-10-09 09:22:45 +0200
catalogue-license lgpl
catalogue-topics hyphenation italian
catalogue-version 4.8g
@@ -131950,7 +130434,6 @@ runfiles size=30
RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-la-x-liturgic.pat.txt
RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-la.pat.txt
catalogue-ctan /language/hyphenation/lahyph.tex
-catalogue-date 2016-11-05 05:59:04 +0100
catalogue-license lppl
catalogue-topics hyphenation latin
catalogue-version 3.1
@@ -132102,7 +130585,6 @@ runfiles size=28
RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-pl.hyp.txt
RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-pl.pat.txt
catalogue-ctan /language/polish/plhyph.tex
-catalogue-date 2016-07-17 15:05:50 +0200
catalogue-license knuth
catalogue-topics hyphenation polish
catalogue-version 3.0a
@@ -132247,7 +130729,6 @@ runfiles size=70
RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-sr-cyrl.pat.txt
catalogue-also shhyphl
catalogue-ctan /language/hyphenation/srhyphc.tex
-catalogue-date 2016-11-05 05:59:04 +0100
catalogue-license gpl
catalogue-topics hyphenation serbian
catalogue-version 1.0a
@@ -132319,7 +130800,6 @@ runfiles size=25
RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-es.pat.txt
catalogue-contact-home http://www.cervantex.es/
catalogue-ctan /language/spanish/hyphen/base
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl
catalogue-topics hyphenation spanish
catalogue-version 4.5
@@ -132387,7 +130867,6 @@ runfiles size=5
RELOC/tex/generic/hyph-utf8/patterns/tex/hyph-tr.tex
RELOC/tex/generic/hyph-utf8/patterns/txt/hyph-tr.pat.txt
catalogue-ctan /language/hyphenation/tkhyph.tex
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license other-free
catalogue-topics hyphenation turkish
@@ -132498,7 +130977,6 @@ srcfiles size=10
runfiles size=2
RELOC/tex/latex/hyphenat/hyphenat.sty
catalogue-ctan /macros/latex/contrib/hyphenat
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics hyphenation
catalogue-version 2.3c
@@ -132530,7 +131008,6 @@ runfiles size=6
RELOC/tex/generic/hyphenex/ushyphex.tex
catalogue-also tugboat tugboat-plain
catalogue-ctan /info/digests/tugboat/hyphenex
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license other-free
catalogue-topics hyphenation
@@ -132557,7 +131034,6 @@ runfiles size=4
RELOC/tex/plain/hyplain/hyrules.tex
catalogue-also babel
catalogue-ctan /macros/plain/contrib/hyplain
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics multilingual hyphenation plain-ext
catalogue-version 1.0
@@ -132594,7 +131070,6 @@ runfiles size=3
RELOC/tex/latex/ibycus-babel/lgienc.def
RELOC/tex/latex/ibycus-babel/lgifib.fd
catalogue-ctan /language/greek/ibycus-babel
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics greek multilingual-addon
catalogue-version 3.0
@@ -132682,7 +131157,6 @@ runfiles size=109
RELOC/tex/generic/ibygrk/tlgsqq.tex
RELOC/tex/generic/ibygrk/version4.tex
catalogue-ctan /fonts/greek/ibygrk
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics font font-greek greek
catalogue-version 4.5
@@ -132723,7 +131197,6 @@ catalogue-contact-bugs https://gitlab.com/ralessi/icite/issues
catalogue-contact-home http://www.robertalessi.net/icite
catalogue-contact-repository http://git.robertalessi.net/icite
catalogue-ctan /macros/latex/contrib/icite
-catalogue-date 2019-03-17 20:42:34 +0100
catalogue-license gpl3+cc-by-sa-4
catalogue-topics biblatex index bibtex-supp humanities cite-supp
catalogue-version 1.2
@@ -132751,7 +131224,6 @@ srcfiles size=10
runfiles size=3
RELOC/tex/latex/icsv/icsv.cls
catalogue-ctan /macros/latex/contrib/conferences/icsv
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics confproc
catalogue-version 0.2
@@ -132775,7 +131247,6 @@ catalogue-also dichokey
catalogue-contact-bugs https://gitlab.com/rj_white/latex-identkey/issues
catalogue-contact-repository https://gitlab.com/rj_white/latex-identkey
catalogue-ctan /macros/latex/contrib/identkey
-catalogue-date 2018-11-03 05:32:32 +0100
catalogue-license gpl3
catalogue-topics biology
catalogue-version 0.1.0
@@ -132799,7 +131270,6 @@ runfiles size=3
RELOC/tex/latex/idxcmds/idxcmds.sty
catalogue-contact-repository https://bitbucket.org/cgnieder/idxcmds/
catalogue-ctan /macros/latex/contrib/idxcmds
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl1.3
catalogue-topics index
catalogue-version 0.2c
@@ -132830,7 +131300,6 @@ srcfiles size=12
runfiles size=2
RELOC/tex/latex/idxlayout/idxlayout.sty
catalogue-ctan /macros/latex/contrib/idxlayout
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics index
catalogue-version 0.4d
@@ -132859,7 +131328,6 @@ runfiles size=9
RELOC/bibtex/bst/ieeepes/ieeepes.bst
RELOC/tex/latex/ieeepes/ieeepes.sty
catalogue-ctan /macros/latex/contrib/ieeepes
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics journalpub
catalogue-version 4.0
@@ -132888,7 +131356,6 @@ docfiles size=10
RELOC/doc/bibtex/ietfbibs/rfcs.tex
catalogue-contact-repository https://github.com/mor1/ietfbibs
catalogue-ctan /biblio/bibtex/utils/ietfbibs
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license mit
catalogue-topics bibtex-gen
catalogue-version 1.0.0
@@ -132917,7 +131384,6 @@ runfiles size=1
RELOC/tex/latex/iffont/iffont.sty
catalogue-contact-repository https://github.com/benjamin-weiss/iffont
catalogue-ctan /macros/latex/contrib/iffont
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl1.3
catalogue-topics font-mgmt
catalogue-version 1.0.0
@@ -132967,7 +131433,6 @@ runfiles size=211
RELOC/tex/latex/ifmslide/liquid_helium.jpg
catalogue-also prosper
catalogue-ctan /macros/latex/contrib/ifmslide
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.2
catalogue-topics presentation
catalogue-version 0.47
@@ -132994,7 +131459,6 @@ srcfiles size=3
runfiles size=1
RELOC/tex/latex/ifmtarg/ifmtarg.sty
catalogue-ctan /macros/latex/contrib/ifmtarg
-catalogue-date 2018-04-16 09:43:03 +0200
catalogue-license lppl
catalogue-topics macro-supp
catalogue-version 1.2b
@@ -133034,7 +131498,6 @@ runfiles size=8
RELOC/tex/latex/ifnextok/ifnextok.sty
catalogue-contact-support http://www.webdesign-bu.de/uwe_lueck/contact.html
catalogue-ctan /macros/latex/contrib/ifnextok
-catalogue-date 2017-05-06 08:24:26 +0200
catalogue-license lppl1.3
catalogue-topics macro-supp
catalogue-version 0.3
@@ -133066,7 +131529,6 @@ srcfiles size=4
runfiles size=1
RELOC/tex/latex/ifoddpage/ifoddpage.sty
catalogue-ctan /macros/latex/contrib/ifoddpage
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics typesetting macro-supp
catalogue-version 1.1
@@ -133100,7 +131562,6 @@ runfiles size=1
RELOC/tex/latex/ifplatform/ifplatform.sty
catalogue-contact-repository https://github.com/wspr/will2e
catalogue-ctan /macros/latex/contrib/ifplatform
-catalogue-date 2017-12-07 10:14:16 +0100
catalogue-license lppl1.3c
catalogue-topics env-query
catalogue-version 0.4a
@@ -133126,7 +131587,6 @@ runfiles size=4
RELOC/tex/generic/ifptex/ifuptex.sty
catalogue-contact-repository https://github.com/zr-tex8r/ifptex
catalogue-ctan /macros/generic/ifptex
-catalogue-date 2019-11-03 16:36:10 +0100
catalogue-license mit
catalogue-topics env-query japanese
catalogue-version 2.0
@@ -133188,7 +131648,6 @@ runfiles size=46
RELOC/tex/latex/ifsym/uifsym.fd
RELOC/tex/latex/ifsym/uifwea.fd
catalogue-ctan /fonts/ifsym
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license other-free
catalogue-topics font font-mf font-symbol
@@ -133222,7 +131681,6 @@ catalogue-also ifetex ifluatex ifpdf ifvtex ifxetex
catalogue-contact-bugs https://github.com/latex3/iftex/issues
catalogue-contact-repository https://github.com/latex3/iftex
catalogue-ctan /macros/latex/contrib/iftex
-catalogue-date 2019-11-09 19:19:36 +0100
catalogue-license lppl1.3c
catalogue-topics env-query
catalogue-version 1.0c
@@ -133247,7 +131705,6 @@ runfiles size=3
RELOC/tex/latex/ifthenx/ifthenx.sty
catalogue-also xifthen
catalogue-ctan /macros/latex/contrib/ifthenx
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics macro-supp cond-comp
catalogue-version 0.1a
@@ -133273,7 +131730,6 @@ runfiles size=1
catalogue-also ifptex
catalogue-contact-repository https://github.com/Man-Ting-Fang/ifxptex
catalogue-ctan /macros/generic/ifxptex
-catalogue-date 2017-12-27 11:02:36 +0100
catalogue-license knuth
catalogue-topics macro-supp env-query
catalogue-version 0.2
@@ -133306,7 +131762,6 @@ srcfiles size=4
runfiles size=1
RELOC/tex/latex/iitem/iitem.sty
catalogue-ctan /macros/latex/contrib/iitem
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics list
catalogue-version 1.0
@@ -133345,7 +131800,6 @@ runfiles size=11
RELOC/bibtex/bst/ijmart/ijmart.bst
RELOC/tex/latex/ijmart/ijmart.cls
catalogue-ctan /macros/latex/contrib/ijmart
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics journalpub
catalogue-version 1.7
@@ -133372,7 +131826,6 @@ docfiles size=39
runfiles size=7
RELOC/bibtex/bst/ijqc/ijqc.bst
catalogue-ctan /biblio/bibtex/contrib/ijqc
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics bibtex-sty journalpub
catalogue-version 1.2
@@ -133399,7 +131852,6 @@ catalogue-also biblatex-ijsra
catalogue-contact-bugs https://github.com/LukasCBossert/documentclass-ijsra/issues
catalogue-contact-repository https://github.com/LukasCBossert/documentclass-ijsra
catalogue-ctan /macros/latex/contrib/ijsra
-catalogue-date 2017-07-24 22:49:08 +0200
catalogue-license lppl1.3
catalogue-topics journalpub
catalogue-version 1.1
@@ -133425,7 +131877,6 @@ runfiles size=8
RELOC/bibtex/bst/imac/imac.bst
RELOC/tex/latex/imac/imac.sty
catalogue-ctan /macros/latex/contrib/imac
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics confproc
@@ -133472,7 +131923,6 @@ docfiles size=399
runfiles size=2
RELOC/tex/latex/image-gallery/image-gallery.cls
catalogue-ctan /macros/latex/contrib/image-gallery
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics graphics-use class
catalogue-version 1.0j
@@ -133505,7 +131955,6 @@ srcfiles size=17
runfiles size=4
RELOC/tex/latex/imakeidx/imakeidx.sty
catalogue-ctan /macros/latex/contrib/imakeidx
-catalogue-date 2016-10-15 23:51:37 +0200
catalogue-license lppl1.3
catalogue-topics index
catalogue-version 1.3e
@@ -133597,7 +132046,6 @@ runfiles size=1431
RELOC/tex/latex/imfellenglish/TS1IMFELLEnglish-TLF.fd
RELOC/tex/latex/imfellenglish/imfellEnglish.sty
catalogue-ctan /fonts/imfellenglish
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license ofl
catalogue-topics font font-otf font-type1
@@ -133653,7 +132101,6 @@ docfiles size=605
RELOC/doc/plain/impatient/xmptext.tex
catalogue-contact-repository http://savannah.gnu.org/projects/teximpatient
catalogue-ctan /info/impatient
-catalogue-date 2017-11-11 18:38:56 +0100
catalogue-license fdl
catalogue-topics book-src tut-plaintex french-doc chinese-doc
@@ -133703,7 +132150,6 @@ docfiles size=1289
RELOC/doc/plain/impatient-cn/xmptext.tex
catalogue-contact-repository http://savannah.gnu.org/projects/teximpatient
catalogue-ctan /info/impatient
-catalogue-date 2017-11-11 18:38:56 +0100
catalogue-license fdl
catalogue-topics book-src tut-plaintex french-doc chinese-doc
@@ -133750,7 +132196,6 @@ docfiles size=625
RELOC/doc/plain/impatient-fr/fxmptext.tex
catalogue-contact-repository http://savannah.gnu.org/projects/teximpatient
catalogue-ctan /info/impatient
-catalogue-date 2017-11-11 18:38:56 +0100
catalogue-license fdl
catalogue-topics book-src tut-plaintex french-doc chinese-doc
@@ -133778,7 +132223,6 @@ runfiles size=4
RELOC/tex/latex/impnattypo/impnattypo.sty
catalogue-also e-french
catalogue-ctan /macros/latex/contrib/impnattypo
-catalogue-date 2019-03-04 12:27:29 +0100
catalogue-license lppl1.3
catalogue-topics typesetting
catalogue-version 1.5
@@ -133803,7 +132247,6 @@ docfiles size=64
runfiles size=2
RELOC/tex/latex/import/import.sty
catalogue-ctan /macros/latex/contrib/import
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics file-control
catalogue-version 5.1
@@ -133829,7 +132272,6 @@ runfiles size=14
catalogue-contact-bugs https://github.com/bidi-tex/imsproc/issues
catalogue-contact-repository https://github.com/bidi-tex/imsproc
catalogue-ctan /macros/xetex/latex/imsproc
-catalogue-date 2018-11-28 19:55:07 +0100
catalogue-license lppl1.3
catalogue-topics confproc
catalogue-version 0.1
@@ -133864,7 +132306,6 @@ srcfiles size=24
runfiles size=4
RELOC/tex/latex/imtekda/IMTEKda.cls
catalogue-ctan /macros/latex/contrib/imtekda
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics dissertation class
catalogue-version 1.7
@@ -133904,7 +132345,6 @@ runfiles size=4
RELOC/tex/latex/incgraph/incgraph.sty
catalogue-also graphicx
catalogue-ctan /macros/latex/contrib/incgraph
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics graphics-incl
catalogue-version 1.12
@@ -133932,7 +132372,6 @@ runfiles size=2
catalogue-contact-bugs https://github.com/Strauman/includeRnw/issues
catalogue-contact-repository https://github.com/Strauman/includeRnw
catalogue-ctan /macros/latex/contrib/includernw
-catalogue-date 2018-05-01 13:33:04 +0200
catalogue-license lppl1.3c
catalogue-topics subdocs statistics compilation
catalogue-version 0.1.0
@@ -134148,7 +132587,6 @@ runfiles size=300
RELOC/tex/latex/inconsolata/zi4.sty
catalogue-contact-home http://levien.com/type/myfonts/inconsolata.html
catalogue-ctan /fonts/inconsolata
-catalogue-date 2019-06-23 10:22:25 +0200
catalogue-license oflapache2lppl1.3
catalogue-topics font font-mono font-type1 font-otf font-t1enc
catalogue-version 1.121
@@ -134192,7 +132630,6 @@ runfiles size=17
RELOC/tex/latex/index/index.sty
catalogue-also splitindex multind
catalogue-ctan /macros/latex/contrib/index
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license other-free
catalogue-topics index index-multi
catalogue-version 4.1beta
@@ -134228,7 +132665,6 @@ runfiles size=4
RELOC/tex/latex/indextools/indextools.sty
catalogue-also imakeidx
catalogue-ctan /macros/latex/contrib/indextools
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics index
catalogue-version 1.5.1
@@ -134258,7 +132694,6 @@ runfiles size=3
catalogue-contact-bugs https://github.com/ho-tex/infwarerr/issues
catalogue-contact-repository https://github.com/ho-tex/infwarerr
catalogue-ctan /macros/latex/contrib/infwarerr
-catalogue-date 2019-12-04 05:58:09 +0100
catalogue-license lppl1.3
catalogue-topics messages
catalogue-version 1.5
@@ -134462,7 +132897,6 @@ runfiles size=898
RELOC/tex/latex/initials/Typocaps.fd
RELOC/tex/latex/initials/Zallman.fd
catalogue-ctan /fonts/initials
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics font font-type1 font-decor
@@ -134490,7 +132924,6 @@ runfiles size=2
catalogue-contact-repository https://github.com/inklatex-group/inkpaper/
catalogue-contact-support https://github.com/inklatex-group/inkpaper/issues
catalogue-ctan /macros/latex/contrib/inkpaper
-catalogue-date 2019-06-24 11:15:14 +0200
catalogue-license gpl3
catalogue-topics maths maths-theorem
catalogue-version 1.0
@@ -134518,7 +132951,6 @@ runfiles size=1
catalogue-contact-bugs https://mrw.sh/templates/inline-images/issues
catalogue-contact-home https://mrw.sh/templates/inline-images
catalogue-ctan /macros/latex/contrib/inline-images
-catalogue-date 2018-08-18 05:31:14 +0200
catalogue-license lgpl3
catalogue-topics image-supp
catalogue-version 1.0
@@ -134547,7 +132979,6 @@ runfiles size=8
RELOC/tex/latex/inlinebib/inlinebib.sty
RELOC/tex/latex/inlinebib/pageranges.sty
catalogue-ctan /biblio/bibtex/contrib/inlinebib
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license lppl
catalogue-topics cite-foot
@@ -134583,7 +133014,6 @@ srcfiles size=11
runfiles size=3
RELOC/tex/latex/inlinedef/inlinedef.sty
catalogue-ctan /macros/latex/contrib/inlinedef
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics macro-def
catalogue-version 1.0
@@ -134652,7 +133082,6 @@ runfiles size=120
catalogue-contact-bugs https://github.com/ho-tex/inputenx/issues
catalogue-contact-repository https://github.com/ho-tex/inputenx
catalogue-ctan /macros/latex/contrib/inputenx
-catalogue-date 2019-11-30 11:10:53 +0100
catalogue-license lppl1.3
catalogue-topics inputenc
catalogue-version 1.12
@@ -134689,7 +133118,6 @@ runfiles size=3
RELOC/tex/latex/inputtrc/inputtrc.sty
catalogue-contact-support http://www.webdesign-bu.de/uwe_lueck/contact.html
catalogue-ctan /macros/latex/contrib/inputtrc
-catalogue-date 2017-05-06 08:27:29 +0200
catalogue-license lppl1.3
catalogue-topics debug-supp
catalogue-version 0.3
@@ -135570,7 +133998,6 @@ runfiles size=2721
RELOC/tex/latex/inriafonts/TS1InriaSerif-TLF.fd
RELOC/tex/latex/inriafonts/TS1InriaSerif-TOsF.fd
catalogue-ctan /fonts/inriafonts
-catalogue-date 2019-01-28 05:39:57 +0100
catalogue-license ofllppl
catalogue-topics font font-sans font-serif font-body font-otf font-type1 font-t1enc font-proportional
catalogue-version 1.0
@@ -135596,7 +134023,6 @@ runfiles size=2
RELOC/tex/generic/insbox/insbox.tex
catalogue-also wrapfig floatflt infpic
catalogue-ctan /macros/generic/insbox
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics text-flow
catalogue-version 2.2
@@ -135630,7 +134056,6 @@ runfiles size=5
texmf-dist/scripts/installfont/installfont-tl
catalogue-contact-repository https://bitbucket.org/kleberj/installfont/
catalogue-ctan /support/installfont
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license lppl
catalogue-topics font-proc
catalogue-version 1.7
@@ -135912,7 +134337,6 @@ runfiles size=17
RELOC/tex/latex/interactiveworkbook/interactiveworkbook-web.sty
RELOC/tex/latex/interactiveworkbook/interactiveworkbook.sty
catalogue-ctan /macros/latex/contrib/interactiveworkbook
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics tutorial
@@ -135941,7 +134365,6 @@ runfiles size=6
RELOC/tex/xelatex/interchar/interchar.sty
catalogue-contact-repository https://github.com/zohooo/interchar
catalogue-ctan /macros/xetex/latex/interchar
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl1.3
catalogue-topics xetex
catalogue-version 0.2
@@ -135998,7 +134421,6 @@ runfiles size=60
RELOC/tex/latex/interfaces/interfaces-umrand.sty
RELOC/tex/latex/interfaces/interfaces.sty
catalogue-ctan /macros/latex/contrib/interfaces
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics package-supp
catalogue-version 3.1
@@ -136036,7 +134458,6 @@ runfiles size=8
RELOC/tex/luatex/interpreter/interpreter.sty
RELOC/tex/luatex/interpreter/interpreter.tex
catalogue-ctan /macros/luatex/generic/interpreter
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics foreign-import macro-supp luatex
catalogue-version 1.2
@@ -136066,7 +134487,6 @@ docfiles size=82
runfiles size=1
RELOC/tex/latex/interval/interval.sty
catalogue-ctan /macros/latex/contrib/interval
-catalogue-date 2019-03-06 17:01:59 +0100
catalogue-license lppl1.3
catalogue-topics maths paren-mgmt
catalogue-version 0.4
@@ -136093,7 +134513,6 @@ runfiles size=1
RELOC/tex/latex/intopdf/intopdf.sty
catalogue-contact-repository https://github.com/zauguin/intopdf
catalogue-ctan /macros/latex/contrib/intopdf
-catalogue-date 2019-05-28 09:36:39 +0200
catalogue-license lppl1.3c
catalogue-topics hyper pdf-feat
catalogue-version 0.2.1
@@ -136120,7 +134539,6 @@ docfiles size=113
RELOC/doc/latex/intro-scientific/scidoc.pdf details="The document itself"
RELOC/doc/latex/intro-scientific/scidoc.tex
catalogue-ctan /info/intro-scientific
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics tut-latex
catalogue-version 5th edition
@@ -136148,7 +134566,6 @@ srcfiles size=4
runfiles size=1
RELOC/tex/latex/inversepath/inversepath.sty
catalogue-ctan /macros/latex/contrib/inversepath
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license lppl1.3
catalogue-topics macro-supp
catalogue-version 0.2
@@ -136177,7 +134594,6 @@ runfiles size=13
RELOC/tex/latex/invoice/invoicelabels.sty
catalogue-also facture invoice2
catalogue-ctan /macros/latex/contrib/invoice
-catalogue-date 2018-08-07 13:30:16 +0200
catalogue-license lppl1.3c
catalogue-topics invoice
@@ -136208,7 +134624,6 @@ runfiles size=2
RELOC/tex/latex/invoice-class/invoice-class.cls
catalogue-contact-repository https://github.com/amunn/invoice-class
catalogue-ctan /macros/latex/contrib/invoice-class
-catalogue-date 2019-01-20 05:26:54 +0100
catalogue-license lppl1.3
catalogue-topics invoice csv-support
catalogue-version 1.0
@@ -136243,7 +134658,6 @@ runfiles size=7
RELOC/tex/latex/invoice2/invoice2.sty
catalogue-contact-home https://github.com/no-preserve-root/invoice2
catalogue-ctan /macros/latex/contrib/invoice2
-catalogue-date 2018-01-17 06:29:29 +0100
catalogue-license gpl3+
catalogue-topics invoice
@@ -136319,7 +134733,6 @@ runfiles size=24
catalogue-contact-bugs https://github.com/faltfe/iodhbwm/issues
catalogue-contact-repository https://github.com/faltfe/iodhbwm/
catalogue-ctan /macros/latex/contrib/iodhbwm
-catalogue-date 2019-09-18 09:53:07 +0200
catalogue-license lppl1.3
catalogue-topics class dissertation misc-paper
catalogue-version 1.1.1
@@ -136363,7 +134776,6 @@ srcfiles size=16
runfiles size=7
RELOC/tex/latex/ionumbers/ionumbers.sty
catalogue-ctan /macros/latex/contrib/ionumbers
-catalogue-date 2018-01-06 12:59:56 +0100
catalogue-license gpl
catalogue-topics numbers
catalogue-version 0.3.3
@@ -136388,7 +134800,6 @@ docfiles size=21
runfiles size=9
RELOC/bibtex/bst/iopart-num/iopart-num.bst
catalogue-ctan /biblio/bibtex/contrib/iopart-num
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics bibtex-supp journalpub
catalogue-version 2.1
@@ -136419,7 +134830,6 @@ runfiles size=10380
catalogue-also ipaex-type1
catalogue-contact-home http://ipafont.ipa.go.jp/
catalogue-ctan /fonts/ipaex
-catalogue-date 2019-09-05 10:07:17 +0200
catalogue-license other-free
catalogue-topics font font-ttf japanese
@@ -138322,7 +136732,6 @@ runfiles size=5874
RELOC/tex/latex/ipaex-type1/ts1ipxg.fd
RELOC/tex/latex/ipaex-type1/ts1ipxm.fd
catalogue-ctan /fonts/ipaex-type1
-catalogue-date 2018-05-13 17:45:13 +0200
catalogue-license other-free
catalogue-topics font font-type1 japanese
catalogue-version 0.5
@@ -138350,7 +136759,6 @@ runfiles size=40
RELOC/bibtex/bst/is-bst/is-plain.bst
RELOC/bibtex/bst/is-bst/is-unsrt.bst
catalogue-ctan /biblio/bibtex/contrib/is-bst
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license other-free
catalogue-topics bibtex-sty
catalogue-version 2.03
@@ -138376,7 +136784,6 @@ docfiles size=75
runfiles size=2
RELOC/tex/latex/iscram/iscram.cls
catalogue-ctan /macros/latex/contrib/iscram
-catalogue-date 2018-01-07 12:14:32 +0100
catalogue-license lppl1.3
catalogue-topics confproc
catalogue-version 1.1
@@ -138421,7 +136828,6 @@ runfiles size=27
RELOC/tex/latex/iso/isov2.cls
catalogue-also iso10303
catalogue-ctan /macros/latex/contrib/isostds/iso
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics typeset-std
catalogue-version 2.4
@@ -138500,7 +136906,6 @@ runfiles size=87
RELOC/tex/latex/iso10303/stepv13.sty
RELOC/tex/latex/iso10303/stppdlst.tex
catalogue-ctan /macros/latex/contrib/isostds/iso10303
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics typeset-std
catalogue-version 1.5
@@ -138554,7 +136959,6 @@ runfiles size=17
RELOC/tex/latex/isodate/norsk.idf
RELOC/tex/latex/isodate/swedish.idf
catalogue-ctan /macros/latex/contrib/isodate
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics date-time
catalogue-version 2.28
@@ -138585,7 +136989,6 @@ srcfiles size=375
runfiles size=12
RELOC/tex/latex/isodoc/isodoc.cls
catalogue-ctan /macros/latex/contrib/isodoc
-catalogue-date 2018-05-29 18:45:14 +0200
catalogue-license lppl1.3
catalogue-topics letter invoice class
catalogue-version 1.10
@@ -138619,7 +137022,6 @@ docfiles size=211
runfiles size=4
RELOC/tex/latex/isomath/isomath.sty
catalogue-ctan /macros/latex/contrib/isomath
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license lppl
catalogue-topics font-supp-maths std-conform
catalogue-version 0.6.1
@@ -138645,7 +137047,6 @@ docfiles size=52
runfiles size=2
RELOC/tex/latex/isonums/isonums.sty
catalogue-ctan /macros/latex/contrib/isonums
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics std-conform
catalogue-version 1.0
@@ -138671,7 +137072,6 @@ docfiles size=19
runfiles size=1
RELOC/tex/latex/isopt/isopt.sty
catalogue-ctan /macros/latex/contrib/isopt
-catalogue-date 2018-01-07 12:14:32 +0100
catalogue-license lppl
catalogue-topics misc-support
catalogue-version 0.01
@@ -138701,7 +137101,6 @@ srcfiles size=13
runfiles size=2
RELOC/tex/latex/isorot/isorot.sty
catalogue-ctan /macros/latex/contrib/isorot
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics rotation
@@ -138728,7 +137127,6 @@ srcfiles size=3
runfiles size=1
RELOC/tex/latex/isotope/isotope.sty
catalogue-ctan /macros/latex/contrib/isotope
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics subsup-pos physics
catalogue-version 0.3
@@ -138765,7 +137163,6 @@ srcfiles size=4
runfiles size=1
RELOC/tex/latex/issuulinks/issuulinks.sty
catalogue-ctan /macros/latex/contrib/issuulinks
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics label-ref hyper
catalogue-version 1.1
@@ -138797,7 +137194,6 @@ docfiles size=250
runfiles size=29
RELOC/tex/latex/istgame/istgame.sty
catalogue-ctan /graphics/pgf/contrib/istgame
-catalogue-date 2019-01-28 08:58:56 +0100
catalogue-license lppl1.3c
catalogue-topics pgf-tikz games tree
catalogue-version 2.0
@@ -138827,7 +137223,6 @@ srcfiles size=8
runfiles size=2
RELOC/tex/latex/itnumpar/itnumpar.sty
catalogue-ctan /macros/latex/contrib/itnumpar
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics italian numbers
catalogue-version 1.0
@@ -138856,7 +137251,6 @@ docfiles size=124
runfiles size=9
RELOC/tex/latex/iwhdp/iwhdp.cls
catalogue-ctan /macros/latex/contrib/iwhdp
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics misc-paper class
catalogue-version 0.50
@@ -139501,7 +137895,6 @@ runfiles size=4371
RELOC/tex/latex/iwona/ts1iwonalc.fd
RELOC/tex/plain/iwona/iwona-math.tex
catalogue-ctan /fonts/iwona
-catalogue-date 2018-06-16 10:29:14 +0200
catalogue-license gfl
catalogue-topics font font-type1 font-otf
catalogue-version 0.995b
@@ -139526,7 +137919,6 @@ docfiles size=6
runfiles size=7
RELOC/fonts/source/public/jablantile/jablantile.mf
catalogue-ctan /fonts/jablantile
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics font font-mf font-novelty
@@ -139559,7 +137951,6 @@ runfiles size=5
RELOC/tex/latex/jacow/jacow.cls
catalogue-contact-home http://www.jacow.org/Authors/LaTeX
catalogue-ctan /macros/latex/contrib/jacow
-catalogue-date 2019-04-08 15:01:44 +0200
catalogue-license lppl1.3c
catalogue-topics confproc
catalogue-version 2.4
@@ -139648,7 +138039,6 @@ runfiles size=60
texmf-dist/tex/jadetex/base/ut1omlgc.fd
catalogue-contact-repository http://jadetex.sourceforge.net/
catalogue-ctan /macros/jadetex
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license other-free
catalogue-topics foreign-import
catalogue-version 3.13
@@ -139943,7 +138333,6 @@ runfiles size=136
RELOC/tex/latex/jamtimes/t1jtm.fd
RELOC/tex/latex/jamtimes/ts1jtm.fd
catalogue-ctan /fonts/jamtimes
-catalogue-date 2009-11-07 09:52:42 +0000
catalogue-license other-free
catalogue-topics font-supp
catalogue-version 1.12
@@ -142089,7 +140478,6 @@ runfiles size=31095
catalogue-contact-home http://psitau.kitunebi.com/otf.html
catalogue-contact-repository https://github.com/texjporg/japanese-otf-mirror
catalogue-ctan /language/japanese/japanese-otf
-catalogue-date 2019-04-02 20:16:48 +0200
catalogue-license other-free
catalogue-topics font-use font-cjk japanese
catalogue-version 1.7b8
@@ -143177,7 +141565,6 @@ runfiles size=21021
catalogue-contact-home http://www.t-lab.opal.ne.jp/tex/uptex.html
catalogue-contact-repository https://github.com/texjporg/japanese-otf-mirror
catalogue-ctan /language/japanese/japanese-otf-uptex
-catalogue-date 2019-09-07 16:34:17 +0200
catalogue-license bsd3
catalogue-topics font-use font-cjk japanese
catalogue-version 0.24
@@ -143197,7 +141584,6 @@ containerchecksum 0f1cd72dca41b37c26d863aa734737ad128f5c39c508db13a3e91e4088477a
runfiles size=9
RELOC/bibtex/bst/jbact/jbact.bst
catalogue-ctan /biblio/bibtex/contrib/misc/jbact.bst
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license other-free
catalogue-topics bibtex-sty journalpub
catalogue-version 1.30
@@ -143227,7 +141613,6 @@ docfiles size=9
runfiles size=26
texmf-dist/scripts/jfmutil/jfmutil.pl
catalogue-ctan /fonts/utilities/jfmutil
-catalogue-date 2019-09-03 22:04:21 +0200
catalogue-license mit
catalogue-topics font-proc
catalogue-version 1.2.3
@@ -143400,7 +141785,6 @@ catalogue-contact-bugs https://github.com/samcarter/jigsaw/issues
catalogue-contact-repository https://github.com/samcarter/jigsaw
catalogue-contact-support https://github.com/samcarter/jigsaw/issues
catalogue-ctan /graphics/pgf/contrib/jigsaw
-catalogue-date 2018-11-09 11:23:00 +0100
catalogue-license lppl1.3c
catalogue-topics pgf-tikz
catalogue-version 0.1a
@@ -143426,7 +141810,6 @@ runfiles size=1
RELOC/tex/latex/jkmath/jkmath.sty
catalogue-contact-home https://github.com/JKaerts/jkmath
catalogue-ctan /macros/latex/contrib/jkmath
-catalogue-date 2018-04-29 07:15:59 +0200
catalogue-license lppl
catalogue-topics maths
catalogue-version 0.1
@@ -143473,7 +141856,6 @@ runfiles size=19
RELOC/tex/latex/jknapltx/ustmary.fd
RELOC/tex/latex/jknapltx/young.sty
catalogue-ctan /macros/latex/contrib/jknappen
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics collection
@@ -143495,7 +141877,6 @@ docfiles size=11
runfiles size=1
RELOC/tex/latex/jlabels/jlabels.sty
catalogue-ctan /macros/latex/contrib/jlabels
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics labels
@@ -143610,7 +141991,6 @@ runfiles size=6932
RELOC/tex/luatex/jlreq/jfm-jlreqv.lua
catalogue-contact-home https://github.com/abenori/jlreq
catalogue-ctan /language/japanese/jlreq
-catalogue-date 2019-09-24 15:38:25 +0200
catalogue-license bsd2
catalogue-topics japanese font-cjk class
@@ -143633,7 +142013,6 @@ runfiles size=11
RELOC/bibtex/bst/jmb/jmb.bst
RELOC/tex/latex/jmb/jmb.sty
catalogue-ctan /biblio/bibtex/contrib/jmb
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license other-free
catalogue-topics molbio bibtex-sty
catalogue-version 1.21
@@ -143698,7 +142077,6 @@ runfiles size=29
RELOC/tex/latex/jmlr/jmlrutils.sty
catalogue-contact-bugs http://www.dickimaw-books.com/cgi-bin/bugtracker.cgi
catalogue-ctan /macros/latex/contrib/jmlr
-catalogue-date 2017-08-01 19:14:03 +0200
catalogue-license lppl1.3
catalogue-topics journalpub class
catalogue-version 1.24
@@ -143743,7 +142121,6 @@ runfiles size=8
RELOC/bibtex/bst/jneurosci/jneurosci.bst
RELOC/tex/latex/jneurosci/jneurosci.sty
catalogue-ctan /biblio/bibtex/contrib/jneurosci
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics neuro bibtex-sty
catalogue-version 1.00
@@ -143783,7 +142160,6 @@ runfiles size=6
RELOC/tex/latex/jnuexam/jnuexam.cls
catalogue-contact-home https://lvjr.bitbucket.io/jnuexam.html
catalogue-ctan /macros/latex/contrib/jnuexam
-catalogue-date 2019-11-08 10:54:48 +0100
catalogue-license lppl1.3
catalogue-topics exam class chinese
catalogue-version 0.7
@@ -143806,7 +142182,6 @@ runfiles size=8
RELOC/tex/latex/jpsj/jpsj2.cls
catalogue-contact-home http://journals.jps.jp/page/jpsj/authors/style
catalogue-ctan /macros/latex/contrib/jpsj
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl
catalogue-topics physics journalpub
catalogue-version 1.2.2
@@ -143848,7 +142223,6 @@ runfiles size=13
RELOC/tex/plain/js-misc/sperr.tex
RELOC/tex/plain/js-misc/xfig.tex
catalogue-ctan /macros/plain/contrib/js-misc
-catalogue-date 2016-07-17 15:12:14 +0200
catalogue-license pd
catalogue-topics collection
@@ -143899,7 +142273,6 @@ runfiles size=85
RELOC/tex/platex/jsclasses/okuverb.sty
catalogue-contact-repository https://github.com/texjporg/jsclasses
catalogue-ctan /macros/latex/contrib/jsclasses
-catalogue-date 2019-07-25 15:15:02 +0200
catalogue-license bsd
catalogue-topics japanese class
@@ -143982,7 +142355,6 @@ runfiles size=21
RELOC/tex/latex/jslectureplanner/jsmembertable.sty
catalogue-contact-repository https://github.com/jspitz/jslectureplanner
catalogue-ctan /macros/latex/contrib/jslectureplanner
-catalogue-date 2019-02-09 05:50:04 +0100
catalogue-license lppl1.3
catalogue-topics teaching
catalogue-version 1.8
@@ -144010,7 +142382,6 @@ docfiles size=67
runfiles size=5
RELOC/tex/latex/jumplines/jumplines.sty
catalogue-ctan /macros/latex/contrib/jumplines
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics luatex journalpub
catalogue-version 0.2
@@ -144045,7 +142416,6 @@ runfiles size=752
RELOC/fonts/truetype/public/junicode/Junicode.ttf
RELOC/tex/latex/junicode/mt-Junicode.cfg
catalogue-ctan /fonts/junicode
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics font font-ttf font-historical
catalogue-version 0.7.7
@@ -144078,7 +142448,6 @@ runfiles size=4
RELOC/tex/latex/jura/jura.cls
catalogue-also juramisc alnumsec jurabib
catalogue-ctan /macros/latex/contrib/jura
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics dissertation legal german class
catalogue-version 4.3
@@ -144111,7 +142480,6 @@ runfiles size=4
RELOC/tex/latex/juraabbrev/juraabbrev.sty
catalogue-also jurarsp
catalogue-ctan /macros/latex/contrib/juraabbrev
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics legal german
@@ -144184,7 +142552,6 @@ runfiles size=145
catalogue-also jura juramisc alphanum alnumsec
catalogue-contact-repository http://sourceforge.net/projects/jurabib
catalogue-ctan /macros/latex/contrib/jurabib
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license gpl
catalogue-topics bibtex-supp
catalogue-version 0.6
@@ -144218,7 +142585,6 @@ runfiles size=31
RELOC/tex/latex/juramisc/juraurtl.cls
catalogue-also jura alphanum alnumsec jurabib
catalogue-ctan /macros/latex/contrib/juramisc
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license lppl
catalogue-topics legal book-pub class german
catalogue-version 0.91
@@ -144252,7 +142618,6 @@ runfiles size=17
RELOC/tex/latex/jurarsp/jurarsp.sty
catalogue-also juraabbrev
catalogue-ctan /macros/latex/contrib/jurarsp
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics bibtex-supp legal german
catalogue-version 0.52
@@ -144289,7 +142654,6 @@ runfiles size=2
RELOC/tex/latex/jvlisting/jvlisting.sty
catalogue-also verbatim
catalogue-ctan /macros/latex/contrib/jvlisting
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics listing
catalogue-version 0.7
@@ -144327,7 +142691,6 @@ catalogue-contact-home https://github.com/Andrew-William-Smith/kalendarium
catalogue-contact-repository https://github.com/Andrew-William-Smith/kalendarium
catalogue-contact-support https://github.com/Andrew-William-Smith/kalendarium/issues
catalogue-ctan /macros/latex/contrib/kalendarium
-catalogue-date 2018-09-26 16:01:35 +0200
catalogue-license lppl1.3c
catalogue-topics calendar latex3
catalogue-version 1.0
@@ -144358,7 +142721,6 @@ runfiles size=5
RELOC/tex/luatex/kanaparser/kanaparser.lua
RELOC/tex/luatex/kanaparser/kanaparser.tex
catalogue-ctan /macros/luatex/generic/kanaparser
-catalogue-date 2018-06-24 05:03:49 +0200
catalogue-license bsd
catalogue-topics luatex parser japanese
catalogue-version 1.0
@@ -144388,7 +142750,6 @@ runfiles size=47
RELOC/tex/latex/kantlipsum/kantlipsum.sty
catalogue-also blindtext
catalogue-ctan /macros/latex/contrib/kantlipsum
-catalogue-date 2019-07-25 09:17:57 +0200
catalogue-license lppl1.3c
catalogue-topics macro-supp dummy-gen
catalogue-version 0.8a
@@ -144414,7 +142775,6 @@ runfiles size=5
RELOC/tex/latex/karnaugh/kvmacros.tex
catalogue-also askmaps karnaughmap karnaugh-map
catalogue-ctan /macros/latex/contrib/karnaugh
-catalogue-date 2016-11-25 19:23:56 +0100
catalogue-license lppl1
catalogue-topics engineering maths
@@ -144446,7 +142806,6 @@ runfiles size=8
catalogue-also karnaugh karnaughmap
catalogue-contact-repository https://github.com/2pi/karnaugh-map
catalogue-ctan /graphics/pgf/contrib/karnaugh-map
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license other-free
catalogue-topics maths engineering pgf-tikz
catalogue-version 1.1
@@ -144476,7 +142835,6 @@ runfiles size=6
RELOC/tex/latex/karnaughmap/karnaughmap.sty
catalogue-also karnaugh karnaugh-map
catalogue-ctan /graphics/pgf/contrib/karnaughmap
-catalogue-date 2016-11-25 19:28:19 +0100
catalogue-license lppl1.2
catalogue-topics engineering maths pgf-tikz
catalogue-version 2.0
@@ -144504,7 +142862,6 @@ srcfiles size=7
runfiles size=1
RELOC/tex/generic/kastrup/binhex.tex
catalogue-ctan /macros/generic/kastrup
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license other-free
catalogue-topics numbers
@@ -144529,7 +142886,6 @@ runfiles size=9
RELOC/tex/latex/kblocks/kblocks.sty
catalogue-contact-home https://github.com/somefunagba/kblocks
catalogue-ctan /graphics/pgf/contrib/kblocks
-catalogue-date 2019-10-14 19:12:52 +0200
catalogue-license mit
catalogue-topics diagram-block diagram-flow
catalogue-version 1.0
@@ -144569,7 +142925,6 @@ runfiles size=5
RELOC/tex/latex/kdgdocs/kdgcoursetext.cls
RELOC/tex/latex/kdgdocs/kdgmasterthesis.cls
catalogue-ctan /macros/latex/contrib/kdgdocs
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics dissertation class
catalogue-version 1.0
@@ -144869,7 +143224,6 @@ runfiles size=966
RELOC/tex/latex/kerkis/t1mak.fd
RELOC/tex/latex/kerkis/t1maksf.fd
catalogue-ctan /fonts/greek/kerkis
-catalogue-date 2019-11-12 10:52:49 +0100
catalogue-license lppl1.3c
catalogue-topics font font-greek font-maths font-type1
catalogue-version 1.1
@@ -144927,7 +143281,6 @@ runfiles size=22
RELOC/tex/latex/kerntest/t2bmtx.clo
RELOC/tex/latex/kerntest/ts1mtx.clo
catalogue-ctan /macros/latex/contrib/kerntest
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics font-devel
catalogue-version 1.32
@@ -145698,7 +144051,6 @@ catalogue-contact-home http://ketpic.com
catalogue-contact-repository https://github.com/ketpic/ketcindy
catalogue-contact-support https://github.com/ketpic/ketcindy/issues
catalogue-ctan /graphics/ketcindy
-catalogue-date 2019-09-27 16:05:11 +0200
catalogue-license gpl3+
catalogue-topics maths graphics
catalogue-version 20190927.0
@@ -145876,7 +144228,6 @@ srcfiles size=16
runfiles size=5
RELOC/tex/latex/keycommand/keycommand.sty
catalogue-ctan /macros/latex/contrib/keycommand
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics keyval
catalogue-version 3.1415
@@ -145920,7 +144271,6 @@ runfiles size=9
RELOC/tex/latex/keyfloat/keyfloat.sty
catalogue-contact-home http://bdtechconcepts.com
catalogue-ctan /macros/latex/contrib/keyfloat
-catalogue-date 2019-09-23 11:20:39 +0200
catalogue-license lppl1.3
catalogue-topics float
catalogue-version 2.01
@@ -145954,7 +144304,6 @@ runfiles size=1
catalogue-contact-bugs https://github.com/rzach/keyindex/issues
catalogue-contact-repository https://github.com/rzach/keyindex
catalogue-ctan /macros/latex/contrib/keyindex
-catalogue-date 2019-04-06 05:43:19 +0200
catalogue-license lppl1.3c
catalogue-topics index
catalogue-version 1.0
@@ -145982,7 +144331,6 @@ docfiles size=64
runfiles size=10
RELOC/tex/latex/keyreader/keyreader.sty
catalogue-ctan /macros/latex/contrib/keyreader
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics keyval
catalogue-version 0.5b
@@ -146011,7 +144359,6 @@ runfiles size=10
RELOC/tex/latex/keystroke/keystroke_right.eps
RELOC/tex/latex/keystroke/keystroke_right.pdf
catalogue-ctan /macros/latex/contrib/keystroke
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics doc-supp
catalogue-version 1.6
@@ -146039,7 +144386,6 @@ docfiles size=91
runfiles size=3
RELOC/tex/latex/keyval2e/keyval2e.sty
catalogue-ctan /macros/latex/contrib/keyval2e
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics keyval
catalogue-version 0.0.2
@@ -146073,7 +144419,6 @@ runfiles size=7
catalogue-contact-bugs https://github.com/Ri-Ga/keyvaltable/issues
catalogue-contact-repository https://github.com/Ri-Ga/keyvaltable
catalogue-ctan /macros/latex/contrib/keyvaltable
-catalogue-date 2019-06-01 10:05:30 +0200
catalogue-license lppl1.2
catalogue-topics table
catalogue-version 2.0
@@ -146097,7 +144442,6 @@ runfiles size=1
RELOC/tex/latex/kix/kix.sty
catalogue-also pst-barcode kixfont
catalogue-ctan /macros/latex/contrib/kix
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1
catalogue-topics barcode
@@ -146125,7 +144469,6 @@ runfiles size=2
RELOC/fonts/tfm/public/kixfont/kix.tfm
catalogue-also kix pst-barcode
catalogue-ctan /fonts/kixfont
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license other-free
catalogue-topics font font-mf font-specialist barcode
@@ -146291,7 +144634,6 @@ runfiles size=294
RELOC/tex/plain/knitting/knitting.tex
catalogue-also knittingpattern
catalogue-ctan /fonts/knitting
-catalogue-date 2019-04-06 09:30:27 +0200
catalogue-license lppl1.3
catalogue-topics diagram font font-symbol font-type1 font-mf
catalogue-version 3.0
@@ -146321,7 +144663,6 @@ runfiles size=1
RELOC/tex/latex/knittingpattern/knittingpattern.cls
catalogue-also knitting
catalogue-ctan /macros/latex/contrib/knittingpattern
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics diagram
@@ -146357,7 +144698,6 @@ runfiles size=32
catalogue-contact-home https://www.irif.fr/~colcombe/knowledge_en.html
catalogue-contact-repository https://www.irif.fr/~colcombe/Knowledge/
catalogue-ctan /macros/latex/contrib/knowledge
-catalogue-date 2019-12-03 14:30:24 +0100
catalogue-license lppl1.2
catalogue-topics index label-ref expl3
catalogue-version 1.20
@@ -146419,7 +144759,6 @@ srcfiles size=157
RELOC/source/generic/knuth/tex/glue.web
RELOC/source/generic/knuth/web/webman.tex
catalogue-ctan /systems/knuth/dist/errata
-catalogue-date 2017-01-28 13:06:02 +0100
catalogue-license knuth
catalogue-topics doc-errata
@@ -146464,7 +144803,6 @@ runfiles size=47
RELOC/tex/plain/knuth-lib/testfont.tex
RELOC/tex/plain/knuth-lib/webmac.tex
catalogue-ctan /systems/knuth/dist/lib
-catalogue-date 2017-01-28 13:27:32 +0100
catalogue-license knuth
catalogue-topics collection
@@ -146511,7 +144849,6 @@ runfiles size=52
RELOC/mft/knuth-local/e.mft
RELOC/tex/plain/knuth-local/xepsf.tex
catalogue-ctan /systems/knuth/local
-catalogue-date 2017-01-28 12:48:42 +0100
catalogue-license knuth
catalogue-topics collection
@@ -146539,7 +144876,6 @@ runfiles size=4
RELOC/tex/latex/koma-moderncvclassic/koma-moderncvclassic.sty
catalogue-also moderncv koma-script
catalogue-ctan /macros/latex/contrib/koma-moderncvclassic
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics cv
catalogue-version 0.5
@@ -146847,7 +145183,6 @@ runfiles size=5878
catalogue-also scrartcl scrbook
catalogue-contact-home http://www.komascript.de/
catalogue-ctan /macros/latex/contrib/koma-script
-catalogue-date 2019-10-13 15:33:54 +0200
catalogue-license lppl1.3c
catalogue-topics class letter book-pub page-hf geometry
catalogue-version 3.27
@@ -146964,7 +145299,6 @@ docfiles size=416
RELOC/doc/latex/koma-script-examples/README.txt details="English Readme" language="en"
catalogue-contact-home http://www.komascript.de/
catalogue-ctan /info/examples/KOMA-Script-6
-catalogue-date 2018-04-23 05:04:11 +0200
catalogue-license lppl1.3c
catalogue-topics book-ex
@@ -146990,7 +145324,6 @@ docfiles size=12
runfiles size=2
RELOC/tex/latex/koma-script-sfs/SFS.lco
catalogue-ctan /macros/latex/contrib/koma-script-SFS
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics letter
catalogue-version 1.0
@@ -147028,7 +145361,6 @@ runfiles size=11
RELOC/tex/latex/komacv/komacv-oldstyle.sty
RELOC/tex/latex/komacv/komacv.cls
catalogue-ctan /macros/latex/contrib/komacv
-catalogue-date 2017-04-17 20:41:03 +0200
catalogue-license lppl1.3
catalogue-topics cv class
catalogue-version 1.1.1
@@ -147072,7 +145404,6 @@ runfiles size=4
catalogue-contact-bugs https://github.com/Ri-Ga/komacv-rg/issues/
catalogue-contact-repository https://github.com/Ri-Ga/komacv-rg/
catalogue-ctan /macros/latex/contrib/komacv-rg
-catalogue-date 2018-11-03 14:37:45 +0100
catalogue-license lppl1.2
catalogue-topics cv
catalogue-version 0.9.2
@@ -147127,7 +145458,6 @@ runfiles size=60
RELOC/tex/latex/kotex-oblivoir/oblivoir.cls
RELOC/tex/latex/kotex-oblivoir/xoblivoir.cls
catalogue-ctan /language/korean/kotex-oblivoir
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license lppl1.3
catalogue-topics korean class
catalogue-version 2.1.8
@@ -147154,7 +145484,6 @@ runfiles size=11
RELOC/tex/plain/kotex-plain/kotexutf-core.tex
RELOC/tex/plain/kotex-plain/kotexutf.tex
catalogue-ctan /language/korean/kotex-plain
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics korean plain-ext enc-juggle
catalogue-version 2.1.1a
@@ -147213,7 +145542,6 @@ runfiles size=38
RELOC/tex/latex/kotex-utf/tex4ht/dhucs.cfg
RELOC/tex/latex/kotex-utf/tex4ht/kosections-utf.4ht
catalogue-ctan /language/korean/kotex-utf
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics korean
catalogue-version 2.1.2
@@ -147243,7 +145571,6 @@ runfiles size=75
texmf-dist/scripts/kotex-utils/komkindex.pl
texmf-dist/scripts/kotex-utils/ttf2kotexfont.pl
catalogue-ctan /language/korean/kotex-utils
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics korean index
catalogue-version 2.1.0
@@ -147507,7 +145834,6 @@ catalogue-contact-bugs http://lists.tug.org/tex-k
catalogue-contact-home http://tug.org/kpathsea
catalogue-contact-repository http://tug.org/svn/texlive/trunk/Build/source/texk/kpathsea/
catalogue-contact-support http://lists.tug.org/tex-k
-catalogue-date 2019-01-05 09:54:55 +0100
catalogue-license lgpl2.1
catalogue-topics sys-supp
@@ -149735,7 +148061,6 @@ runfiles size=3713
RELOC/tex/latex/kpfonts/ujkpsyd.fd
RELOC/tex/latex/kpfonts/ujkpsydw.fd
catalogue-ctan /fonts/kpfonts
-catalogue-date 2018-08-23 18:35:53 +0200
catalogue-license gpl
catalogue-topics font font-type1 font-serif font-sans font-mono font-maths
catalogue-version 3.33
@@ -149755,7 +148080,6 @@ containerchecksum 8893133ed49c9b4ba7472bc80a4e5583ec2546838e261fa2cf9aee188a0b00
runfiles size=6
RELOC/bibtex/bst/ksfh_nat/ksfh_nat.bst
catalogue-ctan /biblio/bibtex/contrib/ksfh_nat
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics bibtex-sty
catalogue-version 1.1
@@ -149802,7 +148126,6 @@ runfiles size=4
RELOC/tex/latex/ksp-thesis/ksp-thesis.cls
catalogue-contact-repository https://github.com/GORywwyN/ksp-thesis/tree/master/release/
catalogue-ctan /macros/latex/contrib/ksp-thesis
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl1.3
catalogue-topics class dissertation
catalogue-version 1.0.2
@@ -149838,7 +148161,6 @@ runfiles size=3
RELOC/tex/latex/ktv-texdata/ktv-buildnum.sty
RELOC/tex/latex/ktv-texdata/ktv-texdata.sty
catalogue-ctan /macros/latex/contrib/ktv-texdata
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics data-sel
catalogue-version 05.34
@@ -149874,7 +148196,6 @@ docfiles size=128
runfiles size=1
RELOC/tex/latex/ku-template/ku-template.sty
catalogue-ctan /macros/latex/contrib/ku-template
-catalogue-date 2017-11-28 10:44:33 +0100
catalogue-license mit
catalogue-topics logo
catalogue-version 0.02
@@ -149899,7 +148220,6 @@ docfiles size=17
runfiles size=38
RELOC/tex/xelatex/kurdishlipsum/kurdishlipsum.sty
catalogue-ctan /macros/xetex/latex/kurdishlipsum
-catalogue-date 2018-05-07 04:39:01 +0200
catalogue-license lppl
catalogue-topics macro-supp dummy-gen kurdish xetex
catalogue-version 1.1
@@ -150542,7 +148862,6 @@ runfiles size=4363
RELOC/tex/latex/kurier/ts1kurierlc.fd
RELOC/tex/plain/kurier/kurier-math.tex
catalogue-ctan /fonts/kurier
-catalogue-date 2018-06-16 10:39:58 +0200
catalogue-license gfl
catalogue-topics font font-otf font-type1
catalogue-version 0.995b
@@ -150574,7 +148893,6 @@ catalogue-also karnaugh-map karnaughmap
catalogue-contact-bugs https://gitlab.com/benfrank/kvmap/issues
catalogue-contact-home https://gitlab.com/benfrank/kvmap
catalogue-ctan /macros/latex/contrib/kvmap
-catalogue-date 2018-09-22 04:58:35 +0200
catalogue-license lppl1.3c
catalogue-topics maths engineering
catalogue-version 0.3.1
@@ -150604,7 +148922,6 @@ runfiles size=10
catalogue-contact-bugs https://github.com/ho-tex/kvoptions/issues
catalogue-contact-repository https://github.com/ho-tex/kvoptions
catalogue-ctan /macros/latex/contrib/kvoptions
-catalogue-date 2019-11-30 11:10:53 +0100
catalogue-license lppl1.3
catalogue-topics keyval
catalogue-version 3.13
@@ -150629,7 +148946,6 @@ docfiles size=166
RELOC/doc/latex/l2picfaq/l2picfaq.tex
catalogue-also epslatex
catalogue-ctan /info/l2picfaq/german
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license fdl
catalogue-topics faq
catalogue-version 1.50
@@ -150653,7 +148969,6 @@ docfiles size=74
RELOC/doc/latex/l2tabu/l2tabu.pdf details="The document itself" language="de"
RELOC/doc/latex/l2tabu/l2tabu.tex
catalogue-ctan /info/l2tabu/german
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license other-free
catalogue-topics german-doc
catalogue-version 2.4
@@ -150673,7 +148988,6 @@ docfiles size=95
RELOC/doc/latex/l2tabu-english/l2tabuen.pdf details="The document itself"
RELOC/doc/latex/l2tabu-english/l2tabuen.tex
catalogue-ctan /info/l2tabu/english
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics documentation translation
catalogue-version 1.8.5.7
@@ -150694,7 +149008,6 @@ docfiles size=101
RELOC/doc/latex/l2tabu-french/l2tabufr.tex
catalogue-also l2tabu l2tabu-english l2tabu-italian
catalogue-ctan /info/l2tabu/french
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics french-doc
catalogue-version 2.3
@@ -150715,7 +149028,6 @@ docfiles size=76
RELOC/doc/latex/l2tabu-italian/l2tabuit.tex
catalogue-also l2tabu l2tabu-english l2tabu-french
catalogue-ctan /info/l2tabu/italian
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license other-free
catalogue-topics italian-doc
catalogue-version 2.3
@@ -150737,7 +149049,6 @@ docfiles size=84
RELOC/doc/latex/l2tabu-spanish/l2tabues.pdf details="The document itself" language="es"
RELOC/doc/latex/l2tabu-spanish/l2tabues.tex
catalogue-ctan /info/l2tabu/spanish
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics spanish-doc
catalogue-version 1.1
@@ -150784,7 +149095,6 @@ catalogue-contact-bugs https://github.com/latex3/latex3/issues
catalogue-contact-home http://www.latex-project.org/code.html
catalogue-contact-repository https://github.com/latex3/latex3/
catalogue-ctan /macros/latex/contrib/l3backend
-catalogue-date 2019-11-26 10:54:47 +0100
catalogue-license lppl1.3c
catalogue-topics latex3 expl3 macro-supp pre-release
@@ -150841,7 +149151,6 @@ catalogue-contact-bugs https://github.com/latex3/l3build/issues
catalogue-contact-home https://www.latex-project.org
catalogue-contact-repository https://github.com/latex3/l3build
catalogue-ctan /macros/latex/contrib/l3build
-catalogue-date 2019-11-27 18:20:51 +0100
catalogue-license lppl1.3c
catalogue-topics package-devel macro-supp
@@ -151083,7 +149392,6 @@ runfiles size=52
catalogue-also l3kernel l3packages
catalogue-contact-home http://www.latex-project.org/code.html
catalogue-ctan /macros/latex/contrib/l3experimental
-catalogue-date 2019-10-12 09:00:39 +0200
catalogue-license lppl1.3c
catalogue-topics macro-supp layout latex3 pre-release
@@ -151211,7 +149519,6 @@ catalogue-contact-bugs https://github.com/latex3/latex3/issues
catalogue-contact-home http://www.latex-project.org/code.html
catalogue-contact-repository https://github.com/latex3/latex3
catalogue-ctan /macros/latex/contrib/l3kernel
-catalogue-date 2019-11-07 14:49:57 +0100
catalogue-license lppl1.3c
catalogue-topics format latex3 pre-release
@@ -151270,7 +149577,6 @@ runfiles size=39
catalogue-also l3kernel l3experimental
catalogue-contact-home http://www.latex-project.org/code.html
catalogue-ctan /macros/latex/contrib/l3packages
-catalogue-date 2019-10-11 23:47:03 +0200
catalogue-license lppl1.3c
catalogue-topics macro-supp latex3 pre-release
@@ -151305,7 +149611,6 @@ srcfiles size=21
runfiles size=5
RELOC/tex/latex/labbook/labbook.cls
catalogue-ctan /macros/latex/contrib/labbook
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics record-keep class
@@ -151373,7 +149678,6 @@ runfiles size=6
RELOC/tex/latex/labels/labels.sty
RELOC/tex/latex/labels/olabels.sty
catalogue-ctan /macros/latex/contrib/labels
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.2
catalogue-topics labels
catalogue-version .13
@@ -151398,7 +149702,6 @@ runfiles size=1
catalogue-contact-bugs https://bitbucket.org/OpCode-eu-org/latex-libs/issues
catalogue-contact-repository https://bitbucket.org/OpCode-eu-org/latex-libs/
catalogue-ctan /macros/latex/contrib/labels4easylist
-catalogue-date 2019-05-14 08:51:33 +0200
catalogue-license mit
catalogue-topics list
catalogue-version 1.0
@@ -151430,7 +149733,6 @@ runfiles size=1
RELOC/tex/latex/labelschanged/labelschanged.sty
catalogue-contact-home http://bdtechconcepts.com/
catalogue-ctan /macros/latex/contrib/labelschanged
-catalogue-date 2017-12-13 18:27:49 +0100
catalogue-license pd
catalogue-topics misc-support label-ref
catalogue-version 1.0
@@ -151456,7 +149758,6 @@ docfiles size=63
runfiles size=2
RELOC/tex/latex/labyrinth/labyrinth.sty
catalogue-ctan /macros/latex/contrib/labyrinth
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics games
catalogue-version 1.0
@@ -151478,7 +149779,6 @@ docfiles size=7
texmf-dist/doc/man/man1/lacheck.man1.pdf
catalogue-also l2tabu nag
catalogue-ctan /support/lacheck
-catalogue-date 2017-06-27 04:58:12 +0200
catalogue-license gpl
catalogue-topics latex-qual
@@ -151648,7 +149948,6 @@ catalogue-contact-bugs https://github.com/AurelienC/tex-ladder/issues
catalogue-contact-development https://github.com/AurelienC/tex-ladder/graphs/contributors
catalogue-contact-repository https://github.com/AurelienC/tex-ladder
catalogue-ctan /graphics/pgf/contrib/ladder
-catalogue-date 2017-10-09 07:03:21 +0200
catalogue-license mit
catalogue-topics pgf-tikz diagram-circ
@@ -151708,7 +150007,6 @@ docfiles size=45
runfiles size=1
RELOC/tex/plain/lambda-lists/lambda.sty
catalogue-ctan /macros/generic/lambda-lists
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics macro-supp
@@ -151742,7 +150040,6 @@ runfiles size=2
RELOC/tex/generic/langcode/langcode.sty
catalogue-contact-support http://www.webdesign-bu.de/uwe_lueck/contact.html
catalogue-ctan /macros/generic/langcode
-catalogue-date 2017-05-06 08:29:51 +0200
catalogue-license lppl1.3
catalogue-topics multilingual macro-gen
catalogue-version 0.2
@@ -151831,7 +150128,6 @@ catalogue-contact-home http://www.langsci-press.org
catalogue-contact-repository https://github.com/langsci/langscibook
catalogue-contact-support mailto:support@langsci-press.org
catalogue-ctan /macros/xetex/latex/langsci
-catalogue-date 2019-04-02 09:46:01 +0200
catalogue-license lppl1.3
catalogue-topics journalpub book-pub class
@@ -151935,7 +150231,6 @@ docfiles size=819
runfiles size=16
RELOC/tex/latex/lapdf/lapdf.sty
catalogue-ctan /macros/latex/contrib/lapdf
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics graphics-in-tex
catalogue-version 1.1
@@ -151964,7 +150259,6 @@ srcfiles size=3
runfiles size=1
RELOC/tex/latex/lastpackage/lastpackage.sty
catalogue-ctan /macros/latex/contrib/lastpackage
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics preamble-admin
catalogue-version 0.1
@@ -151999,7 +150293,6 @@ runfiles size=4
RELOC/tex/latex/lastpage/lastpage209.sty
catalogue-also totpages
catalogue-ctan /macros/latex/contrib/lastpage
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics label-ref
catalogue-version 1.2m
@@ -152415,7 +150708,6 @@ runfiles size=429
RELOC/tex/latex/base/utf8enc.dfu
RELOC/tex/latex/base/x2enc.dfu
catalogue-contact-home http://www.latex-project.org/
-catalogue-date 2019-11-10 14:45:47 +0100
catalogue-license lppl1.3c
catalogue-topics format
catalogue-version 2019-10-01 PL3
@@ -152483,7 +150775,6 @@ runfiles size=69
RELOC/tex/latex-dev/amsmath/amstext.sty
RELOC/tex/latex-dev/amsmath/amsxtra.sty
catalogue-ctan /macros/latex-dev/required/amsmath
-catalogue-date 2019-11-18 23:39:35 +0100
catalogue-license lppl1.3c
catalogue-topics maths
catalogue-version 2020-02-01 pre-release 1
@@ -152890,7 +151181,6 @@ runfiles size=428
RELOC/tex/latex-dev/base/x2enc.dfu
catalogue-also latex-base
catalogue-ctan /macros/latex-dev/base
-catalogue-date 2019-11-20 19:32:31 +0100
catalogue-license lppl1.3c
catalogue-topics format class
catalogue-version 2020-02-01 pre-release 2
@@ -153107,7 +151397,6 @@ docfiles size=233
RELOC/doc/latex/latex-bib-ex/plainDemo.bst
RELOC/doc/latex/latex-bib-ex/vanBib.bib
catalogue-ctan /info/examples/LaTeX-Bib
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics book-ex
@@ -153402,7 +151691,6 @@ docfiles size=502
RELOC/doc/latex/latex-bib2-ex/vanBib.bib
RELOC/doc/latex/latex-bib2-ex/xmlexamples.xml
catalogue-ctan /info/examples/LaTeX-Bib2
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics book-ex
@@ -153901,7 +152189,6 @@ docfiles size=2752
RELOC/doc/latex/latex-brochure/typo-degraded.png
catalogue-also latex-veryshortguide
catalogue-ctan /info/latex-brochure
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics advert
@@ -153928,7 +152215,6 @@ docfiles size=248
RELOC/doc/latex/latex-course/README details="Readme"
RELOC/doc/latex/latex-course/beamercolorthemeross.sty
catalogue-ctan /info/latex-course
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics course-material tut-latex
catalogue-version 2
@@ -153954,7 +152240,6 @@ docfiles size=44
RELOC/doc/latex/latex-doc-ptr/latex-doc-ptr.sty
RELOC/doc/latex/latex-doc-ptr/latex-doc-ptr.tex
catalogue-ctan /info/latex-doc-ptr
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics latex-doc
@@ -154033,7 +152318,6 @@ runfiles size=61
RELOC/fonts/tfm/public/latex-fonts/line10.tfm
RELOC/fonts/tfm/public/latex-fonts/linew10.tfm
catalogue-ctan /fonts/latex
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics font font-symbol font-mf
@@ -154062,7 +152346,6 @@ runfiles size=3
texmf-dist/scripts/latex-git-log/latex-git-log
catalogue-contact-repository https://github.com/ypid/typesetting/tree/master/scripts/latex-git-log
catalogue-ctan /support/latex-git-log
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license gpl3
catalogue-topics project-mgmt
catalogue-version 0.9
@@ -154662,7 +152945,6 @@ docfiles size=447
RELOC/doc/latex/latex-graphics-companion/years.wom
RELOC/doc/latex/latex-graphics-companion/yearw.dat
catalogue-ctan /info/examples/lgc
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics book-ex
@@ -154734,7 +153016,6 @@ runfiles size=36
RELOC/tex/latex-dev/graphics/truetex.def
catalogue-also latex-graphics
catalogue-ctan /macros/latex-dev/required/graphics
-catalogue-date 2019-11-18 23:29:46 +0100
catalogue-license lppl1.3c
catalogue-topics graphics collection
catalogue-version 2020-02-01 pre-release 1
@@ -154788,7 +153069,6 @@ runfiles size=16
RELOC/tex/latex/latex-make/texgraphicx.sty
catalogue-contact-home http://gforge.inria.fr/projects/latex-utils/
catalogue-ctan /support/latex-make
-catalogue-date 2018-10-17 20:25:35 +0200
catalogue-license gpl
catalogue-topics compilation
catalogue-version 2.3.0
@@ -154818,7 +153098,6 @@ docfiles size=135
catalogue-contact-announce https://sites.google.com/site/homerdholkar/other/latex-poly-mr
catalogue-contact-home https://sites.google.com/site/homerdholkar/other/latex-poly-mr
catalogue-ctan /info/latex-mr
-catalogue-date 2017-06-16 08:43:03 +0200
catalogue-license lppl1.3
catalogue-topics tut-latex
catalogue-version 1.0
@@ -154892,7 +153171,6 @@ docfiles size=603
RELOC/doc/generic/latex-notes-zh-cn/src/reading.bib
RELOC/doc/generic/latex-notes-zh-cn/src/tables.tex
catalogue-ctan /info/latex-notes-zh-cn
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics chinese-doc
catalogue-version 1.20
@@ -154917,7 +153195,6 @@ docfiles size=1
runfiles size=3
texmf-dist/scripts/latex-papersize/latex-papersize.py
catalogue-ctan /support/latex-papersize
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license apache2
catalogue-topics layout
catalogue-version 1.62
@@ -155301,7 +153578,6 @@ docfiles size=285
RELOC/doc/latex/latex-referenz/screxareport.cls
RELOC/doc/latex/latex-referenz/textdemo.sty
catalogue-ctan /info/examples/LaTeX-Referenz
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics book-ex
catalogue-version 2
@@ -155332,7 +153608,6 @@ docfiles size=1818
RELOC/doc/latex/latex-refsheet/thesis.pdf
RELOC/doc/latex/latex-refsheet/thesis.tex
catalogue-ctan /info/latex-refsheet
-catalogue-date 2017-08-21 05:22:57 +0200
catalogue-license lppl1.3c
catalogue-topics tut-cheat
catalogue-version 1.2
@@ -155671,7 +153946,6 @@ docfiles size=324
RELOC/doc/latex/latex-tabellen/07-03-2.ltx2
RELOC/doc/latex/latex-tabellen/README
catalogue-ctan /info/examples/Tabellen2
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics book-ex
@@ -155747,7 +154021,6 @@ srcfiles size=112
RELOC/source/latex/latex-tds/tex/tools-overview.cls
RELOC/source/latex/latex-tds/tex/tools.tex
catalogue-ctan /macros/latex/contrib/latex-tds
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics distribution
@@ -155877,7 +154150,6 @@ runfiles size=99
RELOC/tex/latex-dev/tools/xr.sty
RELOC/tex/latex-dev/tools/xspace.sty
catalogue-ctan /macros/latex-dev/required/tools
-catalogue-date 2019-11-18 23:20:58 +0100
catalogue-license lppl1.3c
catalogue-topics collection
catalogue-version 2020-02-01 pre-release 1
@@ -155919,7 +154191,6 @@ runfiles size=3
catalogue-contact-repository https://github.com/pts/latex-uni8
catalogue-contact-support https://github.com/pts/latex-uni8/issues
catalogue-ctan /macros/latex/contrib/latex-uni8
-catalogue-date 2019-01-20 05:31:27 +0100
catalogue-license lppl
catalogue-topics inputenc fontenc unicode misc-support
catalogue-version 0.03
@@ -155954,7 +154225,6 @@ docfiles size=564
catalogue-also latex-brochure
catalogue-contact-home http://latex.silmaril.ie/veryshortguide/
catalogue-ctan /info/latex-veryshortguide
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl1.3
catalogue-topics tut-latex
@@ -155986,7 +154256,6 @@ docfiles size=672
RELOC/doc/latex/latex-via-exemplos/makedoc.sh
catalogue-also lshort-portuguese-br
catalogue-ctan /info/latex-via-exemplos
-catalogue-date 2019-10-01 15:38:43 +0200
catalogue-license gpl2+
catalogue-topics portuguese-doc tut-latex
catalogue-version 0.5.5
@@ -156160,7 +154429,6 @@ docfiles size=372
RELOC/doc/latex/latex-web-companion/ch7/xsl.xml
RELOC/doc/latex/latex-web-companion/ch7/xslexa1.xsl
catalogue-ctan /info/examples/lwc
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics book-ex
@@ -156206,7 +154474,6 @@ catalogue-contact-bugs https://puszcza.gnu.org.ua/bugs/?group=latexrefman
catalogue-contact-home http://puszcza.gnu.org.ua/projects/latexrefman/
catalogue-contact-support http://lists.tug.org/latexrefman
catalogue-ctan /info/latex2e-help-texinfo
-catalogue-date 2018-10-16 05:44:44 +0200
catalogue-license pd
catalogue-topics ref-latex documentation spanish-doc
@@ -156239,7 +154506,6 @@ docfiles size=1241
catalogue-contact-bugs http://lists.tug.org/latexrefman
catalogue-contact-home https://puszcza.gnu.org.ua/software/latexrefman/
catalogue-ctan /info/latex2e-help-texinfo-fr
-catalogue-date 2017-08-09 19:37:09 +0200
catalogue-license pd
catalogue-topics ref-latex documentation french-doc
@@ -156272,7 +154538,6 @@ catalogue-contact-bugs https://puszcza.gnu.org.ua/bugs/?group=latexrefman
catalogue-contact-home http://puszcza.gnu.org.ua/projects/latexrefman/
catalogue-contact-support http://lists.tug.org/latexrefman
catalogue-ctan /info/latex2e-help-texinfo
-catalogue-date 2018-10-16 05:44:44 +0200
catalogue-license pd
catalogue-topics ref-latex documentation spanish-doc
@@ -156317,7 +154582,6 @@ runfiles size=17
texmf-dist/tex/latex/latex2man/latex2man.sty
catalogue-contact-home http://www.informatik-vollmer.de/software/latex2man.php
catalogue-ctan /support/latex2man
-catalogue-date 2018-11-25 17:55:57 +0100
catalogue-license lppl1
catalogue-topics cvt-other
catalogue-version 1.29
@@ -156501,7 +154765,6 @@ runfiles size=1945
texmf-dist/scripts/latex2nemeth/latex2nemeth-v1.0.1.jar
catalogue-contact-home http://myria.math.aegean.gr/labs/dt/braille/index-en.html
catalogue-ctan /support/latex2nemeth
-catalogue-date 2017-11-28 11:33:20 +0100
catalogue-license gpl3
catalogue-topics cvt-other maths accessible
catalogue-version 1.0.1
@@ -156780,7 +155043,6 @@ docfiles size=705
RELOC/doc/latex/latex4musicians/songs_g.pdf
RELOC/doc/latex/latex4musicians/verses-chords.pdf
catalogue-ctan /info/latex4musicians
-catalogue-date 2019-01-19 09:48:34 +0100
catalogue-license fdl
catalogue-topics music tutorial tut-latex
catalogue-version 1.0.1
@@ -156814,7 +155076,6 @@ docfiles size=240
RELOC/doc/latex/latex4wp/tbx.pdf
RELOC/doc/latex/latex4wp/tbx.tex
catalogue-ctan /info/latex4wp
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license fdl
catalogue-topics documentation fac-survey
catalogue-version 1.0.10
@@ -156845,7 +155106,6 @@ docfiles size=250
RELOC/doc/latex/latex4wp-it/tbx.pdf
RELOC/doc/latex/latex4wp-it/tbx.tex
catalogue-ctan /info/latex4wp-it
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license fdl
catalogue-topics italian-doc fac-survey
catalogue-version 1.0.10
@@ -156875,7 +155135,6 @@ docfiles size=41
runfiles size=2
RELOC/tex/latex/latexbangla/latexbangla.sty
catalogue-ctan /language/bengali/latexbangla
-catalogue-date 2016-11-06 05:41:03 +0100
catalogue-license lppl1.3
catalogue-topics indic
catalogue-version 0.2
@@ -156906,7 +155165,6 @@ runfiles size=5
RELOC/tex/latex/latexbug/latexbug.sty
catalogue-contact-repository https://github.com/latex3/latexbug
catalogue-ctan /macros/latex/required/latexbug
-catalogue-date 2019-10-16 10:42:14 +0200
catalogue-license lppl1.3c
catalogue-topics latex-doc latex-devel
catalogue-version 1.0g
@@ -156928,7 +155186,6 @@ docfiles size=50
RELOC/doc/latex/latexcheat/latexsheet.pdf details="The document itself"
RELOC/doc/latex/latexcheat/latexsheet.tex
catalogue-ctan /info/latexcheat/latexcheat
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics tut-cheat
catalogue-version 1.13
@@ -156952,7 +155209,6 @@ docfiles size=136
RELOC/doc/latex/latexcheat-de/latexsheet-de.tex
catalogue-contact-repository https://github.com/tammon/Deutsches-LaTeX-Cheat-Sheet
catalogue-ctan /info/latexcheat/latexcheat-de
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl
catalogue-topics german-doc tut-cheat
@@ -156973,7 +155229,6 @@ docfiles size=130
RELOC/doc/latex/latexcheat-esmx/latexsheet-esmx.pdf details="The document itself" language="es"
RELOC/doc/latex/latexcheat-esmx/latexsheet-esmx.tex
catalogue-ctan /info/latexcheat/latexcheat-esmx
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics spanish-doc tut-cheat
catalogue-version 2.00
@@ -156994,7 +155249,6 @@ docfiles size=68
RELOC/doc/latex/latexcheat-ptbr/latexsheet-ptbr.pdf details="The document itself" language="pt"
RELOC/doc/latex/latexcheat-ptbr/latexsheet-ptbr.tex
catalogue-ctan /info/latexcheat/latexcheat-ptbr
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics portuguese-doc tut-cheat
catalogue-version 1.13
@@ -157025,7 +155279,6 @@ runfiles size=10
catalogue-contact-bugs https://github.com/tcpluess/latexcolors/issues
catalogue-contact-repository https://github.com/tcpluess/latexcolors
catalogue-ctan /macros/latex/contrib/latexcolors
-catalogue-date 2019-01-30 22:22:09 +0100
catalogue-license lppl1.3
catalogue-topics colour
catalogue-version 0.1a
@@ -157065,7 +155318,6 @@ docfiles size=1438
RELOC/doc/latex/latexcourse-rug/latexcourse-rug.pdf details="Printable copy of the course"
RELOC/doc/latex/latexcourse-rug/practice.zip
catalogue-ctan /info/latexcourse-rug
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license other-free
catalogue-topics course-material
catalogue-version 1.1
@@ -157094,7 +155346,6 @@ srcfiles size=6
runfiles size=2
RELOC/tex/latex/latexdemo/latexdemo.sty
catalogue-ctan /macros/latex/contrib/latexdemo
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics listing
catalogue-version 0.1
@@ -157145,7 +155396,6 @@ runfiles size=69
texmf-dist/scripts/latexdiff/latexrevise.pl
catalogue-contact-repository https://github.com/ftilmann/latexdiff/
catalogue-ctan /support/latexdiff
-catalogue-date 2018-10-16 23:19:48 +0200
catalogue-license gpl3
catalogue-topics doc-mgmt
catalogue-version 1.3.0
@@ -157354,7 +155604,6 @@ runfiles size=1
RELOC/tex/latex/latexfileinfo-pkgs/latexfileinfo_pkgs.RLS
catalogue-contact-support http://www.webdesign-bu.de/uwe_lueck/contact.html
catalogue-ctan /info/latexfileinfo-pkgs
-catalogue-date 2017-05-06 08:32:59 +0200
catalogue-license lppl1.3
catalogue-topics review-document
catalogue-version 0.22
@@ -157379,7 +155628,6 @@ docfiles size=2
runfiles size=1
texmf-dist/scripts/latexfileversion/latexfileversion
catalogue-ctan /support/latexfileversion
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics file-mgmt
catalogue-version 0.3
@@ -157544,7 +155792,6 @@ srcfiles size=5
runfiles size=2
RELOC/tex/latex/latexgit/latexgit.sty
catalogue-ctan /macros/latex/contrib/latexgit
-catalogue-date 2016-08-31 04:53:42 +0200
catalogue-license gpl3
catalogue-topics version-control doc-mgmt
@@ -157634,7 +155881,6 @@ catalogue-contact-bugs https://github.com/cmhughes/latexindent.pl/issues
catalogue-contact-development https://github.com/cmhughes/latexindent.pl/tree/develop
catalogue-contact-repository https://github.com/cmhughes/latexindent.pl
catalogue-ctan /support/latexindent
-catalogue-date 2019-09-07 15:16:01 +0200
catalogue-license gpl3
catalogue-topics code-layout
catalogue-version 3.7.1
@@ -157851,7 +156097,6 @@ runfiles size=99
texmf-dist/scripts/latexmk/latexmk.pl
catalogue-also latexn prv arara
catalogue-ctan /support/latexmk
-catalogue-date 2019-05-28 17:37:43 +0200
catalogue-license gpl2
catalogue-topics compilation
catalogue-version 4.64a
@@ -158023,23 +156268,22 @@ docfiles size=44
runfiles size=4
RELOC/metapost/latexmp/latexmp.mp
catalogue-ctan /graphics/metapost/contrib/macros/latexmp
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics graphics-text
catalogue-version 1.2.1
name latexpand
category Package
-revision 50079
+revision 53109
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 input or included
longdesc file. The script does not deal with \includeonly commands.
depend latexpand.ARCH
-containersize 5752
-containerchecksum 9248c63fa16b9f9ccfb0243bdc6d56bb80b9887e26d8f1cae53092ecef94f046f554d8c5b9ed6cacf7202dd5be212472f8bddf9eb740f4ce54e521c9baaf75dd
-doccontainersize 3072
-doccontainerchecksum faf4b269446a008ba77d37d8f51ab123171a3cc56d59dc6fae9c5274833e97276c24392064f6f95e8e8eb5b88717d1c4433a915208cd81788364d382aae200c5
+containersize 6692
+containerchecksum ff362aea91f703759157dc810067d39d0d8fbdfd031e993c1a6c019a55d50a3e11745ab72c8abc7bd615f79cbe589cb0bd7bf82c147d12d18d3483ef95dcf4ba
+doccontainersize 3132
+doccontainerchecksum 63181837edaf48a5bcd842039579e3efad999cf2db1cc3da8184b59f359db0ed7f50a9c706a44f32fd0642438020256283434b95a29d64b184ddd5ca27895282
docfiles size=4
texmf-dist/doc/support/latexpand/LICENCE
texmf-dist/doc/support/latexpand/README details="Readme"
@@ -158048,10 +156292,9 @@ runfiles size=5
texmf-dist/scripts/latexpand/latexpand
catalogue-contact-repository https://gitlab.com/latexpand/latexpand
catalogue-ctan /support/latexpand
-catalogue-date 2019-02-20 20:34:48 +0100
catalogue-license bsd
catalogue-topics file-mgmt
-catalogue-version 1.5
+catalogue-version 1.6
name latexpand.aarch64-linux
category Package
@@ -158227,7 +156470,6 @@ runfiles size=1
catalogue-contact-home https://github.com/AcProIL
catalogue-contact-support http://reddit.com/r/LatinoSineFlexione/
catalogue-ctan /macros/latex/contrib/latino-sine-flexione
-catalogue-date 2019-10-30 20:17:59 +0100
catalogue-license pd
catalogue-topics interlingua
catalogue-version 1.1
@@ -160093,7 +158335,6 @@ runfiles size=11794
RELOC/tex/latex/lato/lato.sty
catalogue-contact-home http://www.latofonts.com/
catalogue-ctan /fonts/lato
-catalogue-date 2019-06-24 23:52:21 +0200
catalogue-license ofllppl1.3c
catalogue-topics font font-type1 font-ttf font-sans
catalogue-version 3.3
@@ -160123,7 +158364,6 @@ srcfiles size=7
runfiles size=1
RELOC/tex/latex/layaureo/layaureo.sty
catalogue-ctan /macros/latex/contrib/layaureo
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics layout
catalogue-version 0.2
@@ -160156,7 +158396,6 @@ runfiles size=26
RELOC/tex/latex/layouts/layouts.sty
catalogue-also layout
catalogue-ctan /macros/latex/contrib/layouts
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics geometry layout-show
catalogue-version 2.6d
@@ -160183,7 +158422,6 @@ docfiles size=43
runfiles size=1
RELOC/tex/latex/lazylist/lazylist.sty
catalogue-ctan /macros/latex/contrib/lazylist
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.2
catalogue-topics list
catalogue-version 1.0a
@@ -160219,7 +158457,6 @@ catalogue-contact-bugs https://github.com/giannotr/lccaps/issues
catalogue-contact-home https://github.com/giannotr/lccaps
catalogue-contact-repository https://github.com/giannotr/lccaps.git
catalogue-ctan /macros/latex/contrib/lccaps
-catalogue-date 2018-01-26 07:47:53 +0100
catalogue-license lppl1.3c
catalogue-topics font-supp
catalogue-version 1.0
@@ -160248,7 +158485,6 @@ srcfiles size=11
runfiles size=3
RELOC/tex/latex/lcd/lcd.sty
catalogue-ctan /macros/latex/contrib/lcd
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics graphics-in-tex
catalogue-version 0.3
@@ -160307,7 +158543,6 @@ docfiles size=105
texmf-dist/doc/man/man1/ttftotype42.man1.pdf
catalogue-contact-home http://www.lcdf.org/type/
catalogue-ctan /fonts/utilities/lcdf-typetools
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license gpl
catalogue-topics font-devel
@@ -160640,7 +158875,6 @@ runfiles size=2
RELOC/tex/latex/lcg/lcg.sty
catalogue-also random
catalogue-ctan /macros/latex/contrib/lcg
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license lppl
catalogue-topics calculation random
catalogue-version 1.3
@@ -160676,7 +158910,6 @@ runfiles size=10
RELOC/tex/latex/lcyw/lcywcmtt.fd
RELOC/tex/latex/lcyw/lcywenc.def
catalogue-ctan /macros/latex/contrib/lcyw
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics font-supp
catalogue-version 1.1
@@ -160706,7 +158939,6 @@ srcfiles size=4
runfiles size=1
RELOC/tex/latex/leading/leading.sty
catalogue-ctan /macros/latex/contrib/leading
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license lppl
catalogue-topics typesetting layout
catalogue-version 0.3
@@ -160745,7 +158977,6 @@ catalogue-also songs songbook
catalogue-contact-bugs https://github.com/cgnieder/leadsheets/issues
catalogue-contact-repository https://github.com/cgnieder/leadsheets
catalogue-ctan /macros/latex/contrib/leadsheets
-catalogue-date 2019-10-03 06:09:40 +0200
catalogue-license lppl1.3
catalogue-topics music chords
catalogue-version 0.6
@@ -160778,7 +159009,6 @@ srcfiles size=13
runfiles size=5
RELOC/tex/latex/leaflet/leaflet.cls
catalogue-ctan /macros/latex/contrib/leaflet
-catalogue-date 2017-03-17 18:23:39 +0100
catalogue-license lppl
catalogue-topics layout class
catalogue-version 1.1b
@@ -160842,7 +159072,6 @@ runfiles size=23
RELOC/tex/generic/lecturer/ltr-steps.tex
RELOC/tex/generic/lecturer/t-lecturer.tex
catalogue-ctan /macros/generic/lecturer
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics presentation
@@ -160867,7 +159096,6 @@ runfiles size=6
catalogue-contact-bugs https://github.com/LucaCappelletti94/lectures/issues
catalogue-contact-repository https://github.com/LucaCappelletti94/lectures
catalogue-ctan /macros/latex/contrib/lectures
-catalogue-date 2019-01-29 06:09:06 +0100
catalogue-license mit
catalogue-topics class presentation teaching
catalogue-version 1.0.2
@@ -160939,7 +159167,6 @@ catalogue-also ednotes poemscol
catalogue-contact-bugs https://github.com/bidi-tex/ledmac/issues
catalogue-contact-repository https://github.com/bidi-tex/ledmac
catalogue-ctan /macros/latex/contrib/ledmac
-catalogue-date 2018-11-28 20:05:21 +0100
catalogue-license lppl1.3
catalogue-topics crit-ed
catalogue-version 0.19.4
@@ -160967,7 +159194,6 @@ srcfiles size=4
runfiles size=1
RELOC/tex/latex/leftidx/leftidx.sty
catalogue-ctan /macros/latex/contrib/leftidx
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license lppl
catalogue-topics subsup-pos maths
@@ -161001,7 +159227,6 @@ runfiles size=7
RELOC/tex/latex/leipzig/leipzig.tex
catalogue-contact-repository https://github.com/natalieweber/leipzig
catalogue-ctan /macros/latex/contrib/leipzig
-catalogue-date 2019-10-18 21:58:43 +0200
catalogue-license lppl1.3
catalogue-topics linguistic
catalogue-version 2.3
@@ -161029,7 +159254,6 @@ runfiles size=2
RELOC/tex/latex/lengthconvert/lengthconvert.sty
catalogue-also printlen
catalogue-ctan /macros/latex/contrib/lengthconvert
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics misc-conv
catalogue-version 1.0a
@@ -161061,7 +159285,6 @@ runfiles size=2
catalogue-contact-bugs https://github.com/ho-tex/letltxmacro/issues
catalogue-contact-repository https://github.com/ho-tex/letltxmacro
catalogue-ctan /macros/latex/contrib/letltxmacro
-catalogue-date 2019-12-04 06:12:31 +0100
catalogue-license lppl1.3
catalogue-topics macro-def
catalogue-version 1.6
@@ -161090,7 +159313,6 @@ srcfiles size=4
runfiles size=3
RELOC/tex/latex/letterswitharrows/letterswitharrows.sty
catalogue-ctan /macros/latex/contrib/letterswitharrows
-catalogue-date 2019-11-22 10:29:13 +0100
catalogue-license lppl1.3
catalogue-topics maths expl3 pgf-tikz
@@ -161123,7 +159345,6 @@ runfiles size=21
catalogue-contact-bugs https://puszcza.gnu.org.ua/bugs/?group=latex-lettre
catalogue-contact-home https://puszcza.gnu.org.ua/projects/latex-lettre
catalogue-ctan /macros/latex/contrib/lettre
-catalogue-date 2017-08-04 13:56:57 +0200
catalogue-license lppl1.3
catalogue-topics letter french
catalogue-version 3.000
@@ -161169,7 +159390,6 @@ runfiles size=19
RELOC/tex/latex/lettrine/pzc3.cfl
catalogue-contact-home http://daniel.flipo.free.fr/lettrine
catalogue-ctan /macros/latex/contrib/lettrine
-catalogue-date 2019-04-07 14:25:55 +0200
catalogue-license lppl1.3c
catalogue-topics lettrine
catalogue-version 2.22
@@ -161250,7 +159470,6 @@ runfiles size=82
RELOC/tex/generic/levy/greekmacros.tex
RELOC/tex/generic/levy/slgreek.sty
catalogue-ctan /fonts/greek/levy
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl2
catalogue-topics font font-mf font-greek
@@ -161272,7 +159491,6 @@ docfiles size=13
runfiles size=1
RELOC/tex/latex/lewis/lewis.sty
catalogue-ctan /macros/latex/contrib/lewis
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics chemistry
catalogue-version 0.1
@@ -161319,7 +159537,6 @@ catalogue-contact-home https://github.com/BrainStone/latex-lexend
catalogue-contact-repository https://github.com/BrainStone/latex-lexend
catalogue-contact-support https://discord.me/bungeechat
catalogue-ctan /fonts/lexend
-catalogue-date 2019-11-21 22:07:23 +0100
catalogue-license lppl1.3cofl
catalogue-topics font
catalogue-version 1.0.0
@@ -161341,7 +159558,6 @@ docfiles size=48
runfiles size=2
RELOC/tex/latex/lexikon/lexikon.sty
catalogue-ctan /macros/latex/contrib/lexikon
-catalogue-date 2016-06-18 16:48:54 +0200
catalogue-license lppl
catalogue-topics dictionary
catalogue-version 1.0c
@@ -161369,7 +159585,6 @@ docfiles size=101
runfiles size=5
RELOC/tex/latex/lexref/lexref.sty
catalogue-ctan /macros/latex/contrib/lexref
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics legal
catalogue-version 1.1a
@@ -161464,7 +159679,6 @@ runfiles size=83
RELOC/fonts/tfm/public/lfb/lfbb8.tfm
RELOC/fonts/tfm/public/lfb/lfbb9.tfm
catalogue-ctan /fonts/greek/lfb
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics font font-mf font-greek
catalogue-version 1.0
@@ -161491,7 +159705,6 @@ runfiles size=4
RELOC/tex/latex/lgreek/lgreek.sty
catalogue-also levy-latex
catalogue-ctan /macros/latex/contrib/lgreek
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl2
catalogue-topics font-use greek
@@ -162226,7 +160439,6 @@ runfiles size=1023
RELOC/tex/plain/lh/testkern.tex
catalogue-also ccfonts cmbright concrete ecc
catalogue-ctan /fonts/cyrillic/lh
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics font font-mf font-cyrillic
catalogue-version 3.5g
@@ -162299,7 +160511,6 @@ runfiles size=73
RELOC/tex/latex/lhcyr/statya.tex
catalogue-also koi8
catalogue-ctan /macros/latex/contrib/lhcyr
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license other-free
catalogue-topics multilingual font-supp
@@ -162333,7 +160544,6 @@ srcfiles size=22
runfiles size=5
RELOC/tex/latex/lhelp/lhelp.sty
catalogue-ctan /macros/latex/contrib/lhelp
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics macro-supp
catalogue-version 2.0
@@ -164758,7 +162968,6 @@ runfiles size=8280
RELOC/tex/latex/libertine/libertineRoman.sty
RELOC/tex/latex/libertine/libertineotf.sty
catalogue-ctan /fonts/libertine
-catalogue-date 2019-05-21 15:30:34 +0200
catalogue-license gplofllppl
catalogue-topics font font-body font-serif font-sans font-mono font-otf font-type1 font-supp font-t1enc
catalogue-version 5.3.0
@@ -164874,7 +163083,6 @@ runfiles size=152
RELOC/tex/latex/libertinegc/libertinegc.sty
catalogue-also libertine
catalogue-ctan /fonts/libertinegc
-catalogue-date 2017-06-16 19:52:45 +0200
catalogue-license lppl1.3
catalogue-topics font font-cyrillic font-greek font-multilingual font-serif
catalogue-version 1.01
@@ -164900,7 +163108,6 @@ docfiles size=8
runfiles size=1
RELOC/tex/latex/libertinus/libertinus.sty
catalogue-ctan /fonts/libertinus
-catalogue-date 2018-09-14 05:26:10 +0200
catalogue-license lppl1.3
catalogue-topics font-serif font-sans font-mono font-maths font-otf
catalogue-version 0.01
@@ -164964,7 +163171,6 @@ catalogue-also libertinus-otf libertinus-type1
catalogue-contact-bugs https://github.com/libertinus-fonts/libertinus/issues
catalogue-contact-repository https://github.com/libertinus-fonts/libertinus
catalogue-ctan /fonts/libertinus-fonts
-catalogue-date 2019-05-28 19:20:31 +0200
catalogue-license ofl
catalogue-topics font font-body font-proportional font-mono font-serif font-sans font-multilingual font-maths font-otf
catalogue-version 6.9
@@ -164992,7 +163198,6 @@ runfiles size=6
RELOC/tex/latex/libertinus-otf/libertinus-otf.sty
catalogue-also libertinus-fonts libertinus-type1
catalogue-ctan /fonts/libertinus-otf
-catalogue-date 2019-10-23 22:17:33 +0200
catalogue-license lppl1.3
catalogue-topics font-body font-otf font-supp font-serif font-sans font-proportional font-mono font-maths
catalogue-version 0.22
@@ -166871,7 +165076,6 @@ runfiles size=5061
RELOC/tex/latex/libertinus-type1/libertinus-type1.sty
catalogue-also libertinus-fonts libertinus-otf
catalogue-ctan /fonts/libertinus-type1
-catalogue-date 2019-10-18 17:21:29 +0200
catalogue-license gpl2ofllppl
catalogue-topics font font-body font-type1 font-serif font-sans font-proportional font-mono font-t1enc font-supp
@@ -166981,7 +165185,6 @@ runfiles size=455
RELOC/tex/latex/libertinust1math/ls2libertinust1mathsym.fd
RELOC/tex/latex/libertinust1math/ot1libertinust1mathsf.fd
catalogue-ctan /fonts/libertinust1math
-catalogue-date 2018-10-08 07:53:35 +0200
catalogue-license ofllppl
catalogue-topics font-serif font-sans font-maths font-type1
catalogue-version 1.1.9
@@ -167012,7 +165215,6 @@ srcfiles size=5
runfiles size=3
RELOC/tex/latex/libgreek/libgreek.sty
catalogue-ctan /macros/latex/contrib/libgreek
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics font-maths font-supp
catalogue-version 1.0
@@ -167048,7 +165250,6 @@ runfiles size=10
RELOC/tex/generic/librarian/librarian.tex
RELOC/tex/generic/librarian/t-librarian.tex
catalogue-ctan /macros/generic/librarian
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics biblio
catalogue-version 1.0
@@ -167170,7 +165371,6 @@ runfiles size=397
RELOC/tex/latex/librebaskerville/TS1LibreBaskerville-TLF.fd
RELOC/tex/latex/librebaskerville/librebaskerville.sty
catalogue-ctan /fonts/librebaskerville
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics font font-otf font-type1
@@ -167320,7 +165520,6 @@ runfiles size=316
RELOC/tex/latex/librebodoni/T1LibreBodoni-TLF.fd
RELOC/tex/latex/librebodoni/TS1LibreBodoni-TLF.fd
catalogue-ctan /fonts/librebodoni
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license ofl
catalogue-topics font font-otf font-type1
@@ -167570,7 +165769,6 @@ runfiles size=778
RELOC/tex/latex/librecaslon/librecaslon.sty
catalogue-contact-home https://github.com/impallari/Libre-Caslon-Text
catalogue-ctan /fonts/librecaslon
-catalogue-date 2019-10-26 17:51:29 +0200
catalogue-license ofllppl
catalogue-topics font font-body font-proportional font-serif font-type1 font-otf font-supp font-t1enc
@@ -168065,7 +166263,6 @@ runfiles size=1546
RELOC/tex/latex/librefranklin/librefranklin.sty
catalogue-contact-home https://github.com/impallari/Libre-Franklin
catalogue-ctan /fonts/librefranklin
-catalogue-date 2019-10-24 14:45:59 +0200
catalogue-license lpplofl
catalogue-topics font font-sans font-proportional font-body font-otf font-type1 font-t1enc
@@ -168164,7 +166361,6 @@ runfiles size=169
RELOC/tex/latex/libris/ts1ylyw.fd
catalogue-contact-home http://arkandis.tuxfamily.org/tugfonts.htm
catalogue-ctan /fonts/libris
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license gpl
catalogue-topics font font-type1 font-supp
catalogue-version 1.007
@@ -168362,7 +166558,6 @@ runfiles size=526
catalogue-also context-lilypond
catalogue-contact-repository https://github.com/uliska/lilyglyphs
catalogue-ctan /macros/luatex/latex/lilyglyphs
-catalogue-date 2017-04-18 10:50:41 +0200
catalogue-license lppl1.3
catalogue-topics font font-otf font-music music
catalogue-version 0.2.3
@@ -168585,7 +166780,6 @@ runfiles size=7
catalogue-contact-home http://gerd-neugebauer.de/software/TeX/limap/
catalogue-contact-repository https://sourceforge.net/p/gene-tex-lib/svn/HEAD/tree/limap/
catalogue-ctan /macros/latex/contrib/gene/limap
-catalogue-date 2017-07-21 20:55:15 +0200
catalogue-license lppl1.3c
catalogue-topics struc-mkup class article-like report-like book-pub
catalogue-version 2.2
@@ -168626,7 +166820,6 @@ catalogue-contact-bugs https://github.com/opieters/limecv/issues
catalogue-contact-home https://olivierpieters.be/projects/limecv
catalogue-contact-repository https://github.com/opieters/limecv
catalogue-ctan /macros/latex/contrib/limecv
-catalogue-date 2018-01-07 12:02:30 +0100
catalogue-license lppl1.3c
catalogue-topics cv
catalogue-version 0.1.3
@@ -168665,7 +166858,6 @@ runfiles size=53
RELOC/fonts/type1/public/linearA/LinearACmplxSigns.pfb
RELOC/tex/latex/linearA/linearA.sty
catalogue-ctan /fonts/archaic/linearA
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics font font-type1 font-archaic
@@ -168698,7 +166890,6 @@ srcfiles size=11
runfiles size=1
RELOC/tex/latex/linegoal/linegoal.sty
catalogue-ctan /macros/latex/contrib/linegoal
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics layout
catalogue-version 2.9
@@ -168742,7 +166933,6 @@ runfiles size=60
catalogue-also numline edmac ledmac ednotes manyfoot poemscol
catalogue-contact-support http://www.webdesign-bu.de/uwe_lueck/contact.html
catalogue-ctan /macros/latex/contrib/lineno
-catalogue-date 2017-05-06 08:37:04 +0200
catalogue-license lppl
catalogue-topics typesetting
catalogue-version 4.41
@@ -168766,7 +166956,6 @@ docfiles size=81
runfiles size=5
RELOC/tex/latex/ling-macros/ling-macros.sty
catalogue-ctan /macros/latex/contrib/ling-macros
-catalogue-date 2016-10-17 05:04:23 +0200
catalogue-license lppl1.3
catalogue-topics linguistic
@@ -168797,7 +166986,6 @@ runfiles size=8
RELOC/tex/latex/linguex/linguho.sty
RELOC/tex/latex/linguex/ps-trees.sty
catalogue-ctan /macros/latex/contrib/linguex
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics linguistic tree
catalogue-version 4.3
@@ -169070,7 +167258,6 @@ runfiles size=697
RELOC/tex/latex/linguisticspro/linguisticspro.sty
catalogue-contact-home https://www.fontsquirrel.com/fonts/linguistics-pro
catalogue-ctan /fonts/linguisticspro
-catalogue-date 2019-10-13 18:44:30 +0200
catalogue-license lpplofl
catalogue-topics font font-proportional font-body font-otf font-type1 font-t1enc
@@ -169095,7 +167282,6 @@ docfiles size=63
runfiles size=1
RELOC/tex/latex/linop/linop.sty
catalogue-ctan /macros/latex/contrib/linop
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics maths physics
catalogue-version 0.1
@@ -169137,7 +167323,6 @@ runfiles size=20
RELOC/tex/latex/lion-msc/lion-msc-logo.pdf
RELOC/tex/latex/lion-msc/lion-msc.cls
catalogue-ctan /macros/latex/contrib/lion-msc
-catalogue-date 2019-05-15 23:06:58 +0200
catalogue-license lppl1.3
catalogue-topics class dissertation class class class
catalogue-version 0.28
@@ -169171,7 +167356,6 @@ catalogue-also blindtext kantlipsum
catalogue-contact-bugs https://github.com/patta42/lipsum/issues
catalogue-contact-repository https://github.com/patta42/lipsum/
catalogue-ctan /macros/latex/contrib/lipsum
-catalogue-date 2019-01-04 14:16:03 +0100
catalogue-license lppl1.3
catalogue-topics macro-supp dummy-gen
catalogue-version 2.2
@@ -169217,7 +167401,6 @@ runfiles size=22
RELOC/tex/latex/lisp-on-tex/lisp-string.sty
RELOC/tex/latex/lisp-on-tex/lisp-util.sty
catalogue-ctan /macros/latex/contrib/lisp-on-tex
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license bsd
catalogue-topics exec-foreign
catalogue-version 2.0
@@ -169252,7 +167435,6 @@ runfiles size=22
texmf-dist/tex/latex/listbib/listbib.tex
catalogue-also biblist
catalogue-ctan /macros/latex/contrib/listbib
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics bibtex-util
catalogue-version 2.2
@@ -169424,7 +167606,6 @@ runfiles size=1
RELOC/tex/latex/listing/listing.sty
catalogue-also listings
catalogue-ctan /macros/latex/contrib/listing
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license lppl
catalogue-topics listing
catalogue-version 1.2
@@ -169482,7 +167663,6 @@ runfiles size=145
RELOC/tex/latex/listings/lstmisc.sty
catalogue-also listing
catalogue-ctan /macros/latex/contrib/listings
-catalogue-date 2019-09-11 17:26:22 +0200
catalogue-license lppl1.3c
catalogue-topics listing synt-hlt
catalogue-version 1.8c
@@ -169530,7 +167710,6 @@ 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 2016-06-24 19:18:15 +0200
catalogue-license lppl1.2
catalogue-topics listing
catalogue-version 67
@@ -169697,7 +167876,6 @@ runfiles size=2
catalogue-contact-bugs https://github.com/ho-tex/listingsutf8/issues
catalogue-contact-repository https://github.com/ho-tex/listingsutf8
catalogue-ctan /macros/latex/contrib/listingsutf8
-catalogue-date 2019-12-11 08:43:02 +0100
catalogue-license lppl1.3
catalogue-topics listing synt-hlt utf8-adapt
catalogue-version 1.5
@@ -169733,7 +167911,6 @@ srcfiles size=5
runfiles size=1
RELOC/tex/latex/listlbls/listlbls.sty
catalogue-ctan /macros/latex/contrib/listlbls
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics label-ref debug-supp
catalogue-version 1.03
@@ -169762,7 +167939,6 @@ srcfiles size=6
runfiles size=1
RELOC/tex/latex/listliketab/listliketab.sty
catalogue-ctan /macros/latex/contrib/listliketab
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics list table
@@ -169799,7 +167975,6 @@ runfiles size=15
catalogue-contact-bugs https://framagit.org/unbonpetit/listofitems/issues
catalogue-contact-repository https://framagit.org/unbonpetit/listofitems/tree/master
catalogue-ctan /macros/generic/listofitems
-catalogue-date 2019-08-21 18:34:56 +0200
catalogue-license lppl1.3c
catalogue-topics text-manip list
catalogue-version 1.63
@@ -169834,7 +168009,6 @@ srcfiles size=7
runfiles size=2
RELOC/tex/latex/listofsymbols/listofsymbols.sty
catalogue-ctan /macros/latex/contrib/listofsymbols
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics toc-etc
catalogue-version 0.2
@@ -169917,7 +168091,6 @@ runfiles size=98
RELOC/tex/latex/lithuanian/lithuanian.ldf
RELOC/tex/latex/lithuanian/lithuanian.sty
catalogue-ctan /language/lithuanian
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license lppl1.3c
catalogue-topics lithuanian font-proc font-supp
@@ -169944,7 +168117,6 @@ srcfiles size=1
runfiles size=5
RELOC/tex/latex/liturg/liturg.sty
catalogue-ctan /macros/latex/contrib/liturg
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics theology
catalogue-version 1.0
@@ -169969,7 +168141,6 @@ runfiles size=2
catalogue-also proofs
catalogue-contact-home http://research.nii.ac.jp/~tatsuta/index-e.html
catalogue-ctan /macros/latex/contrib/lkproof
-catalogue-date 2018-02-03 19:33:36 +0100
catalogue-license gpl
catalogue-topics logic
catalogue-version 3.1
@@ -170000,7 +168171,6 @@ runfiles size=2
catalogue-contact-bugs https://github.com/adbrucker/llncsconf/issues
catalogue-contact-repository https://github.com/adbrucker/llncsconf
catalogue-ctan /macros/latex/contrib/llncsconf
-catalogue-date 2018-04-25 15:30:25 +0200
catalogue-license lppl1
catalogue-topics journalpub archival
catalogue-version 1.0.0
@@ -171127,7 +169297,6 @@ runfiles size=10645
RELOC/tex/latex/lm/ts1lmvtt.fd
catalogue-contact-home http://www.gust.org.pl/projects/e-foundry/latin-modern
catalogue-ctan /fonts/lm
-catalogue-date 2018-06-16 10:44:42 +0200
catalogue-license gfl
catalogue-topics font font-proportional font-mono font-type1 font-otf font-cm
catalogue-version 2.004
@@ -171163,7 +169332,6 @@ runfiles size=180
RELOC/fonts/opentype/public/lm-math/latinmodern-math.otf
catalogue-contact-home http://www.gust.org.pl/projects/e-foundry/latin-modern
catalogue-ctan /fonts/lm-math
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license gfl
catalogue-topics font font-maths font-otf
catalogue-version 1.959
@@ -171191,7 +169359,6 @@ srcfiles size=6
runfiles size=2
RELOC/tex/latex/lmake/lmake.sty
catalogue-ctan /macros/latex/contrib/lmake
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.2
catalogue-topics macro-supp
catalogue-version 1.0
@@ -171231,7 +169398,6 @@ catalogue-also biblatex-lni
catalogue-contact-bugs https://github.com/gi-ev/LNI/issues
catalogue-contact-repository https://github.com/gi-ev/LNI
catalogue-ctan /macros/latex/contrib/lni
-catalogue-date 2019-10-14 21:29:08 +0200
catalogue-license lppl1.3c
catalogue-topics journalpub class
catalogue-version 1.6
@@ -171344,7 +169510,6 @@ runfiles size=577
RELOC/tex/latex/lobster2/TS1LobsterTwo-LF.fd
catalogue-contact-repository https://github.com/impallari/The-Lobster-Font
catalogue-ctan /fonts/lobster2
-catalogue-date 2018-04-23 05:03:07 +0200
catalogue-license ofl
catalogue-topics font font-calligraphic font-type1 font-ttf
@@ -171373,7 +169538,6 @@ srcfiles size=8
runfiles size=3
RELOC/tex/latex/locality/locality.sty
catalogue-ctan /macros/latex/contrib/locality
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics macro-supp
catalogue-version 0.2
@@ -171402,7 +169566,6 @@ srcfiles size=11
runfiles size=2
RELOC/tex/latex/localloc/localloc.sty
catalogue-ctan /macros/latex/contrib/localloc
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license other-free
catalogue-topics macro-supp
@@ -171432,7 +169595,6 @@ srcfiles size=8
runfiles size=1
RELOC/tex/latex/logbox/logbox.sty
catalogue-ctan /macros/latex/contrib/logbox
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics macro-supp
catalogue-version 1.0
@@ -171459,7 +169621,6 @@ runfiles size=2
RELOC/tex/latex/logical-markup-utils/quoted.sty
catalogue-also csquotes
catalogue-ctan /macros/latex/contrib/logical-markup-utils
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl3
catalogue-topics quote-marks
@@ -171490,7 +169651,6 @@ srcfiles size=8
runfiles size=2
RELOC/tex/latex/logicproof/logicproof.sty
catalogue-ctan /macros/latex/contrib/logicproof
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics logic
@@ -171542,7 +169702,6 @@ runfiles size=32
RELOC/tex/latex/logicpuzzle/lpenv.sty
catalogue-contact-repository https://bitbucket.org/kleberj/logicpuzzle/
catalogue-ctan /graphics/pgf/contrib/logicpuzzle
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl1.3
catalogue-topics pgf-tikz games
catalogue-version 2.5
@@ -171574,7 +169733,6 @@ runfiles size=581
RELOC/fonts/truetype/public/logix/logix.ttf
RELOC/tex/latex/logix/logix.sty
catalogue-ctan /fonts/logix
-catalogue-date 2019-07-07 21:30:54 +0200
catalogue-license ofllppl1.3c
catalogue-topics font font-otf
catalogue-version 1.01
@@ -171604,7 +169762,6 @@ srcfiles size=28
runfiles size=7
RELOC/tex/latex/logpap/logpap.sty
catalogue-ctan /macros/latex/contrib/logpap
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics diagram
catalogue-version 0.6
@@ -171647,7 +169804,6 @@ runfiles size=3
RELOC/tex/latex/logreq/logreq.def
RELOC/tex/latex/logreq/logreq.sty
catalogue-ctan /macros/latex/contrib/logreq
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics compilation
catalogue-version 1.0
@@ -171715,7 +169871,6 @@ runfiles size=57
catalogue-contact-bugs https://github.com/bidi-tex/lollipop/issues
catalogue-contact-repository https://github.com/bidi-tex/lollipop
catalogue-ctan /macros/lollipop
-catalogue-date 2018-11-28 20:22:09 +0100
catalogue-license gpl3
catalogue-topics format
catalogue-version 1.07
@@ -171896,7 +170051,6 @@ runfiles size=8
catalogue-also longdiv
catalogue-contact-repository https://github.com/hoodmane/longdivision
catalogue-ctan /macros/latex/contrib/longdivision
-catalogue-date 2019-03-25 11:05:39 +0100
catalogue-license lppl
catalogue-topics maths arithmetic
catalogue-version 1.1.0
@@ -171921,7 +170075,6 @@ runfiles size=23
RELOC/tex/latex/longfbox/longbox.sty
RELOC/tex/latex/longfbox/longfbox.sty
catalogue-ctan /macros/latex/contrib/longfbox
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics boxing decoration
catalogue-version 1.0
@@ -171950,7 +170103,6 @@ srcfiles size=8
runfiles size=4
RELOC/tex/latex/longfigure/longfigure.sty
catalogue-ctan /macros/latex/contrib/longfigure
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics table table-long graphics-incl
catalogue-version 1.0
@@ -171983,7 +170135,6 @@ runfiles size=2
RELOC/tex/latex/longnamefilelist/longnamefilelist.sty
catalogue-contact-support http://www.webdesign-bu.de/uwe_lueck/contact.html
catalogue-ctan /macros/latex/contrib/longnamefilelist
-catalogue-date 2017-05-06 08:40:41 +0200
catalogue-license lppl1.3
catalogue-topics doc-mgmt
catalogue-version 0.2
@@ -172007,7 +170158,6 @@ docfiles size=8
runfiles size=13
RELOC/tex/latex/loops/loops.sty
catalogue-ctan /macros/latex/contrib/loops
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics list-supp macro-supp csv-support
catalogue-version 1.3
@@ -172036,7 +170186,6 @@ docfiles size=74
runfiles size=2
RELOC/tex/generic/lpform/lpform.sty
catalogue-ctan /macros/generic/lpform
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics maths
@@ -172068,7 +170217,6 @@ runfiles size=6
RELOC/tex/latex/lpic/lpic.sty
catalogue-also overpic
catalogue-ctan /macros/latex/contrib/lpic
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics graphics-text
catalogue-version 0.8
@@ -172099,7 +170247,6 @@ runfiles size=2
RELOC/tex/latex/lplfitch/lplfitch.sty
catalogue-contact-repository https://github.com/rzach/lplfitch
catalogue-ctan /macros/latex/contrib/lplfitch
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl1.3
catalogue-topics maths
catalogue-version 0.9
@@ -172129,7 +170276,6 @@ srcfiles size=7
runfiles size=2
RELOC/tex/latex/lps/lps.cls
catalogue-ctan /macros/latex/contrib/lps
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics journalpub class
catalogue-version 0.7
@@ -172160,7 +170306,6 @@ srcfiles size=7
runfiles size=2
RELOC/tex/latex/lroundrect/lroundrect.sty
catalogue-ctan /macros/latex/contrib/lroundrect
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics boxing
catalogue-version 1.0
@@ -172189,7 +170334,6 @@ runfiles size=16
RELOC/bibtex/bib/lsc/lsc.bib
RELOC/tex/latex/lsc/lsc.sty
catalogue-ctan /macros/latex/contrib/lsc
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics comp-net
@@ -172209,7 +170353,6 @@ docfiles size=639
RELOC/doc/latex/lshort-bulgarian/lshort-bg.pdf details="The document itself" language="bg"
RELOC/doc/latex/lshort-bulgarian/src/lshort-bg.src.zip
catalogue-ctan /info/lshort/bulgarian
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics tut-latex bulgarian
@@ -172256,7 +170399,6 @@ docfiles size=354
catalogue-contact-bugs https://github.com/CTeX-org/lshort-zh-cn/issues
catalogue-contact-repository https://github.com/CTeX-org/lshort-zh-cn
catalogue-ctan /info/lshort/chinese
-catalogue-date 2019-04-17 17:56:49 +0200
catalogue-license fdl
catalogue-topics tut-latex chinese-doc
catalogue-version 6.01
@@ -172299,7 +170441,6 @@ docfiles size=637
RELOC/doc/latex/lshort-czech/src/title.tex
RELOC/doc/latex/lshort-czech/src/typeset.tex
catalogue-ctan /info/lshort/czech
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics tut-latex czech-doc
catalogue-version 4.27
@@ -172322,7 +170463,6 @@ docfiles size=272
RELOC/doc/latex/lshort-dutch/lshort-nl-1.3.pdf details="The document itself" language="nl"
RELOC/doc/latex/lshort-dutch/lshort-nl-1.3.src.zip
catalogue-ctan /info/lshort/dutch
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics tut-latex dutch-doc
catalogue-version 1.3
@@ -172348,7 +170488,6 @@ docfiles size=182
RELOC/doc/latex/lshort-english/lshort.pdf details="The document itself"
catalogue-contact-home http://tobi.oetiker.ch/
catalogue-ctan /info/lshort/english
-catalogue-date 2018-02-28 14:19:41 +0100
catalogue-license gpl2
catalogue-topics tut-latex documentation
catalogue-version 6.2
@@ -172388,7 +170527,6 @@ docfiles size=867
RELOC/doc/latex/lshort-estonian/src/title.tex
RELOC/doc/latex/lshort-estonian/src/typeset.tex
catalogue-ctan /info/lshort/estonian
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl2
catalogue-topics tut-latex estonian
catalogue-version 5.05
@@ -172424,7 +170562,6 @@ docfiles size=601
RELOC/doc/latex/lshort-finnish/src/typeset.tex
RELOC/doc/latex/lshort-finnish/src/viritys.tex
catalogue-ctan /info/lshort/finnish
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics tut-latex finnish-doc
@@ -172444,7 +170581,6 @@ docfiles size=690
RELOC/doc/latex/lshort-french/lshort-fr-5.01fr-0.tgz
RELOC/doc/latex/lshort-french/lshort-fr.pdf details="The document itself" language="fr"
catalogue-ctan /info/lshort/french
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics tut-latex french-doc
catalogue-version 5.01fr-0
@@ -172482,7 +170618,6 @@ docfiles size=328
RELOC/doc/latex/lshort-german/textsatz.tex
catalogue-contact-repository https://github.com/texdoc/l2kurz
catalogue-ctan /info/lshort/german
-catalogue-date 2018-04-09 00:59:18 +0200
catalogue-license opl
catalogue-topics tut-latex german-doc
catalogue-version 3.0c
@@ -172508,7 +170643,6 @@ docfiles size=282
RELOC/doc/latex/lshort-italian/itlshort.pdf details="The document itself" language="it"
RELOC/doc/latex/lshort-italian/src.zip
catalogue-ctan /info/lshort/italian
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics tut-latex italian-doc
@@ -172528,7 +170662,6 @@ docfiles size=132
RELOC/doc/latex/lshort-japanese/jlshort-1.00.src.tar.gz
RELOC/doc/latex/lshort-japanese/jlshort.pdf
catalogue-ctan /info/lshort/japanese
-catalogue-date 2016-06-18 16:48:54 +0200
catalogue-license gpl
catalogue-topics tut-latex japanese-doc
@@ -172548,7 +170681,6 @@ docfiles size=315
RELOC/doc/latex/lshort-korean/lshort-ko-src-20190507.tar.gz
RELOC/doc/latex/lshort-korean/lshort-ko.pdf details="The document itself" language="ko"
catalogue-ctan /info/lshort/korean
-catalogue-date 2019-05-07 16:46:37 +0200
catalogue-license fdl
catalogue-topics tut-latex korean-doc
@@ -172591,7 +170723,6 @@ docfiles size=615
RELOC/doc/latex/lshort-mongol/src/title.tex
RELOC/doc/latex/lshort-mongol/src/typeset.tex
catalogue-ctan /info/lshort/mongolian/lshort-mongol
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics mongolian-doc tut-latex
catalogue-version 4.26
@@ -172630,7 +170761,6 @@ docfiles size=288
RELOC/doc/latex/lshort-persian/transpreface.tex
RELOC/doc/latex/lshort-persian/typeset.tex
catalogue-ctan /info/lshort/persian
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics persian-doc
catalogue-version 5.01
@@ -172651,7 +170781,6 @@ docfiles size=372
RELOC/doc/latex/lshort-polish/lshort2e.pdf
RELOC/doc/latex/lshort-polish/src.zip
catalogue-ctan /info/lshort/polish
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics polish-doc tut-latex
@@ -172670,7 +170799,6 @@ docfiles size=710
RELOC/doc/latex/lshort-portuguese/pt-lshort-5.01.0.src.tar.gz
RELOC/doc/latex/lshort-portuguese/pt-lshort.pdf
catalogue-ctan /info/lshort/portuguese
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics portuguese-doc tut-latex
catalogue-version 5.01.0
@@ -172689,7 +170817,6 @@ docfiles size=513
RELOC/doc/latex/lshort-russian/lshortru.pdf
RELOC/doc/latex/lshort-russian/lshortru.zip
catalogue-ctan /info/lshort/russian
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics russian-doc tut-latex
@@ -172707,7 +170834,6 @@ docfiles size=221
RELOC/doc/latex/lshort-slovak/slshorte.pdf
RELOC/doc/latex/lshort-slovak/src.zip
catalogue-ctan /info/lshort/slovak
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics slovak tut-latex
@@ -172744,7 +170870,6 @@ docfiles size=500
RELOC/doc/latex/lshort-slovenian/src/typeset.tex
catalogue-contact-home http://www-lp.fmf.uni-lj.si/plestenjak/vaje/latex/latex.htm
catalogue-ctan /info/lshort/slovenian
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license gpl
catalogue-topics slovenian tut-latex
catalogue-version 4.20
@@ -172786,7 +170911,6 @@ docfiles size=583
RELOC/doc/latex/lshort-spanish/fuente/src/typeset.tex
RELOC/doc/latex/lshort-spanish/lshort-a4.pdf details="The document itself (A4 paper)" language="es"
catalogue-ctan /info/lshort/spanish
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license other-free
catalogue-topics spanish-doc tut-latex
catalogue-version 0.5
@@ -172807,7 +170931,6 @@ docfiles size=135
RELOC/doc/latex/lshort-thai/lsh132.zip
RELOC/doc/latex/lshort-thai/readme details="Readme"
catalogue-ctan /info/lshort/thai
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics thai tut-latex
catalogue-version 1.32
@@ -172827,7 +170950,6 @@ docfiles size=447
RELOC/doc/latex/lshort-turkish/lshort-tr.pdf details="The document itself" language="tr"
RELOC/doc/latex/lshort-turkish/trlshort-src.zip
catalogue-ctan /info/lshort/turkish
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics tut-latex turkish
catalogue-version 4.20
@@ -172846,7 +170968,6 @@ docfiles size=639
RELOC/doc/latex/lshort-ukr/lshort-ukr-4.12.src.tar.gz
RELOC/doc/latex/lshort-ukr/lshort-ukr.pdf details="The document itself"
catalogue-ctan /info/lshort/ukrainian
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license other-free
catalogue-topics tut-latex ukrainian
catalogue-version 4.00
@@ -172886,7 +171007,6 @@ docfiles size=599
RELOC/doc/latex/lshort-vietnamese/src/title.tex
RELOC/doc/latex/lshort-vietnamese/src/typeset.tex
catalogue-ctan /info/lshort/vietnamese
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics tut-latex vietnamese-doc
catalogue-version 4.00
@@ -172920,7 +171040,6 @@ runfiles size=2
RELOC/tex/latex/lstaddons/lstlinebgrd.sty
catalogue-contact-repository https://bitbucket.org/martin_scharrer/lstaddons
catalogue-ctan /macros/latex/contrib/lstaddons
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl1.3
catalogue-topics listing
catalogue-version 0.1
@@ -172951,7 +171070,6 @@ srcfiles size=5
runfiles size=3
RELOC/tex/latex/lstbayes/lstbayes.sty
catalogue-ctan /macros/latex/contrib/lstbayes
-catalogue-date 2018-07-07 10:31:36 +0200
catalogue-license lppl1.3
catalogue-topics listing
@@ -172977,7 +171095,6 @@ catalogue-also fira
catalogue-contact-home https://github.com/RuixiZhang42/lstfiracode
catalogue-contact-support https://github.com/RuixiZhang42/lstfiracode/issues
catalogue-ctan /macros/latex/contrib/lstfiracode
-catalogue-date 2018-12-24 23:12:37 +0100
catalogue-license lppl1.3c
catalogue-topics listing
catalogue-version 0.1c
@@ -173004,7 +171121,6 @@ runfiles size=18
catalogue-contact-bugs https://github.com/mhelvens/latex-lt3graph/issues
catalogue-contact-repository https://github.com/mhelvens/latex-lt3graph
catalogue-ctan /macros/latex/contrib/lt3graph
-catalogue-date 2017-11-26 00:48:38 +0100
catalogue-license lppl1.3
catalogue-topics macro-supp expl3
catalogue-version 0.1.9
@@ -173029,7 +171145,6 @@ runfiles size=2
RELOC/tex/latex/ltablex/ltablex.sty
catalogue-also xltabular
catalogue-ctan /macros/latex/contrib/ltablex
-catalogue-date 2017-09-28 09:30:00 +0200
catalogue-license lppl
catalogue-topics table table-long
catalogue-version 1.1
@@ -173054,7 +171169,6 @@ runfiles size=3
RELOC/tex/latex/ltabptch/ltabptch.sty
catalogue-contact-support http://www.webdesign-bu.de/uwe_lueck/contact.html
catalogue-ctan /macros/latex/contrib/ltabptch
-catalogue-date 2017-05-06 08:44:32 +0200
catalogue-license lppl
catalogue-topics table-long
catalogue-version 1.74d
@@ -173091,7 +171205,6 @@ runfiles size=2
RELOC/tex/latex/ltb2bib/ltb2bib.sty
catalogue-also amsrefs
catalogue-ctan /biblio/bibtex/utils/ltb2bib
-catalogue-date 2018-01-07 12:06:50 +0100
catalogue-license lppl1.3
catalogue-topics biblio
catalogue-version 0.01
@@ -173122,7 +171235,6 @@ runfiles size=8
RELOC/tex/latex/ltxdockit/ltxdockit.def
RELOC/tex/latex/ltxdockit/ltxdockit.sty
catalogue-ctan /macros/latex/contrib/ltxdockit
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics doc-supp
catalogue-version 1.2d
@@ -173148,7 +171260,6 @@ docfiles size=11
runfiles size=4
texmf-dist/scripts/ltxfileinfo/ltxfileinfo
catalogue-ctan /support/ltxfileinfo
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics file-mgmt
catalogue-version 2.04
@@ -173310,7 +171421,6 @@ runfiles size=2
catalogue-contact-bugs https://github.com/9999years/ltxguidex/issues
catalogue-contact-home https://github.com/9999years/ltxguidex
catalogue-ctan /macros/latex/contrib/ltxguidex
-catalogue-date 2019-04-15 21:59:07 +0200
catalogue-license lppl1.3c
catalogue-topics class
catalogue-version 0.2.0
@@ -173342,7 +171452,6 @@ runfiles size=17
catalogue-contact-bugs https://github.com/pablgonz/ltximg/issues
catalogue-contact-repository https://github.com/pablgonz/ltximg
catalogue-ctan /support/ltximg
-catalogue-date 2019-08-24 20:09:12 +0200
catalogue-license gpl3+
catalogue-topics chunks
catalogue-version 1.7
@@ -173517,7 +171626,6 @@ srcfiles size=5
runfiles size=2
RELOC/tex/latex/ltxindex/ltxindex.sty
catalogue-ctan /macros/latex/contrib/ltxindex
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics index
catalogue-version 0.1c
@@ -173552,7 +171660,6 @@ runfiles size=34
RELOC/tex/latex/ltxkeys/ltxkeys.sty
catalogue-also xkeyval
catalogue-ctan /macros/latex/contrib/ltxkeys
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics keyval
catalogue-version 0.0.3c
@@ -173577,7 +171684,6 @@ runfiles size=17
RELOC/tex/latex/ltxmisc/topcapt.sty
RELOC/tex/latex/ltxmisc/vrbexin.sty
catalogue-ctan /macros/latex/contrib/misc
-catalogue-date 2016-06-18 16:48:54 +0200
catalogue-license collection
catalogue-topics collection
@@ -173609,7 +171715,6 @@ srcfiles size=10
runfiles size=3
RELOC/tex/latex/ltxnew/ltxnew.sty
catalogue-ctan /macros/latex/contrib/ltxnew
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics macro-def
catalogue-version 1.3
@@ -173637,7 +171742,6 @@ runfiles size=73
RELOC/tex/latex/ltxtools/ltxtools-trace.sty
RELOC/tex/latex/ltxtools/ltxtools.sty
catalogue-ctan /macros/latex/contrib/ltxtools
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics macro-supp
catalogue-version 0.0.1a
@@ -173667,7 +171771,6 @@ runfiles size=1
RELOC/scripts/lua-alt-getopt/alt_getopt.lua
catalogue-contact-repository https://github.com/cheusov/lua-alt-getopt
catalogue-ctan /support/lua/lua-alt-getopt
-catalogue-date 2018-05-16 04:58:43 +0200
catalogue-license mit
catalogue-topics lua-supp
catalogue-version 0.7.0
@@ -173700,7 +171803,6 @@ runfiles size=4
catalogue-contact-bugs https://github.com/pgundlach/lua-check-hyphen/issues
catalogue-contact-repository https://github.com/pgundlach/lua-check-hyphen
catalogue-ctan /macros/luatex/latex/lua-check-hyphen
-catalogue-date 2018-04-19 21:24:30 +0200
catalogue-license mit
catalogue-topics hyphenation luatex
catalogue-version 0.7a
@@ -173731,7 +171833,6 @@ runfiles size=3
RELOC/tex/luatex/lua-visual-debug/lua-visual-debug.lua
RELOC/tex/luatex/lua-visual-debug/lua-visual-debug.sty
catalogue-ctan /macros/luatex/generic/lua-visual-debug
-catalogue-date 2019-01-07 11:02:34 +0100
catalogue-license mit
catalogue-topics debug-supp luatex
catalogue-version 0.7
@@ -173971,7 +172072,6 @@ runfiles size=7
texmf-dist/scripts/lua2dox/lua2dox.lua
texmf-dist/scripts/lua2dox/lua2dox_filter
catalogue-ctan /web/lua2dox
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics litprog
catalogue-version 0.2
@@ -174145,7 +172245,6 @@ runfiles size=2
catalogue-contact-repository https://github.com/latextemplates/luabibentry
catalogue-contact-support https://github.com/latextemplates/luabibentry/issues
catalogue-ctan /macros/luatex/latex/luabibentry
-catalogue-date 2018-03-08 15:27:25 +0100
catalogue-license lppl1.3
catalogue-topics cite-supp luatex use-lua
catalogue-version 0.1a
@@ -174176,7 +172275,6 @@ catalogue-contact-bugs https://github.com/bidi-tex/luabidi/issues
catalogue-contact-home https://github.com/bidi-tex/luabidi/
catalogue-contact-repository https://github.com/bidi-tex/luabidi
catalogue-ctan /macros/luatex/latex/luabidi
-catalogue-date 2019-10-28 08:19:17 +0100
catalogue-license lppl1.3cmit
catalogue-topics typesetting luatex
catalogue-version 0.5
@@ -174207,7 +172305,6 @@ srcfiles size=7
runfiles size=2
RELOC/tex/lualatex/luacode/luacode.sty
catalogue-ctan /macros/luatex/latex/luacode
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics lua-supp luatex
catalogue-version 1.2a
@@ -174236,7 +172333,6 @@ runfiles size=4
catalogue-contact-bugs https://github.com/ho-tex/luacolor/issues
catalogue-contact-repository https://github.com/ho-tex/luacolor
catalogue-ctan /macros/latex/contrib/luacolor
-catalogue-date 2019-11-30 11:10:53 +0100
catalogue-license lppl1.3
catalogue-topics colour luatex
catalogue-version 1.13
@@ -174384,7 +172480,6 @@ docfiles size=12
runfiles size=2
RELOC/tex/lualatex/luahyphenrules/luahyphenrules.sty
catalogue-ctan /macros/luatex/latex/luahyphenrules
-catalogue-date 2016-12-17 05:41:03 +0100
catalogue-license lppl1.3
catalogue-topics hyphenation luatex
catalogue-version 1.0
@@ -174412,7 +172507,6 @@ catalogue-contact-announce https://github.com/csachs/luaimageembed/releases
catalogue-contact-bugs https://github.com/csachs/luaimageembed/issues
catalogue-contact-home https://github.com/csachs/luaimageembed
catalogue-ctan /macros/luatex/latex/luaimageembed
-catalogue-date 2019-04-05 15:52:51 +0200
catalogue-license mit
catalogue-topics image-supp lua-supp
catalogue-version 0.1
@@ -174443,7 +172537,6 @@ runfiles size=6
RELOC/scripts/luaindex/luaindex.lua
RELOC/tex/lualatex/luaindex/luaindex.sty
catalogue-ctan /macros/luatex/latex/luaindex
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics index
catalogue-version 0.1b
@@ -174482,7 +172575,6 @@ runfiles size=8
RELOC/tex/lualatex/luainputenc/lutf8x.def
catalogue-contact-repository https://github.com/lualatex/luainputenc
catalogue-ctan /macros/luatex/latex/luainputenc
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license pd
catalogue-topics inputenc luatex
catalogue-version 0.973
@@ -174711,7 +172803,6 @@ docfiles size=211
RELOC/doc/luatex/luaintro/screxabook.cls
RELOC/doc/luatex/luaintro/screxareport.cls
catalogue-ctan /info/examples/luaintro
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics book-ex
catalogue-version 0.03
@@ -174931,7 +173022,6 @@ srcfiles size=12
RELOC/source/lualatex/lualatex-doc/lltxdoc.cls
RELOC/source/lualatex/lualatex-doc/lualatex-doc.tex
catalogue-ctan /info/luatex/lualatex-doc
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license fdl
catalogue-topics luatex-doc
@@ -174953,7 +173043,6 @@ docfiles size=42
RELOC/doc/latex/lualatex-doc-de/lualatex-doc-DE.pdf details="The translated document itself"
RELOC/doc/latex/lualatex-doc-de/lualatex-doc-DE.tex
catalogue-ctan /info/luatex/lualatex-doc-de
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license fdl
catalogue-topics luatex-doc german
catalogue-version 1.0
@@ -174991,7 +173080,6 @@ runfiles size=3
catalogue-contact-bugs https://github.com/phst/lualatex-math/issues
catalogue-contact-repository https://github.com/phst/lualatex-math
catalogue-ctan /macros/luatex/latex/lualatex-math
-catalogue-date 2019-01-31 22:55:21 +0100
catalogue-license lppl1.3c
catalogue-topics maths luatex
catalogue-version 1.8
@@ -175022,7 +173110,6 @@ catalogue-also truncate
catalogue-contact-bugs https://gitlab.com/SFr682k/lualatex-truncate/issues
catalogue-contact-repository https://gitlab.com/SFr682k/lualatex-truncate
catalogue-ctan /macros/luatex/latex/lualatex-truncate
-catalogue-date 2018-08-22 22:23:58 +0200
catalogue-license lppl1.3c
catalogue-topics layout luatex
catalogue-version 1.1
@@ -175089,7 +173176,6 @@ runfiles size=186
catalogue-contact-repository https://github.com/latex3/lualibs
catalogue-contact-support https://github.com/latex3/lualibs/issues
catalogue-ctan /macros/luatex/generic/lualibs
-catalogue-date 2019-11-06 11:55:29 +0100
catalogue-license gpl2
catalogue-topics lua-supp luatex
catalogue-version 2.69
@@ -175132,7 +173218,6 @@ runfiles size=26
RELOC/scripts/luamesh/luamesh.lua
RELOC/tex/lualatex/luamesh/luamesh.sty
catalogue-ctan /macros/luatex/latex/luamesh
-catalogue-date 2017-04-15 18:56:47 +0200
catalogue-license lppl1.3
catalogue-topics luatex
catalogue-version 0.51
@@ -175167,7 +173252,6 @@ runfiles size=12
catalogue-contact-bugs https://github.com/lualatex/luamplib/issues
catalogue-contact-repository http://github.com/lualatex/luamplib
catalogue-ctan /macros/luatex/generic/luamplib
-catalogue-date 2019-12-11 08:56:05 +0100
catalogue-license gpl2
catalogue-topics mp-use graphics-in-tex luatex
catalogue-version 2.20.4
@@ -175302,7 +173386,6 @@ runfiles size=1813
catalogue-contact-repository https://github.com/latex3/luaotfload
catalogue-contact-support https://github.com/latex3/luaotfload/issues
catalogue-ctan /macros/luatex/generic/luaotfload
-catalogue-date 2019-11-11 10:37:48 +0100
catalogue-license gpl2
catalogue-topics font-use luatex
catalogue-version 3.11
@@ -175474,7 +173557,6 @@ runfiles size=2
catalogue-contact-bugs https://github.com/deepakjois/luapackageloader/issues
catalogue-contact-repository https://github.com/deepakjois/luapackageloader
catalogue-ctan /macros/luatex/generic/luapackageloader
-catalogue-date 2017-06-07 05:22:03 +0200
catalogue-license lppl1.3c
catalogue-topics luatex lua-supp use-lua
catalogue-version 0.1
@@ -175500,7 +173582,6 @@ docfiles size=16
runfiles size=1
RELOC/tex/lualatex/luarandom/luarandom.sty
catalogue-ctan /macros/luatex/latex/luarandom
-catalogue-date 2018-12-19 05:04:41 +0100
catalogue-license lppl1.3
catalogue-topics luatex random calculation
catalogue-version 0.01
@@ -175529,7 +173610,6 @@ runfiles size=11
RELOC/scripts/luasseq/luasseq.lua
RELOC/tex/lualatex/luasseq/luasseq.sty
catalogue-ctan /macros/luatex/latex/luasseq
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics maths luatex
@@ -175602,7 +173682,6 @@ catalogue-contact-bugs http://lists.tug.org/tex-k
catalogue-contact-home http://luatex.org
catalogue-contact-repository https://tug.org/svn/texlive/trunk/Build/source/texk/web2c/luatexdir
catalogue-contact-support http://lists.tug.org/luatex
-catalogue-date 2018-12-31 06:11:12 +0100
catalogue-license gpl2
catalogue-topics engine
@@ -175846,7 +173925,6 @@ srcfiles size=4
runfiles size=2
RELOC/tex/generic/luatex85/luatex85.sty
catalogue-ctan /macros/generic/luatex85
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics lua-supp
catalogue-version 1.4
@@ -175888,7 +173966,6 @@ runfiles size=11
RELOC/tex/luatex/luatexbase/luatexbase.loader.lua
RELOC/tex/luatex/luatexbase/luatexbase.sty
catalogue-ctan /macros/luatex/generic/luatexbase
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics luatex
catalogue-version 1.3
@@ -176042,7 +174119,6 @@ catalogue-contact-bugs https://osdn.net/projects/luatex-ja/ticket/
catalogue-contact-home https://osdn.net/projects/luatex-ja/wiki/FrontPage(en)
catalogue-contact-repository https://osdn.net/projects/luatex-ja/scm/git/luatexja/
catalogue-ctan /macros/luatex/generic/luatexja
-catalogue-date 2019-11-18 15:01:34 +0100
catalogue-license bsd
catalogue-topics japanese luatex class
catalogue-version 20191118.0
@@ -176077,7 +174153,6 @@ runfiles size=29
catalogue-contact-bugs https://github.com/dohyunkim/luatexko/issues
catalogue-contact-repository https://github.com/dohyunkim/luatexko
catalogue-ctan /macros/luatex/generic/luatexko
-catalogue-date 2019-12-02 18:02:18 +0100
catalogue-license lppl1.3c
catalogue-topics luatex korean
catalogue-version 2.5
@@ -176110,7 +174185,6 @@ runfiles size=1
RELOC/tex/lualatex/luatextra/luatextra.sty
catalogue-contact-repository https://github.com/lualatex/luatextra
catalogue-ctan /macros/luatex/latex/luatextra
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license pd
catalogue-topics luatex
catalogue-version 1.0.1
@@ -176149,7 +174223,6 @@ catalogue-also todonotes
catalogue-contact-bugs https://github.com/fabianlipp/luatodonotes/issues
catalogue-contact-repository https://github.com/fabianlipp/luatodonotes
catalogue-ctan /macros/luatex/latex/luatodonotes
-catalogue-date 2017-10-01 23:18:24 +0200
catalogue-license lppl1.2
catalogue-topics notes editorial luatex use-lua
catalogue-version 0.4
@@ -176195,7 +174268,6 @@ catalogue-also encxvlna xevlna
catalogue-contact-bugs https://github.com/michal-h21/luavlna/issues
catalogue-contact-repository https://github.com/michal-h21/luavlna
catalogue-ctan /macros/luatex/generic/luavlna
-catalogue-date 2019-11-07 14:38:13 +0100
catalogue-license lppl1.3
catalogue-topics typesetting czech slovak polish luatex
catalogue-version 0.1f
@@ -176230,7 +174302,6 @@ runfiles size=32
RELOC/tex/luatex/luaxml/luaxml-testxml.lua
catalogue-contact-repository https://github.com/michal-h21/LuaXML
catalogue-ctan /macros/luatex/generic/luaxml
-catalogue-date 2019-09-20 15:52:05 +0200
catalogue-license other-free
catalogue-topics foreign-import luatex use-lua
catalogue-version 0.1l
@@ -176714,7 +174785,6 @@ runfiles size=578
catalogue-also latex2html
catalogue-contact-home http://bdtechconcepts.com/
catalogue-ctan /macros/latex/contrib/lwarp
-catalogue-date 2019-11-07 15:04:10 +0100
catalogue-license lppl1.3
catalogue-topics cvt-html
catalogue-version 0.78
@@ -176987,7 +175057,6 @@ runfiles size=397
RELOC/tex/latex/lxfonts/ulmsa.fd
RELOC/tex/latex/lxfonts/ulmsb.fd
catalogue-ctan /fonts/lxfonts
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics font font-mf font-type1 font-sans font-maths
catalogue-version 2.0b
@@ -177082,7 +175151,6 @@ runfiles size=104
RELOC/tex/latex/ly1/texnansi.sty
RELOC/tex/plain/ly1/texnansi.tex
catalogue-ctan /fonts/psfonts/ly1
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics font-supp
@@ -177119,7 +175187,6 @@ runfiles size=19
catalogue-contact-bugs https://github.com/jperon/lyluatex/issues
catalogue-contact-repository https://github.com/jperon/lyluatex
catalogue-ctan /support/lyluatex
-catalogue-date 2019-05-28 17:09:42 +0200
catalogue-license mit
catalogue-topics luatex music music-extinp
catalogue-version 1.0f
@@ -177209,7 +175276,6 @@ runfiles size=4
texmf-dist/tex/latex/m-tx/mtxlatex.sty
catalogue-contact-home http://icking-music-archive.org/software/indexmt6.html
catalogue-ctan /support/m-tx
-catalogue-date 2019-01-24 14:47:00 +0100
catalogue-license mit
catalogue-topics music
catalogue-version 0.63c
@@ -177399,7 +175465,6 @@ runfiles size=1
catalogue-contact-bugs https://bitbucket.org/martin_scharrer/macros2e/issues
catalogue-contact-repository https://bitbucket.org/martin_scharrer/macros2e
catalogue-ctan /info/macros2e
-catalogue-date 2017-12-09 15:32:14 +0100
catalogue-license lppl1.3c
catalogue-topics latex-doc
catalogue-version 0.4a
@@ -177427,7 +175492,6 @@ srcfiles size=3
runfiles size=1
RELOC/tex/latex/macroswap/macroswap.sty
catalogue-ctan /macros/latex/contrib/macroswap
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.2
catalogue-topics macro-supp
catalogue-version 1.1
@@ -177458,7 +175522,6 @@ runfiles size=3
RELOC/tex/latex/mafr/fiche.cls
RELOC/tex/latex/mafr/mafr.sty
catalogue-ctan /macros/latex/contrib/mafr
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics maths french exercise
catalogue-version 1.0
@@ -177481,7 +175544,6 @@ docfiles size=62
runfiles size=3
RELOC/tex/latex/magaz/magaz.sty
catalogue-ctan /macros/latex/contrib/magaz
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license other-free
catalogue-topics layout typesetting
catalogue-version 0.4
@@ -177513,7 +175575,6 @@ runfiles size=5
catalogue-contact-bugs https://github.com/ho-tex/magicnum/issues
catalogue-contact-repository https://github.com/ho-tex/magicnum
catalogue-ctan /macros/latex/contrib/magicnum
-catalogue-date 2019-11-30 11:10:53 +0100
catalogue-license lppl1.3c
catalogue-topics debug-supp
catalogue-version 1.7
@@ -177543,7 +175604,6 @@ srcfiles size=4
runfiles size=1
RELOC/tex/latex/mailing/mailing.sty
catalogue-ctan /macros/latex/contrib/mailing
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics mailing
@@ -177574,7 +175634,6 @@ runfiles size=1
RELOC/tex/latex/mailmerge/mailmerge.sty
catalogue-also mailing merge postcards
catalogue-ctan /macros/latex/contrib/mailmerge
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.2
catalogue-topics mailing
catalogue-version 1.0
@@ -177655,7 +175714,6 @@ runfiles size=72
texmf-dist/scripts/make4ht/mkutils.lua
catalogue-contact-repository https://github.com/michal-h21/make4ht
catalogue-ctan /support/make4ht
-catalogue-date 2019-11-26 22:16:52 +0100
catalogue-license lppl1.3
catalogue-topics cvt-html
catalogue-version 0.3c
@@ -177828,7 +175886,6 @@ docfiles size=79
runfiles size=5
RELOC/tex/latex/makebarcode/makebarcode.sty
catalogue-ctan /macros/latex/contrib/makebarcode
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics barcode
catalogue-version 1.0
@@ -177862,7 +175919,6 @@ srcfiles size=13
runfiles size=1
RELOC/tex/latex/makebase/makebase.sty
catalogue-ctan /macros/latex/contrib/makebase
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics numbers
catalogue-version 0.2
@@ -177895,7 +175951,6 @@ srcfiles size=4
runfiles size=1
RELOC/tex/latex/makebox/makebox.sty
catalogue-ctan /macros/latex/contrib/makebox
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics boxing
catalogue-version 0.1
@@ -177931,7 +175986,6 @@ srcfiles size=17
runfiles size=4
RELOC/tex/latex/makecell/makecell.sty
catalogue-ctan /macros/latex/contrib/makecell
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics table
catalogue-version 0.1e
@@ -177961,7 +176015,6 @@ runfiles size=15
RELOC/metapost/makecirc/latex.mp
RELOC/metapost/makecirc/makecirc.mp
catalogue-ctan /graphics/metapost/contrib/macros/makecirc
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics diagram-circ
@@ -177989,7 +176042,6 @@ srcfiles size=5
runfiles size=1
RELOC/tex/latex/makecmds/makecmds.sty
catalogue-ctan /macros/latex/contrib/makecmds
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics macro-supp
@@ -178032,7 +176084,6 @@ docfiles size=191
RELOC/doc/lualatex/makecookbook/mycookbook/tex/cb-chapterB.tex
RELOC/doc/lualatex/makecookbook/mycookbook/tex/cb-frontmatter.tex
catalogue-ctan /macros/luatex/latex/makecookbook
-catalogue-date 2018-12-06 07:49:18 +0100
catalogue-license lppl1.3c
catalogue-topics book-pub cooking luatex
catalogue-version 0.85
@@ -178071,7 +176122,6 @@ catalogue-contact-development https://puszcza.gnu.org.ua/project/memberlist.php?
catalogue-contact-home https://puszcza.gnu.org.ua/projects/latex-makedtx
catalogue-contact-repository https://puszcza.gnu.org.ua/svn/?group=latex-makedtx
catalogue-ctan /support/makedtx
-catalogue-date 2018-02-21 20:29:09 +0100
catalogue-license lppl
catalogue-topics package-devel
catalogue-version 1.2
@@ -178241,7 +176291,6 @@ runfiles size=1
RELOC/tex/latex/makeglos/makeglos.sty
catalogue-also nomencl glosstex gloss
catalogue-ctan /macros/latex/contrib/makeglos
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics glossary
@@ -178275,7 +176324,6 @@ runfiles size=9
texmf-dist/makeindex/base/tex.ist
texmf-dist/tex/plain/makeindex/idxmac.tex
catalogue-ctan /indexing/makeindexk
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license other-free
catalogue-topics index
@@ -178466,7 +176514,6 @@ srcfiles size=12
runfiles size=5
RELOC/tex/latex/makeplot/makeplot.sty
catalogue-ctan /graphics/pstricks/contrib/makeplot
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics graphics-plot
catalogue-version 1.0.6
@@ -178495,7 +176542,6 @@ catalogue-contact-bugs https://github.com/piratax007/maker_LaTeX_package
catalogue-contact-home https://github.com/piratax007/maker_LaTeX_package
catalogue-contact-repository https://github.com/piratax007/maker_LaTeX_package
catalogue-ctan /macros/latex/contrib/maker
-catalogue-date 2017-07-19 05:12:43 +0200
catalogue-license lppl1.3c
catalogue-topics listing synt-hlt
catalogue-version 1.0
@@ -178527,7 +176573,6 @@ runfiles size=1
catalogue-contact-bugs https://github.com/ho-tex/makerobust/issues
catalogue-contact-repository https://github.com/ho-tex/makerobust
catalogue-ctan /macros/latex/contrib/makerobust
-catalogue-date 2019-11-15 11:16:57 +0100
catalogue-license lppl1.3c
catalogue-topics macro-supp
catalogue-version 2.0
@@ -178562,7 +176607,6 @@ srcfiles size=27
runfiles size=2
RELOC/tex/latex/makeshape/makeshape.sty
catalogue-ctan /graphics/pgf/contrib/makeshape
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics pgf-tikz
catalogue-version 2.1
@@ -178594,7 +176638,6 @@ runfiles size=24
RELOC/tex/latex/mandi/mandi.sty
catalogue-also siunitx
catalogue-ctan /macros/latex/contrib/mandi
-catalogue-date 2019-01-14 21:28:49 +0100
catalogue-license lppl1.3
catalogue-topics physics
catalogue-version 2.7.5
@@ -178617,7 +176660,6 @@ srcfiles size=7
runfiles size=1
RELOC/tex/latex/manfnt/manfnt.sty
catalogue-ctan /macros/latex/contrib/manfnt
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics font-supp
@@ -178639,7 +176681,6 @@ runfiles size=13
RELOC/fonts/type1/hoekwater/manfnt-font/manfnt.pfb
RELOC/fonts/type1/hoekwater/manfnt-font/manfnt.pfm
catalogue-ctan /fonts/manual
-catalogue-date 2016-11-05 08:51:03 +0100
catalogue-license knuth
catalogue-topics font font-mf font-type1 font-symbol
@@ -178669,7 +176710,6 @@ runfiles size=1
RELOC/tex/latex/manuscript/manuscript.sty
catalogue-contact-repository https://gitlab.com/mcepl/manuscript
catalogue-ctan /macros/latex/contrib/manuscript
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl
catalogue-topics typesetting
catalogue-version 1.7
@@ -178699,7 +176739,6 @@ runfiles size=2
catalogue-also multind splitindex
catalogue-contact-home https://www.staff.science.uu.nl/~kalle101/mind.html
catalogue-ctan /macros/latex/contrib/manyind
-catalogue-date 2019-01-30 10:53:39 +0100
catalogue-license lppl1.2
catalogue-topics index-multi
@@ -178792,7 +176831,6 @@ runfiles size=127
RELOC/tex/latex/marcellus/marcellus.sty
catalogue-contact-home https://fonts.google.com/specimen/Marcellus
catalogue-ctan /fonts/marcellus
-catalogue-date 2019-10-13 19:30:48 +0200
catalogue-license ofllppl
catalogue-topics font font-body font-proportional font-ttf font-type1 font-t1enc
@@ -178817,7 +176855,6 @@ srcfiles size=3
runfiles size=1
RELOC/tex/latex/margbib/margbib.sty
catalogue-ctan /macros/latex/contrib/margbib
-catalogue-date 2018-09-14 05:26:10 +0200
catalogue-license gpl
catalogue-topics cite-supp marginal
catalogue-version 1.0c
@@ -178848,7 +176885,6 @@ srcfiles size=7
runfiles size=2
RELOC/tex/latex/marginfit/marginfit.sty
catalogue-ctan /macros/latex/contrib/marginfit
-catalogue-date 2018-07-26 18:47:07 +0200
catalogue-license lppl1.3
catalogue-topics marginal
catalogue-version 1.1
@@ -178883,7 +176919,6 @@ srcfiles size=17
runfiles size=4
RELOC/tex/latex/marginfix/marginfix.sty
catalogue-ctan /macros/latex/contrib/marginfix
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics marginal
catalogue-version 1.1
@@ -178912,7 +176947,6 @@ runfiles size=4
RELOC/tex/latex/marginnote/marginnote.sty
catalogue-contact-home https://komascript.de/marginnote
catalogue-ctan /macros/latex/contrib/marginnote
-catalogue-date 2018-08-09 12:16:31 +0200
catalogue-license lppl1.3c
catalogue-topics notes
catalogue-version 1.4b
@@ -178964,7 +176998,6 @@ catalogue-contact-bugs https://github.com/Witiko/markdown/issues
catalogue-contact-development https://github.com/Witiko/markdown/pulls
catalogue-contact-repository https://github.com/Witiko/markdown
catalogue-ctan /macros/generic/markdown
-catalogue-date 2019-04-30 08:22:33 +0200
catalogue-license lppl1.3
catalogue-topics markup
catalogue-version 2.8.1
@@ -179013,7 +177046,6 @@ runfiles size=51
RELOC/tex/latex/marvosym/umvs.fd
catalogue-contact-home http://www.marvosym.de
catalogue-ctan /fonts/marvosym
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license ofl
catalogue-topics font font-mf font-ttf font-symbol font-supp
catalogue-version 2.2a
@@ -179043,7 +177075,6 @@ runfiles size=2
RELOC/tex/latex/matc3/matc3.sty
catalogue-also matc3mem
catalogue-ctan /macros/latex/contrib/matc3
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics maths
catalogue-version 1.0.1
@@ -179074,7 +177105,6 @@ runfiles size=2
RELOC/tex/latex/matc3mem/matc3mem.cls
catalogue-also matc3
catalogue-ctan /macros/latex/contrib/matc3mem
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics maths
catalogue-version 1.1
@@ -179100,7 +177130,6 @@ docfiles size=15
runfiles size=2
texmf-dist/scripts/match_parens/match_parens
catalogue-ctan /support/match_parens
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license gpl
catalogue-topics debug-supp
catalogue-version 1.43
@@ -179779,7 +177808,6 @@ docfiles size=515
RELOC/doc/latex/math-e/exareport.cls
RELOC/doc/latex/math-e/exasymbol.cls
catalogue-ctan /info/examples/Math-E
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics book-ex
@@ -179881,7 +177909,6 @@ docfiles size=965
RELOC/doc/latex/math-into-latex-4/template.bib
RELOC/doc/latex/math-into-latex-4/topmat.tpl
catalogue-ctan /info/examples/Math_into_LaTeX-4
-catalogue-date 2017-01-13 05:31:26 +0100
catalogue-license other-free
catalogue-topics book-ex
@@ -179991,7 +178018,6 @@ runfiles size=215
RELOC/tex/generic/mathabx/mathabx.tex
catalogue-contact-home http://www-math.univ-poitiers.fr/~phan/
catalogue-ctan /fonts/mathabx
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl
catalogue-topics font font-mf font-symbol-maths
@@ -180038,7 +178064,6 @@ runfiles size=500
RELOC/fonts/type1/public/mathabx-type1/mathx9.pfb
catalogue-also mathabx
catalogue-ctan /fonts/ps-type1/mathabx
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics font font-type1 font-symbol-maths
@@ -180066,7 +178091,6 @@ runfiles size=8
RELOC/tex/latex/mathalpha/mathalpha.sty
catalogue-alias mathalfa
catalogue-ctan /macros/latex/contrib/mathalpha
-catalogue-date 2019-10-05 21:56:50 +0200
catalogue-license lppl1.3
catalogue-topics maths
catalogue-version 1.13
@@ -180111,7 +178135,6 @@ runfiles size=24
RELOC/tex/latex/mathastext/mathastext.sty
catalogue-contact-home http://jf.burnol.free.fr/mathastext.html
catalogue-ctan /macros/latex/contrib/mathastext
-catalogue-date 2019-11-16 23:07:01 +0100
catalogue-license lppl1.3
catalogue-topics maths font-supp-maths font-sel
catalogue-version 1.3w
@@ -180145,7 +178168,6 @@ srcfiles size=14
runfiles size=6
RELOC/tex/latex/mathcommand/mathcommand.sty
catalogue-ctan /macros/latex/contrib/mathcommand
-catalogue-date 2019-12-06 19:30:07 +0100
catalogue-license lppl1.2
catalogue-topics maths macro-def macro-iterate expl3
catalogue-version 1.03
@@ -180172,7 +178194,6 @@ runfiles size=1
RELOC/tex/latex/mathcomp/mathcomp.sty
catalogue-also textcomp
catalogue-ctan /macros/latex/contrib/mathcomp
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics font-supp-maths
catalogue-version 0.1f
@@ -181451,7 +179472,6 @@ runfiles size=2805
RELOC/tex/latex/mathdesign/omlmdgrdc.fd
catalogue-also fourier
catalogue-ctan /fonts/mathdesign
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics font font-type1 font-maths font-supp-maths
catalogue-version 2.31
@@ -181485,7 +179505,6 @@ runfiles size=3
RELOC/tex/generic/mathdots/mathdots.sty
RELOC/tex/generic/mathdots/mathdots.tex
catalogue-ctan /macros/generic/mathdots
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics maths
catalogue-version 0.9
@@ -181520,7 +179539,6 @@ srcfiles size=5
runfiles size=1
RELOC/tex/latex/mathexam/mathexam.sty
catalogue-ctan /macros/latex/contrib/mathexam
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics exam maths
catalogue-version 1.00
@@ -181548,7 +179566,6 @@ runfiles size=5
RELOC/tex/latex/mathfam256/mathfam256.sty
catalogue-contact-repository https://github.com/aminophen/mathfam256
catalogue-ctan /macros/latex/contrib/mathfam256
-catalogue-date 2019-09-14 12:14:35 +0200
catalogue-license bsd3
catalogue-topics maths omega japanese etex
catalogue-version 0.3
@@ -181578,7 +179595,6 @@ srcfiles size=13
runfiles size=3
RELOC/tex/latex/mathfixs/mathfixs.sty
catalogue-ctan /macros/latex/contrib/mathfixs
-catalogue-date 2018-12-30 15:31:01 +0100
catalogue-license lppl1.3
catalogue-topics maths bugfix
catalogue-version 1.01
@@ -181617,7 +179633,6 @@ srcfiles size=45
runfiles size=21
RELOC/tex/latex/mathfont/mathfont.sty
catalogue-ctan /macros/latex/contrib/mathfont
-catalogue-date 2019-12-05 20:36:50 +0100
catalogue-license lppl1.3c
catalogue-topics font-mgmt font-use maths
catalogue-version 1.6
@@ -181654,7 +179669,6 @@ srcfiles size=11
runfiles size=4
RELOC/tex/latex/mathpartir/mathpartir.sty
catalogue-ctan /macros/latex/contrib/mathpartir
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license gpl2
catalogue-topics maths
catalogue-version 1.3.2
@@ -181792,7 +179806,6 @@ runfiles size=41
RELOC/fonts/vf/public/mathpazo/zplmr7y.vf
catalogue-also pxfonts newpx tex-gyre-math-pagella
catalogue-ctan /fonts/mathpazo
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license gpl
catalogue-topics font font-type1 font-maths font-bbd
catalogue-version 1.003
@@ -181820,7 +179833,6 @@ runfiles size=2
RELOC/tex/latex/mathpunctspace/mathpunctspace.sty
catalogue-contact-repository https://github.com/yuw/texmf-mathpunctspace
catalogue-ctan /macros/latex/contrib/mathpunctspace
-catalogue-date 2018-02-27 20:50:56 +0100
catalogue-license bsd2
catalogue-topics maths typesetting
catalogue-version 1.1
@@ -181845,7 +179857,6 @@ docfiles size=94
RELOC/doc/latex/maths-symbols/scriptfonts.tex
catalogue-contact-repository https://github.com/davidcarlisle/dpctex/tree/master/maths-symbols
catalogue-ctan /info/symbols/math
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl1.2
catalogue-topics font-index
catalogue-version 3.4
@@ -181872,7 +179883,6 @@ docfiles size=50
runfiles size=11
RELOC/tex/xelatex/mathspec/mathspec.sty
catalogue-ctan /macros/xetex/latex/mathspec
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license lppl
catalogue-topics font-maths font-sel
catalogue-version 0.2b
@@ -181918,7 +179928,6 @@ runfiles size=33
texmf-dist/scripts/mathspic/mathspic.pl
texmf-dist/tex/latex/mathspic/mathspic.sty
catalogue-ctan /graphics/mathspic
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics graphics-prep
catalogue-version 1.13
@@ -182109,7 +180118,6 @@ runfiles size=28
RELOC/tex/latex/mathtools/mhsetup.sty
catalogue-also mhsetup empheq
catalogue-ctan /macros/latex/contrib/mathtools
-catalogue-date 2019-07-31 17:31:24 +0200
catalogue-license lppl1.3
catalogue-topics maths
catalogue-version 1.22
@@ -182138,7 +180146,6 @@ runfiles size=4
RELOC/tex/latex/matlab-prettifier/matlab-prettifier.sty
catalogue-also matlabweb
catalogue-ctan /macros/latex/contrib/matlab-prettifier
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics listing
catalogue-version 0.3
@@ -182171,7 +180178,6 @@ catalogue-contact-bugs https://github.com/dudebout/matrix.skeleton/issues
catalogue-contact-home https://github.com/dudebout/matrix.skeleton
catalogue-contact-repository https://github.com/dudebout/matrix.skeleton
catalogue-ctan /graphics/pgf/contrib/matrix-skeleton
-catalogue-date 2019-08-05 16:51:28 +0200
catalogue-license other-free
catalogue-topics pgf-tikz maths
catalogue-version 1.0
@@ -182202,7 +180208,6 @@ srcfiles size=15
runfiles size=3
RELOC/tex/latex/mattens/mattens.sty
catalogue-ctan /macros/latex/contrib/mattens
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics maths engineering
catalogue-version 1.3
@@ -182235,7 +180240,6 @@ docfiles size=20
runfiles size=1
RELOC/tex/latex/maybemath/maybemath.sty
catalogue-ctan /macros/latex/contrib/maybemath
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics maths font-sel
@@ -182266,7 +180270,6 @@ srcfiles size=7
runfiles size=2
RELOC/tex/latex/mcaption/mcaption.sty
catalogue-ctan /macros/latex/contrib/mcaption
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics caption
catalogue-version 3.0
@@ -182291,7 +180294,6 @@ runfiles size=1
RELOC/tex/latex/mceinleger/mceinleger.sty
catalogue-also cdcover
catalogue-ctan /macros/latex/contrib/mceinleger
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics covers
@@ -182325,7 +180327,6 @@ runfiles size=18
RELOC/tex/latex/mcexam/mcexam.sty
catalogue-also esami
catalogue-ctan /macros/latex/contrib/mcexam
-catalogue-date 2017-12-27 11:23:06 +0100
catalogue-license lppl1.3c
catalogue-topics exam
catalogue-version 0.4
@@ -182357,7 +180358,6 @@ docfiles size=304
runfiles size=21
RELOC/metapost/mcf2graph/mcf2graph.mf
catalogue-ctan /graphics/mcf2graph
-catalogue-date 2019-12-08 08:07:14 +0100
catalogue-license mit
catalogue-topics graphics graphics-mpost chemistry
catalogue-version 4.46
@@ -182390,7 +180390,6 @@ srcfiles size=7
runfiles size=2
RELOC/tex/latex/mcite/mcite.sty
catalogue-ctan /macros/latex/contrib/mcite
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics cite-supp
catalogue-version 1.6
@@ -182423,7 +180422,6 @@ runfiles size=70
RELOC/tex/latex/mciteplus/mciteplus.sty
catalogue-contact-home http://www.michaelshell.org/tex/mciteplus/
catalogue-ctan /macros/latex/contrib/mciteplus
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl
catalogue-topics cite-supp
catalogue-version 1.2
@@ -182460,7 +180458,6 @@ runfiles size=3
RELOC/tex/latex/mcmthesis/mcmthesis.cls
catalogue-contact-repository https://github.com/Liam0205/mcmthesis
catalogue-ctan /macros/latex/contrib/mcmthesis
-catalogue-date 2019-01-26 10:02:14 +0100
catalogue-license lppl1.3
catalogue-topics dissertation class
catalogue-version 6.2.2
@@ -182507,7 +180504,6 @@ runfiles size=54
catalogue-also framed
catalogue-contact-repository https://github.com/marcodaniel/mdframed
catalogue-ctan /macros/latex/contrib/mdframed
-catalogue-date 2018-09-15 12:23:45 +0200
catalogue-license lppl
catalogue-topics boxing box-breaking decoration
catalogue-version 1.9b
@@ -182546,7 +180542,6 @@ runfiles size=29
RELOC/tex/latex/mdputu/ot1mdputu.fd
RELOC/tex/latex/mdputu/t1mdputu.fd
catalogue-ctan /fonts/mdputu
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license other-free
catalogue-topics font-maths font-virtual
catalogue-version 1.2
@@ -182673,7 +180668,6 @@ runfiles size=469
RELOC/fonts/type1/public/mdsymbol/MdSymbolF-Semibold.pfb
RELOC/tex/latex/mdsymbol/mdsymbol.sty
catalogue-ctan /fonts/mdsymbol
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license ofl
catalogue-topics font-symbol font-symbol-maths font-mf font-type1 font-otf
catalogue-version 0.5
@@ -182737,7 +180731,6 @@ runfiles size=31
RELOC/tex/latex/mdwtools/sverb.sty
RELOC/tex/latex/mdwtools/syntax.sty
catalogue-ctan /macros/latex/contrib/mdwtools
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics list-supp notes footnote syntax maths macro-supp table verbatim
catalogue-version 1.05.4
@@ -182819,7 +180812,6 @@ runfiles size=503
RELOC/tex/latex/media9/players/VPlayer9.swf
catalogue-contact-repository https://gitlab.com/agrahn/media9
catalogue-ctan /macros/latex/contrib/media9
-catalogue-date 2019-11-04 14:55:20 +0100
catalogue-license lppl
catalogue-topics multimedia
catalogue-version 1.04
@@ -182846,7 +180838,6 @@ runfiles size=2
RELOC/tex/latex/medstarbeamer/beamercolorthemeMedStarColors.sty
RELOC/tex/latex/medstarbeamer/medstarbeamer.cls
catalogue-ctan /macros/latex/contrib/medstarbeamer
-catalogue-date 2018-04-22 08:09:44 +0200
catalogue-license lppl1.3
catalogue-topics presentation statistics
@@ -182881,7 +180872,6 @@ srcfiles size=8
runfiles size=2
RELOC/tex/latex/meetingmins/meetingmins.cls
catalogue-ctan /macros/latex/contrib/meetingmins
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics meeting-admin
catalogue-version 1.6
@@ -182907,7 +180897,6 @@ docfiles size=507
RELOC/doc/fonts/memdesign/memdesign.tex
RELOC/doc/fonts/memdesign/memetc.bib
catalogue-ctan /info/memdesign
-catalogue-date 2018-09-16 05:33:39 +0200
catalogue-license lppl1.3
catalogue-topics review-document
@@ -182931,7 +180920,6 @@ docfiles size=35
runfiles size=1
RELOC/tex/latex/memexsupp/memexsupp.sty
catalogue-ctan /macros/latex/contrib/memexsupp
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics test-dist
catalogue-version 0.1
@@ -182997,7 +180985,6 @@ runfiles size=120
RELOC/tex/latex/memoir/memoir.cls
catalogue-also memdesign
catalogue-ctan /macros/latex/contrib/memoir
-catalogue-date 2019-11-21 15:38:44 +0100
catalogue-license lppl1.3
catalogue-topics book-pub class
catalogue-version 3.7j
@@ -183024,7 +181011,6 @@ srcfiles size=3
runfiles size=1
RELOC/tex/latex/memory/memory.sty
catalogue-ctan /macros/latex/contrib/memory
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics macro-supp
catalogue-version 1.2
@@ -183054,7 +181040,6 @@ catalogue-contact-home https://gitlab.science.ru.nl/cstaps/memorygraphs
catalogue-contact-repository https://gitlab.science.ru.nl/cstaps/memorygraphs
catalogue-contact-support https://gitlab.science.ru.nl/cstaps/memorygraphs/issues
catalogue-ctan /graphics/pgf/contrib/memorygraphs
-catalogue-date 2019-01-07 10:23:44 +0100
catalogue-license lppl1.3
catalogue-topics graphics pgf-tikz
catalogue-version 0.1.1
@@ -183082,7 +181067,6 @@ srcfiles size=1
RELOC/source/latex/mendex-doc/Makefile
catalogue-contact-repository https://github.com/texjporg/mendex-doc
catalogue-ctan /info/mendex-doc
-catalogue-date 2019-03-05 05:43:38 +0100
catalogue-license bsd3
catalogue-topics index documentation
@@ -183117,7 +181101,6 @@ runfiles size=4
catalogue-contact-bugs https://github.com/sfr682k/mensa-tex/issues
catalogue-contact-repository https://github.com/sfr682k/mensa-tex
catalogue-ctan /macros/latex/contrib/mensa-tex
-catalogue-date 2017-12-05 22:30:21 +0100
catalogue-license lppl1.3c
catalogue-topics class cooking
@@ -183145,7 +181128,6 @@ srcfiles size=14
runfiles size=4
RELOC/tex/latex/mentis/mentis.cls
catalogue-ctan /macros/latex/contrib/mentis
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics class book-pub publisher
catalogue-version 1.5
@@ -183172,7 +181154,6 @@ srcfiles size=6
runfiles size=2
RELOC/tex/latex/menu/menu.sty
catalogue-ctan /macros/latex/contrib/menu
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license other-free
catalogue-topics doc-supp
catalogue-version 0.994
@@ -183201,7 +181182,6 @@ runfiles size=8
RELOC/tex/latex/menukeys/menukeys.sty
catalogue-contact-repository http://github.com/tweh/menukeys
catalogue-ctan /macros/latex/contrib/menukeys
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl1.3
catalogue-topics doc-supp
catalogue-version 1.5
@@ -183456,7 +181436,6 @@ runfiles size=1139
RELOC/tex/latex/merriweather/merriweather.sty
catalogue-contact-home http://www.google.com/webfonts
catalogue-ctan /fonts/merriweather
-catalogue-date 2019-10-14 10:15:46 +0200
catalogue-license ofl
catalogue-topics font font-serif font-sans font-ttf font-type1
@@ -183504,7 +181483,6 @@ catalogue-contact-bugs http://lists.tug.org/tex-k
catalogue-contact-repository http://tug.org/svn/texlive/trunk/Build/source/texk/web2c/
catalogue-contact-support http://lists.tug.org/tex-k
catalogue-ctan /systems/knuth/dist/mf
-catalogue-date 2018-12-30 20:38:59 +0100
catalogue-license knuth
catalogue-topics font-devel font-proc
catalogue-version 2.7182818
@@ -183526,7 +181504,6 @@ docfiles size=60
RELOC/doc/fonts/metafont-beginners/metafont-for-beginners.pdf details="The introductory document itself:" language="en"
RELOC/doc/fonts/metafont-beginners/metafont-for-beginners.tex
catalogue-ctan /info/metafont/beginners
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics mf-doc
@@ -183737,7 +181714,6 @@ runfiles size=5
RELOC/metapost/metago/metago.mp
catalogue-also go igo
catalogue-ctan /graphics/metapost/contrib/macros/metago
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics mp-use games
catalogue-version 0.9
@@ -183768,7 +181744,6 @@ runfiles size=2
RELOC/tex/latex/metalogo/metalogo.sty
catalogue-also metalogox
catalogue-ctan /macros/latex/contrib/metalogo
-catalogue-date 2019-01-20 19:29:16 +0100
catalogue-license lppl
catalogue-topics logo
catalogue-version 0.12
@@ -183801,7 +181776,6 @@ runfiles size=7
catalogue-also metalogo
catalogue-contact-home http://bdtechconcepts.com/
catalogue-ctan /macros/latex/contrib/metalogox
-catalogue-date 2019-01-28 05:39:57 +0100
catalogue-license lppl1.3
catalogue-topics logo
catalogue-version 1.00
@@ -183835,7 +181809,6 @@ runfiles size=82
RELOC/metapost/metaobj/pstricksex3.mp
RELOC/metapost/metaobj/pstricksex4.mp
catalogue-ctan /graphics/metapost/contrib/macros/metaobj
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics graphics-engn
catalogue-version 0.93
@@ -183881,7 +181854,6 @@ runfiles size=5
RELOC/metapost/metaplot/axes.mp
RELOC/metapost/metaplot/metaplot.mp
catalogue-ctan /graphics/metaplot
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics graphics-plot
catalogue-version 0.91
@@ -184067,7 +182039,6 @@ catalogue-also asymptote
catalogue-contact-home http://tug.org/metapost
catalogue-contact-repository https://tug.org/svn/texlive/trunk/Build/source/texk/web2c/mplibdir
catalogue-contact-support http://lists.tug.org/metapost
-catalogue-date 2018-12-31 06:55:45 +0100
catalogue-license lgpl
catalogue-topics graphics-engn
@@ -184100,7 +182071,6 @@ runfiles size=30
RELOC/metapost/metapost-colorbrewer/colorbrewer-rgb.mp
catalogue-contact-repository https://github.com/thruston/metapost-colorbrewer
catalogue-ctan /graphics/metapost/contrib/macros/metapost-colorbrewer
-catalogue-date 2018-09-25 05:22:19 +0200
catalogue-license gpl3+
catalogue-topics mp-supp mp-use
@@ -184126,7 +182096,6 @@ docfiles size=37
RELOC/doc/metapost/metapost-examples/examples.mp
RELOC/doc/metapost/metapost-examples/mp2html.pl
catalogue-ctan /info/metapost/examples
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license other-free
catalogue-topics demo-code
@@ -184353,7 +182322,6 @@ runfiles size=2
RELOC/tex/plain/metatex/metatex.tex
catalogue-also emp
catalogue-ctan /macros/plain/contrib/metatex
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license gpl
catalogue-topics graphics-inline
catalogue-version 1.1
@@ -184379,7 +182347,6 @@ srcfiles size=65
RELOC/source/metapost/metatype1/metatype1-ver056.inf
RELOC/source/metapost/metatype1/metatype1-ver056.zip
catalogue-ctan /fonts/utilities/metatype1
-catalogue-date 2018-01-15 23:36:39 +0100
catalogue-license pd
catalogue-topics font-devel
catalogue-version 0.56
@@ -184489,7 +182456,6 @@ runfiles size=49
catalogue-also expressg pst-uml uml
catalogue-contact-repository https://github.com/ogheorghies/MetaUML
catalogue-ctan /graphics/metapost/contrib/macros/metauml
-catalogue-date 2019-02-04 05:59:29 +0100
catalogue-license gpl
catalogue-topics uml mp-use
catalogue-version 0.2.6
@@ -184519,7 +182485,6 @@ srcfiles size=9
runfiles size=3
RELOC/tex/latex/method/method.sty
catalogue-ctan /macros/latex/contrib/method
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics listing
catalogue-version 2.0b
@@ -184565,7 +182530,6 @@ srcfiles size=31
runfiles size=15
RELOC/tex/latex/metre/metre.sty
catalogue-ctan /macros/latex/contrib/metre
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license lppl
catalogue-topics crit-ed linguistic
catalogue-version 1.0
@@ -184598,7 +182562,6 @@ runfiles size=8
catalogue-contact-bugs https://github.com/tweh/metrix/issues
catalogue-contact-repository https://github.com/tweh/metrix
catalogue-ctan /macros/latex/contrib/metrix
-catalogue-date 2019-10-09 13:48:07 +0200
catalogue-license lppl1.3c
catalogue-topics latin verse expl3
catalogue-version 1.5
@@ -184651,7 +182614,6 @@ runfiles size=13
texmf-dist/tex/mex/config/mex.ini
texmf-dist/tex/mex/config/pdfmex.ini
catalogue-ctan /language/polish/mex105.zip
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics format polish
catalogue-version 1.05
@@ -184860,7 +182822,6 @@ runfiles size=14
texmf-dist/scripts/mf2pt1/mf2pt1.pl
catalogue-also metatype1
catalogue-ctan /support/mf2pt1
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license lppl
catalogue-topics font-proc
catalogue-version 2.5a
@@ -185045,7 +183006,6 @@ runfiles size=6
RELOC/tex/latex/mfirstuc/mfirstuc-english.sty
RELOC/tex/latex/mfirstuc/mfirstuc.sty
catalogue-ctan /macros/latex/contrib/mfirstuc
-catalogue-date 2017-11-14 14:02:48 +0100
catalogue-license lppl1.3
catalogue-topics text-manip macro-supp
catalogue-version 2.06
@@ -185078,7 +183038,6 @@ runfiles size=4
RELOC/tex/latex/mflogo/mflogo.sty
RELOC/tex/latex/mflogo/ulogo.fd
catalogue-ctan /macros/latex/contrib/mflogo
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics font-supp
catalogue-version 2.0
@@ -185120,7 +183079,6 @@ runfiles size=17
RELOC/fonts/type1/hoekwater/mflogo-font/logosl8.pfb
RELOC/fonts/type1/hoekwater/mflogo-font/logosl9.pfb
catalogue-ctan /fonts/mflogo/ps-type1/hoekwater
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license knuth
catalogue-topics font font-mf font-type1
catalogue-version 1.002
@@ -185376,7 +183334,6 @@ runfiles size=8
catalogue-contact-bugs https://github.com/FrankMittelbach/historical-fmitex/issues
catalogue-contact-repository https://github.com/FrankMittelbach/historical-fmitex/tree/master/mfnfss
catalogue-ctan /macros/latex/contrib/mfnfss
-catalogue-date 2017-12-10 23:04:16 +0100
catalogue-license lppl
catalogue-topics font-supp
@@ -185430,7 +183387,6 @@ runfiles size=76
RELOC/tex/generic/mfpic/mfpicdef.tex
catalogue-also mkpic
catalogue-ctan /graphics/mfpic
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics graphics-in-tex
catalogue-version 1.10
@@ -185469,7 +183425,6 @@ runfiles size=3
RELOC/tex/latex/mfpic4ode/mfpic4ode.sty
RELOC/tex/latex/mfpic4ode/mfpic4ode.tex
catalogue-ctan /macros/latex/contrib/mfpic4ode
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics graphics-plotfn maths
catalogue-version 0.4
@@ -185500,7 +183455,6 @@ runfiles size=2
RELOC/tex/latex/mftinc/mftinc.sty
catalogue-also docmfp
catalogue-ctan /macros/latex/contrib/mftinc
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics listing
catalogue-version 1.0a
@@ -185538,7 +183492,6 @@ catalogue-contact-bugs http://lists.tug.org/tex-k
catalogue-contact-repository http://tug.org/svn/texlive/trunk/Build/source/texk/web2c/
catalogue-contact-support http://lists.tug.org/tex-k
catalogue-ctan /systems/knuth/dist/mfware
-catalogue-date 2018-12-31 06:12:45 +0100
catalogue-license knuth
catalogue-topics collection
@@ -185804,7 +183757,6 @@ srcfiles size=40
runfiles size=7
RELOC/tex/latex/mgltex/mgltex.sty
catalogue-ctan /graphics/mgltex
-catalogue-date 2016-07-12 07:05:39 +0200
catalogue-license gpl3
catalogue-topics maths graphics-plot graphics-plotfn
catalogue-version 4.2
@@ -185844,7 +183796,6 @@ runfiles size=109
RELOC/tex/latex/mhchem/rsphrase.sty
catalogue-also r-und-s
catalogue-ctan /macros/latex/contrib/mhchem
-catalogue-date 2018-06-24 22:16:57 +0200
catalogue-license lppl1.3c
catalogue-topics safety-notice chemistry
@@ -185870,7 +183821,6 @@ docfiles size=27
runfiles size=3
RELOC/tex/latex/mhequ/mhequ.sty
catalogue-ctan /macros/latex/contrib/mhequ
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license pd
catalogue-topics maths
catalogue-version 1.7
@@ -185905,7 +183855,6 @@ srcfiles size=6
runfiles size=2
RELOC/tex/latex/mi-solns/mi-solns.sty
catalogue-ctan /macros/latex/contrib/mi-solns
-catalogue-date 2019-01-12 06:10:36 +0100
catalogue-license lppl1.2
catalogue-topics exercise exam
catalogue-version 0.6
@@ -185965,7 +183914,6 @@ runfiles size=323
RELOC/tex/latex/miama/t5fmm.fd
RELOC/tex/latex/miama/x2fmm.fd
catalogue-ctan /fonts/miama
-catalogue-date 2019-06-18 20:48:16 +0200
catalogue-license ofllppl1.3
catalogue-topics font font-calligraphic font-cyrillic font-greek font-multilingual font-otf font-type1 font-t1enc font-supp
catalogue-version 1.1
@@ -186038,7 +183986,6 @@ runfiles size=105
RELOC/tex/latex/microtype/mt-zpeu.cfg
catalogue-also pdfcprot
catalogue-ctan /macros/latex/contrib/microtype
-catalogue-date 2019-11-18 10:28:58 +0100
catalogue-license lppl1.3c
catalogue-topics micro-layout letterspace
catalogue-version 2.7d
@@ -186056,7 +184003,6 @@ docfiles size=451
RELOC/doc/latex/microtype-de/microtype-DE.dtx
RELOC/doc/latex/microtype-de/microtype-DE.pdf details="The document itself"
catalogue-ctan /info/translations/microtype/de
-catalogue-date 2016-06-18 16:48:54 +0200
catalogue-license lppl1.3
catalogue-topics translation german-doc typesetting
catalogue-version 2.4
@@ -186095,7 +184041,6 @@ runfiles size=17
RELOC/tex/generic/midnight/quire.tex
RELOC/tex/generic/midnight/styledef.tex
catalogue-ctan /macros/generic/midnight
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license other-free
catalogue-topics linguistic macro-supp letter
@@ -186116,7 +184061,6 @@ docfiles size=49
runfiles size=1
RELOC/tex/latex/midpage/midpage.sty
catalogue-ctan /macros/latex/contrib/midpage
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics layout
catalogue-version 1.1a
@@ -186148,7 +184092,6 @@ srcfiles size=3
runfiles size=1
RELOC/tex/latex/miller/miller.sty
catalogue-ctan /macros/latex/contrib/miller
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics mat-sci
catalogue-version 1.2
@@ -186199,7 +184142,6 @@ runfiles size=2
RELOC/tex/latex/milog/milog.cls
catalogue-contact-home http://milog.jklatex.de/
catalogue-ctan /macros/latex/contrib/milog
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl
catalogue-topics legal
catalogue-version 1.0
@@ -186257,7 +184199,6 @@ catalogue-contact-bugs https://github.com/ralphieraccoon/MilSymb/issues
catalogue-contact-home https://github.com/ralphieraccoon/MilSymb/wiki
catalogue-contact-repository https://github.com/ralphieraccoon/MilSymb
catalogue-ctan /graphics/pgf/contrib/milsymb
-catalogue-date 2019-07-06 08:07:32 +0200
catalogue-license cc-by-sa-4
catalogue-topics graphics pgf-tikz symbol-supp
catalogue-version 1.01
@@ -186286,7 +184227,6 @@ srcfiles size=3
runfiles size=1
RELOC/tex/latex/minibox/minibox.sty
catalogue-ctan /macros/latex/contrib/minibox
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics boxing
catalogue-version 0.2a
@@ -186317,7 +184257,6 @@ runfiles size=1
RELOC/tex/latex/minidocument/minidocument.sty
catalogue-also subfiles
catalogue-ctan /macros/latex/contrib/minidocument
-catalogue-date 2018-01-07 12:14:32 +0100
catalogue-license lppl1.3
catalogue-topics subdocs
catalogue-version 1.0
@@ -186353,7 +184292,6 @@ runfiles size=13
RELOC/tex/generic/minifp/mfpextra.tex
RELOC/tex/generic/minifp/minifp.sty
catalogue-ctan /macros/generic/minifp
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics arithmetic calculation random
catalogue-version 0.96
@@ -186386,7 +184324,6 @@ runfiles size=2
RELOC/tex/latex/minipage-marginpar/minipage-marginpar.sty
RELOC/tex/latex/minipage-marginpar/mpgmpar.sty
catalogue-ctan /macros/latex/contrib/minipage-marginpar
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics notes boxing
catalogue-version 0.2
@@ -186417,7 +184354,6 @@ docfiles size=68
runfiles size=11
RELOC/tex/latex/miniplot/miniplot.sty
catalogue-ctan /macros/latex/contrib/miniplot
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics graphics-use
@@ -186772,7 +184708,6 @@ runfiles size=267
catalogue-contact-repository https://github.com/minitoc/minitoc
catalogue-contact-support https://github.com/minitoc/minitoc/issues
catalogue-ctan /macros/latex/contrib/minitoc
-catalogue-date 2018-07-13 23:16:39 +0200
catalogue-license lppl1.3
catalogue-topics toc-etc
catalogue-version 62
@@ -186802,7 +184737,6 @@ docfiles size=44
runfiles size=1
RELOC/tex/latex/minorrevision/minorrevision.sty
catalogue-ctan /macros/latex/contrib/minorrevision
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.2
catalogue-topics editorial
catalogue-version 1.1
@@ -186835,7 +184769,6 @@ runfiles size=15
catalogue-also texments verbments
catalogue-contact-repository https://github.com/gpoore/minted
catalogue-ctan /macros/latex/contrib/minted
-catalogue-date 2017-07-19 21:24:20 +0200
catalogue-license lppl1.3
catalogue-topics listing
catalogue-version 2.5
@@ -187414,7 +185347,6 @@ runfiles size=1255
RELOC/tex/latex/mintspirit/mintspirit2.sty
catalogue-contact-home http://arkandis.tuxfamily.org/adffonts.html
catalogue-ctan /fonts/mintspirit
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license ofl
catalogue-topics font font-sans font-otf font-type1
@@ -187453,7 +185385,6 @@ srcfiles size=24
runfiles size=9
RELOC/tex/latex/minutes/minutes.sty
catalogue-ctan /macros/latex/contrib/minutes
-catalogue-date 2016-09-30 11:34:18 +0200
catalogue-license lppl
catalogue-topics meeting-admin
catalogue-version 1.8f
@@ -187485,7 +185416,6 @@ srcfiles size=12
runfiles size=2
RELOC/tex/latex/mismath/mismath.sty
catalogue-ctan /macros/latex/contrib/mismath
-catalogue-date 2019-09-06 18:56:17 +0200
catalogue-license lppl1.3
catalogue-topics maths
catalogue-version 1.6
@@ -187535,7 +185465,6 @@ runfiles size=68
RELOC/fonts/opentype/public/missaali/Missaali-Regular.otf
RELOC/tex/latex/missaali/missaali.sty
catalogue-ctan /fonts/missaali
-catalogue-date 2016-12-31 06:02:05 +0100
catalogue-license ofllppl1.3
catalogue-topics font-otf font-archaic
catalogue-version 1.004
@@ -187563,7 +185492,6 @@ runfiles size=4
texmf-dist/makeindex/mkgrkindex/uppercase-headers.ist
texmf-dist/scripts/mkgrkindex/mkgrkindex
catalogue-ctan /language/greek/mkgrkindex
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license other-free
catalogue-topics index-proc greek
catalogue-version 2.0
@@ -187748,7 +185676,6 @@ srcfiles size=21
runfiles size=6
texmf-dist/scripts/mkjobtexmf/mkjobtexmf.pl
catalogue-ctan /support/mkjobtexmf
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license artistic
catalogue-topics archival
catalogue-version 0.8
@@ -187920,7 +185847,6 @@ docfiles size=28
runfiles size=4
RELOC/tex/plain/mkpattern/mkpatter.tex
catalogue-ctan /language/hyphenation/utils/mkpattern
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license lppl
catalogue-topics hyphenation
catalogue-version 1.2
@@ -187948,7 +185874,6 @@ docfiles size=57
runfiles size=7
texmf-dist/scripts/mkpic/mkpic
catalogue-ctan /support/mkpic
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics graphics
catalogue-version 1.02
@@ -188115,7 +186040,6 @@ docfiles size=1
runfiles size=2
RELOC/tex/latex/mla-paper/mla.sty
catalogue-ctan /macros/latex/contrib/mla-paper
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics gen-paper
@@ -188153,7 +186077,6 @@ catalogue-also mla-paper
catalogue-contact-bugs https://gitlab.com/ssterling/mlacls/issues
catalogue-contact-repository https://gitlab.com/ssterling/mlacls
catalogue-ctan /macros/latex/contrib/mlacls
-catalogue-date 2019-08-04 10:07:19 +0200
catalogue-license lppl1.3c
catalogue-topics class gen-paper humanities
catalogue-version 0.6
@@ -188183,7 +186106,6 @@ runfiles size=2
catalogue-contact-bugs https://github.com/ho-tex/mleftright/issues
catalogue-contact-repository https://github.com/ho-tex/mleftright
catalogue-ctan /macros/latex/contrib/mleftright
-catalogue-date 2019-12-04 06:19:41 +0100
catalogue-license lppl1.3
catalogue-topics maths
catalogue-version 1.2
@@ -188213,7 +186135,6 @@ runfiles size=4
RELOC/tex/latex/mlist/mlist.cfg
RELOC/tex/latex/mlist/mlist.sty
catalogue-ctan /macros/latex/contrib/mlist
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics maths
catalogue-version 0.6a
@@ -188255,7 +186176,6 @@ runfiles size=8
texmf-dist/tex/latex/mltex/mltex.sty
texmf-dist/tex/mltex/config/mltex.ini
catalogue-ctan /systems/generic/mltex
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license knuth
catalogue-topics engine multilingual
catalogue-version 2.2
@@ -188483,7 +186403,6 @@ runfiles size=74
RELOC/tex/latex/mmap/upzd.cmap
catalogue-also cmap
catalogue-ctan /macros/latex/contrib/mmap
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics pdf-feat
catalogue-version 1.03
@@ -188511,7 +186430,6 @@ srcfiles size=5
runfiles size=2
RELOC/tex/latex/mnotes/mnotes.sty
catalogue-ctan /macros/latex/contrib/mnotes
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics marginal
catalogue-version 0.8
@@ -188542,7 +186460,6 @@ runfiles size=27
RELOC/bibtex/bst/mnras/mnras.bst
RELOC/tex/latex/mnras/mnras.cls
catalogue-ctan /macros/latex/contrib/mnras
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics journalpub
catalogue-version 3.0
@@ -188839,7 +186756,6 @@ runfiles size=1656
RELOC/fonts/type1/public/mnsymbol/MnSymbol9.pfb
RELOC/tex/latex/mnsymbol/MnSymbol.sty
catalogue-ctan /fonts/mnsymbol
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics font font-mf font-type1 font-symbol-maths
catalogue-version 1.4
@@ -188879,7 +186795,6 @@ catalogue-contact-home https://gitlab.adullact.net/zenjo/modeles-factures-belges
catalogue-contact-repository https://gitlab.adullact.net/zenjo/modeles-factures-belges-assocs/tree/master
catalogue-contact-support https://myblog.robert.sebille.name/spip.php?page=contact
catalogue-ctan /macros/latex/contrib/modeles-factures-belges-assocs
-catalogue-date 2019-02-12 07:40:55 +0100
catalogue-license lppl1.3c
catalogue-topics invoice
catalogue-version 1.0.1
@@ -188970,7 +186885,6 @@ runfiles size=61
RELOC/tex/latex/moderncv/tweaklist.sty
catalogue-contact-repository http://www.launchpad.net/moderncv
catalogue-ctan /macros/latex/contrib/moderncv
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl1.3
catalogue-topics cv class
catalogue-version 2.0.0
@@ -189002,7 +186916,6 @@ runfiles size=2
catalogue-also beamerposter
catalogue-contact-repository https://github.com/derlerd/modernposter
catalogue-ctan /macros/latex/contrib/modernposter
-catalogue-date 2018-04-03 21:08:25 +0200
catalogue-license cc-by-sa-4
catalogue-topics poster class
catalogue-version 1.03.1
@@ -189030,7 +186943,6 @@ srcfiles size=7
runfiles size=2
RELOC/tex/latex/moderntimeline/moderntimeline.sty
catalogue-ctan /macros/latex/contrib/moderntimeline
-catalogue-date 2019-03-04 12:36:05 +0100
catalogue-license lppl1.3
catalogue-topics cv diagram
catalogue-version 0.10
@@ -189058,7 +186970,6 @@ docfiles size=141
runfiles size=20
RELOC/tex/latex/modiagram/modiagram.sty
catalogue-ctan /macros/latex/contrib/modiagram
-catalogue-date 2019-10-31 20:25:21 +0100
catalogue-license lppl1.3
catalogue-topics chemistry diagram expl3
catalogue-version 0.3
@@ -189090,7 +187001,6 @@ runfiles size=2
RELOC/tex/latex/modref/modref.sty
catalogue-also refstyle
catalogue-ctan /macros/latex/contrib/modref
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics label-ref
catalogue-version 1.0
@@ -189132,7 +187042,6 @@ srcfiles size=19
runfiles size=2
RELOC/tex/latex/modroman/modroman.sty
catalogue-ctan /macros/latex/contrib/modroman
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics numbers
catalogue-version 1
@@ -189174,7 +187083,6 @@ catalogue-also coseoul
catalogue-contact-bugs https://github.com/danielsank/tex-modular/issues
catalogue-contact-repository https://github.com/danielsank/tex-modular
catalogue-ctan /macros/latex/contrib/modular
-catalogue-date 2017-06-05 06:58:27 +0200
catalogue-license lppl1.3
catalogue-topics headings file-control
@@ -189207,7 +187115,6 @@ srcfiles size=3
runfiles size=1
RELOC/tex/generic/modulus/modulus.sty
catalogue-ctan /macros/generic/modulus
-catalogue-date 2018-05-05 05:37:43 +0200
catalogue-license lppl1.3c
catalogue-topics calculation
catalogue-version 1.0
@@ -189237,7 +187144,6 @@ runfiles size=6
RELOC/tex/latex/mongolian-babel/mongolian.ldf
RELOC/tex/latex/mongolian-babel/mongolian.sty
catalogue-ctan /language/mongolian/babel
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics mongolian multilingual-addon
catalogue-version 1.2
@@ -189269,7 +187175,6 @@ runfiles size=4
RELOC/tex/latex/monofill/monofill.sty
catalogue-contact-support http://www.webdesign-bu.de/uwe_lueck/contact.html
catalogue-ctan /macros/latex/contrib/monofill
-catalogue-date 2017-05-06 08:49:55 +0200
catalogue-license lppl1.3
catalogue-topics alignment
catalogue-version 0.2
@@ -189633,7 +187538,6 @@ runfiles size=848
RELOC/tex/latex/montex/russian.def
RELOC/tex/latex/montex/xalx.def
catalogue-ctan /language/mongolian/montex
-catalogue-date 2017-10-29 15:05:41 +0100
catalogue-license gpl
catalogue-topics mongolian font font-mf
catalogue-version IVu.04.092
@@ -193609,7 +191513,6 @@ runfiles size=15341
RELOC/tex/latex/montserrat/montserrat.sty
RELOC/tex/latex/montserrat/montserratalternates.fontspec
catalogue-ctan /fonts/montserrat
-catalogue-date 2019-11-08 05:39:27 +0100
catalogue-license ofllppl1.3
catalogue-topics font font-sans font-otf font-type1 font-t1enc
catalogue-version 1.03
@@ -193637,7 +191540,6 @@ srcfiles size=33
runfiles size=21
RELOC/tex/latex/moodle/moodle.sty
catalogue-ctan /macros/latex/contrib/moodle
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics exam
catalogue-version 0.5
@@ -193676,7 +191578,6 @@ docfiles size=56
runfiles size=2
RELOC/tex/latex/moreenum/moreenum.sty
catalogue-ctan /macros/latex/contrib/moreenum
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics list-enum numbers
catalogue-version 1.03
@@ -193711,7 +191612,6 @@ srcfiles size=23
runfiles size=10
RELOC/tex/latex/morefloats/morefloats.sty
catalogue-ctan /macros/latex/contrib/morefloats
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics float
catalogue-version 1.0h
@@ -193777,7 +191677,6 @@ runfiles size=64
RELOC/tex/latex/morehype/texlinks.sty
catalogue-contact-support http://www.webdesign-bu.de/uwe_lueck/contact.html
catalogue-ctan /macros/latex/contrib/morehype
-catalogue-date 2017-05-06 08:56:51 +0200
catalogue-license lppl1.3
catalogue-topics hyper
catalogue-version r0.83
@@ -193810,7 +191709,6 @@ srcfiles size=8
runfiles size=1
RELOC/tex/latex/moresize/moresize.sty
catalogue-ctan /macros/latex/contrib/moresize
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics font-supp
catalogue-version 1.9
@@ -193845,7 +191743,6 @@ catalogue-also vrb fancyvrb
catalogue-contact-repository https://github.com/rf-latex/moreverb
catalogue-contact-support https://github.com/rf-latex/moreverb/issues
catalogue-ctan /macros/latex/contrib/moreverb
-catalogue-date 2018-09-14 18:12:25 +0200
catalogue-license lppl
catalogue-topics verbatim
catalogue-version 2.3a
@@ -193884,7 +191781,6 @@ catalogue-also rvwrite
catalogue-contact-bugs https://github.com/blefloch/latex-morewrites/issues
catalogue-contact-repository https://github.com/blefloch/latex-morewrites
catalogue-ctan /macros/latex/contrib/morewrites
-catalogue-date 2018-12-29 17:13:03 +0100
catalogue-license lppl1.3c
catalogue-topics io-mgmt
@@ -193958,7 +191854,6 @@ runfiles size=552
catalogue-also jsclasses ptex-fonts
catalogue-contact-repository https://github.com/texjporg/morisawa
catalogue-ctan /fonts/morisawa
-catalogue-date 2018-04-29 07:15:59 +0200
catalogue-license bsd
catalogue-topics font-cjk
@@ -193999,7 +191894,6 @@ runfiles size=39
RELOC/tex/latex/movie15/movie15.sty
catalogue-also flashmovie
catalogue-ctan /macros/latex/contrib/movie15
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics multimedia obsolete
@@ -194057,7 +191951,6 @@ runfiles size=26
RELOC/metapost/mp3d/3dutil.mp
RELOC/metapost/mp3d/animpoly.mp
catalogue-ctan /graphics/metapost/contrib/macros/mp3d
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics mp-use graphics-3d
catalogue-version 1.34
@@ -194084,7 +191977,6 @@ srcfiles size=10
runfiles size=2
RELOC/tex/latex/mparhack/mparhack.sty
catalogue-ctan /macros/latex/contrib/mparhack
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics marginal
catalogue-version 1.4
@@ -194109,7 +192001,6 @@ docfiles size=39
runfiles size=2
RELOC/metapost/mparrows/mparrows.mp
catalogue-ctan /graphics/metapost/contrib/macros/mparrows
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics mp-supp
catalogue-version 0.1
@@ -194134,7 +192025,6 @@ docfiles size=8
runfiles size=2
RELOC/metapost/mpattern/mpattern.mp
catalogue-ctan /graphics/metapost/contrib/macros/mpattern
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics graphics-use
@@ -194192,7 +192082,6 @@ runfiles size=9
RELOC/metapost/mpcolornames/mpcolornames-spec-xcolor-sty.mp
RELOC/metapost/mpcolornames/mpcolornames.mp
catalogue-ctan /graphics/metapost/contrib/macros/mpcolornames
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license lppl
catalogue-topics colour
catalogue-version 0.20
@@ -194227,7 +192116,6 @@ catalogue-also emp
catalogue-contact-bugs https://github.com/bidi-tex/mpgraphics/issues
catalogue-contact-repository https://github.com/bidi-tex/mpgraphics
catalogue-ctan /macros/latex/contrib/mpgraphics
-catalogue-date 2018-11-28 20:33:59 +0100
catalogue-license lppl1.3
catalogue-topics graphics-inline
catalogue-version 0.3
@@ -194259,7 +192147,6 @@ docfiles size=338
RELOC/doc/metapost/mpman-ru/mpman-ru.tex
RELOC/doc/metapost/mpman-ru/mpman.ist
catalogue-ctan /info/metapost/doc/russian/mpman-ru
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license other-free
catalogue-topics mp-doc russian-doc translation
catalogue-version 1.004
@@ -194291,14 +192178,13 @@ srcfiles size=25
runfiles size=5
RELOC/tex/latex/mpostinl/mpostinl.sty
catalogue-ctan /macros/latex/contrib/mpostinl
-catalogue-date 2018-12-31 09:10:51 +0100
catalogue-license lppl1.3
catalogue-topics mp-supp graphics-inline graphics comp-mgmt
catalogue-version 1.5
name mptopdf
category Package
-revision 52238
+revision 53110
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
@@ -194311,10 +192197,10 @@ longdesc found on CTAN in macros/pdftex/graphics.
depend plain
depend mptopdf.ARCH
execute AddFormat name=mptopdf engine=pdftex options="-translate-file=cp227.tcx mptopdf.tex" fmttriggers=plain
-containersize 38556
-containerchecksum 3960623583dec782191299a72261e41d85a636d6d630cbde0b0c85c5ff84263699e31bc4ebef674dd516cdbf9089988b5ccb8afa8fe5bf9134cec927d8078c22
+containersize 38436
+containerchecksum 47a43cd96bcb5ed1d4cc04b2b16f741313dd803cf77634b3cc88a5ba54d030824e59319d39a5ec933aa39508b8c70914affae9ddea4422dc6b1102fc7892af88
doccontainersize 13684
-doccontainerchecksum a80bf1cb2fd0f7197162d0b3cdd2e7dcc084f3745e92273df8e45a989e42bbcd5522b9cf5aeaaba597c29b285181e48e08767b63ae484193c67d42b47479c6a6
+doccontainerchecksum 924a281c0116c686fc45cb6aaaa558c55b4828271b1574195675cc3b3440b373a5befd70ad2d6d3dd0306c65667347e59134dd90f4500ea6b250d001cc851f5c
docfiles size=6
texmf-dist/doc/context/scripts/mkii/mptopdf.man
texmf-dist/doc/man/man1/mptopdf.1
@@ -194491,7 +192377,6 @@ docfiles size=112
runfiles size=3
RELOC/metapost/mptrees/mptrees.mp
catalogue-ctan /graphics/metapost/contrib/macros/mptrees
-catalogue-date 2017-06-05 06:55:07 +0200
catalogue-license lppl1.3
catalogue-topics diagram-maths maths probability
catalogue-version 17.06
@@ -194548,7 +192433,6 @@ runfiles size=9
RELOC/tex/latex/ms/multitoc.sty
RELOC/tex/latex/ms/prelim2e.sty
catalogue-ctan /macros/latex/contrib/ms
-catalogue-date 2019-07-30 20:37:59 +0200
catalogue-license lppl
catalogue-topics collection
@@ -194581,7 +192465,6 @@ runfiles size=29
RELOC/tex/latex/msc/msc.sty
catalogue-contact-home http://satoss.uni.lu/mscpackage/
catalogue-ctan /macros/latex/contrib/msc
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl
catalogue-topics comp-net
catalogue-version 1.16
@@ -194624,7 +192507,6 @@ runfiles size=10
RELOC/tex/latex/msg/msg.sty
RELOC/tex/latex/msg/norsk_msg-msg.tex
catalogue-ctan /macros/latex/contrib/msg
-catalogue-date 2019-01-02 13:46:13 +0100
catalogue-license lppl
catalogue-topics multilingual
catalogue-version 0.51
@@ -194652,7 +192534,6 @@ runfiles size=10
RELOC/tex/latex/mslapa/mslapa.sty
catalogue-also apacite apa
catalogue-ctan /macros/latex/contrib/mslapa
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license other-free
catalogue-topics psychology journalpub bibtex-sty
@@ -194685,7 +192566,6 @@ docfiles size=126
runfiles size=7
RELOC/tex/latex/msu-thesis/msu-thesis.cls
catalogue-ctan /macros/latex/contrib/msu-thesis
-catalogue-date 2017-12-20 08:13:20 +0100
catalogue-license lppl1.3
catalogue-topics dissertation
catalogue-version 2.8
@@ -194717,7 +192597,6 @@ srcfiles size=3
runfiles size=1
RELOC/tex/latex/mtgreek/mtgreek.sty
catalogue-ctan /macros/latex/contrib/mtgreek
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics font-supp greek
catalogue-version 1.1+
@@ -194752,7 +192631,6 @@ runfiles size=6
RELOC/tex/latex/mucproc/mucproc.cls
catalogue-contact-repository https://github.com/Blubu/mucproc/
catalogue-ctan /macros/latex/contrib/mucproc
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl1.3
catalogue-topics confproc class
catalogue-version 1.02
@@ -194790,7 +192668,6 @@ runfiles size=2
RELOC/tex/latex/mugsthesis/mugsthesis.cls
catalogue-contact-repository https://github.com/pdgessler/mugsthesis
catalogue-ctan /macros/latex/contrib/mugsthesis
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl1.3
catalogue-topics dissertation
@@ -194817,7 +192694,6 @@ runfiles size=2
RELOC/tex/latex/multenum/multienum.sty
catalogue-also shortlst paralist
catalogue-ctan /macros/latex/contrib/multenum
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1
catalogue-topics list list-enum
@@ -194849,7 +192725,6 @@ srcfiles size=5
runfiles size=1
RELOC/tex/latex/multiaudience/multiaudience.sty
catalogue-ctan /macros/latex/contrib/multiaudience
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics cond-comp
catalogue-version 1.03
@@ -194877,7 +192752,6 @@ srcfiles size=3
runfiles size=1
RELOC/tex/latex/multibbl/multibbl.sty
catalogue-ctan /macros/latex/contrib/multibbl
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics bibtex-multi bibtex-supp
catalogue-version 1.1
@@ -194913,7 +192787,6 @@ runfiles size=20
RELOC/makeindex/multibib/mbgind.ist
RELOC/tex/latex/multibib/multibib.sty
catalogue-ctan /macros/latex/contrib/multibib
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics bibtex-multi bibtex-supp
catalogue-version 1.4
@@ -194954,7 +192827,6 @@ runfiles size=10
texmf-dist/tex/latex/multibibliography/multibibliography.sty
catalogue-also nmbib
catalogue-ctan /macros/latex/contrib/multibibliography
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics bibtex-supp
catalogue-version 1.03
@@ -195127,7 +192999,6 @@ runfiles size=1
RELOC/tex/latex/multicap/multicap.sty
catalogue-also caption
catalogue-ctan /macros/latex/contrib/multicap
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics caption
@@ -195162,7 +193033,6 @@ runfiles size=5
catalogue-contact-bugs https://github.com/polysyllabic/multicolrule/issues
catalogue-contact-repository https://github.com/polysyllabic/multicolrule
catalogue-ctan /macros/latex/contrib/multicolrule
-catalogue-date 2019-10-04 14:50:49 +0200
catalogue-license lppl1.3c
catalogue-topics decoration rule line-patt line-weight expl3
catalogue-version 1.3
@@ -195190,7 +193060,6 @@ srcfiles size=5
runfiles size=2
RELOC/tex/latex/multidef/multidef.sty
catalogue-ctan /macros/latex/contrib/multidef
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics macro-supp
catalogue-version 1.10
@@ -195222,7 +193091,6 @@ runfiles size=4
RELOC/tex/generic/multido/multido.tex
RELOC/tex/latex/multido/multido.sty
catalogue-ctan /macros/generic/multido
-catalogue-date 2018-09-15 12:25:56 +0200
catalogue-license lppl
catalogue-topics macro-supp
catalogue-version 1.42
@@ -195251,7 +193119,6 @@ srcfiles size=6
runfiles size=2
RELOC/tex/latex/multienv/multienv.sty
catalogue-ctan /macros/latex/contrib/multienv
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics macro-supp
catalogue-version 1.0
@@ -195288,7 +193155,6 @@ runfiles size=1
catalogue-contact-bugs https://github.com/blefloch/latex-multiexpand/issues
catalogue-contact-repository https://github.com/blefloch/latex-multiexpand
catalogue-ctan /macros/generic/multiexpand
-catalogue-date 2017-11-29 21:17:19 +0100
catalogue-license lppl1.3c
catalogue-topics macro-supp
catalogue-version 1.5
@@ -195326,7 +193192,6 @@ runfiles size=5
catalogue-contact-bugs https://github.com/Ri-Ga/multilang/issues
catalogue-contact-repository https://github.com/Ri-Ga/multilang
catalogue-ctan /macros/latex/contrib/multilang
-catalogue-date 2018-11-03 14:35:33 +0100
catalogue-license lppl1.2
catalogue-topics multilingual
catalogue-version 0.9b
@@ -195355,7 +193220,6 @@ srcfiles size=3
runfiles size=1
RELOC/tex/latex/multiobjective/multiobjective.sty
catalogue-ctan /macros/latex/contrib/multiobjective
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics maths-symbol
catalogue-version 1.0
@@ -195387,7 +193251,6 @@ runfiles size=4
RELOC/tex/latex/multirow/multirow.sty
catalogue-also bigstrut bigdelim
catalogue-ctan /macros/latex/contrib/multirow
-catalogue-date 2019-05-31 16:05:47 +0200
catalogue-license lppl1.3
catalogue-topics table
catalogue-version 2.5
@@ -195414,7 +193277,6 @@ docfiles size=75
runfiles size=8
RELOC/bibtex/bst/munich/munich.bst
catalogue-ctan /biblio/bibtex/contrib/munich
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics bibtex-sty
@@ -195443,7 +193305,6 @@ runfiles size=2
RELOC/tex/latex/musicography/musicography.sty
catalogue-contact-repository https://bitbucket.org/andrewacashner/musicography
catalogue-ctan /macros/latex/contrib/musicography
-catalogue-date 2019-05-28 20:23:04 +0200
catalogue-license lppl1.3
catalogue-topics music font-supp-symbol
@@ -195469,7 +193330,6 @@ runfiles size=2
RELOC/tex/latex/musikui/musikui.sty
catalogue-contact-repository https://github.com/puripuri2100/musikui.sty
catalogue-ctan /macros/latex/contrib/musikui
-catalogue-date 2018-05-03 05:20:47 +0200
catalogue-license lppl
catalogue-topics puzzle maths
catalogue-version 1
@@ -195492,7 +193352,6 @@ docfiles size=57
runfiles size=3
RELOC/tex/latex/musixguit/musixguit.sty
catalogue-ctan /macros/latex/contrib/musixguit
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics music
catalogue-version 1.2.2
@@ -195737,7 +193596,6 @@ runfiles size=148
catalogue-also pmx
catalogue-contact-home http://icking-music-archive.org/software/htdocs
catalogue-ctan /macros/musixtex
-catalogue-date 2018-08-05 08:12:10 +0200
catalogue-license gpl2+
catalogue-topics music
catalogue-version 1.29
@@ -196021,7 +193879,6 @@ runfiles size=1361
RELOC/fonts/type1/public/musixtex-fonts/xslz20d.pfb
RELOC/fonts/type1/public/musixtex-fonts/xtie20.pfb
catalogue-ctan /fonts/musixtex-fonts
-catalogue-date 2017-10-29 15:28:07 +0100
catalogue-license gpl
catalogue-topics font font-mf font-type1 font-music
@@ -196222,7 +194079,6 @@ docfiles size=36
runfiles size=1
texmf-dist/tex/generic/musixtnt/musixtnt.tex
catalogue-ctan /macros/musixtnt
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl2
catalogue-topics music
@@ -196396,7 +194252,6 @@ runfiles size=3
RELOC/tex/latex/musuos/musuos.cls
catalogue-also biblatex-musuos
catalogue-ctan /macros/latex/contrib/musuos
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics dissertation music
catalogue-version 1.1d
@@ -196419,7 +194274,6 @@ runfiles size=6
RELOC/tex/latex/muthesis/muthesis.cls
RELOC/tex/latex/muthesis/third-rep.cls
catalogue-ctan /macros/latex/contrib/muthesis
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics dissertation
@@ -196449,7 +194303,6 @@ srcfiles size=3
runfiles size=1
RELOC/tex/latex/mversion/mVersion.sty
catalogue-ctan /macros/latex/contrib/mversion
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.2
catalogue-topics doc-mgmt doc-tool
catalogue-version 1.0.1
@@ -196495,7 +194348,6 @@ runfiles size=42
RELOC/tex/latex/mwcls/mwbk12.clo
RELOC/tex/latex/mwcls/mwrep.cls
catalogue-ctan /macros/latex/contrib/mwcls
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license lppl1.2
catalogue-topics book-pub class
catalogue-version 0.75
@@ -196623,7 +194475,6 @@ catalogue-contact-bugs https://bitbucket.org/martin_scharrer/mwe/issues
catalogue-contact-home https://bitbucket.org/martin_scharrer/mwe
catalogue-contact-repository https://bitbucket.org/martin_scharrer/mwe/src
catalogue-ctan /macros/latex/contrib/mwe
-catalogue-date 2018-03-30 18:31:59 +0200
catalogue-license lppl1.3
catalogue-topics debug-supp
catalogue-version 0.5
@@ -196649,7 +194500,6 @@ docfiles size=1
runfiles size=2
RELOC/tex/latex/mweights/mweights.sty
catalogue-ctan /macros/latex/contrib/mweights
-catalogue-date 2017-03-30 19:47:45 +0200
catalogue-license lppl
catalogue-topics font-use font-supp
@@ -196714,7 +194564,6 @@ runfiles size=112
catalogue-also georgian-stanier
catalogue-contact-home http://heinecke.pagesperso-orange.fr/mxedruli/
catalogue-ctan /fonts/georgian/mxedruli
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl
catalogue-topics georgian font font-type1 font-mf
catalogue-version 3.3c
@@ -196742,7 +194591,6 @@ runfiles size=15
RELOC/tex/latex/mychemistry/mychemistry.sty
catalogue-contact-repository https://bitbucket.org/cgnieder/mychemistry/
catalogue-ctan /macros/latex/contrib/mychemistry
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl1.3
catalogue-topics chemistry
catalogue-version 1.99b
@@ -196791,7 +194639,6 @@ runfiles size=11
RELOC/tex/latex/mycv/mycv_style.sty
RELOC/tex/latex/mycv/mycv_version.def
catalogue-ctan /macros/latex/contrib/mycv
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics cv class
catalogue-version 1.5.6
@@ -196823,7 +194670,6 @@ srcfiles size=13
runfiles size=4
RELOC/tex/latex/mylatexformat/mylatexformat.ltx
catalogue-ctan /macros/latex/contrib/mylatexformat
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics format
catalogue-version 3.4
@@ -196854,7 +194700,6 @@ srcfiles size=4
runfiles size=3
RELOC/tex/xelatex/mynsfc/mynsfc.cls
catalogue-ctan /macros/xetex/latex/mynsfc
-catalogue-date 2016-09-05 15:36:08 +0200
catalogue-license lppl1.3
catalogue-topics proposal
catalogue-version 1.01
@@ -196886,7 +194731,6 @@ runfiles size=3
RELOC/tex/xelatex/na-box/na-box.sty
catalogue-also pas-cours
catalogue-ctan /macros/xetex/latex/na-box
-catalogue-date 2017-08-28 05:03:56 +0200
catalogue-license lppl
catalogue-topics teaching
catalogue-version 1.0
@@ -196913,7 +194757,6 @@ docfiles size=96
runfiles size=4
RELOC/tex/xelatex/na-position/na-position.sty
catalogue-ctan /macros/xetex/latex/na-position
-catalogue-date 2018-06-22 05:53:55 +0200
catalogue-license lppl
catalogue-topics maths arabic xetex
catalogue-version 1.1
@@ -196948,7 +194791,6 @@ runfiles size=10
RELOC/tex/latex/nag/nag-orthodox.cfg
RELOC/tex/latex/nag/nag.sty
catalogue-ctan /macros/latex/contrib/nag
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics latex-qual
catalogue-version 0.7
@@ -196983,7 +194825,6 @@ srcfiles size=81
runfiles size=12
RELOC/tex/latex/nameauth/nameauth.sty
catalogue-ctan /macros/latex/contrib/nameauth
-catalogue-date 2017-03-22 22:56:13 +0100
catalogue-license lppl1.3
catalogue-topics editorial editorial-consistency
catalogue-version 3.2
@@ -197011,7 +194852,6 @@ srcfiles size=3
runfiles size=1
RELOC/tex/latex/namespc/namespc.sty
catalogue-ctan /macros/latex/contrib/namespc
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics latex-devel
@@ -197046,7 +194886,6 @@ runfiles size=4
catalogue-contact-bugs https://github.com/Mikumikunisiteageru/nanicolle/issues
catalogue-contact-repository https://github.com/Mikumikunisiteageru/nanicolle
catalogue-ctan /macros/xetex/latex/nanicolle
-catalogue-date 2019-09-27 11:07:19 +0200
catalogue-license lppl1.3c
catalogue-topics class biology covers labels chinese xetex
catalogue-version 2.01
@@ -198803,7 +196642,6 @@ runfiles size=9476
RELOC/tex/latex/nanumtype1/ts1nanumgt.fd
RELOC/tex/latex/nanumtype1/ts1nanummj.fd
catalogue-ctan /fonts/nanumtype1
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license ofl
catalogue-topics font font-cjk font-type1 korean
catalogue-version 3.0
@@ -198821,7 +196659,6 @@ containerchecksum 212f1a002743ba14eac41de05a88325533db8b25d9f12b141064b9aa98f78d
runfiles size=6
RELOC/bibtex/bst/nar/nar.bst
catalogue-ctan /biblio/bibtex/contrib/misc/nar.bst
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license other-free
catalogue-topics bibtex-sty journalpub
catalogue-version 3.19
@@ -198864,7 +196701,6 @@ runfiles size=33
RELOC/tex/latex/natbib/bibentry.sty
RELOC/tex/latex/natbib/natbib.sty
catalogue-ctan /macros/latex/contrib/natbib
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics bibtex-supp
catalogue-version 8.31b
@@ -198889,7 +196725,6 @@ docfiles size=92
runfiles size=4
RELOC/tex/latex/natded/natded.sty
catalogue-ctan /macros/latex/contrib/natded
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics proof
catalogue-version 0.1
@@ -198919,7 +196754,6 @@ docfiles size=48
runfiles size=21
RELOC/tex/latex/nath/nath.sty
catalogue-ctan /macros/latex/contrib/nath
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics maths
@@ -198942,7 +196776,6 @@ runfiles size=11
RELOC/bibtex/bst/nature/naturemag.bst
RELOC/tex/latex/nature/nature.cls
catalogue-ctan /macros/latex/contrib/nature
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics journalpub
catalogue-version 1.0
@@ -198974,7 +196807,6 @@ runfiles size=8
RELOC/tex/generic/navigator/t-navigator.tex
catalogue-also hyperref
catalogue-ctan /macros/generic/navigator
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics hyper pdf-feat
catalogue-version 1.1
@@ -199010,7 +196842,6 @@ srcfiles size=13
runfiles size=3
RELOC/tex/latex/navydocs/navydocs.sty
catalogue-ctan /macros/latex/contrib/navydocs
-catalogue-date 2016-07-13 07:24:29 +0200
catalogue-license lppl1.3
catalogue-topics titlepage report-like
catalogue-version 1.1
@@ -199064,7 +196895,6 @@ runfiles size=30
RELOC/tex/latex/ncclatex/ncctitlepage.sty
RELOC/tex/latex/ncclatex/sibjnm.cls
catalogue-ctan /macros/latex/contrib/ncclatex
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics class
catalogue-version 1.5
@@ -199183,7 +197013,6 @@ runfiles size=43
RELOC/tex/latex/ncctools/topsection.sty
RELOC/tex/latex/ncctools/watermark.sty
catalogue-ctan /macros/latex/contrib/ncctools
-catalogue-date 2019-08-03 11:40:31 +0200
catalogue-license lppl
catalogue-topics collection
catalogue-version 3.5.3
@@ -199350,7 +197179,6 @@ runfiles size=305
RELOC/tex/latex/ncntrsbk/ts1unc.fd
catalogue-also tex-gyre
catalogue-ctan /fonts/urw/base35
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics font font-type1 font-collection
@@ -199383,7 +197211,6 @@ runfiles size=14
RELOC/tex/latex/nddiss/nddiss2e.cls
catalogue-contact-repository https://github.com/ndlib/nddiss
catalogue-ctan /macros/latex/contrib/nddiss
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license lppl1.2
catalogue-topics dissertation class
catalogue-version 3.2017.2
@@ -199406,7 +197233,6 @@ docfiles size=38
runfiles size=3
RELOC/tex/latex/ndsu-thesis/ndsu-thesis.cls
catalogue-ctan /macros/latex/contrib/ndsu-thesis
-catalogue-date 2018-02-14 07:10:49 +0100
catalogue-license lppl1.3
catalogue-topics dissertation class
@@ -199433,7 +197259,6 @@ srcfiles size=3
runfiles size=1
RELOC/tex/latex/needspace/needspace.sty
catalogue-ctan /macros/latex/contrib/needspace
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics layout
catalogue-version 1.3d
@@ -199453,7 +197278,6 @@ containerchecksum cc75905a3423deb02f226340eeb6a5f97d9d83470f156bc75cdf39569da845
runfiles size=1
RELOC/tex/latex/nestquot/nestquot.sty
catalogue-ctan /macros/latex/contrib/nestquot
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license other-free
catalogue-topics quote-marks
@@ -199478,7 +197302,6 @@ runfiles size=3
RELOC/tex/latex/neuralnetwork/neuralnetwork.sty
catalogue-contact-repository https://github.com/battlesnake/neural
catalogue-ctan /graphics/pgf/contrib/neuralnetwork
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license gpl
catalogue-topics diagram
catalogue-version 1.0
@@ -199504,7 +197327,6 @@ srcfiles size=4
runfiles size=2
RELOC/tex/latex/nevelok/nevelok.sty
catalogue-ctan /macros/latex/contrib/nevelok
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics hungarian
catalogue-version 1.03
@@ -199529,7 +197351,6 @@ docfiles size=117
RELOC/doc/latex/newcommand/newcommand.tex
RELOC/doc/latex/newcommand/spark.py
catalogue-ctan /support/newcommand
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics macro-supp
catalogue-version 2.0
@@ -199567,7 +197388,6 @@ runfiles size=1227
RELOC/fonts/opentype/public/newcomputermodern/NewCMSans10-Oblique.otf
RELOC/fonts/opentype/public/newcomputermodern/NewCMSans10-Regular.otf
catalogue-ctan /fonts/newcomputermodern
-catalogue-date 2019-11-21 17:47:54 +0100
catalogue-license gfl
catalogue-topics font font-cm font-body font-proportional font-mono font-serif font-sans font-multilingual font-greek font-cyrillic font-maths font-otf
catalogue-version 1.001
@@ -199590,7 +197410,6 @@ runfiles size=2
RELOC/tex/latex/newenviron/newenviron.sty
catalogue-also environ
catalogue-ctan /macros/latex/contrib/newenviron
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics macro-supp
catalogue-version 1.0
@@ -199619,7 +197438,6 @@ srcfiles size=10
runfiles size=2
RELOC/tex/latex/newfile/newfile.sty
catalogue-ctan /macros/latex/contrib/newfile
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics io-mgmt
catalogue-version 1.0c
@@ -199655,7 +197473,6 @@ catalogue-contact-home https://gitlab.com/axelsommerfeldt/newfloat
catalogue-contact-repository https://gitlab.com/axelsommerfeldt/newfloat/tree/master
catalogue-contact-support https://gitlab.com/axelsommerfeldt/newfloat/issues
catalogue-ctan /macros/latex/contrib/newfloat
-catalogue-date 2019-11-24 20:54:26 +0100
catalogue-license lppl1.3
catalogue-topics float
catalogue-version 1.1l
@@ -199738,7 +197555,6 @@ runfiles size=33
RELOC/tex/latex/newlfm/newlfm.cls
RELOC/tex/latex/newlfm/setdim.sty
catalogue-ctan /macros/latex/contrib/newlfm
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics class letter
catalogue-version 9.4
@@ -200110,7 +197926,6 @@ runfiles size=1875
RELOC/tex/latex/newpx/unpxtt.fd
catalogue-also pxfonts
catalogue-ctan /fonts/newpx
-catalogue-date 2019-10-26 07:09:54 +0200
catalogue-license lppl
catalogue-topics font font-body font-maths font-serif font-proportional font-type1 font-otf font-supp font-t1enc
catalogue-version 1.408
@@ -200137,7 +197952,6 @@ docfiles size=53
runfiles size=14
RELOC/tex/plain/newsletr/newsletr.tex
catalogue-ctan /macros/plain/contrib/newsletr
-catalogue-date 2016-06-18 16:48:54 +0200
catalogue-license other-free
catalogue-topics magazine
@@ -200169,7 +197983,6 @@ srcfiles size=5
runfiles size=1
RELOC/tex/latex/newspaper/newspaper.sty
catalogue-ctan /macros/latex/contrib/newspaper
-catalogue-date 2018-12-30 10:18:35 +0100
catalogue-license lppl
catalogue-topics magazine
catalogue-version 1.0
@@ -200955,7 +198768,6 @@ runfiles size=2491
RELOC/tex/latex/newtx/uzmnmia.fd
catalogue-also minion2newtx
catalogue-ctan /fonts/newtx
-catalogue-date 2019-12-01 22:53:15 +0100
catalogue-license lppl1.3
catalogue-topics font font-body font-maths font-serif font-proportional font-type1 font-otf font-supp font-t1enc
catalogue-version 1.612
@@ -201003,7 +198815,6 @@ runfiles size=61
RELOC/tex/latex/newtxsf/untxsfmia.fd
catalogue-also newtx stix
catalogue-ctan /fonts/newtxsf
-catalogue-date 2018-06-07 22:19:28 +0200
catalogue-license ofl
catalogue-topics font font-sans font-maths font-type1
catalogue-version 1.051
@@ -201172,7 +198983,6 @@ runfiles size=204
RELOC/tex/latex/newtxtt/ts1newtxtt.fd
RELOC/tex/latex/newtxtt/ts1newtxttz.fd
catalogue-ctan /fonts/newtxtt
-catalogue-date 2017-05-22 18:08:04 +0200
catalogue-license gpl3lppl
catalogue-topics font font-type1 font-mono font-t1enc
catalogue-version 1.055
@@ -201204,7 +199014,6 @@ srcfiles size=6
runfiles size=2
RELOC/tex/latex/newunicodechar/newunicodechar.sty
catalogue-ctan /macros/latex/contrib/newunicodechar
-catalogue-date 2018-04-08 14:20:27 +0200
catalogue-license lppl1.3c
catalogue-topics inputenc unicode
catalogue-version 1.2
@@ -201235,7 +199044,6 @@ runfiles size=3
RELOC/tex/latex/newvbtm/newvbtm.sty
RELOC/tex/latex/newvbtm/varvbtm.sty
catalogue-ctan /macros/latex/contrib/newvbtm
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics verbatim listing
catalogue-version 1.1
@@ -201271,7 +199079,6 @@ runfiles size=2
catalogue-also shortvrb
catalogue-contact-repository https://bitbucket.org/martin_scharrer/newverbs
catalogue-ctan /macros/latex/contrib/newverbs
-catalogue-date 2019-09-10 14:37:06 +0200
catalogue-license lppl1.3
catalogue-topics verbatim
catalogue-version 1.4
@@ -201290,7 +199097,6 @@ containerchecksum fca0aec60c5c7277dcadb0f86d757617484d700575fae13df8b386775e153e
runfiles size=1
RELOC/tex/latex/nextpage/nextpage.sty
catalogue-ctan /macros/latex/contrib/misc/nextpage.sty
-catalogue-date 2016-07-17 15:22:03 +0200
catalogue-license lppl
catalogue-topics macro-supp
catalogue-version 1.1a
@@ -201315,7 +199121,6 @@ docfiles size=49
runfiles size=6
RELOC/tex/latex/nfssext-cfr/nfssext-cfr.sty
catalogue-ctan /macros/latex/contrib/nfssext-cfr
-catalogue-date 2017-03-29 11:57:53 +0200
catalogue-license lppl1.3
catalogue-topics font-sel
@@ -201350,7 +199155,6 @@ runfiles size=5
RELOC/tex/latex/nicefilelist/nicefilelist.sty
catalogue-contact-support http://www.webdesign-bu.de/uwe_lueck/contact.html
catalogue-ctan /macros/latex/contrib/nicefilelist
-catalogue-date 2017-05-06 09:02:27 +0200
catalogue-license lppl1.3
catalogue-topics doc-mgmt
catalogue-version 0.7a
@@ -201389,7 +199193,6 @@ runfiles size=58
RELOC/tex/latex/niceframe/niceframe.sty
catalogue-also umrand
catalogue-ctan /macros/latex/contrib/niceframe
-catalogue-date 2017-10-29 15:00:32 +0100
catalogue-license lppl
catalogue-topics decoration font font-mf
catalogue-version 1.1c
@@ -201422,7 +199225,6 @@ runfiles size=84
RELOC/fonts/type1/public/niceframe-type1/umranda.pfb
RELOC/fonts/type1/public/niceframe-type1/umrandb.pfb
catalogue-ctan /fonts/niceframe
-catalogue-date 2017-06-23 04:27:05 +0200
catalogue-license lppl
catalogue-topics font font-type1 font-decor
@@ -201460,7 +199262,6 @@ srcfiles size=63
runfiles size=22
RELOC/tex/latex/nicematrix/nicematrix.sty
catalogue-ctan /macros/latex/contrib/nicematrix
-catalogue-date 2019-11-11 22:05:46 +0100
catalogue-license lppl1.3
catalogue-topics maths matrix pgf-tikz expl3
catalogue-version 3.7
@@ -201550,7 +199351,6 @@ runfiles size=62
catalogue-also easylatex txt2latex makedtx doc gmdoc
catalogue-contact-support http://www.webdesign-bu.de/uwe_lueck/contact.html
catalogue-ctan /macros/latex/contrib/nicetext
-catalogue-date 2017-05-06 09:07:27 +0200
catalogue-license lppl1.3
catalogue-topics markup
catalogue-version r0.67
@@ -201583,7 +199383,6 @@ runfiles size=5
RELOC/tex/latex/nidanfloat/nidanfloat.sty
catalogue-contact-repository https://github.com/texjporg/nidanfloat
catalogue-ctan /macros/latex/contrib/nidanfloat
-catalogue-date 2018-07-28 14:57:17 +0200
catalogue-license bsd3
catalogue-topics float japanese
@@ -201615,7 +199414,6 @@ runfiles size=3
RELOC/tex/latex/nih/nih.cls
catalogue-contact-home http://www.cs.duke.edu/brd/NIH/tips/
catalogue-ctan /macros/latex/contrib/nih
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license lppl
catalogue-topics proposal
@@ -201649,7 +199447,6 @@ runfiles size=2
RELOC/tex/latex/nihbiosketch/nihbiosketch.cls
catalogue-also nih
catalogue-ctan /macros/latex/contrib/nihbiosketch
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics cv
@@ -201972,7 +199769,6 @@ runfiles size=2045
RELOC/tex/latex/nimbus15/zhv.fontspec
RELOC/tex/latex/nimbus15/ztm.fontspec
catalogue-ctan /fonts/nimbus15
-catalogue-date 2019-10-19 06:54:07 +0200
catalogue-license other-freelppl1.3
catalogue-topics font font-body font-proportional font-multilingual font-greek font-cyrillic font-type1 font-otf font-supp font-t1enc
catalogue-version 1.012
@@ -202006,7 +199802,6 @@ runfiles size=10
RELOC/tex/latex/njurepo/njurepo.cls
catalogue-also seuthesix
catalogue-ctan /macros/latex/contrib/njurepo
-catalogue-date 2019-03-20 20:58:45 +0100
catalogue-license lppl1.3c
catalogue-topics dissertation class
catalogue-version 1.1.2
@@ -202042,7 +199837,6 @@ runfiles size=68
RELOC/metapost/nkarta/nkarta.mp
RELOC/metapost/nkarta/nkchars.mp
catalogue-ctan /fonts/nkarta
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics font font-mf font-symbol
catalogue-version 0.2
@@ -202065,7 +199859,6 @@ docfiles size=1
runfiles size=5
RELOC/tex/latex/nlctdoc/nlctdoc.cls
catalogue-ctan /macros/latex/contrib/nlctdoc
-catalogue-date 2019-01-12 10:21:49 +0100
catalogue-license lppl
catalogue-topics doc-supp class
catalogue-version 1.06
@@ -202106,7 +199899,6 @@ runfiles size=24
RELOC/tex/latex/nmbib/nmbib.sty
catalogue-also multibibliography
catalogue-ctan /macros/latex/contrib/nmbib
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics bibtex-supp
catalogue-version 1.04
@@ -202129,7 +199921,6 @@ docfiles size=1
runfiles size=1
RELOC/tex/latex/noconflict/noconflict.sty
catalogue-ctan /macros/latex/contrib/noconflict
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics macro-supp
catalogue-version 1.0
@@ -202162,7 +199953,6 @@ runfiles size=7
RELOC/tex/luatex/nodetree/nodetree.tex
catalogue-contact-repository https://github.com/Josef-Friedrich/nodetree
catalogue-ctan /macros/luatex/generic/nodetree
-catalogue-date 2018-01-07 12:06:50 +0100
catalogue-license lppl1.3
catalogue-topics lua-supp
catalogue-version 1.2
@@ -202188,7 +199978,6 @@ docfiles size=62
runfiles size=2
RELOC/tex/latex/noindentafter/noindentafter.sty
catalogue-ctan /macros/latex/contrib/noindentafter
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics macro-supp
catalogue-version 0.2.2
@@ -202215,7 +200004,6 @@ srcfiles size=3
runfiles size=1
RELOC/tex/latex/noitcrul/noitcrul.sty
catalogue-ctan /macros/latex/contrib/noitcrul
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics underline maths
catalogue-version 0.2
@@ -202240,7 +200028,6 @@ docfiles size=34
runfiles size=2
RELOC/tex/latex/nolbreaks/nolbreaks.sty
catalogue-ctan /macros/latex/contrib/nolbreaks
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics typesetting
catalogue-version 1.2
@@ -202287,7 +200074,6 @@ catalogue-contact-bugs https://github.com/borisveytsman/nomencl
catalogue-contact-home https://github.com/borisveytsman/nomencl
catalogue-contact-repository https://github.com/borisveytsman/nomencl
catalogue-ctan /macros/latex/contrib/nomencl
-catalogue-date 2019-11-23 22:45:24 +0100
catalogue-license lppl
catalogue-topics glossary
catalogue-version 5.3
@@ -202318,7 +200104,6 @@ runfiles size=3
RELOC/makeindex/nomentbl/nomentbl.ist
RELOC/tex/latex/nomentbl/nomentbl.sty
catalogue-ctan /macros/latex/contrib/nomentbl
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics glossary
catalogue-version 0.4
@@ -202349,7 +200134,6 @@ srcfiles size=6
runfiles size=1
RELOC/tex/latex/nonfloat/nonfloat.sty
catalogue-ctan /macros/latex/contrib/nonfloat
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics float
catalogue-version 1.0
@@ -202382,7 +200166,6 @@ srcfiles size=7
runfiles size=1
RELOC/tex/latex/nonumonpart/nonumonpart.sty
catalogue-ctan /macros/latex/contrib/nonumonpart
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.2
catalogue-topics page-nos
catalogue-version 1
@@ -202410,7 +200193,6 @@ docfiles size=44
runfiles size=1
RELOC/tex/latex/nopageno/nopageno.sty
catalogue-ctan /macros/latex/contrib/nopageno
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics page-nos
@@ -202459,7 +200241,6 @@ srcfiles size=4
runfiles size=1
RELOC/tex/latex/normalcolor/normalcolor.sty
catalogue-ctan /macros/latex/contrib/normalcolor
-catalogue-date 2016-11-16 07:56:28 +0100
catalogue-license lppl1.3
catalogue-topics colour
catalogue-version r11
@@ -202500,7 +200281,6 @@ runfiles size=10
RELOC/tex/latex/nostarch/nshyper.sty
catalogue-contact-home http://www.nostarch.com
catalogue-ctan /macros/latex/contrib/nostarch
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl
catalogue-topics book-pub class
catalogue-version 1.3
@@ -202547,7 +200327,6 @@ runfiles size=11
RELOC/tex/latex/notes/warn.pdf
RELOC/tex/latex/notes/warn.png
catalogue-ctan /macros/latex/contrib/notes
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics decoration
catalogue-version 1.0.1
@@ -202585,7 +200364,6 @@ srcfiles size=15
runfiles size=5
RELOC/tex/latex/notes2bib/notes2bib.sty
catalogue-ctan /macros/latex/contrib/notes2bib
-catalogue-date 2019-09-30 17:56:14 +0200
catalogue-license lppl1.3c
catalogue-topics notes bib-use expl3
catalogue-version 2.0m
@@ -202617,7 +200395,6 @@ srcfiles size=37
runfiles size=6
RELOC/tex/latex/notespages/notespages.sty
catalogue-ctan /macros/latex/contrib/notespages
-catalogue-date 2016-08-21 23:18:57 +0200
catalogue-license lppl1.3
catalogue-topics blank-page notes
catalogue-version 0.8.1
@@ -202644,7 +200421,6 @@ runfiles size=6
RELOC/tex/latex/notestex/NotesTeX.sty
catalogue-contact-repository https://github.com/Adhumunt/NotesTeX
catalogue-ctan /macros/latex/contrib/notestex
-catalogue-date 2017-09-26 06:08:42 +0200
catalogue-license lppl1.3
catalogue-topics notes misc-paper gen-paper
catalogue-version 1.0
@@ -202663,105 +200439,105 @@ containerchecksum 68627ca4a07ed0228b9b9ea4b70cdea5196e907f71f343310259d19464d503
runfiles size=5
RELOC/bibtex/bst/notex-bst/noTeX.bst
catalogue-ctan /biblio/bibtex/utils/misc/noTeX.bst
-catalogue-date 2016-10-28 06:12:41 +0200
catalogue-license pd
catalogue-topics bibtex-sty cvt-html
name noto
category Package
-revision 52498
+revision 53105
shortdesc Support for Noto fonts
relocated 1
longdesc This package provides LaTeX, pdfLaTeX, XeLaTeX and LuaLaTeX
longdesc support for the NotoSerif, NotoSans and NotoSansMono families
longdesc of fonts, designed by Steve Matteson for Google.
execute addMap noto.map
-containersize 67190628
-containerchecksum 5d4df1ff9b70e1a11d19a1c41291712080617de31d36183a5bd0eeb7d1803c0c09a8c4b4cae15ace784ed2af69064672b360893a15cbe5db974ccdbd2e287162
+containersize 67199016
+containerchecksum fa7244fe4d1618a7ebb12b2dd0ad5253d8ddd81c08b6a2e7487a09bf2d8f856bd1a801941caf9877ce2ec55f178538bb253bbfe56f5a1778e66d4ca42021da8c
doccontainersize 312836
-doccontainerchecksum c78e2c024eaef56fca93316ea67f3336ce5ea42b01b6a74d708925da69e776f73539cbf78055bf0e18e6c5db1c417d33276a769692c4875dae4df34b78b0111d
+doccontainerchecksum b3e9c8d0bc9db7d8dd23383f813cd06aebcf29bbed357b8da33eba1c1cd0226dfc0a50bfaf4acecb309df7ba9a40c187d4d0c3500603884e7eacd243748e66ad
docfiles size=80
RELOC/doc/fonts/noto/LICENSE_OFL.txt
RELOC/doc/fonts/noto/README details="Readme"
RELOC/doc/fonts/noto/noto-samples.pdf details="Font samples"
RELOC/doc/fonts/noto/noto-samples.tex
-runfiles size=50596
+runfiles size=50604
RELOC/fonts/enc/dvips/noto/nto_2banio.enc
+ RELOC/fonts/enc/dvips/noto/nto_2pknou.enc
RELOC/fonts/enc/dvips/noto/nto_34ragx.enc
- RELOC/fonts/enc/dvips/noto/nto_35ihh3.enc
+ RELOC/fonts/enc/dvips/noto/nto_3b7r4q.enc
RELOC/fonts/enc/dvips/noto/nto_3dob2t.enc
RELOC/fonts/enc/dvips/noto/nto_3idd2i.enc
+ RELOC/fonts/enc/dvips/noto/nto_3jz62l.enc
RELOC/fonts/enc/dvips/noto/nto_3kuu7o.enc
RELOC/fonts/enc/dvips/noto/nto_3nbfkd.enc
RELOC/fonts/enc/dvips/noto/nto_3ubgsk.enc
RELOC/fonts/enc/dvips/noto/nto_453igs.enc
RELOC/fonts/enc/dvips/noto/nto_4lhdnu.enc
- RELOC/fonts/enc/dvips/noto/nto_4ovuef.enc
RELOC/fonts/enc/dvips/noto/nto_5taitr.enc
RELOC/fonts/enc/dvips/noto/nto_5uhkks.enc
RELOC/fonts/enc/dvips/noto/nto_5xcjwt.enc
RELOC/fonts/enc/dvips/noto/nto_5yrndq.enc
- RELOC/fonts/enc/dvips/noto/nto_5zgfs6.enc
RELOC/fonts/enc/dvips/noto/nto_6egtta.enc
RELOC/fonts/enc/dvips/noto/nto_6fjq7h.enc
- RELOC/fonts/enc/dvips/noto/nto_6wawwp.enc
+ RELOC/fonts/enc/dvips/noto/nto_6jn4k6.enc
RELOC/fonts/enc/dvips/noto/nto_72byc5.enc
RELOC/fonts/enc/dvips/noto/nto_772cjc.enc
+ RELOC/fonts/enc/dvips/noto/nto_7dmrun.enc
RELOC/fonts/enc/dvips/noto/nto_7fe4g3.enc
- RELOC/fonts/enc/dvips/noto/nto_7iwj6f.enc
RELOC/fonts/enc/dvips/noto/nto_7wbp6x.enc
RELOC/fonts/enc/dvips/noto/nto_7xrktb.enc
RELOC/fonts/enc/dvips/noto/nto_a3kb4x.enc
RELOC/fonts/enc/dvips/noto/nto_a3nlzj.enc
+ RELOC/fonts/enc/dvips/noto/nto_a4scdo.enc
RELOC/fonts/enc/dvips/noto/nto_ad2lir.enc
RELOC/fonts/enc/dvips/noto/nto_b2faob.enc
RELOC/fonts/enc/dvips/noto/nto_b2rbwz.enc
RELOC/fonts/enc/dvips/noto/nto_b374rf.enc
+ RELOC/fonts/enc/dvips/noto/nto_b3cf23.enc
RELOC/fonts/enc/dvips/noto/nto_b6ko55.enc
RELOC/fonts/enc/dvips/noto/nto_bcpmuc.enc
RELOC/fonts/enc/dvips/noto/nto_bkthom.enc
RELOC/fonts/enc/dvips/noto/nto_bvui6g.enc
RELOC/fonts/enc/dvips/noto/nto_c3lxz4.enc
- RELOC/fonts/enc/dvips/noto/nto_ccnh7u.enc
- RELOC/fonts/enc/dvips/noto/nto_cgirjw.enc
+ RELOC/fonts/enc/dvips/noto/nto_c4ampu.enc
RELOC/fonts/enc/dvips/noto/nto_ckgynt.enc
RELOC/fonts/enc/dvips/noto/nto_cpzaze.enc
RELOC/fonts/enc/dvips/noto/nto_cwvxtj.enc
RELOC/fonts/enc/dvips/noto/nto_dekpws.enc
- RELOC/fonts/enc/dvips/noto/nto_dqalc5.enc
RELOC/fonts/enc/dvips/noto/nto_dvdq72.enc
- RELOC/fonts/enc/dvips/noto/nto_dxp6is.enc
RELOC/fonts/enc/dvips/noto/nto_e6yrw6.enc
+ RELOC/fonts/enc/dvips/noto/nto_e7tkro.enc
RELOC/fonts/enc/dvips/noto/nto_etmgrc.enc
RELOC/fonts/enc/dvips/noto/nto_ewl7ea.enc
+ RELOC/fonts/enc/dvips/noto/nto_f7fqkh.enc
RELOC/fonts/enc/dvips/noto/nto_fw5lcu.enc
RELOC/fonts/enc/dvips/noto/nto_gemibc.enc
RELOC/fonts/enc/dvips/noto/nto_gfowk7.enc
- RELOC/fonts/enc/dvips/noto/nto_hbzp5p.enc
RELOC/fonts/enc/dvips/noto/nto_hcdl7d.enc
- RELOC/fonts/enc/dvips/noto/nto_hioxzc.enc
RELOC/fonts/enc/dvips/noto/nto_hjcdnn.enc
RELOC/fonts/enc/dvips/noto/nto_hvbi2c.enc
+ RELOC/fonts/enc/dvips/noto/nto_i47ut3.enc
RELOC/fonts/enc/dvips/noto/nto_ib6ubx.enc
RELOC/fonts/enc/dvips/noto/nto_ibgtat.enc
RELOC/fonts/enc/dvips/noto/nto_jayyhr.enc
- RELOC/fonts/enc/dvips/noto/nto_jfjta2.enc
- RELOC/fonts/enc/dvips/noto/nto_jg4zjm.enc
+ RELOC/fonts/enc/dvips/noto/nto_jcw7uk.enc
RELOC/fonts/enc/dvips/noto/nto_jkat5h.enc
RELOC/fonts/enc/dvips/noto/nto_jl7jon.enc
RELOC/fonts/enc/dvips/noto/nto_jzlekz.enc
RELOC/fonts/enc/dvips/noto/nto_khusna.enc
RELOC/fonts/enc/dvips/noto/nto_kntwfo.enc
+ RELOC/fonts/enc/dvips/noto/nto_ku6sr6.enc
RELOC/fonts/enc/dvips/noto/nto_kyokto.enc
RELOC/fonts/enc/dvips/noto/nto_l7r7sw.enc
RELOC/fonts/enc/dvips/noto/nto_lirjoh.enc
+ RELOC/fonts/enc/dvips/noto/nto_lr2om7.enc
+ RELOC/fonts/enc/dvips/noto/nto_luhzk7.enc
RELOC/fonts/enc/dvips/noto/nto_m3b3uh.enc
RELOC/fonts/enc/dvips/noto/nto_mckgpj.enc
RELOC/fonts/enc/dvips/noto/nto_mcmm5k.enc
RELOC/fonts/enc/dvips/noto/nto_mcxhr4.enc
RELOC/fonts/enc/dvips/noto/nto_mhwely.enc
RELOC/fonts/enc/dvips/noto/nto_mpk62p.enc
- RELOC/fonts/enc/dvips/noto/nto_n3n24g.enc
RELOC/fonts/enc/dvips/noto/nto_ndzcwf.enc
RELOC/fonts/enc/dvips/noto/nto_nhjuvf.enc
RELOC/fonts/enc/dvips/noto/nto_nhzdio.enc
@@ -202770,41 +200546,38 @@ runfiles size=50596
RELOC/fonts/enc/dvips/noto/nto_ol4yze.enc
RELOC/fonts/enc/dvips/noto/nto_op2juy.enc
RELOC/fonts/enc/dvips/noto/nto_p6rwlx.enc
- RELOC/fonts/enc/dvips/noto/nto_pcckjc.enc
RELOC/fonts/enc/dvips/noto/nto_ph33kq.enc
RELOC/fonts/enc/dvips/noto/nto_prsxmw.enc
+ RELOC/fonts/enc/dvips/noto/nto_pvnjta.enc
RELOC/fonts/enc/dvips/noto/nto_pz6pv7.enc
- RELOC/fonts/enc/dvips/noto/nto_q2bt4y.enc
RELOC/fonts/enc/dvips/noto/nto_q2iokw.enc
RELOC/fonts/enc/dvips/noto/nto_qdgiej.enc
RELOC/fonts/enc/dvips/noto/nto_qgk3xb.enc
RELOC/fonts/enc/dvips/noto/nto_qielb2.enc
- RELOC/fonts/enc/dvips/noto/nto_qimki2.enc
RELOC/fonts/enc/dvips/noto/nto_qsoqct.enc
RELOC/fonts/enc/dvips/noto/nto_r2ghbj.enc
RELOC/fonts/enc/dvips/noto/nto_r5bxyy.enc
+ RELOC/fonts/enc/dvips/noto/nto_ras4ps.enc
RELOC/fonts/enc/dvips/noto/nto_rmq6cj.enc
RELOC/fonts/enc/dvips/noto/nto_rscbfi.enc
RELOC/fonts/enc/dvips/noto/nto_rsplpv.enc
- RELOC/fonts/enc/dvips/noto/nto_s4kl56.enc
RELOC/fonts/enc/dvips/noto/nto_scavxs.enc
RELOC/fonts/enc/dvips/noto/nto_sez6pn.enc
RELOC/fonts/enc/dvips/noto/nto_sg5txc.enc
- RELOC/fonts/enc/dvips/noto/nto_swkvov.enc
- RELOC/fonts/enc/dvips/noto/nto_tc2epv.enc
RELOC/fonts/enc/dvips/noto/nto_tu4uv7.enc
RELOC/fonts/enc/dvips/noto/nto_twgkjf.enc
RELOC/fonts/enc/dvips/noto/nto_uc5ky7.enc
RELOC/fonts/enc/dvips/noto/nto_ucmn45.enc
+ RELOC/fonts/enc/dvips/noto/nto_umxzhz.enc
RELOC/fonts/enc/dvips/noto/nto_uncbtn.enc
RELOC/fonts/enc/dvips/noto/nto_uoung7.enc
+ RELOC/fonts/enc/dvips/noto/nto_upvzdm.enc
RELOC/fonts/enc/dvips/noto/nto_urvlpy.enc
RELOC/fonts/enc/dvips/noto/nto_uvb24m.enc
RELOC/fonts/enc/dvips/noto/nto_uwtd6c.enc
RELOC/fonts/enc/dvips/noto/nto_v63ahm.enc
RELOC/fonts/enc/dvips/noto/nto_vfbpi4.enc
- RELOC/fonts/enc/dvips/noto/nto_vgqgh3.enc
- RELOC/fonts/enc/dvips/noto/nto_vrre3e.enc
+ RELOC/fonts/enc/dvips/noto/nto_vmq34i.enc
RELOC/fonts/enc/dvips/noto/nto_vuovel.enc
RELOC/fonts/enc/dvips/noto/nto_w43d4m.enc
RELOC/fonts/enc/dvips/noto/nto_wh7viy.enc
@@ -202813,19 +200586,21 @@ runfiles size=50596
RELOC/fonts/enc/dvips/noto/nto_wwfksr.enc
RELOC/fonts/enc/dvips/noto/nto_wxkdfs.enc
RELOC/fonts/enc/dvips/noto/nto_x4teop.enc
+ RELOC/fonts/enc/dvips/noto/nto_xffdr3.enc
RELOC/fonts/enc/dvips/noto/nto_xhwpwl.enc
RELOC/fonts/enc/dvips/noto/nto_xhxifo.enc
RELOC/fonts/enc/dvips/noto/nto_xmopsz.enc
RELOC/fonts/enc/dvips/noto/nto_xpfafm.enc
- RELOC/fonts/enc/dvips/noto/nto_xqbchv.enc
RELOC/fonts/enc/dvips/noto/nto_y2n3gg.enc
RELOC/fonts/enc/dvips/noto/nto_y52y4f.enc
+ RELOC/fonts/enc/dvips/noto/nto_y5jpaa.enc
+ RELOC/fonts/enc/dvips/noto/nto_ycidct.enc
RELOC/fonts/enc/dvips/noto/nto_yifqxs.enc
RELOC/fonts/enc/dvips/noto/nto_yyuepd.enc
RELOC/fonts/enc/dvips/noto/nto_zlkvl2.enc
RELOC/fonts/enc/dvips/noto/nto_zogsyl.enc
RELOC/fonts/enc/dvips/noto/nto_zpdbre.enc
- RELOC/fonts/enc/dvips/noto/nto_zpj5tn.enc
+ RELOC/fonts/enc/dvips/noto/nto_zyhgfd.enc
RELOC/fonts/map/dvips/noto/noto.map
RELOC/fonts/tfm/google/noto/NotoSans-Black-lf-lgr.tfm
RELOC/fonts/tfm/google/noto/NotoSans-Black-lf-ly1.tfm
@@ -215124,7 +212899,6 @@ runfiles size=50596
RELOC/tex/latex/noto/noto.sty
catalogue-contact-home https://www.google.com/get/noto/
catalogue-ctan /fonts/noto
-catalogue-date 2019-10-23 16:33:22 +0200
catalogue-license lpplofl
catalogue-topics font font-body font-proportional font-mono font-multilingual font-greek font-sans font-serif font-ttf font-type1 font-supp font-t1enc
@@ -215149,7 +212923,6 @@ docfiles size=58
runfiles size=1
RELOC/tex/latex/notoccite/notoccite.sty
catalogue-ctan /macros/latex/contrib/notoccite
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics headings cite-supp
@@ -215309,7 +213082,6 @@ runfiles size=104
RELOC/tex/lualatex/novel/novel-xmppacket.sty
RELOC/tex/lualatex/novel/novel.cls
catalogue-ctan /macros/luatex/latex/novel
-catalogue-date 2018-04-28 21:25:48 +0200
catalogue-license lppl1.3cofl
catalogue-topics luatex production book-pub class
catalogue-version 1.52
@@ -215336,7 +213108,6 @@ runfiles size=1
RELOC/tex/latex/nowidow/nowidow.sty
catalogue-contact-repository https://github.com/raphink/nowidow
catalogue-ctan /macros/latex/contrib/nowidow
-catalogue-date 2018-01-31 08:51:50 +0100
catalogue-license lppl1.3
catalogue-topics layout
catalogue-version 1.0
@@ -215359,7 +213130,6 @@ docfiles size=47
runfiles size=4
RELOC/tex/latex/nox/nox.sty
catalogue-ctan /macros/latex/contrib/nox
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics table-long table
catalogue-version 1.0
@@ -215411,7 +213181,6 @@ docfiles size=682
RELOC/doc/context/third/npp-for-context/doc/tagsmenu.jpg
catalogue-contact-repository https://github.com/luigiScarso/context-npp
catalogue-ctan /support/npp-for-context
-catalogue-date 2018-04-29 07:15:59 +0200
catalogue-license noinfo
catalogue-topics editor-extn
catalogue-version 0.98
@@ -215445,7 +213214,6 @@ runfiles size=34
RELOC/tex/latex/nrc/nrc2.cls
RELOC/tex/latex/nrc/nrc2.sty
catalogue-ctan /macros/latex/contrib/nrc
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics journalpub physics
catalogue-version 2.01a
@@ -215505,7 +213273,6 @@ runfiles size=73
RELOC/tex/latex/ntgclass/rapport1.cls
RELOC/tex/latex/ntgclass/rapport3.cls
catalogue-ctan /macros/latex/contrib/ntgclass
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics class letter
catalogue-version 2.1a
@@ -215540,7 +213307,6 @@ runfiles size=12
catalogue-also amsthm thmtools empheq
catalogue-contact-home http://user.informatik.uni-goettingen.de/~may/Ntheorem/
catalogue-ctan /macros/latex/contrib/ntheorem
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl
catalogue-topics maths-theorem
catalogue-version 1.33
@@ -215578,7 +213344,6 @@ docfiles size=145
RELOC/doc/latex/ntheorem-vn/test.pdf
RELOC/doc/latex/ntheorem-vn/test.tex
catalogue-ctan /info/translations/ntheorem/vn
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics vietnamese-doc translation
catalogue-version 1.203
@@ -215604,7 +213369,6 @@ docfiles size=23
runfiles size=3
RELOC/tex/latex/nuc/nuc.sty
catalogue-ctan /macros/latex/contrib/nuc
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics physics subsup-pos
catalogue-version 0.1
@@ -215639,7 +213403,6 @@ runfiles size=120
RELOC/tex/latex/nucleardata/nucleardata.pytxcode
RELOC/tex/latex/nucleardata/nucleardata.sty
catalogue-ctan /macros/latex/contrib/nucleardata
-catalogue-date 2018-04-05 06:30:46 +0200
catalogue-license lppl1.3
catalogue-topics callback physics chemistry
catalogue-version 1.1
@@ -215664,7 +213427,6 @@ docfiles size=21
runfiles size=2
RELOC/tex/latex/numberedblock/numberedblock.sty
catalogue-ctan /macros/latex/contrib/numberedblock
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics listing label-ref
catalogue-version 1.10
@@ -215699,7 +213461,6 @@ srcfiles size=5
runfiles size=2
RELOC/tex/latex/numberpt/numberpt.sty
catalogue-ctan /macros/latex/contrib/numberpt
-catalogue-date 2019-07-14 15:09:30 +0200
catalogue-license lppl1.3c
catalogue-topics portuguese numbers expl3
catalogue-version 1.0
@@ -215779,7 +213540,6 @@ runfiles size=16
RELOC/tex/latex/numericplots/NumericPlots_styles.tex
catalogue-also pst-plot pgfplots
catalogue-ctan /graphics/pstricks/contrib/numericplots
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl3
catalogue-topics graphics-plot
catalogue-version 2.0.2
@@ -215804,7 +213564,6 @@ docfiles size=30
runfiles size=5
RELOC/tex/latex/numname/numname.sty
catalogue-ctan /macros/latex/contrib/numname
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics numbers
@@ -215828,7 +213587,6 @@ runfiles size=3
RELOC/tex/latex/numnameru/numnameru.sty
catalogue-also numname
catalogue-ctan /macros/latex/contrib/numnameru
-catalogue-date 2018-01-07 12:14:32 +0100
catalogue-license lppl1.3
catalogue-topics numbers
@@ -215877,7 +213635,6 @@ runfiles size=17
RELOC/tex/latex/numprint/numprint.sty
RELOC/tex/latex/numprint/numprint032.sty
catalogue-ctan /macros/latex/contrib/numprint
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics numbers
catalogue-version 1.39
@@ -215907,7 +213664,6 @@ runfiles size=25
RELOC/tex/latex/numspell/numspell-magyar.sty
RELOC/tex/latex/numspell/numspell.sty
catalogue-ctan /macros/latex/contrib/numspell
-catalogue-date 2017-09-30 13:16:00 +0200
catalogue-license lppl1.3
catalogue-topics numbers multilingual english french german hungarian italian
catalogue-version 1.2
@@ -215983,7 +213739,6 @@ runfiles size=2104
RELOC/tex/latex/nwejm/nwejmart.cls
catalogue-contact-repository https://github.com/dbitouze/nwejm
catalogue-ctan /macros/latex/contrib/nwejm
-catalogue-date 2019-03-18 13:04:06 +0100
catalogue-license lppl1.3
catalogue-topics journalpub class
catalogue-version 0.98f
@@ -216266,7 +214021,6 @@ runfiles size=167
catalogue-contact-bugs https://github.com/ho-tex/oberdiek/issues
catalogue-contact-repository https://github.com/ho-tex/oberdiek
catalogue-ctan /macros/latex/contrib/oberdiek
-catalogue-date 2019-12-10 06:46:07 +0100
catalogue-license lppl1.3c
catalogue-topics collection
@@ -216299,7 +214053,6 @@ runfiles size=10
catalogue-also zed-csp
catalogue-contact-home http://www.itee.uq.edu.au/~smith/objectz.html
catalogue-ctan /macros/latex/contrib/objectz
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl
catalogue-topics formal-spec
@@ -216373,7 +214126,6 @@ runfiles size=680
RELOC/tex/latex/obnov/lcyw.cmap
RELOC/tex/latex/obnov/lcywobn.fd
catalogue-ctan /fonts/obnov
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics font font-mf font-cyrillic cyrillic
catalogue-version 0.11
@@ -216406,7 +214158,6 @@ docfiles size=187
runfiles size=4
RELOC/tex/latex/ocg-p/ocg-p.sty
catalogue-ctan /macros/latex/contrib/ocg-p
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics pdf-feat
catalogue-version 0.4
@@ -216443,7 +214194,6 @@ runfiles size=2
RELOC/tex/latex/ocgx/tikzlibraryocgx.code.tex
catalogue-also asymptote
catalogue-ctan /macros/latex/contrib/ocgx
-catalogue-date 2016-12-28 10:23:26 +0100
catalogue-license lppllppl
catalogue-topics pdf-feat
catalogue-version 0.5
@@ -216475,7 +214225,6 @@ runfiles size=18
catalogue-also ocgx ocg-p
catalogue-contact-repository https://gitlab.com/agrahn/ocgx2
catalogue-ctan /macros/latex/contrib/ocgx2
-catalogue-date 2019-11-08 15:21:24 +0100
catalogue-license lppl
catalogue-topics pdf-feat adobe-distiller expl3
catalogue-version 0.48
@@ -216526,7 +214275,6 @@ runfiles size=96
RELOC/tex/lambda/ocherokee/ocherokee.sty
catalogue-also omega
catalogue-ctan /language/cherokee/ocherokee
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics cherokee omega
@@ -216564,7 +214312,6 @@ runfiles size=28
RELOC/fonts/tfm/public/ocr-b/ocrb8.tfm
RELOC/fonts/tfm/public/ocr-b/ocrb9.tfm
catalogue-ctan /fonts/ocr-b
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license other-free
catalogue-topics font font-specialist font-mf
@@ -216609,7 +214356,6 @@ runfiles size=103
RELOC/fonts/type1/public/ocr-b-outline/ocrb8.pfb
RELOC/fonts/type1/public/ocr-b-outline/ocrb9.pfb
catalogue-ctan /fonts/ocr-b-outline
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license other-free
catalogue-topics font font-specialist font-type1 font-otf
@@ -216638,7 +214384,6 @@ runfiles size=8
RELOC/tex/latex/ocr-latex/ot1ocrbo.fd
RELOC/tex/latex/ocr-latex/ot1ocrbs.fd
catalogue-ctan /macros/latex/contrib/ocr-latex
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics font-supp
@@ -216665,7 +214410,6 @@ runfiles size=2
RELOC/tex/latex/octave/octave.sty
catalogue-contact-repository https://bitbucket.org/andrewacashner/octave
catalogue-ctan /macros/latex/contrib/octave
-catalogue-date 2017-10-31 23:20:06 +0100
catalogue-license lppl1.3
catalogue-topics music
@@ -216704,7 +214448,6 @@ runfiles size=11
RELOC/tex/latex/octavo/oct12.clo
RELOC/tex/latex/octavo/octavo.cls
catalogue-ctan /macros/latex/contrib/octavo
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license lppl
catalogue-topics book-pub class
catalogue-version 1.2
@@ -216732,7 +214475,6 @@ runfiles size=4
RELOC/tex/lualatex/odsfile/odsfile.lua
RELOC/tex/lualatex/odsfile/odsfile.sty
catalogue-ctan /macros/luatex/latex/odsfile
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics foreign-import table luatex
catalogue-version 0.6
@@ -216805,7 +214547,6 @@ runfiles size=93
catalogue-also plnfss font-selection fontch
catalogue-contact-home http://petr.olsak.net/ofs.html
catalogue-ctan /macros/generic/ofs
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license knuth
catalogue-topics font-sel plain-ext
@@ -216832,7 +214573,6 @@ runfiles size=3
catalogue-contact-repository https://github.com/rf-latex/ogham
catalogue-contact-support https://github.com/rf-latex/ogham/issues
catalogue-ctan /fonts/ogham
-catalogue-date 2018-09-15 15:44:01 +0200
catalogue-license pd
catalogue-topics font font-mf font-archaic
@@ -216890,7 +214630,6 @@ runfiles size=563
RELOC/tex/lambda/oinuit/litenc.def
RELOC/tex/lambda/oinuit/oinuit.sty
catalogue-ctan /language/inuktitut/oinuit
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics other-lang omega
@@ -216960,7 +214699,6 @@ runfiles size=55
RELOC/fonts/type1/public/old-arrows/oasy9.pfm
RELOC/tex/latex/old-arrows/old-arrows.sty
catalogue-ctan /fonts/old-arrows
-catalogue-date 2017-01-05 17:35:49 +0100
catalogue-license lppl1.3
catalogue-topics font-symbol-maths font-type1
catalogue-version 2.0
@@ -217088,7 +214826,6 @@ runfiles size=112
RELOC/fonts/tfm/public/oldlatin/oltt9.tfm
RELOC/fonts/tfm/public/oldlatin/olvtt10.tfm
catalogue-ctan /fonts/gothic/oldlatin
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics font font-mf font-historical
catalogue-version 1.00
@@ -217335,7 +215072,6 @@ runfiles size=768
catalogue-contact-bugs https://gitlab.com/ralessi/oldstandard/issues
catalogue-contact-home http://git.robertalessi.net/oldstandard
catalogue-ctan /fonts/oldstandard
-catalogue-date 2019-07-26 18:00:30 +0200
catalogue-license ofllpplgpl
catalogue-topics font font-body font-serif font-proportional font-multilingual font-cyrillic font-greek font-type1 font-otf font-supp font-t1enc
catalogue-version 2.4a
@@ -217365,7 +215101,6 @@ catalogue-also eco
catalogue-contact-repository https://github.com/rf-latex/oldstyle
catalogue-contact-support https://github.com/rf-latex/oldstyle/issues
catalogue-ctan /macros/latex/contrib/oldstyle
-catalogue-date 2018-09-15 15:48:11 +0200
catalogue-license lppl
catalogue-topics font-supp
catalogue-version 0.2
@@ -217409,7 +215144,6 @@ runfiles size=31
RELOC/tex/generic/olsak-misc/xmlparser.tex
catalogue-contact-home http://petr.olsak.net/ftp/olsak/makra/
catalogue-ctan /macros/generic/olsak-misc
-catalogue-date 2019-05-08 22:09:09 +0200
catalogue-license pd
catalogue-topics misc-support
catalogue-version May 2019
@@ -217786,7 +215520,6 @@ runfiles size=1523
RELOC/tex/plain/omega/grlccode.tex
RELOC/tex/plain/omega/omega.tex
catalogue-ctan /obsolete/systems/omega
-catalogue-date 2017-04-24 05:22:45 +0200
catalogue-license gpl
catalogue-topics engine omega obsolete
@@ -217827,7 +215560,6 @@ docfiles size=61
texmf-dist/doc/man/man1/ovp2ovf.1
texmf-dist/doc/man/man1/ovp2ovf.man1.pdf
catalogue-ctan /obsolete/systems/omega
-catalogue-date 2017-04-24 05:22:45 +0200
catalogue-license gpl
catalogue-topics engine omega obsolete
@@ -218230,7 +215962,6 @@ runfiles size=37
RELOC/tex/latex/onedown/ODw-turkish.trsl
RELOC/tex/latex/onedown/onedown.sty
catalogue-ctan /macros/latex/contrib/onedown
-catalogue-date 2019-10-24 16:04:43 +0200
catalogue-license lppl1.3
catalogue-topics games
catalogue-version 1.4
@@ -218264,7 +215995,6 @@ runfiles size=1
RELOC/tex/latex/onlyamsmath/onlyamsmath.sty
catalogue-also nag
catalogue-ctan /macros/latex/contrib/onlyamsmath
-catalogue-date 2017-01-10 23:29:26 +0100
catalogue-license lppl
catalogue-topics maths latex-qual
catalogue-version 0.20
@@ -218292,7 +216022,6 @@ docfiles size=60
runfiles size=2
RELOC/tex/latex/onrannual/onrannual.cls
catalogue-ctan /macros/latex/contrib/onrannual
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics report-like
catalogue-version 1.1
@@ -218326,7 +216055,6 @@ runfiles size=8
RELOC/bibtex/bst/opcit/opcit.bst
RELOC/tex/latex/opcit/opcit.sty
catalogue-ctan /macros/latex/contrib/opcit
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics bibtex-supp footnote
catalogue-version 1.1
@@ -219688,7 +217416,6 @@ runfiles size=2020
RELOC/tex/latex/opensans/X2opensans-TOsF.fd
RELOC/tex/latex/opensans/opensans.sty
catalogue-ctan /fonts/opensans
-catalogue-date 2019-06-24 23:03:10 +0200
catalogue-license apache2lppl1.3c
catalogue-topics font font-type1 font-ttf font-sans
catalogue-version 2.2
@@ -219717,7 +217444,6 @@ runfiles size=10
catalogue-also comprehensive
catalogue-contact-repository https://github.com/micheld93/oPlotSymbl-LaTeX
catalogue-ctan /macros/latex/contrib/oplotsymbl
-catalogue-date 2017-08-04 18:01:52 +0200
catalogue-license lppl1.3
catalogue-topics graphics-symb pgf-tikz
catalogue-version 1.4
@@ -219745,7 +217471,6 @@ runfiles size=5
RELOC/tex/latex/opteng/opteng.sty
catalogue-also spie
catalogue-ctan /macros/latex/contrib/opteng
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics journalpub
catalogue-version 1.0
@@ -219784,7 +217509,6 @@ runfiles size=7
catalogue-contact-bugs https://github.com/jeslago/optidef/issues
catalogue-contact-repository https://github.com/jeslago/optidef
catalogue-ctan /macros/latex/contrib/optidef
-catalogue-date 2019-04-23 21:57:10 +0200
catalogue-license lppl1.3
catalogue-topics maths
catalogue-version 3.1
@@ -219812,7 +217536,6 @@ docfiles size=77
runfiles size=2
RELOC/tex/latex/optional/optional.sty
catalogue-ctan /macros/latex/contrib/optional
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics cond-comp editorial
catalogue-version 2.2b
@@ -219838,7 +217561,6 @@ runfiles size=13
RELOC/tex/latex/options/options.sty
catalogue-also keyval pgfkeys xkeyval
catalogue-ctan /macros/latex/contrib/options
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics keyval
catalogue-version 1.0
@@ -219869,7 +217591,6 @@ srcfiles size=5
runfiles size=2
RELOC/tex/latex/ordinalpt/ordinalpt.sty
catalogue-ctan /macros/latex/contrib/ordinalpt
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics numbers portuguese
catalogue-version 2.1
@@ -219902,7 +217623,6 @@ runfiles size=21
RELOC/fonts/tfm/public/orkhun/orhant20.tfm
RELOC/fonts/tfm/public/orkhun/orhant25.tfm
catalogue-ctan /fonts/orkhun
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics turkish
@@ -219933,7 +217653,6 @@ runfiles size=55
RELOC/tex/latex/oscola/oscola.bbx
RELOC/tex/latex/oscola/oscola.cbx
catalogue-ctan /macros/latex/contrib/biblatex-contrib/oscola
-catalogue-date 2019-01-20 10:41:30 +0100
catalogue-license lppl1.3
catalogue-topics legal biblatex
catalogue-version 1.6
@@ -219959,7 +217678,6 @@ docfiles size=25
runfiles size=2
RELOC/tex/latex/ot-tableau/ot-tableau.sty
catalogue-ctan /macros/latex/contrib/ot-tableau
-catalogue-date 2017-07-25 17:13:01 +0200
catalogue-license lppl
catalogue-topics linguistic
@@ -220008,7 +217726,6 @@ runfiles size=41
RELOC/fonts/tfm/public/othello/ot1whi20.tfm
RELOC/tex/latex/othello/othello.sty
catalogue-ctan /macros/latex/contrib/othello
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics games font font-mf font-specialist
@@ -220036,7 +217753,6 @@ runfiles size=18
RELOC/tex/latex/othelloboard/othelloboard.sty
catalogue-also othello
catalogue-ctan /macros/latex/contrib/othelloboard
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics games
catalogue-version 1.2
@@ -220123,7 +217839,6 @@ docfiles size=19
runfiles size=1
RELOC/tex/latex/oubraces/oubraces.sty
catalogue-ctan /macros/latex/contrib/oubraces
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license other-free
catalogue-topics maths
@@ -220146,7 +217861,6 @@ docfiles size=66
runfiles size=1
RELOC/tex/latex/outline/outline.sty
catalogue-ctan /macros/latex/contrib/outline
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics list list-enum
@@ -220169,7 +217883,6 @@ docfiles size=1
runfiles size=3
RELOC/tex/latex/outliner/outliner.sty
catalogue-ctan /macros/latex/contrib/outliner
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics headings
catalogue-version 0.94
@@ -220196,7 +217909,6 @@ docfiles size=37
runfiles size=2
RELOC/tex/latex/outlines/outlines.sty
catalogue-ctan /macros/latex/contrib/outlines
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics list
catalogue-version 1.1
@@ -220227,7 +217939,6 @@ catalogue-contact-announce https://github.com/dimitriblock/latex-outlining/relea
catalogue-contact-bugs https://github.com/dimitriblock/latex-outlining/issues
catalogue-contact-repository https://github.com/dimitriblock/latex-outlining
catalogue-ctan /macros/latex/contrib/outlining
-catalogue-date 2017-10-27 05:58:14 +0200
catalogue-license lppl1.3
catalogue-topics outline
catalogue-version 0.1
@@ -220258,7 +217969,6 @@ runfiles size=2
RELOC/tex/latex/overlays/overlays.sty
catalogue-also beamer
catalogue-ctan /macros/latex/contrib/overlays
-catalogue-date 2017-12-22 07:37:34 +0100
catalogue-license lppl1.3
catalogue-topics presentation
catalogue-version 2.10
@@ -220386,7 +218096,6 @@ runfiles size=270
RELOC/tex/latex/overlock/TS1Overlock-LF.fd
RELOC/tex/latex/overlock/overlock.sty
catalogue-ctan /fonts/overlock
-catalogue-date 2019-10-16 15:48:05 +0200
catalogue-license ofl
catalogue-topics font font-sans font-ttf font-type1
@@ -220419,7 +218128,6 @@ catalogue-contact-bugs https://github.com/rolfn/overpic/issues
catalogue-contact-home https://github.com/rolfn/overpic
catalogue-contact-repository https://github.com/rolfn/overpic
catalogue-ctan /macros/latex/contrib/overpic
-catalogue-date 2018-09-02 16:18:17 +0200
catalogue-license lppl1.3
catalogue-topics graphics-text
catalogue-version 1.2
@@ -220461,7 +218169,6 @@ runfiles size=23
RELOC/tex/latex/pacioli/pacioli.sty
RELOC/tex/latex/pacioli/t1cpc.fd
catalogue-ctan /fonts/pacioli
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics font font-mf font-historical
@@ -220489,7 +218196,6 @@ runfiles size=418
RELOC/fonts/truetype/public/padauk/PadaukBook-Regular.ttf
catalogue-contact-home http://software.sil.org/padauk/
catalogue-ctan /fonts/padauk
-catalogue-date 2018-01-07 12:14:32 +0100
catalogue-license ofl
catalogue-topics font-ttf
catalogue-version 3.002
@@ -220522,7 +218228,6 @@ srcfiles size=3
runfiles size=1
RELOC/tex/latex/padcount/padcount.sty
catalogue-ctan /macros/latex/contrib/padcount
-catalogue-date 2018-05-07 04:39:01 +0200
catalogue-license lppl1.3c
catalogue-topics numbers
catalogue-version 1.0
@@ -220557,7 +218262,6 @@ srcfiles size=15
runfiles size=3
RELOC/tex/latex/pagecolor/pagecolor.sty
catalogue-ctan /macros/latex/contrib/pagecolor
-catalogue-date 2017-05-29 13:22:07 +0200
catalogue-license lppl1.3c
catalogue-topics colour
catalogue-version 1.0i
@@ -220585,7 +218289,6 @@ srcfiles size=3
runfiles size=1
RELOC/tex/latex/pagecont/pagecont.sty
catalogue-ctan /macros/latex/contrib/pagecont
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics page-nos
catalogue-version 1.0
@@ -220614,7 +218317,6 @@ runfiles size=2
RELOC/tex/latex/pagenote/pagenote.sty
catalogue-also endnote
catalogue-ctan /macros/latex/contrib/pagenote
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics notes
catalogue-version 1.1a
@@ -220639,7 +218341,6 @@ runfiles size=3
RELOC/tex/latex/pagerange/pagerange-guide.cfg
RELOC/tex/latex/pagerange/pagerange.sty
catalogue-ctan /macros/latex/contrib/pagerange
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics label-ref macro-supp
catalogue-version 0.5
@@ -220676,7 +218377,6 @@ srcfiles size=56
runfiles size=12
RELOC/tex/latex/pageslts/pageslts.sty
catalogue-ctan /macros/latex/contrib/pageslts
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics label-ref
catalogue-version 1.2f
@@ -220923,7 +218623,6 @@ runfiles size=388
RELOC/tex/latex/palatino/ts1upl.fd
catalogue-also tex-gyre
catalogue-ctan /fonts/urw/base35
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics font font-type1 font-collection
@@ -220961,7 +218660,6 @@ runfiles size=12
RELOC/tex/latex/paper/paper.cls
RELOC/tex/latex/paper/paper.sty
catalogue-ctan /macros/latex/contrib/paper
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license gpl
catalogue-topics journalpub
catalogue-version 1.0l
@@ -220989,7 +218687,6 @@ srcfiles size=12
runfiles size=6
RELOC/tex/latex/papercdcase/papercdcase.sty
catalogue-ctan /macros/latex/contrib/papercdcase
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics covers
@@ -221019,7 +218716,6 @@ srcfiles size=15
runfiles size=3
RELOC/tex/latex/papermas/papermas.sty
catalogue-ctan /macros/latex/contrib/papermas
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics calculation
catalogue-version 1.0h
@@ -221056,7 +218752,6 @@ srcfiles size=16
runfiles size=6
RELOC/tex/latex/papertex/papertex.cls
catalogue-ctan /macros/latex/contrib/papertex
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics magazine
catalogue-version 1.2b
@@ -221095,7 +218790,6 @@ runfiles size=26
RELOC/tex/latex/paracol/paracol.sty
catalogue-also parallel parcolumns
catalogue-ctan /macros/latex/contrib/paracol
-catalogue-date 2018-12-31 09:38:06 +0100
catalogue-license lppl
catalogue-topics parallel linguistic
catalogue-version 1.35
@@ -221128,7 +218822,6 @@ docfiles size=67
runfiles size=1
RELOC/tex/latex/parades/paravesp.sty
catalogue-ctan /macros/latex/contrib/parades
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics parshape
@@ -221158,7 +218851,6 @@ runfiles size=4
RELOC/tex/latex/paralist/paralist.sty
catalogue-also shortlst multenum
catalogue-ctan /macros/latex/contrib/paralist
-catalogue-date 2017-01-22 18:34:47 +0100
catalogue-license lppl
catalogue-topics list list-bull list-enum
catalogue-version 2.7
@@ -221193,7 +218885,6 @@ runfiles size=4
RELOC/tex/latex/parallel/parallel.sty
catalogue-also parcolumns paracol
catalogue-ctan /macros/latex/contrib/parallel
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics parallel
@@ -221992,7 +219683,6 @@ runfiles size=5365
RELOC/tex/latex/paratype/X2PTSerifCaption-TLF.fd
RELOC/tex/latex/paratype/paratype.sty
catalogue-ctan /fonts/paratype
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics font font-sans font-mono font-type1 font-ttf
@@ -222029,7 +219719,6 @@ runfiles size=5
RELOC/tex/latex/paresse/paresseold.sto
RELOC/tex/latex/paresse/paresseutf8.sto
catalogue-ctan /macros/latex/contrib/paresse
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license lppl
catalogue-topics shortcut
catalogue-version 4.1
@@ -222053,7 +219742,6 @@ docfiles size=20
runfiles size=3
RELOC/tex/latex/parnotes/parnotes.sty
catalogue-ctan /macros/latex/contrib/parnotes
-catalogue-date 2019-07-23 22:24:03 +0200
catalogue-license lppl1.3
catalogue-topics notes
catalogue-version 3b
@@ -222081,7 +219769,6 @@ runfiles size=3
RELOC/tex/latex/parrun/parrun.sty
catalogue-also parallel
catalogue-ctan /macros/latex/contrib/parrun
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics parallel
@@ -222109,7 +219796,6 @@ srcfiles size=9
runfiles size=1
RELOC/tex/latex/parselines/parselines.sty
catalogue-ctan /macros/latex/contrib/parselines
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics decoration macro-supp
catalogue-version 1.4
@@ -222144,7 +219830,6 @@ runfiles size=3
catalogue-contact-bugs https://github.com/FrankMittelbach/fmitex/issues
catalogue-contact-repository https://github.com/FrankMittelbach/fmitex
catalogue-ctan /macros/latex/contrib/parskip
-catalogue-date 2019-01-16 16:42:25 +0100
catalogue-license lppl1.3c
catalogue-topics layout parshape
catalogue-version 2.0c
@@ -222178,7 +219863,6 @@ docfiles size=70
runfiles size=2
RELOC/tex/latex/pas-cours/pas-cours.sty
catalogue-ctan /macros/latex/contrib/pas-cours
-catalogue-date 2016-09-11 17:02:12 +0200
catalogue-license lppl
catalogue-topics teaching
catalogue-version 1.6
@@ -222203,7 +219887,6 @@ runfiles size=2
RELOC/tex/latex/pas-crosswords/pas-crosswords.sty
catalogue-also crosswrd crossword
catalogue-ctan /macros/latex/contrib/pas-crosswords
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics games pgf-tikz
catalogue-version 1.03
@@ -222275,7 +219958,6 @@ runfiles size=21
RELOC/tex/latex/pas-cv/macro-venus.tex
RELOC/tex/latex/pas-cv/pas-cv.sty
catalogue-ctan /macros/latex/contrib/pas-cv
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics cv
catalogue-version 2.01
@@ -222301,7 +219983,6 @@ docfiles size=8
runfiles size=3
RELOC/tex/latex/pas-tableur/pas-tableur.sty
catalogue-ctan /macros/latex/contrib/pas-tableur
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics alignment pgf-tikz
catalogue-version 2.01
@@ -222328,7 +220009,6 @@ runfiles size=79
RELOC/tex/xmltex/passivetex/ucharacters.sty
RELOC/tex/xmltex/passivetex/unicode.sty
catalogue-ctan /macros/xmltex/contrib/passivetex
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license other-free
catalogue-topics foreign-import
@@ -222353,7 +220033,6 @@ srcfiles size=7
RELOC/source/generic/patch/patch.doc
catalogue-also patchcmd etoolbox
catalogue-ctan /macros/generic/misc/patch.doc
-catalogue-date 2016-07-19 10:17:45 +0200
catalogue-license lppl
catalogue-topics macro-supp
@@ -222382,7 +220061,6 @@ srcfiles size=3
runfiles size=1
RELOC/tex/latex/patchcmd/patchcmd.sty
catalogue-ctan /macros/latex/contrib/patchcmd
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics macro-supp
catalogue-version 1.05
@@ -222409,7 +220087,6 @@ catalogue-contact-bugs http://lists.tug.org/tex-k
catalogue-contact-repository http://tug.org/svn/texlive/trunk/Build/source/texk/web2c/
catalogue-contact-support http://lists.tug.org/tex-k
catalogue-ctan /obsolete/systems/knuth/unsupported/patgen
-catalogue-date 2019-01-05 09:49:23 +0100
catalogue-license knuth
catalogue-topics hyph-gen
catalogue-version 2.3
@@ -222573,7 +220250,6 @@ docfiles size=20
RELOC/doc/support/patgen2-tutorial/patgen2.pdf details="The document itself" language="en"
RELOC/doc/support/patgen2-tutorial/patgen2.tex
catalogue-ctan /info/patgen2
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics tutorial
@@ -222598,7 +220274,6 @@ runfiles size=4
RELOC/tex/generic/path/path.sty
catalogue-also url
catalogue-ctan /macros/generic/path
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license other-free
catalogue-topics verbatim
catalogue-version 3.05
@@ -222625,7 +220300,6 @@ srcfiles size=6
runfiles size=1
RELOC/tex/latex/pauldoc/pauldoc.sty
catalogue-ctan /macros/latex/contrib/pauldoc
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics doc-supp german-doc
catalogue-version 0.5
@@ -222652,7 +220326,6 @@ srcfiles size=10
runfiles size=1
RELOC/tex/latex/pawpict/pawpict.sty
catalogue-ctan /macros/latex/contrib/pawpict
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics physics graphics-prep
catalogue-version 1.0
@@ -222695,7 +220368,6 @@ runfiles size=10
texmf-dist/tex/latex/pax/pax.sty
catalogue-also pdftex
catalogue-ctan /macros/latex/contrib/pax
-catalogue-date 2016-12-28 10:23:26 +0100
catalogue-license lpplgpl
catalogue-topics pdf-feat
catalogue-version 0.1l
@@ -222865,7 +220537,6 @@ runfiles size=19
RELOC/tex/latex/pb-diagram/pb-lams.sty
RELOC/tex/latex/pb-diagram/pb-xy.sty
catalogue-ctan /macros/latex/contrib/pb-diagram
-catalogue-date 2016-06-18 16:48:54 +0200
catalogue-license other-free
catalogue-topics diagram-comm
catalogue-version 5.0
@@ -222911,7 +220582,6 @@ runfiles size=61
RELOC/pbibtex/bst/tipsj.bst
catalogue-contact-repository https://github.com/texjporg/pbibtex-base
catalogue-ctan /biblio/pbibtex/base
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license bsd3
catalogue-topics biblio japanese
@@ -222946,7 +220616,6 @@ runfiles size=1
RELOC/tex/latex/pbox/pbox.sty
catalogue-also varwidth
catalogue-ctan /macros/latex/contrib/pbox
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl2
catalogue-topics boxing
catalogue-version 1.2
@@ -222989,7 +220658,6 @@ srcfiles size=7
runfiles size=5
RELOC/tex/latex/pbsheet/pbsheet.cls
catalogue-ctan /macros/latex/contrib/pbsheet
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics exercise
catalogue-version 0.1
@@ -223013,7 +220681,6 @@ runfiles size=12
RELOC/tex/generic/pdf-trans/pdf-trans.tex
catalogue-also trans
catalogue-ctan /macros/generic/pdf-trans
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics box-manip
catalogue-version 2.4
@@ -223046,7 +220713,6 @@ srcfiles size=3
runfiles size=1
RELOC/tex/latex/pdf14/pdf14.sty
catalogue-ctan /macros/latex/contrib/pdf14
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics pdf-feat
catalogue-version 0.1
@@ -223071,7 +220737,6 @@ runfiles size=3
catalogue-contact-bugs https://bitbucket.org/OpCode-eu-org/latex-libs/issues
catalogue-contact-repository https://bitbucket.org/OpCode-eu-org/latex-libs
catalogue-ctan /macros/luatex/latex/pdfarticle
-catalogue-date 2019-05-14 05:33:12 +0200
catalogue-license mit
catalogue-topics class pdfprocess
catalogue-version 1.0
@@ -223103,7 +220768,6 @@ runfiles size=3
texmf-dist/scripts/pdfbook2/pdfbook2
catalogue-also pdfbook
catalogue-ctan /support/pdfbook2
-catalogue-date 2019-08-17 05:12:30 +0200
catalogue-license gpl3
catalogue-topics pdfprocess
catalogue-version 1.3
@@ -223272,7 +220936,6 @@ runfiles size=1
catalogue-contact-bugs https://github.com/ho-tex/pdfcolmk/issues
catalogue-contact-repository https://github.com/ho-tex/pdfcolmk
catalogue-ctan /macros/latex/contrib/pdfcolmk
-catalogue-date 2019-11-24 21:15:10 +0100
catalogue-license lppl1.3c
catalogue-topics colour obsolete
catalogue-version 2.0
@@ -223322,7 +220985,6 @@ runfiles size=24
RELOC/tex/latex/pdfcomment/pdfcomment.sty
catalogue-contact-home http://pdfcomment.jklatex.de/
catalogue-ctan /macros/latex/contrib/pdfcomment
-catalogue-date 2018-11-01 13:19:56 +0100
catalogue-license lppl1.3
catalogue-topics pdf-feat
catalogue-version 2.4a
@@ -223363,7 +221025,6 @@ runfiles size=14
RELOC/tex/latex/pdfcprot/pplmnTS1.cpa
catalogue-also microtype
catalogue-ctan /macros/latex/contrib/pdfcprot
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics micro-layout
catalogue-version 1.7a
@@ -223384,7 +221045,6 @@ docfiles size=3
runfiles size=10
texmf-dist/scripts/pdfcrop/pdfcrop.pl
catalogue-ctan /support/pdfcrop
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license lppl
catalogue-topics pdfprocess
catalogue-version 1.37
@@ -223573,7 +221233,6 @@ runfiles size=5
catalogue-contact-bugs https://github.com/ho-tex/pdfescape/issues
catalogue-contact-repository https://github.com/ho-tex/pdfescape
catalogue-ctan /macros/latex/contrib/pdfescape
-catalogue-date 2019-12-10 06:31:47 +0100
catalogue-license lppl1.3
catalogue-topics macro-supp
catalogue-version 1.15
@@ -223609,7 +221268,6 @@ catalogue-contact-bugs https://github.com/DavidFirth/pdfjam/issues
catalogue-contact-home https://github.com/DavidFirth/pdfjam
catalogue-contact-repository https://github.com/DavidFirth/pdfjam
catalogue-ctan /support/pdfjam
-catalogue-date 2019-11-18 16:07:51 +0100
catalogue-license gpl2+
catalogue-topics pdfprocess
catalogue-version 3.03
@@ -223768,7 +221426,6 @@ docfiles size=35
runfiles size=2
texmf-dist/scripts/pdflatexpicscale/pdflatexpicscale.pl
catalogue-ctan /support/pdflatexpicscale
-catalogue-date 2018-02-12 13:02:17 +0100
catalogue-license lppl
catalogue-topics graphics-prep
catalogue-version 0.32
@@ -223943,7 +221600,6 @@ catalogue-also lscape
catalogue-contact-bugs https://github.com/ho-tex/pdflscape/issues
catalogue-contact-repository https://github.com/ho-tex/pdflscape
catalogue-ctan /macros/latex/contrib/pdflscape
-catalogue-date 2019-12-06 05:35:20 +0100
catalogue-license lppl1.3
catalogue-topics landscape layout
catalogue-version 0.12
@@ -223978,7 +221634,6 @@ runfiles size=2
RELOC/tex/latex/pdfmarginpar/pdfmarginpar.sty
catalogue-also pdfcomment
catalogue-ctan /macros/latex/contrib/pdfmarginpar
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license gpl
catalogue-topics pdf-feat
catalogue-version 0.92
@@ -224019,7 +221674,6 @@ runfiles size=2
catalogue-contact-bugs https://github.com/dcpurton/pdfoverlay/issues
catalogue-contact-repository https://github.com/dcpurton/pdfoverlay
catalogue-ctan /macros/latex/contrib/pdfoverlay
-catalogue-date 2019-11-03 14:46:06 +0100
catalogue-license lppl1.3c
catalogue-topics graphics-incl
catalogue-version 1.1
@@ -224051,7 +221705,6 @@ docfiles size=294
runfiles size=2
RELOC/tex/latex/pdfpagediff/pdfpagediff.sty
catalogue-ctan /macros/latex/contrib/pdfpagediff
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1
catalogue-topics pdf-view pdfprocess
catalogue-version 1.4
@@ -224100,7 +221753,6 @@ runfiles size=24
RELOC/tex/latex/pdfpages/ppvtex.def
RELOC/tex/latex/pdfpages/ppxetex.def
catalogue-ctan /macros/latex/contrib/pdfpages
-catalogue-date 2019-11-22 08:24:45 +0100
catalogue-license lppl1.3c
catalogue-topics graphics-incl
catalogue-version 0.5o
@@ -224135,7 +221787,6 @@ runfiles size=2
catalogue-contact-bugs https://gitlab.com/SFr682k/pdfpc-movie/issues
catalogue-contact-repository https://gitlab.com/SFr682k/pdfpc-movie
catalogue-ctan /macros/latex/contrib/pdfpc-movie
-catalogue-date 2018-07-23 05:30:43 +0200
catalogue-license lppl1.3c
catalogue-topics pdf-view multimedia presentation
catalogue-version 1.0
@@ -224170,7 +221821,6 @@ runfiles size=1
catalogue-contact-bugs https://github.com/LaurensS/pdfprivacy/issues
catalogue-contact-repository https://github.com/LaurensS/pdfprivacy
catalogue-ctan /macros/latex/contrib/pdfprivacy
-catalogue-date 2017-12-05 05:27:30 +0100
catalogue-license lppl1.3c
catalogue-topics pdf-feat pdf-view pdfprocess
catalogue-version 1.0
@@ -224213,7 +221863,6 @@ docfiles size=165
runfiles size=5
RELOC/tex/latex/pdfreview/pdfreview.sty
catalogue-ctan /macros/latex/contrib/pdfreview
-catalogue-date 2019-02-22 22:30:44 +0100
catalogue-license lppl
catalogue-topics graphics-incl marginal editorial teaching
catalogue-version 1.2
@@ -224266,7 +221915,6 @@ runfiles size=61
RELOC/tex/latex/pdfscreen/pdfscreen.sty
RELOC/tex/latex/pdfscreen/right.pdf
catalogue-ctan /macros/latex/contrib/pdfscreen
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics hyper presentation
catalogue-version 1.5
@@ -224307,7 +221955,6 @@ runfiles size=25
RELOC/tex/latex/pdfslide/slide.clo
catalogue-also prosper
catalogue-ctan /macros/latex/contrib/pdfslide
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics presentation
@@ -224333,7 +221980,6 @@ runfiles size=3
catalogue-also vpe
catalogue-contact-repository http://itexmac.sourceforge.net/pdfsync.html
catalogue-ctan /macros/latex/contrib/pdfsync
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl
catalogue-topics debug-supp
@@ -224437,7 +222083,6 @@ catalogue-contact-bugs https://mailman.ntg.nl/mailman/listinfo/ntg-pdftex
catalogue-contact-home http://www.pdftex.org
catalogue-contact-repository https://tug.org/svn/pdftex/branches/stable
catalogue-contact-support http://lists.tug.org/pdftex
-catalogue-date 2017-11-29 01:13:44 +0100
catalogue-license gpl
catalogue-topics engine
@@ -224462,7 +222107,6 @@ runfiles size=2
texmf-dist/scripts/pdftex-quiet/pdftex-quiet
catalogue-contact-repository https://gitlab.com/jirislav/pdftex-quiet
catalogue-ctan /support/pdftex-quiet
-catalogue-date 2018-11-15 16:55:01 +0100
catalogue-license gpl3
catalogue-topics compilation
catalogue-version 1.1.0
@@ -224820,7 +222464,6 @@ runfiles size=8
catalogue-contact-bugs https://github.com/ho-tex/pdftexcmds/issues
catalogue-contact-repository https://github.com/ho-tex/pdftexcmds
catalogue-ctan /macros/latex/contrib/pdftexcmds
-catalogue-date 2019-11-24 18:35:43 +0100
catalogue-license lppl1.3c
catalogue-topics macro-supp
catalogue-version 0.31
@@ -225014,7 +222657,6 @@ runfiles size=4
RELOC/tex/latex/pdftricks/pdftricks.sty
catalogue-also pst-pdf
catalogue-ctan /graphics/pdftricks
-catalogue-date 2018-09-15 12:29:58 +0200
catalogue-license gpl
catalogue-topics callback pstricks
catalogue-version 1.16
@@ -225039,7 +222681,6 @@ runfiles size=6
RELOC/tex/latex/pdftricks2/pdftricks2.sty
catalogue-also pdftricks
catalogue-ctan /graphics/pdftricks2
-catalogue-date 2018-09-15 12:32:24 +0200
catalogue-license gpl2
catalogue-topics callback pstricks
catalogue-version 1.01
@@ -225135,7 +222776,6 @@ runfiles size=215
RELOC/tex/latex/pdfx/pdfx.xmp
RELOC/tex/latex/pdfx/text89.def
catalogue-ctan /macros/latex/contrib/pdfx
-catalogue-date 2019-03-10 21:28:05 +0100
catalogue-license lppl
catalogue-topics pdf-feat
catalogue-version 1.6.3
@@ -225161,7 +222801,6 @@ docfiles size=10
runfiles size=7
texmf-dist/scripts/pdfxup/pdfxup
catalogue-ctan /support/pdfxup
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics pdfprocess
catalogue-version 1.30
@@ -225327,7 +222966,6 @@ runfiles size=11
RELOC/tex/latex/pecha/ctibmantra.sty
RELOC/tex/latex/pecha/pecha.cls
catalogue-ctan /language/tibetan/pecha
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics tibetan
catalogue-version 0.1
@@ -225401,7 +223039,6 @@ runfiles size=28
texmf-dist/scripts/pedigree-perl/Pedigree/TwinsNode.pm
texmf-dist/scripts/pedigree-perl/pedigree.pl
catalogue-ctan /graphics/pstricks/contrib/pedigree/pedigree-perl
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl2
catalogue-topics humanities csv-support
catalogue-version 1.0
@@ -225581,7 +223218,6 @@ runfiles size=17
catalogue-contact-bugs https://github.com/loopspace/penrose/issues
catalogue-contact-repository https://github.com/loopspace/penrose
catalogue-ctan /graphics/pgf/contrib/penrose
-catalogue-date 2018-07-15 05:58:11 +0200
catalogue-license lppl1.3c
catalogue-topics maths pgf-tikz
catalogue-version 1.0
@@ -225601,7 +223237,6 @@ docfiles size=1
runfiles size=8
RELOC/bibtex/bst/perception/perception.bst
catalogue-ctan /biblio/bibtex/contrib/perception
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics bibtex-sty journalpub
@@ -225635,7 +223270,6 @@ catalogue-contact-bugs https://gitlab.com/gadmm/perfectcut/issues
catalogue-contact-home https://gitlab.com/gadmm/perfectcut
catalogue-contact-repository https://gitlab.com/gadmm/perfectcut.git
catalogue-ctan /macros/latex/contrib/perfectcut
-catalogue-date 2019-07-26 20:58:24 +0200
catalogue-license lppl1.3
catalogue-topics paren-mgmt comp-theory maths
catalogue-version 2.3
@@ -225676,7 +223310,6 @@ runfiles size=6
texmf-dist/scripts/perltex/perltex.pl
texmf-dist/tex/latex/perltex/perltex.sty
catalogue-ctan /macros/latex/contrib/perltex
-catalogue-date 2019-09-23 11:07:45 +0200
catalogue-license lppl
catalogue-topics callback
catalogue-version 2.2
@@ -225846,7 +223479,6 @@ srcfiles size=11
runfiles size=3
RELOC/tex/latex/permute/permute.sty
catalogue-ctan /macros/latex/contrib/permute
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics maths
@@ -225886,7 +223518,6 @@ runfiles size=66
RELOC/bibtex/bst/persian-bib/unsrt-fa.bst
RELOC/bibtex/csf/persian-bib/cp1256fa.csf
catalogue-ctan /biblio/bibtex/contrib/persian-bib
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics persian bibtex-sty
catalogue-version 0.9
@@ -225912,7 +223543,6 @@ docfiles size=75
runfiles size=3
RELOC/tex/latex/petiteannonce/petiteannonce.cls
catalogue-ctan /macros/latex/contrib/petiteannonce
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics advert
catalogue-version 1.0001
@@ -225947,7 +223577,6 @@ runfiles size=14
texmf-dist/tex/generic/petri-nets/pntext.tex
texmf-dist/tex/generic/petri-nets/pnversion.tex
catalogue-ctan /macros/generic/petri-nets
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics maths
@@ -226126,7 +223755,6 @@ runfiles size=6
texmf-dist/tex/latex/pfarrei/a5toa4.tex
texmf-dist/tex/latex/pfarrei/pfarrei.sty
catalogue-ctan /macros/latex/contrib/pfarrei
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics compact-print
catalogue-version r36
@@ -227092,7 +224720,6 @@ catalogue-contact-bugs https://github.com/pgf-tikz/pgf/issues
catalogue-contact-repository https://github.com/pgf-tikz/pgf
catalogue-contact-support https://tug.org/mailman/listinfo/pgf-tikz
catalogue-ctan /graphics/pgf/base
-catalogue-date 2019-08-04 09:07:25 +0200
catalogue-license lppl1.3cgpl2fdl
catalogue-topics pgf-tikz graphics-in-tex
catalogue-version 3.1.4b
@@ -227124,7 +224751,6 @@ catalogue-contact-bugs https://github.com/norbusan/pgf-blur/issues
catalogue-contact-home https://github.com/norbusan/pgf-blur
catalogue-contact-repository https://github.com/norbusan/pgf-blur
catalogue-ctan /graphics/pgf/contrib/pgf-blur
-catalogue-date 2018-08-21 14:56:15 +0200
catalogue-license lpplpd
catalogue-topics graphics-subpic pgf-tikz
catalogue-version 1.02
@@ -227167,7 +224793,6 @@ runfiles size=20
catalogue-contact-bugs https://github.com/dcpurton/pgf-cmykshadings/issues
catalogue-contact-repository https://github.com/dcpurton/pgf-cmykshadings
catalogue-ctan /graphics/pgf/contrib/pgf-cmykshadings
-catalogue-date 2019-11-04 17:38:55 +0100
catalogue-license lppl1.3c
catalogue-topics colour pgf-tikz
catalogue-version 1.2
@@ -227193,7 +224818,6 @@ runfiles size=2
RELOC/tex/latex/pgf-soroban/pgf-soroban.sty
catalogue-also pst-soroban
catalogue-ctan /graphics/pgf/contrib/pgf-soroban
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics diagram
catalogue-version 1.1
@@ -227223,7 +224847,6 @@ runfiles size=74
RELOC/tex/latex/pgf-spectra/pgf-spectra.sty
RELOC/tex/latex/pgf-spectra/spectra.data.tex
catalogue-ctan /graphics/pgf/contrib/pgf-spectra
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics physics pgf-tikz
catalogue-version 1.0
@@ -227265,7 +224888,6 @@ runfiles size=3
catalogue-also pst-uml uml
catalogue-contact-repository https://github.com/xuyuan/pgf-umlcd
catalogue-ctan /graphics/pgf/contrib/pgf-umlcd
-catalogue-date 2017-05-31 10:14:54 +0200
catalogue-license gpl
catalogue-topics uml pgf-tikz
catalogue-version 0.2.1.1
@@ -227313,7 +224935,6 @@ runfiles size=3
catalogue-also pst-uml uml
catalogue-contact-repository https://github.com/xuyuan/pgf-umlsd
catalogue-ctan /graphics/pgf/contrib/pgf-umlsd
-catalogue-date 2017-05-31 10:15:19 +0200
catalogue-license gpl
catalogue-topics uml pgf-tikz
catalogue-version 0.7
@@ -227344,7 +224965,6 @@ runfiles size=12
RELOC/tex/latex/pgfgantt/pgfgantt.sty
catalogue-also pst-gantt
catalogue-ctan /graphics/pgf/contrib/pgfgantt
-catalogue-date 2018-01-10 19:12:31 +0100
catalogue-license lppl1.3
catalogue-topics diagram gantt
catalogue-version 5.0
@@ -227370,7 +224990,6 @@ docfiles size=2
runfiles size=8
RELOC/tex/latex/pgfkeyx/pgfkeyx.sty
catalogue-ctan /macros/latex/contrib/pgfkeyx
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics keyval
catalogue-version 0.0.1
@@ -227407,7 +225026,6 @@ runfiles size=21
RELOC/tex/lualatex/pgfmolbio/pgfmolbio.domains.tex
RELOC/tex/lualatex/pgfmolbio/pgfmolbio.sty
catalogue-ctan /macros/luatex/latex/pgfmolbio
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics molbio diagram luatex
catalogue-version 0.21
@@ -227435,7 +225053,6 @@ catalogue-contact-bugs https://github.com/loopspace/pgfmorepages/issues
catalogue-contact-home https://github.com/loopspace/pgfmorepages
catalogue-contact-repository https://github.com/loopspace/pgfmorepages
catalogue-ctan /graphics/pgf/contrib/pgfmorepages
-catalogue-date 2019-05-08 16:35:30 +0200
catalogue-license lppl1.3c
catalogue-topics pgf-tikz
catalogue-version 1.00
@@ -227467,7 +225084,6 @@ srcfiles size=5
runfiles size=2
RELOC/tex/latex/pgfopts/pgfopts.sty
catalogue-ctan /macros/latex/contrib/pgfopts
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics keyval package-supp
catalogue-version 2.1a
@@ -227698,7 +225314,6 @@ runfiles size=518
RELOC/tex/latex/pgfornament/tikzrput.sty
catalogue-also pgf
catalogue-ctan /macros/latex/contrib/tkz/pgfornament
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics graphics-plot decoration
catalogue-version 0.21
@@ -227819,7 +225434,6 @@ runfiles size=130
catalogue-also pgfornament
catalogue-contact-repository https://github.com/liantze/pgfornament-han/
catalogue-ctan /graphics/pgf/contrib/pgfornament-han
-catalogue-date 2019-08-11 11:06:58 +0200
catalogue-license lppl1.3c
catalogue-topics pgf-tikz chinese graphics-symb presentation
@@ -227975,7 +225589,6 @@ catalogue-contact-home http://pgfplots.sourceforge.net/
catalogue-contact-repository http://pgfplots.sourceforge.net/
catalogue-contact-support https://sourceforge.net/projects/pgfplots/
catalogue-ctan /graphics/pgf/contrib/pgfplots
-catalogue-date 2018-04-07 06:21:57 +0200
catalogue-license gpl3
catalogue-topics graphics-plot pgf-tikz
catalogue-version 1.16
@@ -228015,7 +225628,6 @@ runfiles size=54
RELOC/fonts/type1/public/phaistos/phaistos.pfb
RELOC/tex/latex/phaistos/phaistos.sty
catalogue-ctan /fonts/archaic/phaistos
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics font font-archaic font-type1 font-otf
catalogue-version 1.0
@@ -228046,7 +225658,6 @@ runfiles size=3
RELOC/tex/latex/phffullpagefigure/phffullpagefigure.sty
catalogue-contact-repository https://github.com/phfaist/phfqitltx
catalogue-ctan /macros/latex/contrib/phffullpagefigure
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl1.3
catalogue-topics float
catalogue-version 1.0
@@ -228082,7 +225693,6 @@ runfiles size=18
RELOC/tex/latex/phfnote/phfnote.sty
catalogue-contact-repository https://github.com/phfaist/phfqitltx
catalogue-ctan /macros/latex/contrib/phfnote
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl1.3
catalogue-topics memorandum
catalogue-version 1.0
@@ -228115,7 +225725,6 @@ runfiles size=2
RELOC/tex/latex/phfparen/phfparen.sty
catalogue-contact-repository https://github.com/phfaist/phfqitltx
catalogue-ctan /macros/latex/contrib/phfparen
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl1.3
catalogue-topics maths paren-mgmt
catalogue-version 1.0
@@ -228152,7 +225761,6 @@ runfiles size=4
RELOC/tex/latex/phfqit/phfqit.sty
catalogue-contact-repository https://github.com/phfaist/phfqitltx
catalogue-ctan /macros/latex/contrib/phfqit
-catalogue-date 2017-08-20 08:50:52 +0200
catalogue-license lppl1.3
catalogue-topics maths physics
catalogue-version 2.0
@@ -228186,7 +225794,6 @@ runfiles size=1
RELOC/tex/latex/phfquotetext/phfquotetext.sty
catalogue-contact-repository https://github.com/phfaist/phfqitltx
catalogue-ctan /macros/latex/contrib/phfquotetext
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl1.3
catalogue-topics verbatim
catalogue-version 1.0
@@ -228218,7 +225825,6 @@ runfiles size=2
RELOC/tex/latex/phfsvnwatermark/phfsvnwatermark.sty
catalogue-contact-repository https://github.com/phfaist/phfqitltx
catalogue-ctan /macros/latex/contrib/phfsvnwatermark
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl1.3
catalogue-topics watermark version-control doc-mgmt
catalogue-version 1.0
@@ -228252,7 +225858,6 @@ runfiles size=6
RELOC/tex/latex/phfthm/phfthm.sty
catalogue-contact-repository https://github.com/phfaist/phfqitltx
catalogue-ctan /macros/latex/contrib/phfthm
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl1.3
catalogue-topics maths maths-theorem
catalogue-version 1.0
@@ -228280,7 +225885,6 @@ docfiles size=69
runfiles size=11
RELOC/tex/latex/philex/philex.sty
catalogue-ctan /macros/latex/contrib/philex
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics label-ref
catalogue-version 1.3
@@ -228311,7 +225915,6 @@ runfiles size=33
RELOC/tex/xelatex/philokalia/philokalia.sty
RELOC/tex/xelatex/philokalia/tuplk.fd
catalogue-ctan /fonts/philokalia
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license lppl1.3c
catalogue-topics font-greek font-supp
catalogue-version 1.2
@@ -228352,7 +225955,6 @@ srcfiles size=13
runfiles size=4
RELOC/tex/latex/philosophersimprint/philosophersimprint.cls
catalogue-ctan /macros/latex/contrib/philosophersimprint
-catalogue-date 2016-08-01 21:55:51 +0200
catalogue-license lppl
catalogue-topics journalpub
catalogue-version 1.4
@@ -228396,7 +225998,6 @@ runfiles size=162
RELOC/tex/latex/phonenumbers/phn-US_Vorwahlen.tex
RELOC/tex/latex/phonenumbers/phonenumbers.sty
catalogue-ctan /macros/latex/contrib/phonenumbers
-catalogue-date 2019-08-19 08:40:21 +0200
catalogue-license lppl1.3
catalogue-topics addr-list numbers
catalogue-version 2.2
@@ -228454,7 +226055,6 @@ runfiles size=55
RELOC/tex/latex/phonetic/phonetic.sty
catalogue-also tipa
catalogue-ctan /fonts/phonetic
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics font font-mf font-specialist phonetic
@@ -228479,7 +226079,6 @@ runfiles size=1
catalogue-contact-bugs https://github.com/stefanocoretta/phonrule/issues
catalogue-contact-repository https://github.com/stefanocoretta/phonrule
catalogue-ctan /macros/latex/contrib/phonrule
-catalogue-date 2017-04-21 12:55:41 +0200
catalogue-license lppl1
catalogue-topics phonetic
catalogue-version 1.3.2
@@ -228514,7 +226113,6 @@ srcfiles size=9
runfiles size=2
RELOC/tex/latex/photo/photo.sty
catalogue-ctan /macros/latex/contrib/photo
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics float
@@ -228537,7 +226135,6 @@ docfiles size=69
runfiles size=8
RELOC/tex/latex/physics/physics.sty
catalogue-ctan /macros/latex/contrib/physics
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics physics maths
catalogue-version 1.3
@@ -228562,7 +226159,6 @@ docfiles size=1
runfiles size=4
RELOC/tex/latex/piano/piano.sty
catalogue-ctan /macros/latex/contrib/piano
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics music
catalogue-version 1.0
@@ -228589,7 +226185,6 @@ docfiles size=100
runfiles size=4
RELOC/tex/latex/picinpar/picinpar.sty
catalogue-ctan /macros/latex209/contrib/picinpar
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics text-flow
catalogue-version 1.2a
@@ -228642,7 +226237,6 @@ catalogue-also curve2e xpicture
catalogue-contact-bugs https://github.com/rolfn/pict2e/issues
catalogue-contact-home https://github.com/rolfn/pict2e
catalogue-ctan /macros/latex/contrib/pict2e
-catalogue-date 2019-08-20 15:36:48 +0200
catalogue-license lppl1.3
catalogue-topics graphics-in-tex
catalogue-version 0.3c
@@ -228687,7 +226281,6 @@ runfiles size=81
RELOC/tex/generic/pictex/tree.sty
catalogue-also qfig epic pictex2 pictexsum
catalogue-ctan /graphics/pictex
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1
catalogue-topics graphics-in-tex
catalogue-version 1.1
@@ -228707,7 +226300,6 @@ containerchecksum 26b608cc8409c62f4c0130cc032f2ca5929886fafb9d22d93aa23af5a6dee6
runfiles size=4
RELOC/tex/latex/pictex2/pictex2.sty
catalogue-ctan /macros/latex/contrib/pictex2/pictex2.sty
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics graphics-in-tex
@@ -228732,7 +226324,6 @@ docfiles size=59
RELOC/doc/latex/pictexsum/pictexsum.tex
RELOC/doc/latex/pictexsum/useful.sty
catalogue-ctan /info/pictex/summary
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license other-free
catalogue-topics documentation
@@ -228762,7 +226353,6 @@ runfiles size=2
catalogue-contact-bugs https://github.com/ho-tex/picture/issues
catalogue-contact-repository https://github.com/ho-tex/picture
catalogue-ctan /macros/latex/contrib/picture
-catalogue-date 2019-12-10 06:35:49 +0100
catalogue-license lppl1.3
catalogue-topics macro-supp
catalogue-version 1.5
@@ -228796,7 +226386,6 @@ runfiles size=7
RELOC/metapost/piechartmp/piechartmp.mp
catalogue-also piechart
catalogue-ctan /graphics/metapost/contrib/macros/piechartmp
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics genchart
catalogue-version 0.3.0
@@ -228833,7 +226422,6 @@ runfiles size=4
catalogue-contact-repository https://github.com/rf-latex/piff
catalogue-contact-support https://github.com/rf-latex/piff/issues
catalogue-ctan /macros/latex/contrib/piff
-catalogue-date 2018-09-13 20:11:58 +0200
catalogue-license pd
catalogue-topics collection
@@ -228864,7 +226452,6 @@ runfiles size=9
RELOC/tex/latex/pigpen/pigpen.sty
RELOC/tex/latex/pigpen/pigpen.tex
catalogue-ctan /fonts/pigpen
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics font font-mf font-type1
catalogue-version 0.2
@@ -228900,7 +226487,6 @@ runfiles size=10
RELOC/tex/latex/pinlabel/pinlabel.sty
catalogue-also psfrag overpic
catalogue-ctan /macros/latex/contrib/pinlabel
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics graphics-text
catalogue-version 1.2
@@ -228926,7 +226512,6 @@ docfiles size=21
runfiles size=2
RELOC/tex/latex/pinoutikz/pinoutikz.sty
catalogue-ctan /graphics/pgf/contrib/pinoutikz
-catalogue-date 2019-12-02 19:59:55 +0100
catalogue-license lppl1.3c
catalogue-topics graphics pgf-tikz electronic
catalogue-version 1.1.1
@@ -228966,7 +226551,6 @@ runfiles size=27
RELOC/tex/plain/pitex/sections.ptx
RELOC/tex/plain/pitex/verbatim.ptx
catalogue-ctan /macros/plain/contrib/pitex
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics doc-supp
@@ -229001,7 +226585,6 @@ runfiles size=12
RELOC/tex/latex/pittetd/pittetd.cls
catalogue-contact-home http://latexetdsupport.wikidot.com/
catalogue-ctan /macros/latex/contrib/pittetd
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl
catalogue-topics dissertation
catalogue-version 1.618
@@ -229032,7 +226615,6 @@ runfiles size=1
catalogue-contact-bugs https://framagit.org/spalax/pixelart/issues
catalogue-contact-repository https://framagit.org/spalax/pixelart
catalogue-ctan /graphics/pixelart
-catalogue-date 2018-02-25 16:42:19 +0100
catalogue-license lppl1.3
catalogue-topics graphics
catalogue-version 0.2.0
@@ -229055,7 +226637,6 @@ runfiles size=7
texmf-dist/scripts/pkfix/pkfix.pl
catalogue-also pkfix-helper
catalogue-ctan /support/pkfix
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license lppl1.3
catalogue-topics font-util
catalogue-version 1.7
@@ -229090,7 +226671,6 @@ docfiles size=189
runfiles size=14
texmf-dist/scripts/pkfix-helper/pkfix-helper
catalogue-ctan /support/pkfix-helper
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics font-util
catalogue-version 1.4
@@ -229418,7 +226998,6 @@ runfiles size=19
catalogue-contact-bugs https://github.com/mhelvens/latex-pkgloader/issues
catalogue-contact-repository https://github.com/mhelvens/latex-pkgloader
catalogue-ctan /macros/latex/contrib/pkgloader
-catalogue-date 2018-04-29 18:41:15 +0200
catalogue-license lppl1.3
catalogue-topics debug-supp expl3
catalogue-version 0.7.0
@@ -229480,7 +227059,6 @@ runfiles size=12
RELOC/tex/latex/pkuthss/pkuword.pdf
catalogue-contact-repository https://gitea.com/CasperVector/pkuthss
catalogue-ctan /macros/latex/contrib/pkuthss
-catalogue-date 2019-11-17 12:56:40 +0100
catalogue-license lppl1.3bsdpd
catalogue-topics dissertation class chinese
catalogue-version 1.8.2
@@ -229929,7 +227507,6 @@ runfiles size=1109
RELOC/fonts/type1/public/pl/plvtt10.pfb
RELOC/fonts/type1/public/pl/plvtt10.pfm
catalogue-ctan /language/polish/pl-mf.zip
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics font font-mf polish
catalogue-version 1.09
@@ -229962,7 +227539,6 @@ runfiles size=4
catalogue-also textpos
catalogue-contact-repository https://github.com/alt/placeat
catalogue-ctan /macros/luatex/latex/placeat
-catalogue-date 2017-08-26 23:16:20 +0200
catalogue-license lppl1.3
catalogue-topics layout luatex
catalogue-version 0.1d1
@@ -229986,7 +227562,6 @@ docfiles size=65
runfiles size=1
RELOC/tex/latex/placeins/placeins.sty
catalogue-ctan /macros/latex/contrib/placeins
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics layout float
catalogue-version 2.2
@@ -230008,7 +227583,6 @@ containerchecksum ba143fda432b8ff9f96d48218ea3b3d29308db3a403c64af5f4a89b8305ff8
runfiles size=2
RELOC/tex/plain/placeins-plain/placeins.tex
catalogue-ctan /macros/plain/contrib/misc/placeins.tex
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics layout float
catalogue-version 2.0
@@ -230045,7 +227619,6 @@ runfiles size=336
RELOC/tex/plain/config/tex.ini
RELOC/tex/plain/config/unicode-letters.def
catalogue-ctan /macros/plain/base
-catalogue-date 2016-11-06 05:33:39 +0100
catalogue-license knuth
catalogue-topics format
catalogue-version 3.141592653
@@ -230067,7 +227640,6 @@ doccontainerchecksum 03f17a65680e4fedd76abf2ec46dbac4b7871c3106c74d3d7c7f200bd61
docfiles size=5
RELOC/doc/plain/plain-doc/csname.txt
catalogue-ctan /info/plain-doc/csname.txt
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics tut-plaintex
@@ -230101,7 +227673,6 @@ runfiles size=2
RELOC/tex/generic/plainpkg/plainpkg.tex
catalogue-contact-support http://www.webdesign-bu.de/uwe_lueck/contact.html
catalogue-ctan /macros/generic/plainpkg
-catalogue-date 2017-05-06 09:23:35 +0200
catalogue-license lppl1.3
catalogue-topics macro-supp macro-gen
catalogue-version 0.4a
@@ -230120,7 +227691,6 @@ containerchecksum a42c5fc8c9a530f91d467ab3707fbec05f49764e85b906510f4605749c60bd
runfiles size=6
RELOC/bibtex/bst/plainyr/plainyr.bst
catalogue-ctan /biblio/bibtex/contrib/misc/plainyr.bst
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license other-free
catalogue-topics bibtex-sty
@@ -230148,7 +227718,6 @@ docfiles size=94
runfiles size=1
RELOC/tex/latex/plantslabels/plantslabels.sty
catalogue-ctan /macros/latex/contrib/plantslabels
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics covers
catalogue-version 1.0
@@ -230184,7 +227753,6 @@ catalogue-contact-bugs https://github.com/koppor/plantuml/issues
catalogue-contact-home https://koppor.github.io/plantuml/
catalogue-contact-repository https://github.com/koppor/plantuml/
catalogue-ctan /macros/luatex/latex/plantuml
-catalogue-date 2019-09-23 22:24:38 +0200
catalogue-license lppl1.3c
catalogue-topics uml luatex use-lua
catalogue-version 0.3.0
@@ -230216,7 +227784,6 @@ runfiles size=1
RELOC/tex/latex/plari/plari.cls
catalogue-also sides
catalogue-ctan /macros/latex/contrib/plari
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics drama-script
@@ -230242,7 +227809,6 @@ runfiles size=5
RELOC/tex/latex/plates/endplate.sty
RELOC/tex/latex/plates/plates.sty
catalogue-ctan /macros/latex/contrib/plates
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics graphics-use
catalogue-version 0.1
@@ -230366,7 +227932,6 @@ runfiles size=142
texmf-dist/tex/platex/config/platex.ini
catalogue-contact-repository https://github.com/texjporg/platex
catalogue-ctan /language/japanese/platex
-catalogue-date 2019-10-21 15:32:40 +0200
catalogue-license bsd3
catalogue-topics format class japanese
@@ -230416,7 +227981,6 @@ runfiles size=10
RELOC/tex/latex/platex-tools/pxxspace.sty
catalogue-contact-repository https://github.com/aminophen/platex-tools
catalogue-ctan /language/japanese/platex-tools
-catalogue-date 2019-09-07 11:47:33 +0200
catalogue-license bsd3
catalogue-topics japanese collection
@@ -230607,7 +228171,6 @@ docfiles size=151
RELOC/doc/latex/platexcheat/sample.tex
catalogue-contact-repository https://github.com/wtsnjp/platexcheat
catalogue-ctan /info/latexcheat/platexcheat
-catalogue-date 2019-01-04 05:30:11 +0100
catalogue-license mit
catalogue-topics tut-cheat
catalogue-version 3.1
@@ -230653,7 +228216,6 @@ runfiles size=10
RELOC/tex/latex/plautopatch/pxstfloats.sty
catalogue-contact-repository https://github.com/aminophen/plautopatch
catalogue-ctan /language/japanese/plautopatch
-catalogue-date 2019-09-05 18:12:28 +0200
catalogue-license bsd3
catalogue-topics japanese debug-supp bugfix
catalogue-version 0.9d
@@ -230681,7 +228243,6 @@ runfiles size=3
RELOC/tex/latex/play/play.sty
catalogue-also xmlplay
catalogue-ctan /macros/latex/contrib/play
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics drama-script
@@ -231025,7 +228586,6 @@ runfiles size=1240
RELOC/tex/latex/playfair/TS1PlayfairDisplay-TLF.fd
RELOC/tex/latex/playfair/TS1PlayfairDisplay-TOsF.fd
catalogue-ctan /fonts/playfair
-catalogue-date 2019-10-16 09:52:44 +0200
catalogue-license ofllppl
catalogue-topics font font-display font-body font-serif font-proportional font-otf font-type1 font-supp font-t1enc
@@ -232514,7 +230074,6 @@ catalogue-contact-bugs https://github.com/IBM/plex/issues/new
catalogue-contact-home https://github.com/IBM/plex
catalogue-contact-repository https://github.com/IBM/plex
catalogue-ctan /fonts/plex
-catalogue-date 2019-12-06 21:45:41 +0100
catalogue-license ofllppl
catalogue-topics font font-proportional font-body font-mono font-sans font-type1 font-otf font-t1enc
@@ -232556,7 +230115,6 @@ runfiles size=6
RELOC/tex/latex/plex-otf/plex-otf.sty
catalogue-also plex
catalogue-ctan /fonts/plex-otf
-catalogue-date 2018-04-13 20:34:33 +0200
catalogue-license lppl1.3
catalogue-topics font-serif font-sans font-proportional font-mono font-otf
catalogue-version 0.07a
@@ -232585,7 +230143,6 @@ runfiles size=37
RELOC/tex/plain/plipsum/plipsum.tex
catalogue-also lipsum
catalogue-ctan /macros/plain/contrib/plipsum
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics macro-supp dummy-gen
catalogue-version 4.3
@@ -232629,7 +230186,6 @@ runfiles size=17
RELOC/tex/plain/plnfss/ts1lm.pfd
catalogue-also ofs font-selection fontch
catalogue-ctan /macros/plain/plnfss
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics font-sel plain-ext
catalogue-version 1.1
@@ -232652,7 +230208,6 @@ docfiles size=41
runfiles size=2
RELOC/tex/plain/plstmary/stmary.tex
catalogue-ctan /macros/plain/contrib/plstmary
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics font-supp-symbol
catalogue-version 0.5c
@@ -232688,7 +230243,6 @@ runfiles size=5
RELOC/tex/latex/plweb/pl.cfg
RELOC/tex/latex/plweb/pl.sty
catalogue-ctan /macros/latex/contrib/gene/pl
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license other-free
catalogue-topics litprog
catalogue-version 3.0
@@ -232719,7 +230273,6 @@ srcfiles size=12
runfiles size=2
RELOC/tex/latex/pm-isomath/pm-isomath.sty
catalogue-ctan /macros/latex/contrib/pm-isomath
-catalogue-date 2018-01-21 19:26:54 +0100
catalogue-license lppl1.3c
catalogue-topics maths physics
catalogue-version 1.0.04
@@ -232748,7 +230301,6 @@ runfiles size=23
catalogue-contact-bugs https://github.com/ho-tex/pmboxdraw/issues
catalogue-contact-repository https://github.com/ho-tex/pmboxdraw
catalogue-ctan /macros/latex/contrib/pmboxdraw
-catalogue-date 2019-12-06 05:43:02 +0100
catalogue-license lppl1.3c
catalogue-topics graphics-in-tex
catalogue-version 1.4
@@ -232773,7 +230325,6 @@ runfiles size=19
RELOC/tex/latex/pmgraph/pmgraph.sty
catalogue-also pict2e
catalogue-ctan /macros/latex/contrib/pmgraph
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics graphics-in-tex
catalogue-version 1.0
@@ -232822,7 +230373,6 @@ runfiles size=9
texmf-dist/tex/generic/pmx/pmx.tex
catalogue-contact-home http://icking-music-archive.org/software/indexmt6.html
catalogue-ctan /support/pmx
-catalogue-date 2018-02-13 05:43:04 +0100
catalogue-license gpl2
catalogue-topics music
catalogue-version 2.84
@@ -233029,7 +230579,6 @@ runfiles size=9
texmf-dist/tex/generic/pmxchords/chords.tex
texmf-dist/tex/generic/pmxchords/chordsCZ.tex
catalogue-ctan /support/pmxchords
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl2
catalogue-topics use-lua music
catalogue-version 2.0.2
@@ -233192,7 +230741,6 @@ containerchecksum 5e20303db90b2db63a3d6026db582026df8b9e910942303c952753d5dc2792
runfiles size=5
RELOC/bibtex/bst/pnas2009/pnas2009.bst
catalogue-ctan /biblio/bibtex/contrib/misc/pnas2009.bst
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license other-free
catalogue-topics bibtex-sty
catalogue-version 1.0
@@ -233228,7 +230776,6 @@ runfiles size=38
RELOC/tex/latex/poemscol/poemscol.sty
catalogue-also edmac ledmac ednotes verse
catalogue-ctan /macros/latex/contrib/poemscol
-catalogue-date 2019-10-29 10:15:19 +0100
catalogue-license lppl1.3c
catalogue-topics crit-ed
catalogue-version 3.141
@@ -233262,7 +230809,6 @@ srcfiles size=17
runfiles size=3
RELOC/tex/latex/poetry/poetry.sty
catalogue-ctan /macros/latex/contrib/poetry
-catalogue-date 2019-11-09 23:16:33 +0100
catalogue-license lppl1.3c
catalogue-topics verse
catalogue-version 2.1
@@ -233292,7 +230838,6 @@ runfiles size=3
RELOC/tex/latex/poetrytex/poetrytex.sty
catalogue-contact-repository https://github.com/SamWhited/poetrytex.git
catalogue-ctan /macros/latex/contrib/poetrytex
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl1.3
catalogue-topics verse
catalogue-version 3.0.1
@@ -233353,7 +230898,6 @@ runfiles size=95
RELOC/tex/latex/poiretone/TS1PoiretOne-LF.fd
catalogue-contact-home https://fonts.google.com/specimen/Poiret+One?selection.family=Poiret+One
catalogue-ctan /fonts/poiretone
-catalogue-date 2019-06-18 14:49:57 +0200
catalogue-license ofllppl
catalogue-topics font font-sans font-mono font-otf font-type1 font-proportional font-t1enc
@@ -233385,7 +230929,6 @@ runfiles size=28
RELOC/tex/latex/polexpr/polexpr.sty
catalogue-also polynom
catalogue-ctan /macros/latex/contrib/polexpr
-catalogue-date 2019-02-12 20:32:28 +0100
catalogue-license lppl1.3c
catalogue-topics maths
catalogue-version 0.7.4
@@ -233444,7 +230987,6 @@ runfiles size=24
RELOC/tex/latex/polski/polski.sty
RELOC/tex/latex/polski/qxenc.def
catalogue-ctan /macros/latex/contrib/polski
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license lppl1.2
catalogue-topics polish
catalogue-version 1.3.4
@@ -234344,7 +231886,6 @@ runfiles size=7225
RELOC/tex/latex/poltawski/ts1antpl.fd
catalogue-contact-home http://www.gust.org.pl/projects/e-foundry/poltawski
catalogue-ctan /fonts/poltawski
-catalogue-date 2018-06-16 10:36:08 +0200
catalogue-license gfl
catalogue-topics font font-type1 font-otf
catalogue-version 1.101
@@ -234540,7 +232081,6 @@ catalogue-contact-bugs https://github.com/reutenauer/polyglossia/issues/
catalogue-contact-home https://github.com/reutenauer/polyglossia/
catalogue-contact-repository https://github.com/reutenauer/polyglossia
catalogue-ctan /macros/latex/contrib/polyglossia
-catalogue-date 2019-11-15 19:14:24 +0100
catalogue-license mit
catalogue-topics multilingual use-xetex use-luatex
catalogue-version 1.46
@@ -234571,7 +232111,6 @@ srcfiles size=35
runfiles size=16
RELOC/tex/latex/polynom/polynom.sty
catalogue-ctan /macros/latex/contrib/polynom
-catalogue-date 2017-07-17 15:20:36 +0200
catalogue-license lppl1.3
catalogue-topics maths
catalogue-version 0.19
@@ -234602,7 +232141,6 @@ srcfiles size=5
runfiles size=2
RELOC/tex/latex/polynomial/polynomial.sty
catalogue-ctan /macros/latex/contrib/polynomial
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics maths
catalogue-version 1.0
@@ -234631,7 +232169,6 @@ srcfiles size=22
runfiles size=7
RELOC/tex/latex/polytable/polytable.sty
catalogue-ctan /macros/latex/contrib/polytable
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics table
catalogue-version 0.8.2
@@ -234662,7 +232199,6 @@ runfiles size=4
RELOC/tex/generic/poormanlog/poormanlog.sty
RELOC/tex/generic/poormanlog/poormanlog.tex
catalogue-ctan /macros/generic/poormanlog
-catalogue-date 2019-09-11 10:50:52 +0200
catalogue-license lppl1.3c
catalogue-topics calculation
catalogue-version 0.05
@@ -234698,7 +232234,6 @@ catalogue-contact-home https://github.com/heinrichreimer/latex-postage
catalogue-contact-repository https://github.com/heinrichreimer/latex-postage
catalogue-contact-support https://github.com/heinrichreimer/latex-postage/issues
catalogue-ctan /graphics/postage
-catalogue-date 2018-06-05 05:23:42 +0200
catalogue-license lppl1.3c
catalogue-topics letter
catalogue-version 1.0
@@ -234726,7 +232261,6 @@ runfiles size=1
RELOC/tex/latex/postcards/postcards.cls
catalogue-also formlett akletter dinbrief g-brief textmerg
catalogue-ctan /macros/latex/contrib/postcards
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics letter
@@ -234760,7 +232294,6 @@ runfiles size=4
RELOC/tex/generic/poster-mac/poster.tex
catalogue-also a0poster sciposter poster
catalogue-ctan /macros/generic/poster
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics poster
catalogue-version 1.1
@@ -234823,7 +232356,6 @@ runfiles size=50
RELOC/tex/latex/powerdot/powerdot.cls
catalogue-also prosper ha-prosper
catalogue-ctan /macros/latex/contrib/powerdot
-catalogue-date 2017-08-28 22:47:40 +0200
catalogue-license lppl1.3
catalogue-topics presentation class
catalogue-version 1.5c
@@ -234858,7 +232390,6 @@ runfiles size=4
RELOC/tex/latex/powerdot-fuberlin/FUpowerdot.cls
RELOC/tex/latex/powerdot-fuberlin/powerdot-BerlinFU.sty
catalogue-ctan /macros/latex/contrib/powerdot-FUBerlin
-catalogue-date 2019-11-25 14:52:26 +0100
catalogue-license lppl
catalogue-topics presentation
catalogue-version 0.02a
@@ -234898,7 +232429,6 @@ catalogue-contact-home https://github.com/tulip-lab/templatex
catalogue-contact-repository https://github.com/tulip-lab/templatex
catalogue-contact-support https://github.com/tulip-lab/templatex/issues
catalogue-ctan /macros/latex/contrib/powerdot-tuliplab
-catalogue-date 2018-06-10 05:06:26 +0200
catalogue-license lppl1.3
catalogue-topics logo
catalogue-version 1.0.0
@@ -234928,7 +232458,6 @@ runfiles size=7
RELOC/tex/latex/ppr-prv/HAP-ppr-prv.def
RELOC/tex/latex/ppr-prv/ppr-prv.cls
catalogue-ctan /macros/latex/contrib/ppr-prv
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics presentation
catalogue-version 0.13c
@@ -234960,7 +232489,6 @@ runfiles size=4
RELOC/tex/latex/pracjourn/pracjourn.cls
catalogue-contact-home http://tug.org/pracjourn
catalogue-ctan /macros/latex/contrib/pracjourn
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license gpl
catalogue-topics journalpub
catalogue-version 0.4n
@@ -234989,7 +232517,6 @@ docfiles size=66
runfiles size=2
RELOC/tex/latex/practicalreports/practicalreports.sty
catalogue-ctan /macros/latex/contrib/practicalreports
-catalogue-date 2019-10-07 15:19:08 +0200
catalogue-license lppl1.3c
catalogue-topics report-like
catalogue-version 2.0.3
@@ -235041,7 +232568,6 @@ runfiles size=9
RELOC/tex/latex/preprint/fullpage.sty
RELOC/tex/latex/preprint/sublabel.sty
catalogue-ctan /macros/latex/contrib/preprint
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license collection
catalogue-topics collection
catalogue-version 2011
@@ -235085,7 +232611,6 @@ docfiles size=263
runfiles size=6
RELOC/tex/latex/prerex/prerex.sty
catalogue-ctan /graphics/prerex
-catalogue-date 2019-11-15 19:26:00 +0100
catalogue-license gpl2lppl
catalogue-topics graphics-prep
@@ -235123,7 +232648,6 @@ runfiles size=3
RELOC/tex/plain/present/present.tex
catalogue-also lecturer
catalogue-ctan /macros/plain/contrib/present
-catalogue-date 2019-02-17 12:28:52 +0100
catalogue-license lppl
catalogue-topics presentation
catalogue-version 2.2.1
@@ -235418,7 +232942,6 @@ docfiles size=2456
RELOC/doc/latex/presentations/pd-demo-default.tex
RELOC/doc/latex/presentations/pd-demo.tex
catalogue-ctan /info/examples/Presentations_de
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics presentation book-ex
@@ -235736,7 +233259,6 @@ docfiles size=542
RELOC/doc/latex/presentations-en/textdemo.sty
catalogue-also presentations
catalogue-ctan /info/examples/Presentations_en
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics presentation book-ex
@@ -235777,7 +233299,6 @@ runfiles size=5
RELOC/tex/latex/pressrelease/pressrelease-symbols.sty
RELOC/tex/latex/pressrelease/pressrelease.cls
catalogue-ctan /macros/latex/contrib/pressrelease
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics publicity
catalogue-version 1.0
@@ -235810,7 +233331,6 @@ runfiles size=1
RELOC/tex/latex/prettyref/prettyref.sty
catalogue-also typedref
catalogue-ctan /macros/latex/contrib/prettyref
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license pd
catalogue-topics label-ref
catalogue-version 3.0
@@ -235856,7 +233376,6 @@ catalogue-contact-home https://www.gnu.org/software/auctex/preview-latex.html
catalogue-contact-repository https://git.savannah.gnu.org/gitweb/?p=auctex.git
catalogue-contact-support https://lists.gnu.org/mailman/listinfo/auctex
catalogue-ctan /macros/latex/contrib/preview
-catalogue-date 2019-10-31 09:36:29 +0100
catalogue-license gpl3
catalogue-topics chunks
catalogue-version 12.2
@@ -235880,7 +233399,6 @@ runfiles size=15
RELOC/tex/latex/prftree/prftree.sty
catalogue-also proofs
catalogue-ctan /macros/latex/contrib/prftree
-catalogue-date 2016-09-03 12:05:13 +0200
catalogue-license gpl
catalogue-topics tree maths proof
catalogue-version 1.5
@@ -235908,7 +233426,6 @@ docfiles size=61
runfiles size=2
RELOC/tex/latex/printlen/printlen.sty
catalogue-ctan /macros/latex/contrib/printlen
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics debug-supp doc-debug
catalogue-version 1.1a
@@ -235938,7 +233455,6 @@ srcfiles size=4
runfiles size=2
RELOC/tex/latex/proba/proba.sty
catalogue-ctan /macros/latex/contrib/proba
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics probability
@@ -236010,7 +233526,6 @@ runfiles size=8
RELOC/tex/latex/probsoln/probsoln.sty
catalogue-contact-bugs http://www.dickimaw-books.com/cgi-bin/bugtracker.cgi?category=probsoln
catalogue-ctan /macros/latex/contrib/probsoln
-catalogue-date 2017-07-10 15:22:13 +0200
catalogue-license lppl
catalogue-topics exercise
catalogue-version 3.05
@@ -236034,7 +233549,6 @@ docfiles size=2
runfiles size=2
RELOC/tex/latex/procIAGssymp/procIAGssymp.sty
catalogue-ctan /macros/latex/contrib/procIAGssymp
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics confproc
@@ -236070,7 +233584,6 @@ runfiles size=5
RELOC/fonts/type1/public/prodint/prodint.pfb
RELOC/tex/latex/prodint/prodint.sty
catalogue-ctan /fonts/prodint
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license ofl
catalogue-topics maths
@@ -236102,7 +233615,6 @@ srcfiles size=21
runfiles size=7
RELOC/tex/latex/productbox/productbox.sty
catalogue-ctan /macros/latex/contrib/gene/productbox
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license other-free
catalogue-topics graphics-3d
catalogue-version 1.1
@@ -236130,7 +233642,6 @@ runfiles size=9
RELOC/tex/latex/program/program.sty
catalogue-contact-home http://www.gkc.org.uk
catalogue-ctan /macros/latex/contrib/program
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license gpl3
catalogue-topics listing pseudocode
catalogue-version 3.3.14
@@ -236157,7 +233668,6 @@ docfiles size=29
runfiles size=4
RELOC/tex/latex/progress/progress.sty
catalogue-ctan /macros/latex/contrib/progress
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics doc-mgmt
catalogue-version 1.10
@@ -236184,7 +233694,6 @@ docfiles size=31
runfiles size=2
RELOC/tex/latex/progressbar/progressbar.sty
catalogue-ctan /macros/latex/contrib/progressbar
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics graphics-use
catalogue-version 1.0b~4
@@ -236217,7 +233726,6 @@ runfiles size=4
catalogue-contact-bugs https://github.com/leo-colisson/proof-at-the-end/issues
catalogue-contact-home https://github.com/leo-colisson/proof-at-the-end
catalogue-ctan /macros/latex/contrib/proof-at-the-end
-catalogue-date 2019-05-22 17:20:50 +0200
catalogue-license lppl1.3
catalogue-topics maths proof appendix
@@ -236260,7 +233768,6 @@ srcfiles size=6
runfiles size=2
RELOC/tex/latex/proofread/proofread.sty
catalogue-ctan /macros/latex/contrib/proofread
-catalogue-date 2019-04-25 16:49:10 +0200
catalogue-license lppl1.3c
catalogue-topics editorial decoration
catalogue-version 1.04
@@ -236297,7 +233804,6 @@ runfiles size=11
RELOC/tex/latex/prooftrees/prooftrees.sty
catalogue-also forest
catalogue-ctan /graphics/pgf/contrib/prooftrees
-catalogue-date 2019-09-30 10:14:15 +0200
catalogue-license lppl1.3
catalogue-topics tree pgf-tikz logic
catalogue-version 0.7 svn 8641
@@ -236319,7 +233825,6 @@ docfiles size=2
runfiles size=1
RELOC/tex/latex/properties/properties.sty
catalogue-ctan /macros/latex/contrib/properties
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics macro-supp
catalogue-version 0.2
@@ -236430,7 +233935,6 @@ runfiles size=26
RELOC/tex/latex/proposal/eu/eureporting.cls
catalogue-contact-repository https://github.com/KWARC/LaTeX-proposal
catalogue-ctan /macros/latex/contrib/proposal
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl
catalogue-topics proposal
@@ -236553,7 +234057,6 @@ runfiles size=199
catalogue-also ifmslide ha-prosper
catalogue-contact-repository http://prosper.sourceforge.net/
catalogue-ctan /macros/latex/contrib/prosper
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl1.2
catalogue-topics presentation
catalogue-version 1.0h
@@ -236577,7 +234080,6 @@ runfiles size=17
RELOC/tex/latex/protex/AlProTex.sty
RELOC/tex/latex/protex/ProTex.sty
catalogue-ctan /web/protex
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license lppl
catalogue-topics litprog
@@ -236606,7 +234108,6 @@ srcfiles size=6
runfiles size=2
RELOC/tex/latex/protocol/protocol.cls
catalogue-ctan /macros/latex/contrib/protocol
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license lppl1.3
catalogue-topics meeting-admin
catalogue-version 1.13
@@ -236635,7 +234136,6 @@ runfiles size=13
RELOC/bibtex/bst/prtec/prtec.bst
RELOC/tex/latex/prtec/prtec.cls
catalogue-ctan /macros/latex/contrib/prtec
-catalogue-date 2019-08-20 18:49:03 +0200
catalogue-license mit
catalogue-topics class bibtex-sty confproc engineering scientific-docs
catalogue-version 1.06
@@ -236695,7 +234195,6 @@ runfiles size=10
RELOC/tex/latex/przechlewski-book/upmgr.cls
RELOC/tex/latex/przechlewski-book/wkmgr.cls
catalogue-ctan /info/examples/przechlewski-book-examples
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics book-ex
@@ -236722,7 +234221,6 @@ docfiles size=27
texmf-dist/doc/man/man1/ps2pk.1
texmf-dist/doc/man/man1/ps2pk.man1.pdf
catalogue-ctan /fonts/utilities/ps2pk
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license other-free
catalogue-topics ps-manip font-proc
@@ -236937,7 +234435,6 @@ docfiles size=31
runfiles size=5
RELOC/tex/latex/psbao/psbao.sty
catalogue-ctan /graphics/pstricks/contrib/psbao
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics games
catalogue-version 0.17
@@ -236981,7 +234478,6 @@ catalogue-contact-bugs https://github.com/mlhetland/pseudo.sty/issues
catalogue-contact-home https://github.com/mlhetland/pseudo.sty
catalogue-contact-repository https://github.com/mlhetland/pseudo.sty.git
catalogue-ctan /macros/latex/contrib/pseudo
-catalogue-date 2019-10-30 19:40:48 +0100
catalogue-license mit
catalogue-topics pseudocode expl3
catalogue-version 1.1.3
@@ -237004,7 +234500,6 @@ docfiles size=43
runfiles size=2
RELOC/tex/latex/pseudocode/pseudocode.sty
catalogue-ctan /macros/latex/contrib/pseudocode
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics pseudocode
@@ -237041,7 +234536,6 @@ runfiles size=4
RELOC/tex/latex/psfrag/psfrag.sty
catalogue-also psfragx
catalogue-ctan /macros/latex/contrib/psfrag
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license other-free
catalogue-topics graphics-text
catalogue-version 3.04
@@ -237061,7 +234555,6 @@ docfiles size=47
RELOC/doc/latex/psfrag-italian/itpfgguide.pdf details="The document itself"
RELOC/doc/latex/psfrag-italian/itpfgguide.tex
catalogue-ctan /info/italian/psfrag
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics graphics italian-doc
@@ -237111,7 +234604,6 @@ runfiles size=4
RELOC/tex/latex/psfragx/psfragx.cfg
RELOC/tex/latex/psfragx/psfragx.sty
catalogue-ctan /macros/latex/contrib/psfragx
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics graphics-text
catalogue-version 1.1
@@ -237133,7 +234625,6 @@ docfiles size=31
runfiles size=3
RELOC/tex/latex/psgo/psgo.sty
catalogue-ctan /graphics/pstricks/contrib/psgo
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license lppl
catalogue-topics games pstricks
catalogue-version 0.17
@@ -237178,7 +234669,6 @@ runfiles size=31
RELOC/tex/psizzl/base/thesis.Psizzl
RELOC/tex/psizzl/config/psizzl.ini
catalogue-ctan /macros/psizzl
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics physics format
catalogue-version 0.35
@@ -237220,7 +234710,6 @@ runfiles size=9
RELOC/fonts/vf/public/pslatex/pcrr8tn.vf
RELOC/tex/latex/pslatex/pslatex.sty
catalogue-ctan /macros/latex/contrib/pslatex
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license lppl
catalogue-topics font-supp obsolete
@@ -237395,7 +234884,6 @@ runfiles size=110
RELOC/tex/latex/psnfss/utopia.sty
catalogue-also psnfssx
catalogue-ctan /macros/latex/required/psnfss
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics font-supp font-use
catalogue-version 9.2a
@@ -237424,7 +234912,6 @@ runfiles size=2
RELOC/dvips/pspicture/pspicture.ps
RELOC/tex/latex/pspicture/pspicture.sty
catalogue-ctan /macros/latex/contrib/pspicture
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics graphics-in-tex obsolete
@@ -237450,7 +234937,6 @@ docfiles size=27
runfiles size=2
RELOC/tex/latex/pst-2dplot/pst-2dplot.sty
catalogue-ctan /graphics/pstricks/contrib/pst-2dplot
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics graphics-plot pstricks
catalogue-version 1.5
@@ -237482,7 +234968,6 @@ runfiles size=5
RELOC/tex/generic/pst-3d/pst-3d.tex
RELOC/tex/latex/pst-3d/pst-3d.sty
catalogue-ctan /graphics/pstricks/contrib/pst-3d
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics graphics-3d pstricks
catalogue-version 1.10
@@ -237512,7 +234997,6 @@ runfiles size=31
RELOC/tex/generic/pst-3dplot/pst-3dplot.tex
RELOC/tex/latex/pst-3dplot/pst-3dplot.sty
catalogue-ctan /graphics/pstricks/contrib/pst-3dplot
-catalogue-date 2017-04-05 10:29:03 +0200
catalogue-license lppl
catalogue-topics graphics-3d graphics-plot pstricks
catalogue-version 2.04
@@ -237543,7 +235027,6 @@ runfiles size=3
RELOC/tex/generic/pst-abspos/pst-abspos.tex
RELOC/tex/latex/pst-abspos/pst-abspos.sty
catalogue-ctan /graphics/pstricks/contrib/pst-abspos
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics layout pstricks
catalogue-version 0.2
@@ -237575,7 +235058,6 @@ srcfiles size=1
runfiles size=3
RELOC/tex/latex/pst-am/pst-am.sty
catalogue-ctan /graphics/pstricks/contrib/pst-am
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics diagram pstricks
catalogue-version 1.02
@@ -237603,7 +235085,6 @@ runfiles size=3
RELOC/tex/generic/pst-antiprism/pst-antiprism.tex
RELOC/tex/latex/pst-antiprism/pst-antiprism.sty
catalogue-ctan /graphics/pstricks/contrib/pst-antiprism
-catalogue-date 2018-02-15 04:57:50 +0100
catalogue-license lppl
catalogue-topics pstricks graphics
catalogue-version 0.02
@@ -237629,7 +235110,6 @@ runfiles size=6
RELOC/tex/generic/pst-arrow/pst-arrow.tex
RELOC/tex/latex/pst-arrow/pst-arrow.sty
catalogue-ctan /graphics/pstricks/contrib/pst-arrow
-catalogue-date 2018-01-07 12:06:50 +0100
catalogue-license lppl1.3
catalogue-topics pstricks
catalogue-version 0.01
@@ -237655,7 +235135,6 @@ runfiles size=7
RELOC/tex/generic/pst-asr/pst-asr.tex
RELOC/tex/latex/pst-asr/pst-asr.sty
catalogue-ctan /graphics/pstricks/contrib/pst-asr
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics linguistic pstricks
catalogue-version 1.3
@@ -237691,7 +235170,6 @@ runfiles size=6
RELOC/tex/generic/pst-bar/pst-bar.tex
RELOC/tex/latex/pst-bar/pst-bar.sty
catalogue-ctan /graphics/pstricks/contrib/pst-bar
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics genchart pstricks
catalogue-version 0.92
@@ -237900,7 +235378,6 @@ catalogue-also barcodes barcodes-vulis ean kix qrcode
catalogue-contact-home http://tug.org/PSTricks
catalogue-contact-support http://tug.org/mailman/listinfo/pstricks
catalogue-ctan /graphics/pstricks/contrib/pst-barcode
-catalogue-date 2017-08-22 10:58:40 +0200
catalogue-license lppl
catalogue-topics barcode qrcode pstricks
catalogue-version 0.18
@@ -237929,7 +235406,6 @@ runfiles size=7
RELOC/tex/latex/pst-bezier/pst-bezier.sty
catalogue-also ebezier
catalogue-ctan /graphics/pstricks/contrib/pst-bezier
-catalogue-date 2016-09-03 14:36:12 +0200
catalogue-license lppl
catalogue-topics graphics-curve pstricks
catalogue-version 0.03
@@ -237961,7 +235437,6 @@ runfiles size=3
RELOC/tex/generic/pst-blur/pst-blur.tex
RELOC/tex/latex/pst-blur/pst-blur.sty
catalogue-ctan /graphics/pstricks/contrib/pst-blur
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics graphics-subpic pstricks
catalogue-version 2.0
@@ -237989,7 +235464,6 @@ runfiles size=11
RELOC/tex/generic/pst-bspline/pst-bspline.tex
RELOC/tex/latex/pst-bspline/pst-bspline.sty
catalogue-ctan /graphics/pstricks/contrib/pst-bspline
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics graphics-curve pstricks
catalogue-version 1.62
@@ -238017,7 +235491,6 @@ docfiles size=15
runfiles size=1
RELOC/tex/latex/pst-calculate/pst-calculate.sty
catalogue-ctan /macros/latex/contrib/pst-calculate
-catalogue-date 2019-01-24 22:40:20 +0100
catalogue-license lppl1.3
catalogue-topics calculation
catalogue-version 0.02
@@ -238049,7 +235522,6 @@ runfiles size=5
RELOC/tex/latex/pst-calendar/pst-calendar.sty
catalogue-also calendar
catalogue-ctan /graphics/pstricks/contrib/pst-calendar
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics calendar pstricks
catalogue-version 0.47
@@ -238077,7 +235549,6 @@ runfiles size=26
RELOC/tex/generic/pst-cie/pst-cie.tex
RELOC/tex/latex/pst-cie/pst-cie.sty
catalogue-ctan /graphics/pstricks/contrib/pst-cie
-catalogue-date 2018-12-16 19:50:20 +0100
catalogue-license lppl
catalogue-topics pstricks colour
catalogue-version 1.06a
@@ -238109,7 +235580,6 @@ runfiles size=56
RELOC/tex/generic/pst-circ/pst-circ.tex
RELOC/tex/latex/pst-circ/pst-circ.sty
catalogue-ctan /graphics/pstricks/contrib/pst-circ
-catalogue-date 2019-01-22 20:02:30 +0100
catalogue-license lppl
catalogue-topics diagram-circ pstricks
catalogue-version 2.16
@@ -238136,7 +235606,6 @@ runfiles size=5
RELOC/tex/generic/pst-coil/pst-coil.tex
RELOC/tex/latex/pst-coil/pst-coil.sty
catalogue-ctan /graphics/pstricks/contrib/pst-coil
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics graphics-use pstricks
catalogue-version 1.07
@@ -238185,7 +235654,6 @@ runfiles size=6
RELOC/tex/latex/pst-contourplot/pst-contourplot.sty
catalogue-contact-home http://pstricks.blogspot.com
catalogue-ctan /graphics/pstricks/contrib/pst-contourplot
-catalogue-date 2018-07-23 05:30:43 +0200
catalogue-license lppl
catalogue-topics pstricks graphics-plotfn
catalogue-version 0.6
@@ -238232,7 +235700,6 @@ runfiles size=614
RELOC/tex/latex/pst-cox/pst-coxeterp.sty
catalogue-contact-home http://melusine.eu.org/syracuse/pstricks/pst-cox/
catalogue-ctan /graphics/pstricks/contrib/pst-cox
-catalogue-date 2019-02-03 12:25:01 +0100
catalogue-license lgpl
catalogue-topics physics maths pstricks
catalogue-version 0.98 Beta
@@ -238258,7 +235725,6 @@ runfiles size=3
RELOC/tex/generic/pst-dart/pst-dart.tex
RELOC/tex/latex/pst-dart/pst-dart.sty
catalogue-ctan /graphics/pstricks/contrib/pst-dart
-catalogue-date 2018-02-09 21:04:24 +0100
catalogue-license lppl
catalogue-topics pstricks games
catalogue-version 0.02
@@ -238293,7 +235759,6 @@ srcfiles size=12
runfiles size=3
RELOC/tex/latex/pst-dbicons/pst-dbicons.sty
catalogue-ctan /graphics/pstricks/contrib/pst-dbicons
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics diagram pstricks
catalogue-version 0.16
@@ -238335,7 +235800,6 @@ runfiles size=6
RELOC/tex/generic/pst-diffraction/pst-diffraction.tex
RELOC/tex/latex/pst-diffraction/pst-diffraction.sty
catalogue-ctan /graphics/pstricks/contrib/pst-diffraction
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics graphics-use pstricks
catalogue-version 2.03
@@ -238374,7 +235838,6 @@ runfiles size=4
RELOC/tex/generic/pst-electricfield/pst-electricfield.tex
RELOC/tex/latex/pst-electricfield/pst-electricfield.sty
catalogue-ctan /graphics/pstricks/contrib/pst-electricfield
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics graphics-use pstricks
catalogue-version 0.14
@@ -238406,7 +235869,6 @@ runfiles size=3
RELOC/tex/generic/pst-eps/pst-eps.tex
RELOC/tex/latex/pst-eps/pst-eps.sty
catalogue-ctan /graphics/pstricks/contrib/pst-eps
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics graphics-prep pstricks
catalogue-version 1.0
@@ -238441,7 +235903,6 @@ catalogue-contact-home http://pstricks.tug.org
catalogue-contact-repository https://archiv.dante.de/~herbert/TeXnik/
catalogue-contact-support https://tug.org/mailman/listinfo/pstricks
catalogue-ctan /graphics/pstricks/contrib/pst-eucl
-catalogue-date 2019-10-28 13:25:49 +0100
catalogue-license lppl
catalogue-topics maths graphics-use pstricks
catalogue-version 1.67
@@ -238565,7 +236026,6 @@ docfiles size=215
RELOC/doc/latex/pst-eucl-translation-bg/pst-eucl-docBG.tex
catalogue-also pst-eucl
catalogue-ctan /info/translations/pst-eucl/bulgarian
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics bulgarian maths pstricks translation
catalogue-version 1.3.2
@@ -238593,7 +236053,6 @@ runfiles size=3
RELOC/tex/latex/pst-exa/pst-exa.sty
catalogue-also showexpl
catalogue-ctan /graphics/pstricks/contrib/pst-exa
-catalogue-date 2017-09-12 22:35:55 +0200
catalogue-license lppl
catalogue-topics listing pstricks
catalogue-version 0.06
@@ -238624,7 +236083,6 @@ runfiles size=9
RELOC/tex/latex/pst-feyn/pst-feyn.sty
catalogue-also axodraw2
catalogue-ctan /graphics/pstricks/contrib/pst-feyn
-catalogue-date 2018-09-29 05:20:17 +0200
catalogue-license lppl
catalogue-topics physics
catalogue-version 0.01
@@ -238654,7 +236112,6 @@ runfiles size=5
RELOC/tex/generic/pst-fill/pst-fill.tex
RELOC/tex/latex/pst-fill/pst-fill.sty
catalogue-ctan /graphics/pstricks/contrib/pst-fill
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics graphics-fill-tile pstricks
catalogue-version 1.01
@@ -238682,7 +236139,6 @@ runfiles size=10
RELOC/tex/generic/pst-fit/pst-fit.tex
RELOC/tex/latex/pst-fit/pst-fit.sty
catalogue-ctan /graphics/pstricks/contrib/pst-fit
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license lppl
catalogue-topics graphics-supp
catalogue-version 0.02
@@ -238712,7 +236168,6 @@ runfiles size=3
RELOC/tex/generic/pst-fr3d/pst-fr3d.tex
RELOC/tex/latex/pst-fr3d/pst-fr3d.sty
catalogue-ctan /graphics/pstricks/contrib/pst-fr3d
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics boxing graphics-3d pstricks
catalogue-version 1.10
@@ -238743,7 +236198,6 @@ runfiles size=13
RELOC/tex/generic/pst-fractal/pst-fractal.tex
RELOC/tex/latex/pst-fractal/pst-fractal.sty
catalogue-ctan /graphics/pstricks/contrib/pst-fractal
-catalogue-date 2018-11-30 23:09:54 +0100
catalogue-license lppl
catalogue-topics graphics-use pstricks
catalogue-version 0.10
@@ -238776,7 +236230,6 @@ runfiles size=22
RELOC/tex/generic/pst-fun/pst-fun.tex
RELOC/tex/latex/pst-fun/pst-fun.sty
catalogue-ctan /graphics/pstricks/contrib/pst-fun
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics frivolous pstricks
catalogue-version 0.04
@@ -238824,7 +236277,6 @@ catalogue-contact-home http://pstricks.tug.org
catalogue-contact-repository http://comedy.dante.de/~herbert/TeXnik/
catalogue-contact-support http://tug.org/mailman/listinfo/pstricks
catalogue-ctan /graphics/pstricks/contrib/pst-func
-catalogue-date 2019-05-17 10:09:33 +0200
catalogue-license lppl
catalogue-topics maths graphics-plotfn graphics-use pstricks
catalogue-version 0.93
@@ -238851,7 +236303,6 @@ runfiles size=3
RELOC/tex/generic/pst-gantt/pst-gantt.tex
RELOC/tex/latex/pst-gantt/pst-gantt.sty
catalogue-ctan /graphics/pstricks/contrib/pst-gantt
-catalogue-date 2018-09-15 12:42:06 +0200
catalogue-license lppl
catalogue-topics diagram gantt pstricks
catalogue-version 0.22a
@@ -238957,7 +236408,6 @@ runfiles size=6064
RELOC/tex/generic/pst-geo/pst-geo.tex
RELOC/tex/latex/pst-geo/pst-geo.sty
catalogue-ctan /graphics/pstricks/contrib/pst-geo
-catalogue-date 2016-12-13 16:37:23 +0100
catalogue-license lppl
catalogue-topics cartography pstricks
catalogue-version 0.06
@@ -238984,7 +236434,6 @@ runfiles size=14
RELOC/tex/generic/pst-geometrictools/pst-geometrictools.tex
RELOC/tex/latex/pst-geometrictools/pst-geometrictools.sty
catalogue-ctan /graphics/pstricks/contrib/pst-geometrictools
-catalogue-date 2017-09-16 20:46:27 +0200
catalogue-license lppl1.3c
catalogue-topics pstricks maths graphics-use
catalogue-version 1.1
@@ -239035,7 +236484,6 @@ runfiles size=3
RELOC/tex/generic/pst-gr3d/pst-gr3d.tex
RELOC/tex/latex/pst-gr3d/pst-gr3d.sty
catalogue-ctan /graphics/pstricks/contrib/pst-gr3d
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics typeset-grid graphics-3d pstricks
catalogue-version 1.34
@@ -239062,7 +236510,6 @@ runfiles size=5
RELOC/tex/generic/pst-grad/pst-grad.tex
RELOC/tex/latex/pst-grad/pst-grad.sty
catalogue-ctan /graphics/pstricks/contrib/pst-grad
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics colour pstricks
catalogue-version 1.06
@@ -239086,7 +236533,6 @@ docfiles size=3
runfiles size=1
RELOC/tex/generic/pst-graphicx/pst-graphicx.tex
catalogue-ctan /graphics/pstricks/contrib/pst-graphicx
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics graphics-incl
catalogue-version 0.02
@@ -239117,7 +236563,6 @@ runfiles size=7
RELOC/tex/latex/pst-infixplot/infix-RPN.sty
RELOC/tex/latex/pst-infixplot/pst-infixplot.sty
catalogue-ctan /graphics/pstricks/contrib/pst-infixplot
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics graphics-plot pstricks
catalogue-version 0.11
@@ -239151,7 +236596,6 @@ runfiles size=12
RELOC/tex/latex/pst-intersect/pst-intersect.sty
catalogue-contact-repository https://github.com/cbersch/pst-intersect
catalogue-ctan /graphics/pstricks/contrib/pst-intersect
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl
catalogue-topics graphics-supp pstricks
catalogue-version 0.4
@@ -239179,7 +236623,6 @@ runfiles size=7
RELOC/tex/generic/pst-jtree/pst-jtree.tex
RELOC/tex/latex/pst-jtree/pst-jtree.sty
catalogue-ctan /graphics/pstricks/contrib/pst-jtree
-catalogue-date 2018-09-15 12:44:08 +0200
catalogue-license lppl1.3
catalogue-topics linguistic tree pstricks
catalogue-version 2.6
@@ -239205,7 +236648,6 @@ runfiles size=15
RELOC/tex/generic/pst-knot/pst-knot.tex
RELOC/tex/latex/pst-knot/pst-knot.sty
catalogue-ctan /graphics/pstricks/contrib/pst-knot
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics decoration pstricks
catalogue-version 0.2
@@ -239242,7 +236684,6 @@ runfiles size=14
RELOC/tex/generic/pst-labo/pst-laboObj.tex
RELOC/tex/latex/pst-labo/pst-labo.sty
catalogue-ctan /graphics/pstricks/contrib/pst-labo
-catalogue-date 2018-09-15 12:46:50 +0200
catalogue-license lppl
catalogue-topics chemistry graphics-use
catalogue-version 2.04
@@ -239268,7 +236709,6 @@ docfiles size=29
runfiles size=3
RELOC/tex/latex/pst-layout/pst-layout.sty
catalogue-ctan /graphics/pstricks/contrib/pst-layout
-catalogue-date 2018-09-15 12:49:24 +0200
catalogue-license lppl
catalogue-topics layout table pstricks
catalogue-version .95
@@ -239298,7 +236738,6 @@ runfiles size=2
RELOC/tex/generic/pst-lens/pst-lens.tex
RELOC/tex/latex/pst-lens/pst-lens.sty
catalogue-ctan /graphics/pstricks/contrib/pst-lens
-catalogue-date 2018-09-15 12:51:52 +0200
catalogue-license lppl
catalogue-topics optics pstricks
catalogue-version 1.02
@@ -239331,7 +236770,6 @@ runfiles size=3
RELOC/tex/latex/pst-light3d/pst-light3d.sty
catalogue-also xkeyval
catalogue-ctan /graphics/pstricks/contrib/pst-light3d
-catalogue-date 2018-09-15 12:53:47 +0200
catalogue-license lppl
catalogue-topics graphics-3d graphics-use pstricks
catalogue-version 0.12
@@ -239360,7 +236798,6 @@ runfiles size=4
RELOC/tex/generic/pst-lsystem/pst-lsystem.tex
RELOC/tex/latex/pst-lsystem/pst-lsystem.sty
catalogue-ctan /graphics/pstricks/contrib/pst-lsystem
-catalogue-date 2018-12-31 16:35:08 +0100
catalogue-license lppl
catalogue-topics pstricks graphics-use
catalogue-version 0.02
@@ -239390,7 +236827,6 @@ runfiles size=6
RELOC/tex/generic/pst-magneticfield/pst-magneticfield.tex
RELOC/tex/latex/pst-magneticfield/pst-magneticfield.sty
catalogue-ctan /graphics/pstricks/contrib/pst-magneticfield
-catalogue-date 2019-01-20 22:09:22 +0100
catalogue-license lppl
catalogue-topics physics pstricks
catalogue-version 1.16
@@ -239453,7 +236889,6 @@ runfiles size=10
RELOC/tex/latex/pst-marble/pst-marble.sty
catalogue-contact-home http://people.csail.mit.edu/jaffer/Marbling/How-To
catalogue-ctan /graphics/pstricks/contrib/pst-marble
-catalogue-date 2019-05-01 21:41:19 +0200
catalogue-license lppl1.3c
catalogue-topics graphics graphics-use pstricks
catalogue-version 1.6
@@ -239489,7 +236924,6 @@ runfiles size=5
RELOC/tex/generic/pst-math/pst-math.tex
RELOC/tex/latex/pst-math/pst-math.sty
catalogue-ctan /graphics/pstricks/contrib/pst-math
-catalogue-date 2018-12-15 22:57:07 +0100
catalogue-license lppl
catalogue-topics maths calculation pstricks
catalogue-version 0.65
@@ -239527,7 +236961,6 @@ runfiles size=21
RELOC/tex/generic/pst-mirror/pst-mirror.tex
RELOC/tex/latex/pst-mirror/pst-mirror.sty
catalogue-ctan /graphics/pstricks/contrib/pst-mirror
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics graphics-use pstricks
catalogue-version 1.01
@@ -239563,7 +236996,6 @@ runfiles size=7
RELOC/tex/generic/pst-moire/pst-moire.tex
RELOC/tex/latex/pst-moire/pst-moire.sty
catalogue-ctan /graphics/pstricks/contrib/pst-moire
-catalogue-date 2018-11-22 19:45:43 +0100
catalogue-license lppl1.3c
catalogue-topics graphics-use pstricks
catalogue-version 2.1
@@ -239601,7 +237033,6 @@ runfiles size=29
RELOC/tex/generic/pst-node/pst-node97.tex
RELOC/tex/latex/pst-node/pst-node.sty
catalogue-ctan /graphics/pstricks/contrib/pst-node
-catalogue-date 2019-03-03 15:57:10 +0100
catalogue-license lppl
catalogue-topics graphics-in-tex linguistic
catalogue-version 1.42
@@ -239633,7 +237064,6 @@ runfiles size=4
RELOC/tex/generic/pst-ob3d/pst-ob3d.tex
RELOC/tex/latex/pst-ob3d/pst-ob3d.sty
catalogue-ctan /graphics/pstricks/contrib/pst-ob3d
-catalogue-date 2018-09-15 12:55:45 +0200
catalogue-license lppl
catalogue-topics graphics-3d pstricks
catalogue-version 0.21
@@ -239670,7 +237100,6 @@ runfiles size=6
RELOC/tex/latex/pst-ode/pst-ode.sty
catalogue-contact-repository https://gitlab.com/agrahn/pst-ode
catalogue-ctan /graphics/pstricks/contrib/pst-ode
-catalogue-date 2019-03-05 13:29:46 +0100
catalogue-license lppl
catalogue-topics maths pstricks graphics-plot
catalogue-version 0.13
@@ -239709,7 +237138,6 @@ runfiles size=59
RELOC/tex/latex/pst-optexp/pst-optexp.sty
catalogue-contact-repository https://github.com/cbersch/pst-optexp
catalogue-ctan /graphics/pstricks/contrib/pst-optexp
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl1.3
catalogue-topics optics diagram-lab pstricks
catalogue-version 5.2
@@ -239736,7 +237164,6 @@ runfiles size=20
RELOC/tex/generic/pst-optic/pst-optic.tex
RELOC/tex/latex/pst-optic/pst-optic.sty
catalogue-ctan /graphics/pstricks/contrib/pst-optic
-catalogue-date 2018-09-15 12:57:29 +0200
catalogue-license lppl
catalogue-topics physics diagram pstricks
catalogue-version 1.02
@@ -239768,7 +237195,6 @@ runfiles size=5
RELOC/tex/generic/pst-osci/pst-osci.tex
RELOC/tex/latex/pst-osci/pst-osci.sty
catalogue-ctan /graphics/pstricks/contrib/pst-osci
-catalogue-date 2018-09-15 13:01:24 +0200
catalogue-license lppl
catalogue-topics graphics-use pstricks
catalogue-version 2.82
@@ -239797,7 +237223,6 @@ runfiles size=3
RELOC/tex/generic/pst-ovl/pst-ovl.tex
RELOC/tex/latex/pst-ovl/pst-ovl.sty
catalogue-ctan /graphics/pstricks/contrib/pst-ovl
-catalogue-date 2017-10-09 21:02:41 +0200
catalogue-license lppl
catalogue-topics pstricks presentation graphics-supp
catalogue-version 0.07a
@@ -239835,7 +237260,6 @@ runfiles size=6
RELOC/tex/generic/pst-pad/pst-pad.tex
RELOC/tex/latex/pst-pad/pst-pad.sty
catalogue-ctan /graphics/pstricks/contrib/pst-pad
-catalogue-date 2018-09-15 13:04:01 +0200
catalogue-license lppl
catalogue-topics graphics-use pstricks
catalogue-version 0.3b
@@ -239886,7 +237310,6 @@ catalogue-also pdftricks
catalogue-contact-bugs https://github.com/rolfn/pst-pdf/issues
catalogue-contact-repository https://github.com/rolfn/pst-pdf
catalogue-ctan /macros/latex/contrib/pst-pdf
-catalogue-date 2019-11-16 10:27:38 +0100
catalogue-license lppl1.2
catalogue-topics graphics-epspdf
catalogue-version 1.2e
@@ -240069,7 +237492,6 @@ runfiles size=5
RELOC/tex/latex/pst-pdgr/pst-pdgr.sty
catalogue-also pedigree-perl
catalogue-ctan /graphics/pstricks/contrib/pedigree/pst-pdgr
-catalogue-date 2017-11-20 23:58:47 +0100
catalogue-license lppl
catalogue-topics humanities pstricks
catalogue-version 0.4
@@ -240098,7 +237520,6 @@ runfiles size=6
RELOC/tex/generic/pst-perspective/pst-perspective.tex
RELOC/tex/latex/pst-perspective/pst-perspective.sty
catalogue-ctan /graphics/pstricks/contrib/pst-perspective
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics graphics-3d pstricks
catalogue-version 1.05
@@ -240127,7 +237548,6 @@ srcfiles size=1
runfiles size=3
RELOC/tex/latex/pst-platon/pst-platon.sty
catalogue-ctan /graphics/pstricks/contrib/pst-platon
-catalogue-date 2018-09-15 13:08:05 +0200
catalogue-license lppl
catalogue-topics maths graphics-3d pstricks
catalogue-version 0.01
@@ -240176,7 +237596,6 @@ catalogue-contact-home https://www.tug.org/PSTricks/
catalogue-contact-repository http://comedy.dante.de/~herbert/texnik/
catalogue-contact-support http://tug.org/mailman/listinfo/pstricks
catalogue-ctan /graphics/pstricks/contrib/pst-plot
-catalogue-date 2019-07-16 21:00:02 +0200
catalogue-license lppl
catalogue-topics data-import data-disp pstricks
catalogue-version 1.92
@@ -240225,7 +237644,6 @@ runfiles size=1277
RELOC/tex/latex/pst-poker/Queen-spade-color.eps
RELOC/tex/latex/pst-poker/pst-poker.sty
catalogue-ctan /graphics/pstricks/contrib/pst-poker
-catalogue-date 2018-08-03 21:43:01 +0200
catalogue-license lgpl3
catalogue-topics pstricks games
catalogue-version 0.03
@@ -240255,7 +237673,6 @@ runfiles size=4
RELOC/tex/generic/pst-poly/pst-poly.tex
RELOC/tex/latex/pst-poly/pst-poly.sty
catalogue-ctan /graphics/pstricks/contrib/pst-poly
-catalogue-date 2018-09-15 13:09:48 +0200
catalogue-license lppl
catalogue-topics maths pstricks
catalogue-version 1.63
@@ -240283,7 +237700,6 @@ runfiles size=16
RELOC/tex/generic/pst-pulley/pst-pulley.tex
RELOC/tex/latex/pst-pulley/pst-pulley.sty
catalogue-ctan /graphics/pstricks/contrib/pst-pulley
-catalogue-date 2018-09-15 13:11:53 +0200
catalogue-license lppl1.3
catalogue-topics graphics-use pstricks diagram
catalogue-version 0.02
@@ -240307,7 +237723,6 @@ runfiles size=2
RELOC/tex/generic/pst-qtree/pst-qtree.tex
RELOC/tex/latex/pst-qtree/pst-qtree.sty
catalogue-ctan /graphics/pstricks/contrib/pst-qtree
-catalogue-date 2018-09-15 13:13:35 +0200
catalogue-license gpl
catalogue-topics tree
@@ -240331,7 +237746,6 @@ runfiles size=3
RELOC/tex/generic/pst-rputover/pst-rputover.tex
RELOC/tex/latex/pst-rputover/pst-rputover.sty
catalogue-ctan /graphics/pstricks/contrib/pst-rputover
-catalogue-date 2017-07-01 05:09:50 +0200
catalogue-license lppl1.3c
catalogue-topics pstricks
catalogue-version 1.0
@@ -240365,7 +237779,6 @@ runfiles size=5
RELOC/tex/generic/pst-rubans/pst-rubans.tex
RELOC/tex/latex/pst-rubans/pst-rubans.sty
catalogue-ctan /graphics/pstricks/contrib/pst-rubans
-catalogue-date 2018-09-15 13:15:39 +0200
catalogue-license lppl
catalogue-topics graphics pstricks
catalogue-version 1.2
@@ -240424,7 +237837,6 @@ runfiles size=4
RELOC/tex/generic/pst-shell/pst-shell.tex
RELOC/tex/latex/pst-shell/pst-shell.sty
catalogue-ctan /graphics/pstricks/contrib/pst-shell
-catalogue-date 2016-12-29 05:38:19 +0100
catalogue-license lppl
catalogue-topics graphics-in-tex colour pstricks dvips-special xetex
catalogue-version 0.03
@@ -240457,7 +237869,6 @@ runfiles size=6
RELOC/tex/generic/pst-sigsys/pst-sigsys.tex
RELOC/tex/latex/pst-sigsys/pst-sigsys.sty
catalogue-ctan /graphics/pstricks/contrib/pst-sigsys
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics physics engineering pstricks
catalogue-version 1.4
@@ -240495,7 +237906,6 @@ runfiles size=5
RELOC/tex/generic/pst-slpe/pst-slpe.tex
RELOC/tex/latex/pst-slpe/pst-slpe.sty
catalogue-ctan /graphics/pstricks/contrib/pst-slpe
-catalogue-date 2018-09-15 13:19:48 +0200
catalogue-license lppl
catalogue-topics colour pstricks
catalogue-version 1.31
@@ -240527,7 +237937,6 @@ runfiles size=6
RELOC/tex/generic/pst-solarsystem/pst-solarsystem.tex
RELOC/tex/latex/pst-solarsystem/pst-solarsystem.sty
catalogue-ctan /graphics/pstricks/contrib/pst-solarsystem
-catalogue-date 2018-09-15 13:22:10 +0200
catalogue-license lppl
catalogue-topics astronomy pstricks
catalogue-version 0.13
@@ -240691,7 +238100,6 @@ runfiles size=81
RELOC/tex/latex/pst-solides3d/pst-solides3d.sty
catalogue-contact-home http://tug.org/PSTricks/main.cgi/
catalogue-ctan /graphics/pstricks/contrib/pst-solides3d
-catalogue-date 2018-12-27 17:25:55 +0100
catalogue-license lppl1.3
catalogue-topics graphics-3d pstricks
catalogue-version 4.34a
@@ -240720,7 +238128,6 @@ srcfiles size=1
runfiles size=2
RELOC/tex/latex/pst-soroban/pst-soroban.sty
catalogue-ctan /graphics/pstricks/contrib/pst-soroban
-catalogue-date 2018-09-15 13:24:17 +0200
catalogue-license lppl
catalogue-topics diagram pstricks
catalogue-version 1.0
@@ -240748,7 +238155,6 @@ runfiles size=68
RELOC/tex/generic/pst-spectra/pst-spectra.tex
RELOC/tex/latex/pst-spectra/pst-spectra.sty
catalogue-ctan /graphics/pstricks/contrib/pst-spectra
-catalogue-date 2018-09-15 13:26:13 +0200
catalogue-license lppl
catalogue-topics physics pstricks
catalogue-version 0.91
@@ -240784,7 +238190,6 @@ catalogue-contact-home http://tug.org/PSTricks/
catalogue-contact-repository http://comedy.dante.de/~herbert/texnik/
catalogue-contact-support http://tug.org/mailman/listinfo/pstricks
catalogue-ctan /graphics/pstricks/contrib/pst-spinner
-catalogue-date 2017-06-06 19:56:03 +0200
catalogue-license lppl
catalogue-topics graphics pstricks
catalogue-version 1.02
@@ -240822,7 +238227,6 @@ runfiles size=6
RELOC/tex/generic/pst-spirograph/pst-spirograph.tex
RELOC/tex/latex/pst-spirograph/pst-spirograph.sty
catalogue-ctan /graphics/pstricks/contrib/pst-spirograph
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics graphics-in-tex pstricks
catalogue-version 0.41
@@ -240849,7 +238253,6 @@ runfiles size=4
RELOC/tex/generic/pst-stru/pst-stru.tex
RELOC/tex/latex/pst-stru/pst-stru.sty
catalogue-ctan /graphics/pstricks/contrib/pst-stru
-catalogue-date 2018-09-15 13:29:54 +0200
catalogue-license lppl
catalogue-topics graphics-use engineering
catalogue-version 0.13
@@ -240872,7 +238275,6 @@ docfiles size=10
RELOC/doc/generic/pst-support/latex-pstpdf-pdf.tco
RELOC/doc/generic/pst-support/pdflatex-autopstpdf.tco
catalogue-ctan /graphics/pstricks/pst-support
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics compilation
@@ -240901,7 +238303,6 @@ runfiles size=5
RELOC/tex/latex/pst-text/pst-text.sty
catalogue-also textpath
catalogue-ctan /graphics/pstricks/contrib/pst-text
-catalogue-date 2018-12-29 22:53:50 +0100
catalogue-license lppl
catalogue-topics graphics-subpic
catalogue-version 1.02
@@ -240931,7 +238332,6 @@ runfiles size=2
RELOC/tex/generic/pst-thick/pst-thick.tex
RELOC/tex/latex/pst-thick/pst-thick.sty
catalogue-ctan /graphics/pstricks/contrib/pst-thick
-catalogue-date 2018-09-15 13:33:51 +0200
catalogue-license lppl
catalogue-topics graphics-subpic
catalogue-version 1.0
@@ -240958,7 +238358,6 @@ runfiles size=6
RELOC/tex/generic/pst-tools/pst-tools.tex
RELOC/tex/latex/pst-tools/pst-tools.sty
catalogue-ctan /graphics/pstricks/contrib/pst-tools
-catalogue-date 2017-12-03 12:35:57 +0100
catalogue-license lppl
catalogue-topics graphics pstricks
catalogue-version 0.09b
@@ -240985,7 +238384,6 @@ runfiles size=10
RELOC/tex/generic/pst-tree/pst-tree.tex
RELOC/tex/latex/pst-tree/pst-tree.sty
catalogue-ctan /graphics/pstricks/contrib/pst-tree
-catalogue-date 2018-09-15 13:35:58 +0200
catalogue-license lppl
catalogue-topics tree linguistic
catalogue-version 1.13
@@ -241013,7 +238411,6 @@ runfiles size=4
RELOC/tex/generic/pst-turtle/pst-turtle.tex
RELOC/tex/latex/pst-turtle/pst-turtle.sty
catalogue-ctan /graphics/pstricks/contrib/pst-turtle
-catalogue-date 2019-10-02 17:00:36 +0200
catalogue-license lppl
catalogue-topics graphics pstricks
catalogue-version 0.02
@@ -241044,7 +238441,6 @@ runfiles size=21
RELOC/tex/generic/pst-tvz/pst-tvz.tex
RELOC/tex/latex/pst-tvz/pst-tvz.sty
catalogue-ctan /graphics/pstricks/contrib/pst-tvz
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics tree linguistic
catalogue-version 1.01
@@ -241084,7 +238480,6 @@ runfiles size=7
RELOC/tex/latex/pst-uml/pst-uml.sty
catalogue-also metauml
catalogue-ctan /graphics/pstricks/contrib/pst-uml
-catalogue-date 2018-09-15 13:38:22 +0200
catalogue-license lppl
catalogue-topics uml pstricks
catalogue-version 0.83
@@ -241108,7 +238503,6 @@ runfiles size=463
RELOC/dvips/pst-vectorian/psvectorian.pro
RELOC/tex/latex/pst-vectorian/psvectorian.sty
catalogue-ctan /graphics/pstricks/contrib/pst-vectorian
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics decoration
catalogue-version 0.4
@@ -241138,7 +238532,6 @@ runfiles size=10
RELOC/tex/generic/pst-vehicle/pst-vehicle.tex
RELOC/tex/latex/pst-vehicle/pst-vehicle.sty
catalogue-ctan /graphics/pstricks/contrib/pst-vehicle
-catalogue-date 2017-09-16 20:11:01 +0200
catalogue-license lppl1.3c
catalogue-topics maths pstricks graphics-use
catalogue-version 1.2
@@ -241164,7 +238557,6 @@ runfiles size=1
RELOC/tex/latex/pst-venn/pst-venn.sty
catalogue-also venndiagram venn
catalogue-ctan /graphics/pstricks/contrib/pst-venn
-catalogue-date 2018-12-06 07:51:50 +0100
catalogue-license lppl
catalogue-topics diagram-maths pstricks
catalogue-version 0.01
@@ -241189,7 +238581,6 @@ docfiles size=28
runfiles size=2
RELOC/tex/latex/pst-vowel/pst-vowel.sty
catalogue-ctan /macros/latex/contrib/pst-vowel
-catalogue-date 2018-09-15 13:40:17 +0200
catalogue-license lppl
catalogue-topics phonetic
catalogue-version 1.0
@@ -241221,7 +238612,6 @@ runfiles size=27
RELOC/tex/generic/pst-vue3d/pst-vue3d.tex
RELOC/tex/latex/pst-vue3d/pst-vue3d.sty
catalogue-ctan /graphics/pstricks/contrib/pst-vue3d
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics graphics-use graphics-3d
catalogue-version 1.24
@@ -241260,7 +238650,6 @@ docfiles size=128
runfiles size=12
texmf-dist/scripts/pst2pdf/pst2pdf.pl
catalogue-ctan /graphics/pstricks/scripts/pst2pdf
-catalogue-date 2017-10-04 15:33:08 +0200
catalogue-license gpl2
catalogue-topics graphics graphics-epspdf
catalogue-version 0.18
@@ -241437,7 +238826,6 @@ runfiles size=6
RELOC/tex/latex/pstool/pstool.sty
catalogue-contact-repository https://github.com/wspr/pstool
catalogue-ctan /macros/latex/contrib/pstool
-catalogue-date 2018-01-20 10:12:28 +0100
catalogue-license lppl1.3c
catalogue-topics graphics-epspdf graphics-text
catalogue-version 1.5e
@@ -241484,7 +238872,6 @@ runfiles size=11
texmf-dist/scripts/texlive/ps2frag.sh
texmf-dist/scripts/texlive/pslatex.sh
catalogue-ctan /support/ps2eps
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics ps-manip
catalogue-version 1.68
@@ -241788,7 +239175,6 @@ catalogue-contact-home http://tug.org/PSTricks
catalogue-contact-repository http://comedy.dante.de/~herbert/TeXnik/
catalogue-contact-support http://tug.org/mailman/listinfo/pstricks
catalogue-ctan /graphics/pstricks/base
-catalogue-date 2019-05-11 22:03:57 +0200
catalogue-license lppl1.3
catalogue-topics graphics-in-tex colour pstricks dvips-special xetex
catalogue-version 2.97
@@ -241838,7 +239224,6 @@ runfiles size=25
RELOC/tex/generic/pstricks-add/pstricks-add.tex
RELOC/tex/latex/pstricks-add/pstricks-add.sty
catalogue-ctan /graphics/pstricks/contrib/pstricks-add
-catalogue-date 2019-11-02 12:56:51 +0100
catalogue-license lppl
catalogue-topics graphics-in-tex pstricks
catalogue-version 3.89
@@ -241918,7 +239303,6 @@ docfiles size=3772
RELOC/doc/latex/pstricks_calcnotes/README details="Readme"
RELOC/doc/latex/pstricks_calcnotes/ThreeAppsPDF.pdf
catalogue-ctan /info/pstricks_calcnotes
-catalogue-date 2018-09-16 15:47:34 +0200
catalogue-license lppl
catalogue-topics pstricks documentation
catalogue-version 1.2
@@ -241948,7 +239332,6 @@ runfiles size=7
RELOC/tex/latex/pstring/pstring.sty
catalogue-contact-home http://william.famille-blum.org/software/latex/
catalogue-ctan /macros/latex/contrib/pstring
-catalogue-date 2018-09-15 13:51:14 +0200
catalogue-license pd
catalogue-topics scientific-docs
@@ -241995,7 +239378,6 @@ runfiles size=7
texmf-dist/scripts/psutils/psjoin.pl
catalogue-also pssplit
catalogue-contact-repository http://tug.org/svn/texlive/trunk/Build/source/texk/web2c/
-catalogue-date 2019-01-02 05:41:34 +0100
catalogue-license other-free
catalogue-topics ps-manip
catalogue-version p17
@@ -242314,7 +239696,6 @@ catalogue-contact-home http://www.ascii.co.jp/pb/ptex/
catalogue-contact-repository https://tug.org/svn/texlive/trunk/Build/source/texk/web2c/ptexdir
catalogue-contact-support http://lists.tug.org/tex-k
catalogue-ctan /language/japanese/ptex
-catalogue-date 2019-01-08 20:07:01 +0100
catalogue-license other-free
catalogue-topics engine japanese
@@ -242345,7 +239726,6 @@ runfiles size=14
RELOC/tex/ptex/ptex-base/ptex.tex
catalogue-contact-repository https://github.com/texjporg/ptex-base
catalogue-ctan /language/japanese/ptex-base
-catalogue-date 2019-04-03 15:55:31 +0200
catalogue-license bsd3
catalogue-topics format japanese
@@ -242595,7 +239975,6 @@ runfiles size=235
texmf-dist/scripts/ptex-fontmaps/kanji-fontmap-creator.pl
catalogue-contact-repository https://github.com/texjporg/jfontmaps
catalogue-ctan /fonts/ptex-fontmaps
-catalogue-date 2019-05-06 15:19:14 +0200
catalogue-license pdgpl3
catalogue-topics font-use japanese chinese korean
catalogue-version 20190506.0
@@ -242944,7 +240323,6 @@ runfiles size=1724
RELOC/fonts/vf/ptex-fonts/standard/tmin9.vf
catalogue-contact-repository https://github.com/texjporg/ptex-fonts
catalogue-ctan /fonts/ptex-fonts
-catalogue-date 2018-03-09 16:42:25 +0100
catalogue-license bsd3
catalogue-topics font-cjk
@@ -242985,7 +240363,6 @@ docfiles size=734
RELOC/doc/ptex/ptex-manual/ptexskip_asciimw.tex
catalogue-contact-repository https://github.com/texjporg/ptex-manual
catalogue-ctan /info/ptex-manual
-catalogue-date 2019-11-26 20:23:43 +0100
catalogue-license bsd3
catalogue-topics japanese-doc
@@ -243323,7 +240700,6 @@ catalogue-contact-bugs https://github.com/texjporg/ptex2pdf/issues
catalogue-contact-home https://github.com/texjporg/ptex2pdf
catalogue-contact-repository https://github.com/texjporg/ptex2pdf.git
catalogue-ctan /language/japanese/ptex2pdf
-catalogue-date 2018-12-12 17:43:43 +0100
catalogue-license gpl2
catalogue-topics compilation japanese
catalogue-version 20181212.0
@@ -243492,7 +240868,6 @@ docfiles size=17
runfiles size=22
RELOC/tex/xelatex/ptext/ptext.sty
catalogue-ctan /macros/xetex/latex/ptext
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.2
catalogue-topics persian macro-supp xetex dummy-gen
catalogue-version 1.1
@@ -243527,7 +240902,6 @@ runfiles size=1
catalogue-contact-bugs https://github.com/rzach/ptolemaic-astronomy/issues
catalogue-contact-repository https://github.com/rzach/ptolemaic-astronomy
catalogue-ctan /graphics/pgf/contrib/ptolemaicastronomy
-catalogue-date 2019-04-06 07:05:41 +0200
catalogue-license lppl1.3c
catalogue-topics pgf-tikz logic
catalogue-version 1.0
@@ -243555,7 +240929,6 @@ runfiles size=12
RELOC/tex/latex/ptptex/ptptex.cls
RELOC/tex/latex/ptptex/wrapft.sty
catalogue-ctan /macros/latex/contrib/ptptex
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics journalpub physics
catalogue-version 0.91
@@ -243601,7 +240974,6 @@ runfiles size=20
RELOC/fonts/tfm/public/punk/punkbx20.tfm
RELOC/fonts/tfm/public/punk/punksl20.tfm
catalogue-ctan /fonts/punk
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license knuth
catalogue-topics font font-mf font-novelty
@@ -243625,7 +240997,6 @@ runfiles size=2
RELOC/tex/latex/punk-latex/ot1pnk.fd
RELOC/tex/latex/punk-latex/punk.sty
catalogue-ctan /macros/latex/contrib/punk-latex
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics font-supp
catalogue-version 1.1
@@ -243662,7 +241033,6 @@ runfiles size=424
RELOC/fonts/opentype/public/punknova/punknova-regular.otf
RELOC/fonts/opentype/public/punknova/punknova-slanted.otf
catalogue-ctan /fonts/punknova
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license other-free
catalogue-topics font font-otf font-novelty
catalogue-version 1.003
@@ -243692,7 +241062,6 @@ docfiles size=9
runfiles size=5
texmf-dist/scripts/purifyeps/purifyeps
catalogue-ctan /support/purifyeps
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics font-proc
catalogue-version 1.1
@@ -243871,7 +241240,6 @@ runfiles size=16
RELOC/tex/platex/pxbase/upkcat.sty
catalogue-contact-home https://github.com/zr-tex8r/PXbase
catalogue-ctan /language/japanese/pxbase
-catalogue-date 2017-07-06 10:05:14 +0200
catalogue-license mit
catalogue-topics japanese
catalogue-version 1.1b
@@ -243998,7 +241366,6 @@ runfiles size=106
RELOC/tex/platex/pxchfon/pxjafont.sty
catalogue-contact-repository https://github.com/zr-tex8r/PXchfon
catalogue-ctan /language/japanese/pxchfon
-catalogue-date 2019-11-24 16:40:46 +0100
catalogue-license mit
catalogue-topics japanese font-supp
catalogue-version 1.7a
@@ -244026,7 +241393,6 @@ docfiles size=59
runfiles size=7
RELOC/tex/latex/pxcjkcat/pxcjkcat.sty
catalogue-ctan /macros/latex/contrib/pxcjkcat
-catalogue-date 2018-04-03 10:18:00 +0200
catalogue-license mit
catalogue-topics japanese multilingual
catalogue-version 1.1
@@ -244230,7 +241596,6 @@ runfiles size=305
RELOC/tex/latex/pxfonts/upxtt.fd
catalogue-also mathpazo
catalogue-ctan /fonts/pxfonts
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics font font-type1 font-maths font-symbol-maths
@@ -244261,7 +241626,6 @@ srcfiles size=4
runfiles size=2
RELOC/tex/latex/pxgreeks/pxgreeks.sty
catalogue-ctan /macros/latex/contrib/pxgreeks
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics font-supp-maths
catalogue-version 1.0
@@ -244289,7 +241653,6 @@ runfiles size=15
RELOC/tex/platex/pxjahyper/pxjahyper.sty
catalogue-contact-repository https://github.com/zr-tex8r/PXjahyper
catalogue-ctan /language/japanese/pxjahyper
-catalogue-date 2019-11-23 20:01:18 +0100
catalogue-license mit
catalogue-topics japanese hyper
catalogue-version 0.4a
@@ -244353,7 +241716,6 @@ runfiles size=30
RELOC/tex/latex/pxjodel/pxjodel.sty
catalogue-contact-repository https://github.com/zr-tex8r/PXjodel
catalogue-ctan /language/japanese/pxjodel
-catalogue-date 2019-02-17 05:29:19 +0100
catalogue-license mit
catalogue-topics font-mgmt japanese font-sel font-use font-cjk
catalogue-version 0.2a
@@ -244376,7 +241738,6 @@ docfiles size=2
runfiles size=1
RELOC/tex/latex/pxpgfmark/pxpgfmark.sty
catalogue-ctan /graphics/pgf/contrib/pxpgfmark
-catalogue-date 2016-12-18 08:34:28 +0100
catalogue-license mit
catalogue-topics graphics-drv
catalogue-version 0.2
@@ -244421,7 +241782,6 @@ runfiles size=20
RELOC/tex/platex/pxrubrica/pxrubrica.sty
catalogue-contact-home https://github.com/zr-tex8r/PXrubrica
catalogue-ctan /language/japanese/pxrubrica
-catalogue-date 2018-08-16 22:17:52 +0200
catalogue-license mit
catalogue-topics japanese std-conform
catalogue-version 1.3c
@@ -244443,7 +241803,6 @@ docfiles size=2
runfiles size=1
RELOC/tex/latex/pxtatescale/pxtatescale.sty
catalogue-ctan /macros/latex/contrib/pxtatescale
-catalogue-date 2017-01-24 05:45:54 +0100
catalogue-license mit
catalogue-topics graphics-drv japanese
catalogue-version 0.4
@@ -244495,7 +241854,6 @@ runfiles size=28
RELOC/tex/latex/pxtxalfa/utx-frak.fd
RELOC/tex/latex/pxtxalfa/utx-of.fd
catalogue-ctan /fonts/pxtxalfa
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics font font-maths font-virtual
catalogue-version 1
@@ -245022,7 +242380,6 @@ runfiles size=14899
RELOC/tex/latex/pxufont/pxufont.sty
catalogue-contact-repository https://github.com/zr-tex8r/PXufont
catalogue-ctan /language/japanese/pxufont
-catalogue-date 2019-03-12 08:30:26 +0100
catalogue-license mit
catalogue-topics japanese font-use font-cjk
catalogue-version 0.5
@@ -245057,7 +242414,6 @@ runfiles size=8
texmf-dist/scripts/pygmentex/pygmentex.py
texmf-dist/tex/latex/pygmentex/pygmentex.sty
catalogue-ctan /macros/latex/contrib/pygmentex
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics listing synt-hlt
catalogue-version 0.8
@@ -245222,7 +242578,6 @@ docfiles size=1
runfiles size=1
RELOC/tex/latex/python/python.sty
catalogue-ctan /macros/latex/contrib/python
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics callback
catalogue-version 0.21
@@ -245244,7 +242599,6 @@ runfiles size=2
RELOC/tex/latex/pythonhighlight/pythonhighlight.sty
catalogue-also listings
catalogue-ctan /macros/latex/contrib/pythonhighlight
-catalogue-date 2017-02-11 05:22:12 +0100
catalogue-license other-free
catalogue-topics listing
@@ -245304,7 +242658,6 @@ runfiles size=154
catalogue-also perltex
catalogue-contact-repository https://github.com/gpoore/pythontex
catalogue-ctan /macros/latex/contrib/pythontex
-catalogue-date 2019-09-24 06:33:07 +0200
catalogue-license lppl1.3
catalogue-topics callback
catalogue-version 0.17
@@ -245488,7 +242841,6 @@ runfiles size=4
RELOC/tex/latex/qcircuit/qcircuit.sty
catalogue-contact-repository https://github.com/CQuIC/qcircuit
catalogue-ctan /graphics/qcircuit
-catalogue-date 2018-08-14 19:25:41 +0200
catalogue-license gpl2
catalogue-topics diagram-circ graphics-in-tex
catalogue-version 2.6.0
@@ -245528,7 +242880,6 @@ runfiles size=4
RELOC/tex/latex/qcm/qcm.cls
RELOC/tex/latex/qcm/qcm.sty
catalogue-ctan /macros/latex/contrib/qcm
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics exam
catalogue-version 2.1
@@ -245551,7 +242902,6 @@ docfiles size=4
runfiles size=6
RELOC/tex/latex/qobitree/qobitree.tex
catalogue-ctan /macros/latex/contrib/qobitree
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics tree
@@ -245625,7 +242975,6 @@ runfiles size=24
RELOC/tex/latex/qrcode/qrcode.sty
catalogue-also pst-barcode
catalogue-ctan /macros/latex/contrib/qrcode
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics barcode qrcode rule
catalogue-version 1.51
@@ -245655,7 +243004,6 @@ runfiles size=1
catalogue-contact-bugs https://github.com/msr-quarc/qsharp.sty/issues
catalogue-contact-repository https://github.com/msr-quarc/qsharp.sty
catalogue-ctan /macros/latex/contrib/qsharp
-catalogue-date 2019-01-20 05:31:27 +0100
catalogue-license lppl1.3c
catalogue-topics synt-hlt
catalogue-version 0.3.1901.1401
@@ -245699,7 +243047,6 @@ runfiles size=5
RELOC/tex/latex/qstest/makematch.sty
RELOC/tex/latex/qstest/qstest.sty
catalogue-ctan /macros/latex/contrib/qstest
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license lppl
catalogue-topics units
@@ -245730,7 +243077,6 @@ srcfiles size=1
runfiles size=7
RELOC/tex/latex/qsymbols/qsymbols.sty
catalogue-ctan /macros/latex/contrib/qsymbols
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics shortcut
@@ -245760,7 +243106,6 @@ runfiles size=10
RELOC/tex/latex/qtree/qtree.sty
catalogue-also tree-dvips
catalogue-ctan /macros/latex/contrib/qtree
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics tree linguistic
catalogue-version 3.1b
@@ -245784,7 +243129,6 @@ runfiles size=9
RELOC/tex/latex/quantikz/tikzlibraryquantikz.code.tex
catalogue-also qcircuit
catalogue-ctan /graphics/pgf/contrib/quantikz
-catalogue-date 2019-04-26 19:27:57 +0200
catalogue-license cc-by-4
catalogue-topics graphics pgf-tikz diagram-circ
catalogue-version 0.9.5
@@ -245819,7 +243163,6 @@ catalogue-contact-bugs https://github.com/quantum-journal/quantum-journal/issues
catalogue-contact-home https://quantum-journal.org
catalogue-contact-repository https://github.com/quantum-journal/quantum-journal
catalogue-ctan /macros/latex/contrib/quantumarticle
-catalogue-date 2019-08-21 20:06:10 +0200
catalogue-license lppl1.3c
catalogue-topics class journalpub physics
catalogue-version 5.0
@@ -246088,7 +243431,6 @@ runfiles size=1006
RELOC/tex/latex/quattrocento/TS1QuattrocentoSans-TLF.fd
RELOC/tex/latex/quattrocento/quattrocento.sty
catalogue-ctan /fonts/quattrocento
-catalogue-date 2019-10-14 10:21:15 +0200
catalogue-license ofllppl
catalogue-topics font font-body font-proportional font-sans font-serif font-t1enc font-type1 font-otf
@@ -246113,7 +243455,6 @@ docfiles size=47
runfiles size=1
RELOC/tex/latex/quicktype/quicktype.sty
catalogue-ctan /macros/latex/contrib/quicktype
-catalogue-date 2016-10-08 06:05:32 +0200
catalogue-license lppl1.3
catalogue-topics shortcut
catalogue-version 0.1
@@ -246145,7 +243486,6 @@ docfiles size=69
runfiles size=2
RELOC/tex/latex/quiz2socrative/quiz2socrative.sty
catalogue-ctan /macros/latex/contrib/quiz2socrative
-catalogue-date 2019-10-03 09:32:09 +0200
catalogue-license lppl1.3c
catalogue-topics exam
catalogue-version 1.0
@@ -246175,7 +243515,6 @@ srcfiles size=6
runfiles size=2
RELOC/tex/latex/quotchap/quotchap.sty
catalogue-ctan /macros/latex/contrib/quotchap
-catalogue-date 2019-07-09 17:45:58 +0200
catalogue-license gpl2
catalogue-topics headings
catalogue-version 1.2
@@ -246207,7 +243546,6 @@ srcfiles size=7
runfiles size=1
RELOC/tex/latex/quoting/quoting.sty
catalogue-ctan /macros/latex/contrib/quoting
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics quotation
catalogue-version 0.1c
@@ -246277,7 +243615,6 @@ runfiles size=39
RELOC/tex/latex/quotmark/quotmark-welsh.def
RELOC/tex/latex/quotmark/quotmark.sty
catalogue-ctan /macros/latex/contrib/quotmark
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics quotation
catalogue-version 1.0
@@ -246329,7 +243666,6 @@ catalogue-also lipsum ptext
catalogue-contact-bugs https://github.com/javadr/quran/issues
catalogue-contact-repository https://github.com/javadr/quran
catalogue-ctan /macros/xetex/latex/quran
-catalogue-date 2019-05-04 16:32:42 +0200
catalogue-license lppl1.3
catalogue-topics arabic macro-supp xetex dummy-gen
catalogue-version 1.51
@@ -246362,7 +243698,6 @@ catalogue-also lipsum ptext
catalogue-contact-bugs https://github.com/javadr/quran-de/issues
catalogue-contact-repository https://github.com/javadr/quran-de
catalogue-ctan /macros/xetex/latex/quran-de
-catalogue-date 2019-05-04 17:12:14 +0200
catalogue-license lppl1.3c
catalogue-topics german macro-supp xetex dummy-gen
catalogue-version 0.141
@@ -246399,7 +243734,6 @@ catalogue-also lipsum ptext
catalogue-contact-bugs https://github.com/javadr/quran-ur/issues
catalogue-contact-repository https://github.com/javadr/quran-ur
catalogue-ctan /macros/xetex/latex/quran-ur
-catalogue-date 2019-05-04 23:50:32 +0200
catalogue-license lppl1.3c
catalogue-topics macro-supp xetex dummy-gen
catalogue-version 0.1
@@ -246433,7 +243767,6 @@ runfiles size=31
RELOC/tex/latex/r_und_s/r_und_s.tex
catalogue-also mhchem
catalogue-ctan /macros/latex/contrib/r_und_s
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license other-free
catalogue-topics safety-notice
catalogue-version 1.3i
@@ -246471,7 +243804,6 @@ runfiles size=3
RELOC/tex/latex/ragged2e/ragged2e.sty
catalogue-also everysel
catalogue-ctan /macros/latex/contrib/ragged2e
-catalogue-date 2019-07-30 20:25:53 +0200
catalogue-license lppl1.3
catalogue-topics layout parshape
catalogue-version 2.2
@@ -247245,7 +244577,6 @@ runfiles size=3129
RELOC/tex/latex/raleway/raleway-type1-autoinst.sty
RELOC/tex/latex/raleway/raleway.sty
catalogue-ctan /fonts/raleway
-catalogue-date 2016-12-03 18:07:41 +0100
catalogue-license ofl
catalogue-topics font font-sans font-type1 font-otf font-supp
catalogue-version 1.4
@@ -247286,7 +244617,6 @@ srcfiles size=7
runfiles size=3
RELOC/tex/latex/ran_toks/ran_toks.sty
catalogue-ctan /macros/latex/contrib/ran_toks
-catalogue-date 2017-05-18 22:38:32 +0200
catalogue-license lppl1
catalogue-topics macro-supp
catalogue-version 1.1
@@ -247315,7 +244645,6 @@ srcfiles size=4
runfiles size=1
RELOC/tex/latex/randbild/randbild.sty
catalogue-ctan /macros/latex/contrib/randbild
-catalogue-date 2018-09-15 13:56:20 +0200
catalogue-license lppl
catalogue-topics graphics-use
catalogue-version 0.2
@@ -247354,7 +244683,6 @@ runfiles size=6
RELOC/tex/generic/randomlist/randomlist.sty
RELOC/tex/generic/randomlist/randomlist.tex
catalogue-ctan /macros/generic/randomlist
-catalogue-date 2018-01-07 14:49:11 +0100
catalogue-license lppl1.3
catalogue-topics list list-supp
catalogue-version 1.3
@@ -247385,7 +244713,6 @@ runfiles size=2
RELOC/tex/latex/randomwalk/randomwalk.sty
catalogue-contact-repository https://github.com/blefloch/latex-randomwalk
catalogue-ctan /macros/latex/contrib/randomwalk
-catalogue-date 2018-12-28 15:55:21 +0100
catalogue-license lppl1.3c
catalogue-topics graphics-in-tex calculation random expl3
catalogue-version 0.6
@@ -247411,7 +244738,6 @@ docfiles size=1
runfiles size=2
RELOC/tex/latex/randtext/randtext.sty
catalogue-ctan /macros/latex/contrib/randtext
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics security
@@ -247438,7 +244764,6 @@ runfiles size=5
RELOC/tex/latex/rank-2-roots/rank-2-roots.sty
catalogue-contact-home http://euclid.ucc.ie/mckay/
catalogue-ctan /graphics/pgf/contrib/rank-2-roots
-catalogue-date 2018-09-01 06:52:31 +0200
catalogue-license lppl1.3c
catalogue-topics maths pgf-tikz
catalogue-version 1.0
@@ -247468,7 +244793,6 @@ srcfiles size=9
runfiles size=2
RELOC/tex/latex/rccol/rccol.sty
catalogue-ctan /macros/latex/contrib/rccol
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.2
catalogue-topics table maths
catalogue-version 1.2c
@@ -247532,7 +244856,6 @@ runfiles size=9
RELOC/tex/latex/rcs/rcs.sty
catalogue-also rcsinfo
catalogue-ctan /macros/latex/contrib/rcs
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics version-control doc-mgmt
@@ -247563,7 +244886,6 @@ runfiles size=3
RELOC/tex/latex/rcs-multi/rcs-multi.sty
catalogue-also rcs rcsinfo
catalogue-ctan /macros/latex/contrib/rcs-multi
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics version-control doc-mgmt
catalogue-version 0.1a
@@ -247598,7 +244920,6 @@ runfiles size=4
RELOC/tex/latex/rcsinfo/rcsinfo.sty
catalogue-also rcs
catalogue-ctan /macros/latex/contrib/rcsinfo
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics version-control doc-mgmt
catalogue-version 1.11
@@ -247628,7 +244949,6 @@ runfiles size=4
RELOC/tex/latex/readarray/readarray.sty
catalogue-also getargs
catalogue-ctan /macros/latex/contrib/readarray
-catalogue-date 2016-11-15 23:30:18 +0100
catalogue-license lppl1.3
catalogue-topics data-manip
catalogue-version 2.0
@@ -247663,7 +244983,6 @@ srcfiles size=8
runfiles size=3
RELOC/tex/latex/realboxes/realboxes.sty
catalogue-ctan /macros/latex/contrib/realboxes
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics boxing
catalogue-version 0.2
@@ -247706,7 +245025,6 @@ catalogue-contact-bugs https://github.com/mscroggs/realhats/issues
catalogue-contact-home http://www.realhats.xyz
catalogue-contact-repository https://github.com/mscroggs/realhats
catalogue-ctan /macros/latex/contrib/realhats
-catalogue-date 2019-11-19 10:18:59 +0100
catalogue-license mit
catalogue-topics amusements graphics graphics-incl
catalogue-version 5.0
@@ -247739,7 +245057,6 @@ srcfiles size=5
runfiles size=2
RELOC/tex/latex/realscripts/realscripts.sty
catalogue-ctan /macros/latex/contrib/realscripts
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics off
catalogue-version 0.3d
@@ -247766,7 +245083,6 @@ catalogue-contact-home https://github.com/TruePath/Recursion-Theory-Latex-Packag
catalogue-contact-repository https://github.com/TruePath/Recursion-Theory-Latex-Package
catalogue-contact-support https://github.com/TruePath/Recursion-Theory-Latex-Package
catalogue-ctan /macros/latex/contrib/rec-thy
-catalogue-date 2019-02-17 09:19:28 +0100
catalogue-license pd
catalogue-topics maths
catalogue-version 3.01
@@ -247791,7 +245107,6 @@ runfiles size=1
RELOC/tex/latex/recipe/recipe.cls
catalogue-also recipecard recipebook
catalogue-ctan /macros/latex/contrib/recipe
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics cooking
catalogue-version 0.9
@@ -247829,7 +245144,6 @@ runfiles size=4
RELOC/tex/latex/recipebook/RecipeBook.cls
catalogue-also recipe recipecard
catalogue-ctan /macros/latex/contrib/recipebook
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics cooking class
@@ -247858,7 +245172,6 @@ runfiles size=2
RELOC/tex/latex/recipecard/recipecard.cls
catalogue-also recipe recipebook
catalogue-ctan /macros/latex/contrib/recipecard
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics cooking
catalogue-version 2.0
@@ -247881,7 +245194,6 @@ docfiles size=29
runfiles size=1
RELOC/tex/latex/rectopma/rectopma.sty
catalogue-ctan /macros/latex/contrib/rectopma
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics macro-supp
@@ -247907,7 +245219,6 @@ runfiles size=8
RELOC/fonts/type1/public/recycle/recycle.pfb
RELOC/tex/latex/recycle/recycle.sty
catalogue-ctan /fonts/recycle
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics font font-mf font-type1 font-specialist
@@ -247932,7 +245243,6 @@ docfiles size=14
runfiles size=3
RELOC/tex/latex/refcheck/refcheck.sty
catalogue-ctan /macros/latex/contrib/refcheck
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics label-ref debug-supp
catalogue-version 1.9.1
@@ -247964,7 +245274,6 @@ runfiles size=2
RELOC/tex/latex/refenums/refenums.sty
catalogue-contact-repository https://github.com/koppor/refenums
catalogue-ctan /macros/latex/contrib/refenums
-catalogue-date 2018-03-10 14:13:43 +0100
catalogue-license lppl1.3
catalogue-topics label-ref
catalogue-version 1.1.2
@@ -247994,7 +245303,6 @@ runfiles size=2
RELOC/tex/latex/reflectgraphics/reflectgraphics.sty
catalogue-contact-repository https://bitbucket.org/oreiche/reflectgraphics
catalogue-ctan /macros/latex/contrib/reflectgraphics
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl1.3
catalogue-topics graphics-manip
catalogue-version 0.2c
@@ -248032,7 +245340,6 @@ runfiles size=18
RELOC/tex/latex/refman/refart.cls
RELOC/tex/latex/refman/refrep.cls
catalogue-ctan /macros/latex/contrib/refman
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics class
catalogue-version 2.0e
@@ -248071,7 +245378,6 @@ runfiles size=8
RELOC/tex/latex/refstyle/refstyle.cfg
RELOC/tex/latex/refstyle/refstyle.sty
catalogue-ctan /macros/latex/contrib/refstyle
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics label-ref
catalogue-version 0.5
@@ -248100,7 +245406,6 @@ srcfiles size=4
runfiles size=1
RELOC/tex/latex/regcount/regcount.sty
catalogue-ctan /macros/latex/contrib/regcount
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics debug-supp
catalogue-version 1.0
@@ -248130,7 +245435,6 @@ srcfiles size=16
runfiles size=7
RELOC/tex/latex/regexpatch/regexpatch.sty
catalogue-ctan /macros/latex/contrib/regexpatch
-catalogue-date 2018-05-03 08:29:38 +0200
catalogue-license lppl1.3c
catalogue-topics macro-supp
catalogue-version 0.2d
@@ -248167,7 +245471,6 @@ srcfiles size=14
runfiles size=4
RELOC/tex/latex/register/register.sty
catalogue-ctan /macros/latex/contrib/register
-catalogue-date 2019-01-01 23:34:54 +0100
catalogue-license lppl1.3
catalogue-topics engineering comp-sci comp-net
catalogue-version 1.9
@@ -248201,7 +245504,6 @@ runfiles size=4
RELOC/tex/latex/regstats/regstats.sty
catalogue-also regcount
catalogue-ctan /macros/latex/contrib/regstats
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics debug-supp
catalogue-version 1.0h
@@ -248341,7 +245643,6 @@ catalogue-contact-bugs https://github.com/maieul/ledmac/issues/
catalogue-contact-repository https://github.com/maieul/ledmac/
catalogue-contact-support http://geekographie.maieul.net/146
catalogue-ctan /macros/latex/contrib/reledmac
-catalogue-date 2019-12-09 20:37:06 +0100
catalogue-license lppl1.3
catalogue-topics crit-ed
catalogue-version 2.32.3
@@ -248384,7 +245685,6 @@ runfiles size=17
RELOC/tex/latex/relenc/t1renc.def
RELOC/tex/latex/relenc/t1rzcm.fd
catalogue-ctan /macros/latex/contrib/relenc
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1
catalogue-topics font-devel
@@ -248407,7 +245707,6 @@ docfiles size=79
runfiles size=4
RELOC/tex/latex/relsize/relsize.sty
catalogue-ctan /macros/latex/contrib/relsize
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics font-sel macro-supp
catalogue-version 4.1
@@ -248430,7 +245729,6 @@ docfiles size=56
runfiles size=6
RELOC/tex/latex/reotex/reotex.sty
catalogue-ctan /graphics/pgf/contrib/reotex
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics diagram pgf-tikz
catalogue-version 1.1
@@ -248454,7 +245752,6 @@ runfiles size=3
RELOC/makeindex/repeatindex/repeatindex.ist
RELOC/tex/latex/repeatindex/repeatindex.sty
catalogue-ctan /macros/latex/contrib/repeatindex
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics index
catalogue-version 0.01
@@ -248480,7 +245777,6 @@ docfiles size=135
runfiles size=19
RELOC/metapost/repere/repere.mp
catalogue-ctan /graphics/metapost/contrib/macros/repere
-catalogue-date 2019-06-11 19:31:47 +0200
catalogue-license lppl1.3
catalogue-topics teaching
catalogue-version 19.06
@@ -248509,7 +245805,6 @@ srcfiles size=5
runfiles size=1
RELOC/tex/latex/repltext/repltext.sty
catalogue-ctan /macros/latex/contrib/repltext
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics pdf-feat
catalogue-version 1.0
@@ -248539,7 +245834,6 @@ runfiles size=3
catalogue-contact-bugs https://github.com/ho-tex/rerunfilecheck/issues
catalogue-contact-repository https://github.com/ho-tex/rerunfilecheck
catalogue-ctan /macros/latex/contrib/rerunfilecheck
-catalogue-date 2019-12-06 05:47:54 +0100
catalogue-license lppl1.3
catalogue-topics compilation
catalogue-version 1.9
@@ -248573,7 +245867,6 @@ runfiles size=14
RELOC/bibtex/bst/resphilosophica/resphilosophica.bst
RELOC/tex/latex/resphilosophica/resphilosophica.cls
catalogue-ctan /macros/latex/contrib/resphilosophica
-catalogue-date 2019-04-25 23:11:30 +0200
catalogue-license lppl1.3
catalogue-topics journalpub class
catalogue-version 1.35
@@ -248611,7 +245904,6 @@ runfiles size=1
RELOC/tex/xelatex/resumecls/resumecls.cls
catalogue-contact-home http://huxuan.org/projects/resumecls/
catalogue-ctan /macros/xetex/latex/resumecls
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl1.3
catalogue-topics cv chinese class
catalogue-version 0.3.2
@@ -248633,7 +245925,6 @@ docfiles size=2
runfiles size=2
RELOC/tex/plain/resumemac/resumemac.tex
catalogue-ctan /macros/plain/contrib/resumemac
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics cv plain-ext
@@ -248665,7 +245956,6 @@ catalogue-contact-home https://github.com/u-fischer/returntogrid
catalogue-contact-repository https://github.com/u-fischer/returntogrid
catalogue-contact-support https://github.com/u-fischer/returntogrid
catalogue-ctan /macros/latex/contrib/returntogrid
-catalogue-date 2018-08-24 05:44:41 +0200
catalogue-license lppl1.3c
catalogue-topics typeset-grid
catalogue-version 0.2
@@ -248687,7 +245977,6 @@ docfiles size=55
RELOC/doc/plain/reverxii/reverxii.pdf details="Package documentation"
RELOC/doc/plain/reverxii/reverxii.tex
catalogue-ctan /macros/plain/contrib/reverxii
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics games frivolous
@@ -248721,7 +246010,6 @@ srcfiles size=8
runfiles size=3
RELOC/tex/latex/revquantum/revquantum.sty
catalogue-ctan /macros/latex/contrib/revquantum
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license lppl1.3
catalogue-topics physics journalpub
catalogue-version 0.11
@@ -248829,7 +246117,6 @@ runfiles size=358
catalogue-also revtex4-0 revtex4-1
catalogue-contact-home https://journals.aps.org/revtex
catalogue-ctan /macros/latex/contrib/revtex
-catalogue-date 2019-01-18 22:11:36 +0100
catalogue-license lppl1.3c
catalogue-topics physics journalpub class
catalogue-version 4.2c
@@ -248886,7 +246173,6 @@ runfiles size=74
catalogue-also revtex4-1 revtex
catalogue-contact-home https://journals.aps.org/revtex
catalogue-ctan /obsolete/macros/latex/contrib/revtex4-0
-catalogue-date 2019-01-11 18:24:32 +0100
catalogue-license lppl
catalogue-topics physics journalpub obsolete
catalogue-version 4.0
@@ -248919,7 +246205,6 @@ runfiles size=2
catalogue-contact-bugs https://github.com/Ri-Ga/rgltxdoc/issues
catalogue-contact-repository https://github.com/Ri-Ga/rgltxdoc
catalogue-ctan /macros/latex/contrib/rgltxdoc
-catalogue-date 2019-05-18 22:31:50 +0200
catalogue-license lppl1.2
catalogue-topics doc-supp
catalogue-version 1.2
@@ -248945,7 +246230,6 @@ docfiles size=93
runfiles size=14
RELOC/tex/latex/ribbonproofs/ribbonproofs.sty
catalogue-ctan /macros/latex/contrib/ribbonproofs
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics proof
catalogue-version 1.0
@@ -248974,7 +246258,6 @@ srcfiles size=8
runfiles size=2
RELOC/tex/latex/rjlparshap/rjlpshap.sty
catalogue-ctan /macros/latex/contrib/rjlparshap
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.2
catalogue-topics micro-layout
catalogue-version 1.0
@@ -249003,7 +246286,6 @@ runfiles size=2
RELOC/tex/generic/rlepsf/rlepsf.tex
catalogue-also psfrag
catalogue-ctan /macros/generic/rlepsf
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics graphics
@@ -249034,7 +246316,6 @@ srcfiles size=17
runfiles size=12
RELOC/tex/latex/rmathbr/rmathbr.sty
catalogue-ctan /macros/latex/contrib/rmathbr
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics maths
catalogue-version 1.0.3
@@ -249068,7 +246349,6 @@ runfiles size=66
RELOC/tex/latex/rmpage/rmpage.sty
RELOC/tex/latex/rmpage/rmpgen.cfg
catalogue-ctan /macros/latex/contrib/rmpage
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics geometry
catalogue-version 0.92
@@ -251396,7 +248676,6 @@ runfiles size=6831
RELOC/tex/latex/roboto/roboto-mono.sty
RELOC/tex/latex/roboto/roboto.sty
catalogue-ctan /fonts/roboto
-catalogue-date 2019-12-11 18:28:59 +0100
catalogue-license apache2lppl
catalogue-topics font font-body font-proportional font-mono font-sans font-serif font-multilingual font-greek font-type1 font-otf font-supp font-t1enc
@@ -251423,7 +248702,6 @@ srcfiles size=3
runfiles size=1
RELOC/tex/latex/robustcommand/robustcommand.sty
catalogue-ctan /macros/latex/contrib/robustcommand
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics macro-supp
catalogue-version 0.1
@@ -251456,7 +248734,6 @@ runfiles size=5
RELOC/tex/latex/robustindex/robustindex.sty
catalogue-contact-home https://www.staff.science.uu.nl/~kalle101/stind.html
catalogue-ctan /macros/latex/contrib/robustindex
-catalogue-date 2019-01-30 13:41:54 +0100
catalogue-license lppl1.2
catalogue-topics index
@@ -251499,7 +248776,6 @@ srcfiles size=17
runfiles size=17
RELOC/metafont/roex/roex.mf
catalogue-ctan /graphics/MF-PS
-catalogue-date 2016-07-17 14:25:42 +0200
catalogue-license pd
catalogue-topics graphics-import
@@ -251531,7 +248807,6 @@ srcfiles size=10
runfiles size=2
RELOC/tex/latex/romanbar/romanbar.sty
catalogue-ctan /macros/latex/contrib/romanbar
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics numbers
catalogue-version 1.0f
@@ -251561,7 +248836,6 @@ runfiles size=1
catalogue-also romanbar
catalogue-contact-repository https://github.com/ypid/latex-packages/tree/master/romanbarpagenumber
catalogue-ctan /macros/latex/contrib/romanbarpagenumber
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl1.3
catalogue-topics numbers page-nos
catalogue-version 1.0
@@ -251700,7 +248974,6 @@ runfiles size=281
RELOC/tex/latex/romande/ts1yrdw.fd
catalogue-contact-home http://arkandis.tuxfamily.org/
catalogue-ctan /fonts/romandeadf
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl
catalogue-topics font font-type1
catalogue-version 1.008-v7-sc
@@ -251722,7 +248995,6 @@ docfiles size=46
runfiles size=1
RELOC/tex/latex/romanneg/romanneg.sty
catalogue-ctan /macros/latex/contrib/romanneg
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics page-nos
@@ -251750,7 +249022,6 @@ srcfiles size=6
runfiles size=2
RELOC/tex/latex/romannum/romannum.sty
catalogue-ctan /macros/latex/contrib/romannum
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics numbers
catalogue-version 1.0b
@@ -252397,7 +249668,6 @@ runfiles size=1236
RELOC/tex/latex/rosario/TS1Rosario-TOsF.fd
catalogue-contact-home https://www.omnibus-type.com/fonts/rosario/
catalogue-ctan /fonts/rosario
-catalogue-date 2019-07-20 06:46:58 +0200
catalogue-license lppl1.3c
catalogue-topics font font-sans font-otf font-supp font-type1
catalogue-version 2.1
@@ -252430,7 +249700,6 @@ srcfiles size=6
runfiles size=1
RELOC/tex/latex/rotfloat/rotfloat.sty
catalogue-ctan /macros/latex/contrib/rotfloat
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics float
catalogue-version 1.2
@@ -252463,7 +249732,6 @@ docfiles size=57
runfiles size=2
RELOC/tex/latex/rotpages/rotpages.sty
catalogue-ctan /macros/latex/contrib/rotpages
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics layout
catalogue-version 3.0
@@ -252487,7 +249755,6 @@ catalogue-also fancybox
catalogue-contact-bugs https://github.com/bidi-tex/roundbox/issues
catalogue-contact-repository https://github.com/bidi-tex/roundbox
catalogue-ctan /macros/latex/contrib/roundbox
-catalogue-date 2018-11-28 20:44:34 +0100
catalogue-license lppl1.3
catalogue-topics boxing decoration
catalogue-version 0.2
@@ -252518,7 +249785,6 @@ srcfiles size=7
runfiles size=2
RELOC/metapost/roundrect/roundrect.mp
catalogue-ctan /graphics/metapost/contrib/macros/roundrect
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics graphics-mpost boxing
catalogue-version 2.2
@@ -252550,7 +249816,6 @@ srcfiles size=9
runfiles size=3
RELOC/tex/latex/rrgtrees/rrgtrees.sty
catalogue-ctan /macros/latex/contrib/rrgtrees
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics tree linguistic
catalogue-version 1.1
@@ -252583,7 +249848,6 @@ runfiles size=15
RELOC/bibtex/bst/rsc/rsc.bst
RELOC/tex/latex/rsc/rsc.sty
catalogue-ctan /macros/latex/contrib/rsc
-catalogue-date 2016-08-22 22:14:27 +0200
catalogue-license lppl1.3
catalogue-topics chemistry journalpub
catalogue-version 3.1f
@@ -252630,7 +249894,6 @@ runfiles size=35
RELOC/tex/plain/rsfs/scrload.tex
catalogue-also rsfso
catalogue-ctan /fonts/rsfs
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license other-free
catalogue-topics font font-calligraphic font-mf font-type1
@@ -252669,7 +249932,6 @@ runfiles size=12
RELOC/tex/latex/rsfso/ursfso.fd
catalogue-also calrsfs mathrsfs
catalogue-ctan /fonts/rsfso
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics font font-virtual font-calligraphic
catalogue-version 1.02
@@ -252693,7 +249955,6 @@ docfiles size=19
runfiles size=1
RELOC/tex/latex/rterface/rterface.sty
catalogue-ctan /macros/latex/contrib/rterface
-catalogue-date 2018-04-22 08:12:20 +0200
catalogue-license lppl1.2
catalogue-topics callback statistics
@@ -252731,7 +249992,6 @@ srcfiles size=7
runfiles size=2
RELOC/tex/latex/rtkinenc/rtkinenc.sty
catalogue-ctan /macros/latex/contrib/rtkinenc
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics inputenc
catalogue-version 1.0
@@ -252756,7 +250016,6 @@ docfiles size=20
runfiles size=1
RELOC/tex/latex/rtklage/rtklage.cls
catalogue-ctan /macros/latex/contrib/rtklage
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics german legal
@@ -252824,7 +250083,6 @@ runfiles size=65
texmf-dist/tex/latex/rubik/rubikrotation.sty
texmf-dist/tex/latex/rubik/rubiktwocube.sty
catalogue-ctan /macros/latex/contrib/rubik
-catalogue-date 2018-03-02 16:59:55 +0100
catalogue-license lppl1.3
catalogue-topics puzzle
catalogue-version 5.0
@@ -253022,7 +250280,6 @@ runfiles size=62
RELOC/tex/generic/ruhyphen/ruhyphvl.tex
RELOC/tex/generic/ruhyphen/ruhyphzn.tex
catalogue-ctan /language/hyphenation/ruhyphen
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics hyphenation russian
catalogue-version 1.6
@@ -253051,7 +250308,6 @@ catalogue-contact-bugs https://github.com/Mikumikunisiteageru/rulerbox/issues
catalogue-contact-home https://github.com/Mikumikunisiteageru/rulerbox
catalogue-contact-support https://github.com/Mikumikunisiteageru/rulerbox/issues
catalogue-ctan /macros/latex/contrib/rulerbox
-catalogue-date 2019-04-23 05:04:59 +0200
catalogue-license lppl1.3c
catalogue-topics misc-support
catalogue-version 1.01
@@ -253080,7 +250336,6 @@ srcfiles size=7
runfiles size=4
RELOC/tex/latex/rulercompass/tikzlibraryrulercompass.code.tex
catalogue-ctan /graphics/pgf/contrib/rulercompass
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics graphics-in-tex
catalogue-version 1
@@ -253108,7 +250363,6 @@ docfiles size=89
runfiles size=50
RELOC/tex/latex/russ/russ.sty
catalogue-ctan /macros/latex/contrib/russ
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics russian
@@ -253149,7 +250403,6 @@ runfiles size=1070
catalogue-contact-bugs https://github.com/dopefishh/rutitlepage/issues
catalogue-contact-repository https://github.com/dopefishh/rutitlepage
catalogue-ctan /macros/latex/contrib/rutitlepage
-catalogue-date 2019-05-10 18:23:12 +0200
catalogue-license lppl1.3
catalogue-topics titlepage logo
catalogue-version 2.3
@@ -253190,7 +250443,6 @@ runfiles size=1
RELOC/tex/latex/rviewport/rviewport.sty
catalogue-also graphicx
catalogue-ctan /macros/latex/contrib/rviewport
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics graphics-incl
catalogue-version 1.0
@@ -253221,7 +250473,6 @@ docfiles size=26
runfiles size=1
RELOC/tex/latex/rvwrite/rvwrite.sty
catalogue-ctan /macros/latex/contrib/rvwrite
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics macro-supp
catalogue-version 1.2
@@ -253251,7 +250502,6 @@ catalogue-also ryethesis
catalogue-contact-bugs https://github.com/yshoaib/RyersonSgsThesisTemplateLatex/issues
catalogue-contact-repository https://github.com/yshoaib/RyersonSgsThesisTemplateLatex
catalogue-ctan /macros/latex/contrib/ryersonsgsthesis
-catalogue-date 2019-02-26 05:13:11 +0100
catalogue-license apache2
catalogue-topics class dissertation
catalogue-version 1.0.3
@@ -253285,7 +250535,6 @@ runfiles size=5
RELOC/tex/latex/ryethesis/ryethesis.cls
catalogue-also ryersonsgsthesis
catalogue-ctan /macros/latex/contrib/ryethesis
-catalogue-date 2019-02-24 09:28:55 +0100
catalogue-license lppl1.3
catalogue-topics dissertation
catalogue-version 1.36
@@ -253310,7 +250559,6 @@ runfiles size=26
RELOC/tex/latex/sa-tikz/sa-tikz.sty
RELOC/tex/latex/sa-tikz/tikzlibraryswitching-architectures.code.tex
catalogue-ctan /graphics/pgf/contrib/sa-tikz
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license lppl1.3
catalogue-topics graphics-use comp-net
catalogue-version 0.7a
@@ -253345,7 +250593,6 @@ runfiles size=9
RELOC/bibtex/bst/sageep/sageep.bst
RELOC/tex/latex/sageep/sageep.cls
catalogue-ctan /macros/latex/contrib/sageep
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics journalpub
catalogue-version 1.0
@@ -253374,7 +250621,6 @@ runfiles size=1
RELOC/tex/latex/sanitize-umlaut/sanitize-umlaut.sty
catalogue-contact-repository https://github.com/T-F-S/sanitize-umlaut
catalogue-ctan /macros/latex/contrib/sanitize-umlaut
-catalogue-date 2018-01-07 12:06:50 +0100
catalogue-license lppl1.3
catalogue-topics utf8-adapt enc-juggle index-proc
catalogue-version 1.00
@@ -253425,7 +250671,6 @@ runfiles size=40
RELOC/tex/latex/sanskrit/skt.sty
catalogue-also devanagari
catalogue-ctan /language/sanskrit
-catalogue-date 2017-01-11 20:18:05 +0100
catalogue-license lppl
catalogue-topics font font-mf indic
catalogue-version 2.2.1
@@ -253456,7 +250701,6 @@ runfiles size=127
RELOC/fonts/type1/public/sanskrit-t1/sktfs10.pfb
RELOC/fonts/type1/public/sanskrit-t1/skts10.pfb
catalogue-ctan /fonts/ps-type1/sanskrit
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics font font-type1 indic
@@ -253479,7 +250723,6 @@ runfiles size=2
RELOC/tex/latex/sansmath/sansmath.sty
catalogue-also sfmath
catalogue-ctan /macros/latex/contrib/sansmath
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics font-supp-maths
catalogue-version 1.1
@@ -253522,7 +250765,6 @@ runfiles size=19
RELOC/tex/latex/sansmathaccent/ot1mathkerncmss.fd
RELOC/tex/latex/sansmathaccent/sansmathaccent.sty
catalogue-ctan /fonts/sansmathaccent
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics font font-virtual font-supp-maths
@@ -254062,7 +251304,6 @@ runfiles size=1987
RELOC/tex/latex/sansmathfonts/ussmsb.fd
RELOC/tex/latex/sansmathfonts/uxcmss.fd
catalogue-ctan /fonts/sansmathfonts
-catalogue-date 2019-06-10 19:27:15 +0200
catalogue-license lppl1.3c
catalogue-topics font font-cm font-sans font-proportional font-maths font-mf font-type1 font-supp
@@ -254098,7 +251339,6 @@ runfiles size=30
RELOC/tex/latex/sapthesis/sapienza-MLred-pos.pdf
RELOC/tex/latex/sapthesis/sapthesis.cls
catalogue-ctan /macros/latex/contrib/sapthesis
-catalogue-date 2018-08-07 08:46:21 +0200
catalogue-license lppl1.3
catalogue-topics dissertation
catalogue-version 4.1
@@ -254125,7 +251365,6 @@ runfiles size=7
RELOC/tex/latex/sasnrdisplay/SASnRdisplay.cfg
RELOC/tex/latex/sasnrdisplay/SASnRdisplay.sty
catalogue-ctan /macros/latex/contrib/sasnrdisplay
-catalogue-date 2018-04-22 08:20:41 +0200
catalogue-license lppl1.3
catalogue-topics listing statistics
catalogue-version 0.95
@@ -254176,7 +251415,6 @@ runfiles size=8
RELOC/tex/latex/sauerj/processkv.sty
RELOC/tex/latex/sauerj/zahl2string.sty
catalogue-ctan /macros/latex/contrib/sauerj
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics collection
@@ -254239,7 +251477,6 @@ runfiles size=61
RELOC/fonts/source/public/sauter/c-cmtt.mf
RELOC/fonts/source/public/sauter/c-sigma.mf
catalogue-ctan /fonts/cm/sauter
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics font font-mf
catalogue-version 2.4
@@ -254298,7 +251535,6 @@ runfiles size=30
RELOC/tex/latex/sauterfonts/sustmry.fd
RELOC/tex/latex/sauterfonts/suwasy.fd
catalogue-ctan /macros/latex/contrib/sauterfonts
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics font-supp
@@ -254327,7 +251563,6 @@ runfiles size=1
RELOC/tex/latex/savefnmark/savefnmark.sty
catalogue-also fixfoot
catalogue-ctan /macros/latex/contrib/savefnmark
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics footnote
catalogue-version 1.0
@@ -254349,7 +251584,6 @@ containerchecksum 212ea18ebb424f9b64ca9c75a783dee9ceebac09adcd6ff6c721d90796bf41
runfiles size=1
RELOC/tex/latex/savesym/savesym.sty
catalogue-ctan /macros/latex/contrib/savesym/savesym.sty
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics macro-supp
catalogue-version 1.2
@@ -254387,7 +251621,6 @@ runfiles size=12
RELOC/tex/latex/savetrees/savetrees.cbx
RELOC/tex/latex/savetrees/savetrees.sty
catalogue-ctan /macros/latex/contrib/savetrees
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics layout
catalogue-version 2.4
@@ -254416,7 +251649,6 @@ srcfiles size=3
runfiles size=1
RELOC/tex/latex/scale/scale.sty
catalogue-ctan /macros/latex/contrib/scale
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics geometry
catalogue-version 1.1.2
@@ -254447,7 +251679,6 @@ srcfiles size=6
runfiles size=1
RELOC/tex/latex/scalebar/scalebar.sty
catalogue-ctan /macros/latex/contrib/scalebar
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics misc-support
catalogue-version 1.0
@@ -254476,7 +251707,6 @@ docfiles size=94
runfiles size=2
RELOC/tex/latex/scalerel/scalerel.sty
catalogue-ctan /macros/latex/contrib/scalerel
-catalogue-date 2016-12-29 16:00:53 +0100
catalogue-license lppl1.3
catalogue-topics graphics-manip
catalogue-version 1.8
@@ -254509,7 +251739,6 @@ runfiles size=6
RELOC/tex/latex/scanpages/scanpages.sty
RELOC/tex/latex/scanpages/uscanwipe.fd
catalogue-ctan /macros/latex/contrib/scanpages
-catalogue-date 2016-12-02 22:31:43 +0100
catalogue-license lppl1.3
catalogue-topics misc-support
catalogue-version 1.05a
@@ -254542,7 +251771,6 @@ srcfiles size=9
runfiles size=6
RELOC/tex/latex/schedule/schedule.sty
catalogue-ctan /macros/latex/contrib/schedule
-catalogue-date 2019-08-01 21:36:05 +0200
catalogue-license lppl1.3c
catalogue-topics planning timetable
catalogue-version 1.20
@@ -254566,7 +251794,6 @@ docfiles size=56
runfiles size=3
RELOC/tex/latex/schemabloc/schemabloc.sty
catalogue-ctan /graphics/pgf/contrib/schemabloc
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics diagram-block pgf-tikz
catalogue-version 1.5
@@ -254598,7 +251825,6 @@ srcfiles size=18
runfiles size=3
RELOC/tex/generic/schemata/schemata.sty
catalogue-ctan /macros/generic/schemata
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics philosophy theology
catalogue-version 0.8
@@ -256801,7 +254027,6 @@ runfiles size=4626
RELOC/tex/latex/schule/xsim-style/xsim.style.schule-tabelle-kurz.code.tex
RELOC/tex/latex/schule/xsim-style/xsim.style.schule-tcolorbox.code.tex
catalogue-ctan /macros/latex/contrib/schule
-catalogue-date 2018-08-23 04:21:50 +0200
catalogue-license lppl1.3
catalogue-topics teaching
catalogue-version 0.8.1
@@ -256979,7 +254204,6 @@ runfiles size=307
RELOC/tex/latex/schulschriften/wesu.sty
RELOC/tex/latex/schulschriften/weva.sty
catalogue-ctan /fonts/schulschriften
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics font font-calligraphic font-mf
catalogue-version 4
@@ -257007,7 +254231,6 @@ runfiles size=10
RELOC/tex/latex/schwalbe-chess/schwalbe.cls
RELOC/tex/latex/schwalbe-chess/schwalbe.sty
catalogue-ctan /macros/latex/contrib/schwalbe-chess
-catalogue-date 2019-01-04 16:33:55 +0100
catalogue-license lppl1.2
catalogue-topics journalpub games class
catalogue-version 2.3
@@ -257039,7 +254262,6 @@ catalogue-contact-bugs https://github.com/latextemplates/scientific-thesis-cover
catalogue-contact-home https://latextemplates.github.io/scientific-thesis-cover
catalogue-contact-repository https://github.com/latextemplates/scientific-thesis-cover
catalogue-ctan /macros/latex/contrib/scientific-thesis-cover
-catalogue-date 2018-06-03 21:55:55 +0200
catalogue-license lppl1.3c
catalogue-topics dissertation journalpub scientific-docs
catalogue-version 4.0.2
@@ -257111,7 +254333,6 @@ runfiles size=16
RELOC/tex/latex/sciposter/sciposter.cls
catalogue-also a0poster
catalogue-ctan /macros/latex/contrib/sciposter
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics poster
catalogue-version 1.18
@@ -257140,7 +254361,6 @@ runfiles size=2
RELOC/tex/latex/sclang-prettifier/sclang-prettifier.sty
catalogue-also listings
catalogue-ctan /macros/latex/contrib/sclang-prettifier
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics listing synt-hlt
catalogue-version 0.1
@@ -257174,7 +254394,6 @@ runfiles size=16
catalogue-contact-bugs https://github.com/pablgonz/scontents/issues
catalogue-contact-repository https://github.com/pablgonz/scontents
catalogue-ctan /macros/latex/contrib/scontents
-catalogue-date 2019-11-17 19:37:15 +0100
catalogue-license lppl1.3c
catalogue-topics file-mgmt expl3
catalogue-version 1.8
@@ -257204,7 +254423,6 @@ catalogue-also tikzcodeblocks
catalogue-contact-bugs https://framagit.org/unbonpetit/scratch/issues
catalogue-contact-repository https://framagit.org/unbonpetit/scratch/tree/master
catalogue-ctan /obsolete/macros/latex/contrib/scratch
-catalogue-date 2019-02-19 23:30:41 +0100
catalogue-license lppl1.3c
catalogue-topics games pgf-tikz obsolete
catalogue-version 0.41
@@ -257231,7 +254449,6 @@ catalogue-also tikzcodeblocks
catalogue-contact-bugs https://framagit.org/unbonpetit/scratch3/issues
catalogue-contact-repository https://framagit.org/unbonpetit/scratch3/tree/master
catalogue-ctan /macros/latex/contrib/scratch3
-catalogue-date 2019-10-01 20:47:57 +0200
catalogue-license lppl1.3c
catalogue-topics games pgf-tikz
catalogue-version 0.14
@@ -257259,7 +254476,6 @@ docfiles size=130
runfiles size=10
RELOC/tex/latex/scratchx/ScratchX.sty
catalogue-ctan /macros/latex/contrib/scratchx
-catalogue-date 2017-07-30 05:13:46 +0200
catalogue-license lppl1.3c
catalogue-topics games pgf-tikz
catalogue-version 1.1
@@ -257292,7 +254508,6 @@ runfiles size=3
RELOC/tex/latex/screenplay/screenplay.cls
catalogue-also scripttex screenplay-pkg
catalogue-ctan /macros/latex/contrib/screenplay
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics drama-script class
catalogue-version 1.6
@@ -257322,7 +254537,6 @@ runfiles size=2
RELOC/tex/latex/screenplay-pkg/screenplay-pkg.sty
catalogue-also screenplay
catalogue-ctan /macros/latex/contrib/screenplay-pkg
-catalogue-date 2017-08-06 08:17:31 +0200
catalogue-license lppl1.3
catalogue-topics drama-script
catalogue-version 1.1
@@ -257350,7 +254564,6 @@ srcfiles size=5
runfiles size=2
RELOC/tex/latex/scrjrnl/scrjrnl.cls
catalogue-ctan /macros/latex/contrib/scrjrnl
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics journ-personal class
catalogue-version 0.1
@@ -257375,7 +254588,6 @@ docfiles size=24
runfiles size=1
RELOC/tex/latex/scrlttr2copy/copy.lco
catalogue-ctan /macros/latex/contrib/scrlttr2copy
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics letter
catalogue-version 0.1d
@@ -257408,7 +254620,6 @@ runfiles size=9
RELOC/tex/latex/scsnowman/sctkzsym-base.sty
catalogue-contact-repository https://github.com/aminophen/scsnowman
catalogue-ctan /graphics/pgf/contrib/scsnowman
-catalogue-date 2018-06-07 18:24:21 +0200
catalogue-license bsd2
catalogue-topics pgf-tikz
catalogue-version 1.2d
@@ -257434,7 +254645,6 @@ docfiles size=61
runfiles size=3
RELOC/tex/latex/sdrt/sdrt.sty
catalogue-ctan /macros/latex/contrib/sdrt
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics linguistic
catalogue-version 1.0
@@ -257476,7 +254686,6 @@ runfiles size=422
RELOC/tex/latex/sduthesis/sduthesis.cls
catalogue-contact-repository https://github.com/Liam0205/sduthesis
catalogue-ctan /macros/latex/contrib/sduthesis
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl1.3
catalogue-topics dissertation class chinese
catalogue-version 1.2.1
@@ -257501,7 +254710,6 @@ runfiles size=1
catalogue-contact-repository https://github.com/rf-latex/secdot
catalogue-contact-support https://github.com/rf-latex/secdot/issues
catalogue-ctan /macros/latex/contrib/secdot
-catalogue-date 2018-09-15 15:51:52 +0200
catalogue-license lppl
catalogue-topics headings
catalogue-version 1.0
@@ -257523,7 +254731,6 @@ docfiles size=92
runfiles size=8
RELOC/tex/latex/section/section.sty
catalogue-ctan /macros/latex/contrib/section
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics headings
@@ -257558,7 +254765,6 @@ docfiles size=57
runfiles size=2
RELOC/tex/latex/sectionbox/sectionbox.sty
catalogue-ctan /macros/latex/contrib/sectionbox
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics decoration
catalogue-version 1.01
@@ -257588,7 +254794,6 @@ runfiles size=1
catalogue-contact-bugs https://github.com/michal-h21/sectionbreak/issues
catalogue-contact-repository https://github.com/michal-h21/sectionbreak
catalogue-ctan /macros/latex/contrib/sectionbreak
-catalogue-date 2019-03-11 13:54:30 +0100
catalogue-license lppl1.3
catalogue-topics decoration headings
catalogue-version 0.1d
@@ -257617,7 +254822,6 @@ runfiles size=6
RELOC/tex/latex/sectsty/sectsty.sty
catalogue-also titlesec
catalogue-ctan /macros/latex/contrib/sectsty
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics headings
catalogue-version 2.0.2
@@ -257646,7 +254850,6 @@ srcfiles size=11
runfiles size=2
RELOC/tex/latex/seealso/seealso.sty
catalogue-ctan /macros/latex/contrib/seealso
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license lppl1.3
catalogue-topics index
catalogue-version 1.2
@@ -257680,7 +254883,6 @@ docfiles size=27
texmf-dist/doc/man/man1/dvitodvi.1
texmf-dist/doc/man/man1/dvitodvi.man1.pdf
catalogue-ctan /dviware/dvibook
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license other-free
catalogue-topics dvi-proc
@@ -257897,7 +255099,6 @@ runfiles size=3
RELOC/tex/latex/selectp/selectp.sty
catalogue-also selectpage pagesel
catalogue-ctan /macros/latex/contrib/selectp
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics page-control
catalogue-version 1.0
@@ -257925,7 +255126,6 @@ runfiles size=2
catalogue-contact-bugs https://github.com/ho-tex/selinput/issues
catalogue-contact-repository https://github.com/ho-tex/selinput
catalogue-ctan /macros/latex/contrib/selinput
-catalogue-date 2019-12-11 08:47:13 +0100
catalogue-license lppl1.3
catalogue-topics inputenc
catalogue-version 1.6
@@ -257978,7 +255178,6 @@ runfiles size=59
RELOC/tex/lualatex/selnolig/selnolig.sty
catalogue-contact-repository https://github.com/micoloretan/selnolig
catalogue-ctan /macros/luatex/latex/selnolig
-catalogue-date 2018-03-07 05:17:28 +0100
catalogue-license lppl1.3
catalogue-topics typesetting luatex
catalogue-version 0.302
@@ -258010,7 +255209,6 @@ runfiles size=10
RELOC/tex/latex/semantic/shrthand.sty
RELOC/tex/latex/semantic/tdiagram.sty
catalogue-ctan /macros/latex/contrib/semantic
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics comp-sci
catalogue-version 2.0
@@ -258043,7 +255241,6 @@ docfiles size=70
runfiles size=2
RELOC/tex/latex/semantic-markup/semantic-markup.sty
catalogue-ctan /macros/latex/contrib/semantic-markup
-catalogue-date 2018-05-24 21:39:42 +0200
catalogue-license lppl1.3
catalogue-topics humanities linguistic
@@ -258197,7 +255394,6 @@ runfiles size=714
RELOC/tex/latex/semaphor/semaf.fd
RELOC/tex/plain/semaphor/semaf.tex
catalogue-ctan /fonts/semaphor
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics font font-mf font-type1 font-otf font-specialist
@@ -258257,7 +255453,6 @@ runfiles size=48
RELOC/tex/latex/seminar/tvz-user.sty
catalogue-also foiltex slidenotes
catalogue-ctan /macros/latex/contrib/seminar
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license lppl1.2
catalogue-topics presentation
catalogue-version 1.62
@@ -258289,7 +255484,6 @@ srcfiles size=6
runfiles size=1
RELOC/tex/latex/semioneside/semioneside.sty
catalogue-ctan /macros/latex/contrib/semioneside
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics layout
catalogue-version 0.41
@@ -258326,7 +255520,6 @@ srcfiles size=7
runfiles size=2
RELOC/tex/latex/semproc/semproc.cls
catalogue-ctan /macros/latex/contrib/semproc
-catalogue-date 2017-11-12 11:01:19 +0100
catalogue-license lppl1.3
catalogue-topics semproc
catalogue-version 0.1
@@ -258351,7 +255544,6 @@ docfiles size=59
runfiles size=3
RELOC/tex/latex/sepfootnotes/sepfootnotes.sty
catalogue-ctan /macros/latex/contrib/sepfootnotes
-catalogue-date 2016-07-19 16:05:59 +0200
catalogue-license lppl1.3
catalogue-topics footnote
catalogue-version 0.3c
@@ -258379,7 +255571,6 @@ runfiles size=2
RELOC/tex/latex/sepnum/sepnum.sty
catalogue-also comma numprint
catalogue-ctan /macros/latex/contrib/sepnum
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license lppl
catalogue-topics numbers
catalogue-version 2.0
@@ -258413,7 +255604,6 @@ srcfiles size=6
runfiles size=1
RELOC/tex/latex/seqsplit/seqsplit.sty
catalogue-ctan /macros/latex/contrib/seqsplit
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics hyph-pseudo
catalogue-version 0.1
@@ -258439,7 +255629,6 @@ docfiles size=131
runfiles size=18
RELOC/tex/latex/serbian-apostrophe/serbian-apostrophe.sty
catalogue-ctan /language/serbian/filipovic/serbian-apostrophe
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics serbian
@@ -258464,7 +255653,6 @@ docfiles size=94
runfiles size=1
RELOC/tex/latex/serbian-date-lat/serbian-date-lat.sty
catalogue-ctan /language/serbian/filipovic/serbian-date-lat
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl2
catalogue-topics serbian
@@ -258489,7 +255677,6 @@ docfiles size=66
runfiles size=1
RELOC/tex/latex/serbian-def-cyr/serbian-def-cyr.sty
catalogue-ctan /macros/latex/contrib/serbian-def-cyr
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics serbian
@@ -258514,7 +255701,6 @@ docfiles size=122
runfiles size=20
RELOC/tex/latex/serbian-lig/serbian-lig.sty
catalogue-ctan /language/serbian/filipovic/serbian-lig
-catalogue-date 2018-07-14 14:14:22 +0200
catalogue-license lppl1.3
catalogue-topics serbian
@@ -258549,7 +255735,6 @@ runfiles size=61
RELOC/tex/latex/sesamanuel/sesamanuel.sty
RELOC/tex/latex/sesamanuel/sesamanuelTIKZ.sty
catalogue-ctan /macros/latex/contrib/sesamanuel
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics maths
catalogue-version 0.6
@@ -258582,7 +255767,6 @@ srcfiles size=18
runfiles size=4
RELOC/tex/latex/sesstime/sesstime.sty
catalogue-ctan /macros/latex/contrib/sesstime
-catalogue-date 2019-01-18 00:03:38 +0100
catalogue-license lppl1.3
catalogue-topics teaching
catalogue-version 1.12
@@ -258604,7 +255788,6 @@ docfiles size=17
runfiles size=12
RELOC/tex/latex/setdeck/setdeck.sty
catalogue-ctan /graphics/pgf/contrib/setdeck
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl3
catalogue-topics games pgf-tikz
catalogue-version 0.1
@@ -258632,7 +255815,6 @@ runfiles size=6
catalogue-contact-repository https://github.com/rf-latex/setspace
catalogue-contact-support https://github.com/rf-latex/setspace/issues
catalogue-ctan /macros/latex/contrib/setspace
-catalogue-date 2018-09-14 18:16:49 +0200
catalogue-license lppl1.3
catalogue-topics line-space
catalogue-version 6.7a
@@ -258690,7 +255872,6 @@ runfiles size=22
catalogue-also seuthesix
catalogue-contact-repository https://github.com/seucs/seuthesis
catalogue-ctan /macros/latex/contrib/seuthesis
-catalogue-date 2018-04-05 06:13:24 +0200
catalogue-license gpl3
catalogue-topics dissertation class
catalogue-version 2.1.2
@@ -258754,7 +255935,6 @@ runfiles size=11
catalogue-also seuthesis
catalogue-contact-repository https://github.com/zhimengfan1990/seuthesix
catalogue-ctan /macros/latex/contrib/seuthesix
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license gpl3
catalogue-topics dissertation class
catalogue-version 1.0.1
@@ -258797,7 +255977,6 @@ runfiles size=3
RELOC/tex/xelatex/sexam/wexam.sty
catalogue-also exam
catalogue-ctan /macros/xetex/latex/sexam
-catalogue-date 2018-02-15 04:59:58 +0100
catalogue-license lppl1.3
catalogue-topics exam arabic class
catalogue-version 1
@@ -258828,7 +256007,6 @@ srcfiles size=24
runfiles size=7
RELOC/tex/latex/sf298/sf298.sty
catalogue-ctan /macros/latex/contrib/sf298
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license lppl1.2
catalogue-topics report-like
catalogue-version 1.3
@@ -258860,7 +256038,6 @@ runfiles size=4
RELOC/tex/latex/sffms/sffms.cls
RELOC/tex/latex/sffms/sffsmart.sty
catalogue-ctan /macros/latex/contrib/sffms
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics class publisher
catalogue-version 2.0
@@ -258887,7 +256064,6 @@ docfiles size=100
runfiles size=6
RELOC/tex/latex/sfg/sfg.sty
catalogue-ctan /macros/latex/contrib/sfg
-catalogue-date 2018-09-15 14:02:36 +0200
catalogue-license lppl
catalogue-topics diagram pstricks
catalogue-version 0.91
@@ -258906,7 +256082,6 @@ runfiles size=5
RELOC/tex/latex/sfmath/sfmath.sty
catalogue-also sansmath
catalogue-ctan /macros/latex/contrib/sfmath/sfmath.sty
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics font-maths maths
catalogue-version 0.8
@@ -258935,7 +256110,6 @@ runfiles size=8
RELOC/tex/latex/sgame/sgamevar.sty
catalogue-contact-home https://www.economics.utoronto.ca/osborne/latex/index.html
catalogue-ctan /macros/latex/contrib/sgame
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl
catalogue-topics games
catalogue-version 2.15
@@ -258962,7 +256136,6 @@ runfiles size=2
RELOC/tex/generic/shade/shade.tex
catalogue-also shadebox
catalogue-ctan /macros/generic/shade
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license lppl1
catalogue-topics decoration
catalogue-version 1
@@ -258997,7 +256170,6 @@ runfiles size=8
RELOC/tex/latex/shadethm/shadein.sth
RELOC/tex/latex/shadethm/shadethm.sty
catalogue-ctan /macros/latex/contrib/shadethm
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics maths-theorem decoration
@@ -259019,7 +256191,6 @@ runfiles size=2
RELOC/tex/latex/shadow/shadow.sty
catalogue-also fancybox
catalogue-ctan /macros/latex/contrib/shadow
-catalogue-date 2018-04-18 05:32:44 +0200
catalogue-license lppl
catalogue-topics decoration
@@ -259042,7 +256213,6 @@ docfiles size=38
runfiles size=1
RELOC/tex/latex/shadowtext/shadowtext.sty
catalogue-ctan /macros/latex/contrib/shadowtext
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics decoration
catalogue-version 0.3
@@ -259082,7 +256252,6 @@ runfiles size=16
RELOC/tex/generic/shapepar/shapepar.sty
RELOC/tex/generic/shapepar/triangleshapes.def
catalogue-ctan /macros/latex/contrib/shapepar
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license other-free
catalogue-topics micro-layout
catalogue-version 2.2
@@ -259113,7 +256282,6 @@ srcfiles size=5
runfiles size=2
RELOC/metapost/shapes/shapes.mp
catalogue-ctan /graphics/metapost/contrib/macros/shapes
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics maths
catalogue-version 1.1
@@ -259145,7 +256313,6 @@ srcfiles size=17
runfiles size=3
RELOC/tex/latex/shdoc/shdoc.sty
catalogue-ctan /macros/latex/contrib/shdoc
-catalogue-date 2016-09-04 18:33:35 +0200
catalogue-license lppl1.3
catalogue-topics synt-hlt float listing
catalogue-version 2.1b
@@ -259309,7 +256476,6 @@ runfiles size=28
RELOC/tex/latex/shipunov/starfn.sty
RELOC/tex/latex/shipunov/textfrac-shipunov.sty
catalogue-ctan /macros/latex/contrib/shipunov
-catalogue-date 2019-10-08 16:24:18 +0200
catalogue-license lppl1.3
catalogue-topics collection
catalogue-version 1.2
@@ -259354,7 +256520,6 @@ runfiles size=176
catalogue-contact-bugs https://github.com/Sandhi-IITBombay/Shobhika/issues
catalogue-contact-repository https://github.com/Sandhi-IITBombay/Shobhika
catalogue-ctan /fonts/shobhika
-catalogue-date 2019-03-23 11:09:58 +0100
catalogue-license ofl
catalogue-topics font font-cyrillic font-indic font-multilingual font-otf
catalogue-version 1.05
@@ -259380,7 +256545,6 @@ docfiles size=154
RELOC/doc/latex/short-math-guide/short-math-guide.pdf details="Package documentation"
RELOC/doc/latex/short-math-guide/short-math-guide.tex
catalogue-ctan /info/short-math-guide
-catalogue-date 2017-12-24 17:24:22 +0100
catalogue-license lppl1.3c
catalogue-topics maths documentation maths-doc
catalogue-version 2.0
@@ -259409,7 +256573,6 @@ srcfiles size=4
runfiles size=1
RELOC/tex/latex/shorttoc/shorttoc.sty
catalogue-ctan /macros/latex/contrib/shorttoc
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics toc-etc
catalogue-version 1.3
@@ -259440,7 +256603,6 @@ srcfiles size=3
runfiles size=1
RELOC/tex/latex/show2e/show2e.sty
catalogue-ctan /macros/latex/contrib/show2e
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics debug-supp
catalogue-version 1.0
@@ -259475,7 +256637,6 @@ runfiles size=1
catalogue-contact-bugs https://github.com/bidi-tex/showcharinbox/issues
catalogue-contact-repository https://github.com/bidi-tex/showcharinbox
catalogue-ctan /macros/latex/contrib/showcharinbox
-catalogue-date 2018-11-28 21:01:12 +0100
catalogue-license lppl1.3
catalogue-topics font-devel
catalogue-version 0.1
@@ -259498,7 +256659,6 @@ docfiles size=1
runfiles size=1
RELOC/tex/latex/showdim/showdim.sty
catalogue-ctan /macros/latex/contrib/showdim/showdim.sty
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics debug-supp
catalogue-version 1.2
@@ -259528,7 +256688,6 @@ srcfiles size=8
runfiles size=4
RELOC/tex/latex/showexpl/showexpl.sty
catalogue-ctan /macros/latex/contrib/showexpl
-catalogue-date 2016-12-11 13:56:29 +0100
catalogue-license lppl1.2
catalogue-topics listing
catalogue-version 0.3o
@@ -259552,7 +256711,6 @@ docfiles size=28
runfiles size=1
RELOC/tex/lualatex/showhyphens/showhyphens.sty
catalogue-ctan /macros/luatex/latex/showhyphens
-catalogue-date 2016-12-18 08:34:28 +0100
catalogue-license mit
catalogue-topics hyph-gen luatex
catalogue-version 0.5c
@@ -259588,7 +256746,6 @@ srcfiles size=12
runfiles size=3
RELOC/tex/latex/showlabels/showlabels.sty
catalogue-ctan /macros/latex/contrib/showlabels
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license lppl1.3
catalogue-topics label-ref bibtex-supp macro-supp
catalogue-version 1.8
@@ -259609,7 +256766,6 @@ docfiles size=53
runfiles size=2
RELOC/tex/latex/showtags/showtags.sty
catalogue-ctan /macros/latex/contrib/showtags
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics bibtex-supp
catalogue-version 1.05
@@ -259643,7 +256799,6 @@ runfiles size=9
RELOC/tex/latex/shuffle/Ushuffle.fd
RELOC/tex/latex/shuffle/shuffle.sty
catalogue-ctan /fonts/shuffle
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics maths physics
catalogue-version 1.0
@@ -259679,7 +256834,6 @@ srcfiles size=9
runfiles size=3
RELOC/tex/latex/sidecap/sidecap.sty
catalogue-ctan /macros/latex/contrib/sidecap
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics caption rotation
catalogue-version 1.6f
@@ -259711,7 +256865,6 @@ runfiles size=4
RELOC/tex/latex/sidenotes/sidenotes.sty
catalogue-also footmisc
catalogue-ctan /macros/latex/contrib/sidenotes
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics marginal
catalogue-version 1.00
@@ -259737,7 +256890,6 @@ runfiles size=2
RELOC/tex/latex/sides/sides.cls
catalogue-also dramatist
catalogue-ctan /macros/latex/contrib/sides
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics drama-script
@@ -259763,7 +256915,6 @@ srcfiles size=4
runfiles size=1
RELOC/tex/latex/signchart/signchart.sty
catalogue-ctan /macros/latex/contrib/signchart
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics maths
catalogue-version 1.01
@@ -259795,7 +256946,6 @@ srcfiles size=18
runfiles size=5
RELOC/tex/latex/silence/silence.sty
catalogue-ctan /macros/latex/contrib/silence
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics compilation
catalogue-version 1.5b
@@ -259820,7 +256970,6 @@ docfiles size=29
runfiles size=3
RELOC/tex/xelatex/simple-resume-cv/simpleresumecv.cls
catalogue-ctan /macros/xetex/latex/simple-resume-cv
-catalogue-date 2017-01-28 05:55:17 +0100
catalogue-license pd
catalogue-topics cv class
@@ -259854,7 +257003,6 @@ docfiles size=70
runfiles size=5
RELOC/tex/xelatex/simple-thesis-dissertation/simplethesisdissertation.cls
catalogue-ctan /macros/xetex/latex/simple-thesis-dissertation
-catalogue-date 2017-01-28 05:55:17 +0100
catalogue-license pd
catalogue-topics dissertation class
@@ -259886,7 +257034,6 @@ runfiles size=9
RELOC/tex/latex/simplecd/simplecd.sty
catalogue-also cd cdcover
catalogue-ctan /macros/latex/contrib/simplecd
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.2
catalogue-topics covers covers
catalogue-version 1.4
@@ -259915,7 +257062,6 @@ srcfiles size=5
runfiles size=2
RELOC/tex/latex/simplecv/simplecv.cls
catalogue-ctan /macros/latex/contrib/simplecv
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics cv lyx class
catalogue-version 1.6a
@@ -259946,7 +257092,6 @@ runfiles size=2
RELOC/tex/latex/simpleinvoice/simpleinvoice.sty
catalogue-contact-repository https://github.com/mathialo/simpleinvoice/
catalogue-ctan /macros/latex/contrib/simpleinvoice
-catalogue-date 2017-11-04 06:13:45 +0100
catalogue-license gpl3
catalogue-topics invoice
@@ -259969,7 +257114,6 @@ runfiles size=5
RELOC/tex/generic/simplekv/simplekv.sty
RELOC/tex/generic/simplekv/simplekv.tex
catalogue-ctan /macros/generic/simplekv
-catalogue-date 2017-08-13 05:06:52 +0200
catalogue-license lppl1.3c
catalogue-topics keyval
catalogue-version 0.1
@@ -259993,7 +257137,6 @@ runfiles size=2
RELOC/tex/latex/simpleoptics/simpleoptics.sty
catalogue-also tikz-optics
catalogue-ctan /graphics/pgf/contrib/simpleoptics
-catalogue-date 2019-09-07 12:55:14 +0200
catalogue-license lppl1.3c
catalogue-topics pgf-tikz physics
catalogue-version 1.0.0
@@ -260026,7 +257169,6 @@ runfiles size=2
catalogue-also simplewick
catalogue-contact-repository https://jp-ellis.github.io/projects/simpler-wick/
catalogue-ctan /macros/latex/contrib/simpler-wick
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl1.3
catalogue-topics physics
catalogue-version 1.0.0
@@ -260054,7 +257196,6 @@ runfiles size=2
RELOC/tex/latex/simplewick/simplewick.sty
catalogue-also simpler-wick
catalogue-ctan /macros/latex/contrib/simplewick
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics physics
catalogue-version 1.2a
@@ -260074,7 +257215,6 @@ docfiles size=261
RELOC/doc/latex/simplified-latex/simplified-intro.pdf details="The document itself"
RELOC/doc/latex/simplified-latex/source.zip
catalogue-ctan /info/simplified-latex
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics tut-latex
@@ -260172,7 +257312,6 @@ runfiles size=1054
catalogue-contact-bugs https://github.com/bidi-tex/simurgh/issues
catalogue-contact-repository https://github.com/bidi-tex/simurgh
catalogue-ctan /macros/luatex/latex/simurgh
-catalogue-date 2018-11-28 21:04:36 +0100
catalogue-license gpl2
catalogue-topics persian luatex
catalogue-version 0.01b
@@ -260198,7 +257337,6 @@ srcfiles size=2
runfiles size=1
RELOC/tex/latex/sitem/sitem.sty
catalogue-ctan /macros/latex/contrib/sitem
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics list
catalogue-version 1.0
@@ -260250,7 +257388,6 @@ catalogue-contact-bugs https://github.com/josephwright/siunitx/issues
catalogue-contact-home https://www.texdev.net
catalogue-contact-repository https://github.com/josephwright/siunitx
catalogue-ctan /macros/latex/contrib/siunitx
-catalogue-date 2019-10-10 10:08:45 +0200
catalogue-license lppl1.3c
catalogue-topics units scientific-docs
catalogue-version 2.7t
@@ -260321,7 +257458,6 @@ runfiles size=38
RELOC/tex/latex/skak/skak.fd
RELOC/tex/latex/skak/skak.sty
catalogue-ctan /fonts/chess/skak
-catalogue-date 2018-01-09 06:30:58 +0100
catalogue-license lppl
catalogue-topics font font-mf font-chess games
catalogue-version 1.5.3
@@ -260378,7 +257514,6 @@ runfiles size=72
RELOC/fonts/type1/public/skaknew/SkakNew-FigurineBold.pfm
catalogue-contact-home http://www.art-satz.de/portfolio/schriften.html
catalogue-ctan /fonts/chess/skaknew
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl
catalogue-topics font font-type1 font-chess games
@@ -260567,7 +257702,6 @@ runfiles size=12
RELOC/tex/latex/skb/skbmoderncv.cls
catalogue-contact-repository http://sourceforge.net/projects/latex-skb
catalogue-ctan /macros/latex/contrib/skb
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl1.3
catalogue-topics archival
catalogue-version 0.52
@@ -260598,7 +257732,6 @@ srcfiles size=31
runfiles size=13
RELOC/tex/latex/skdoc/skdoc.cls
catalogue-ctan /macros/latex/contrib/skdoc
-catalogue-date 2019-09-29 19:03:14 +0200
catalogue-license lppl1.3
catalogue-topics doc-supp class
catalogue-version 1.5b
@@ -260625,7 +257758,6 @@ runfiles size=5
RELOC/tex/latex/skeycommand/skeycommand.sty
catalogue-also skeyval
catalogue-ctan /macros/latex/contrib/skeycommand
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics keyval macro-supp
catalogue-version 0.4
@@ -260667,7 +257799,6 @@ runfiles size=148
RELOC/tex/latex/skeyval/skeyval.sty
catalogue-also skeycommand
catalogue-ctan /macros/latex/contrib/skeyval
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics keyval
catalogue-version 1.3
@@ -260693,7 +257824,6 @@ srcfiles size=9
runfiles size=4
RELOC/tex/latex/skmath/skmath.sty
catalogue-ctan /macros/latex/contrib/skmath
-catalogue-date 2019-10-16 10:24:58 +0200
catalogue-license lppl1.3
catalogue-topics maths
catalogue-version 0.5a
@@ -260732,7 +257862,6 @@ runfiles size=26
catalogue-contact-bugs https://github.com/urdh/skrapport/issues
catalogue-contact-repository https://github.com/urdh/skrapport
catalogue-ctan /macros/latex/contrib/skrapport
-catalogue-date 2019-10-16 21:10:34 +0200
catalogue-license lppl1.3
catalogue-topics class
catalogue-version 0.12k
@@ -260757,7 +257886,6 @@ runfiles size=3
RELOC/fonts/tfm/public/skull/skull.tfm
RELOC/tex/latex/skull/skull.sty
catalogue-ctan /fonts/skull
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics font font-mf font-novelty
catalogue-version 0.1
@@ -260790,7 +257918,6 @@ srcfiles size=6
runfiles size=1
RELOC/tex/latex/slantsc/slantsc.sty
catalogue-ctan /macros/latex/contrib/slantsc
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license lppl
catalogue-topics font-supp
catalogue-version 2.11
@@ -260822,7 +257949,6 @@ runfiles size=10
RELOC/metapost/slideshow/sshowex3.mp
RELOC/metapost/slideshow/sshowintro.mp
catalogue-ctan /graphics/metapost/contrib/macros/slideshow
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license other-free
catalogue-topics presentation
catalogue-version 1.0
@@ -260846,7 +257972,6 @@ docfiles size=45
runfiles size=1
RELOC/tex/latex/smalltableof/smalltableof.sty
catalogue-ctan /macros/latex/contrib/smalltableof
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics toc-etc
@@ -260876,7 +258001,6 @@ runfiles size=15
RELOC/tex/latex/smartdiagram/smartdiagramlibrarycore.definitions.code.tex
RELOC/tex/latex/smartdiagram/smartdiagramlibrarycore.styles.code.tex
catalogue-ctan /graphics/pgf/contrib/smartdiagram
-catalogue-date 2016-12-23 16:27:20 +0100
catalogue-license lppl1.3
catalogue-topics diagram pgf-tikz
catalogue-version 0.3b
@@ -260908,7 +258032,6 @@ runfiles size=3
RELOC/tex/latex/smartref/smartref.sty
catalogue-also zref
catalogue-ctan /macros/latex/contrib/smartref
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics label-ref counter-mgmt
catalogue-version 1.9
@@ -260932,7 +258055,6 @@ docfiles size=90
runfiles size=3
RELOC/tex/latex/smartunits/smartunits.sty
catalogue-ctan /macros/latex/contrib/smartunits
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics units misc-conv
catalogue-version 1.2
@@ -260972,7 +258094,6 @@ runfiles size=4
catalogue-also bundledoc
catalogue-contact-home https://www.ams.org/arc/resources/snapshot-about.html
catalogue-ctan /macros/latex/contrib/snapshot
-catalogue-date 2019-09-17 21:40:12 +0200
catalogue-license lppl1.3c
catalogue-topics file-mgmt
catalogue-version 2.13
@@ -261000,7 +258121,6 @@ runfiles size=3
RELOC/tex/latex/snotez/snotez.sty
catalogue-also sidenotes
catalogue-ctan /macros/latex/contrib/snotez
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics marginal
catalogue-version 0.3
@@ -261064,7 +258184,6 @@ runfiles size=15
RELOC/tex/latex/songbook/songbook.sty
catalogue-contact-home http://rath.ca/Misc/Songbook/
catalogue-ctan /macros/latex/contrib/songbook
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lgpl2.1
catalogue-topics music chords
catalogue-version 4.5
@@ -261115,7 +258234,6 @@ catalogue-also songbook
catalogue-contact-home http://songs.sourceforge.net
catalogue-contact-repository https://sourceforge.net/projects/songs
catalogue-ctan /macros/latex/contrib/songs
-catalogue-date 2019-06-26 22:33:40 +0200
catalogue-license gpl2
catalogue-topics music chords
catalogue-version 3.1
@@ -261145,7 +258263,6 @@ runfiles size=48
RELOC/bibtex/bst/sort-by-letters/siam-letters.bst
catalogue-also alphabib
catalogue-ctan /biblio/bibtex/contrib/sort-by-letters
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license other-free
catalogue-topics bibtex-sty
@@ -261167,7 +258284,6 @@ runfiles size=2
RELOC/tex/latex/soton/soton-beamer.sty
RELOC/tex/latex/soton/soton-palette.sty
catalogue-ctan /macros/latex/contrib/soton
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics presentation
catalogue-version 0.1
@@ -261201,7 +258317,6 @@ srcfiles size=35
runfiles size=6
RELOC/tex/latex/soul/soul.sty
catalogue-ctan /macros/latex/contrib/soul
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics underline letterspace
catalogue-version 2.4
@@ -261232,7 +258347,6 @@ runfiles size=2
catalogue-contact-home http://www.texnia.com/
catalogue-contact-repository https://github.com/jbezos
catalogue-ctan /macros/latex/contrib/soulpos
-catalogue-date 2019-07-06 05:47:20 +0200
catalogue-license mit
catalogue-topics underline letterspace
catalogue-version 1.1
@@ -261262,7 +258376,6 @@ srcfiles size=8
runfiles size=4
RELOC/tex/latex/soup/soup.sty
catalogue-ctan /macros/latex/contrib/soup
-catalogue-date 2019-04-06 06:01:50 +0200
catalogue-license lppl1.3
catalogue-topics cwpuzzle games puzzle
catalogue-version 1.0.2
@@ -262020,7 +259133,6 @@ runfiles size=1903
RELOC/tex/latex/sourcecodepro/sourcecodepro-type1-autoinst.sty
RELOC/tex/latex/sourcecodepro/sourcecodepro.sty
catalogue-ctan /fonts/sourcecodepro
-catalogue-date 2019-05-19 20:15:06 +0200
catalogue-license ofllppl
catalogue-topics font font-sans font-mono font-otf font-type1 font-t1enc
catalogue-version 2.7
@@ -263572,7 +260684,6 @@ runfiles size=3883
RELOC/tex/latex/sourcesanspro/sourcesanspro-type1-autoinst.sty
RELOC/tex/latex/sourcesanspro/sourcesanspro.sty
catalogue-ctan /fonts/sourcesanspro
-catalogue-date 2017-01-03 15:01:48 +0100
catalogue-license ofllppl1.3
catalogue-topics font-sans font-type1 font-otf font-t1enc
catalogue-version 2.6
@@ -264647,7 +261758,6 @@ runfiles size=4622
catalogue-contact-bugs https://github.com/silkeh/latex-sourceserifpro/issues
catalogue-contact-repository https://github.com/silkeh/latex-sourceserifpro
catalogue-ctan /fonts/sourceserifpro
-catalogue-date 2018-11-10 20:37:11 +0100
catalogue-license ofllppl1.3
catalogue-topics font font-serif font-type1 font-otf font-t1enc font-proportional
catalogue-version 1.4
@@ -264676,7 +261786,6 @@ srcfiles size=7
runfiles size=1
RELOC/tex/latex/spacingtricks/spacingtricks.sty
catalogue-ctan /macros/latex/contrib/spacingtricks
-catalogue-date 2019-09-09 18:03:58 +0200
catalogue-license lppl1.3
catalogue-topics typesetting footnote list layout abbrev
catalogue-version 1.2
@@ -264715,7 +261824,6 @@ srcfiles size=13
runfiles size=3
RELOC/tex/latex/spalign/spalign.sty
catalogue-ctan /macros/latex/contrib/spalign
-catalogue-date 2018-01-07 14:49:11 +0100
catalogue-license lppl1.3
catalogue-topics maths matrix maths-syseqn maths-theorem typeset-grid
@@ -264742,7 +261850,6 @@ runfiles size=3
RELOC/tex/latex/spanish-mx/spanishmx.ldf
RELOC/tex/latex/spanish-mx/spanishmx.sty
catalogue-ctan /language/spanish/babel/contrib/mexican
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics spanish multilingual-addon
catalogue-version 1.1a
@@ -264770,7 +261877,6 @@ docfiles size=33
runfiles size=2
RELOC/tex/latex/spark-otf/spark-otf.sty
catalogue-ctan /fonts/spark-otf
-catalogue-date 2019-04-13 10:06:36 +0200
catalogue-license lppl1.3
catalogue-topics font-absent font-symbol font-otf font-use
catalogue-version 0.05
@@ -264800,7 +261906,6 @@ docfiles size=38
runfiles size=2
RELOC/tex/latex/sparklines/sparklines.sty
catalogue-ctan /graphics/sparklines
-catalogue-date 2016-12-31 14:06:34 +0100
catalogue-license lppl
catalogue-topics graphics-in-tex
catalogue-version 1.7
@@ -264836,7 +261941,6 @@ runfiles size=28
RELOC/tex/latex/spath3/tikzlibrarycalligraphy.code.tex
RELOC/tex/latex/spath3/tikzlibraryknots.code.tex
catalogue-ctan /graphics/pgf/contrib/spath3
-catalogue-date 2019-02-13 10:37:08 +0100
catalogue-license lppl1.3c
catalogue-topics pgf-tikz graphics-curve
catalogue-version 1.2
@@ -264922,7 +262026,6 @@ runfiles size=98
RELOC/tex/latex/spectralsequences/sseqparsers.code.tex
catalogue-contact-repository https://github.com/hoodmane/spectralsequences
catalogue-ctan /graphics/pgf/contrib/spectralsequences
-catalogue-date 2019-02-19 07:50:50 +0100
catalogue-license lppl
catalogue-topics pgf-tikz
catalogue-version 1.2.2
@@ -264959,7 +262062,6 @@ runfiles size=19
RELOC/scripts/spelling/spelling-stage-4.lua
RELOC/tex/luatex/spelling/spelling.sty
catalogue-ctan /macros/luatex/generic/spelling
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics luatex spell
catalogue-version 0.41
@@ -264981,7 +262083,6 @@ docfiles size=61
runfiles size=2
RELOC/tex/latex/sphack/sphack.sty
catalogue-ctan /macros/latex/contrib/sphack
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license other-free
catalogue-topics macro-supp
@@ -265021,7 +262122,6 @@ runfiles size=5
RELOC/tex/latex/sphdthesis/SPhdThesis.cls
catalogue-contact-repository https://github.com/saurabhg17/SPhdThesis/archive/master.zip
catalogue-ctan /macros/latex/contrib/sphdthesis
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license pd
catalogue-topics dissertation
catalogue-version 1.0
@@ -265047,7 +262147,6 @@ runfiles size=10
RELOC/tex/latex/spie/spie.cls
catalogue-contact-home http://public.lanl.gov/kmh/spie/
catalogue-ctan /macros/latex/contrib/spie
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl
catalogue-topics confproc
catalogue-version 3.25
@@ -265079,7 +262178,6 @@ runfiles size=3
RELOC/metapost/splines/splines.mp
RELOC/metapost/splines/testsplines.mp
catalogue-ctan /graphics/metapost/contrib/macros/splines
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics graphics-mpost
catalogue-version 0.2
@@ -265107,7 +262205,6 @@ srcfiles size=14
runfiles size=7
RELOC/tex/latex/splitbib/splitbib.sty
catalogue-ctan /macros/latex/contrib/splitbib
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics cite-supp
catalogue-version 1.17
@@ -265152,7 +262249,6 @@ runfiles size=10
texmf-dist/tex/generic/splitindex/splitindex.tex
texmf-dist/tex/latex/splitindex/splitidx.sty
catalogue-ctan /macros/latex/contrib/splitindex
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics index-multi index
catalogue-version 1.2c
@@ -265325,7 +262421,6 @@ srcfiles size=9
runfiles size=2
RELOC/tex/latex/spot/spot.sty
catalogue-ctan /macros/latex/contrib/beamer-contrib/spot
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics presentation
catalogue-version 1.1
@@ -265353,7 +262448,6 @@ runfiles size=27
RELOC/tex/latex/spotcolor/spotcolorhks.tex
RELOC/tex/latex/spotcolor/spotcolorpantone.tex
catalogue-ctan /macros/latex/contrib/spotcolor
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics colour
catalogue-version 1.2
@@ -265382,7 +262476,6 @@ runfiles size=25
catalogue-contact-bugs https://framagit.org/unbonpetit/spreadtab/issues
catalogue-contact-repository https://framagit.org/unbonpetit/spreadtab/tree/master
catalogue-ctan /macros/latex/contrib/spreadtab
-catalogue-date 2019-02-27 09:37:31 +0100
catalogue-license lppl1.3c
catalogue-topics table
catalogue-version 0.5
@@ -265414,7 +262507,6 @@ srcfiles size=4
runfiles size=1
RELOC/tex/latex/spverbatim/spverbatim.sty
catalogue-ctan /macros/latex/contrib/spverbatim
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics verbatim
catalogue-version 1.0
@@ -265449,7 +262541,6 @@ srcfiles size=17
runfiles size=3
RELOC/tex/latex/sr-vorl/sr-vorl.cls
catalogue-ctan /macros/latex/contrib/springer/sr-vorl
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics book-pub class
catalogue-version 1.1
@@ -265477,7 +262568,6 @@ docfiles size=76
runfiles size=1
RELOC/tex/latex/srbook-mem/srbook-mem.sty
catalogue-ctan /macros/latex/contrib/srbook-mem
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics book-pub serbian
@@ -265507,7 +262597,6 @@ runfiles size=3
RELOC/tex/latex/srcltx/srcltx.sty
RELOC/tex/latex/srcltx/srctex.sty
catalogue-ctan /macros/latex/contrib/srcltx
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics debug-supp
catalogue-version 1.6
@@ -265554,7 +262643,6 @@ docfiles size=203
runfiles size=3
texmf-dist/scripts/srcredact/srcredact.pl
catalogue-ctan /support/srcredact
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl2
catalogue-topics cond-comp
catalogue-version 1.0
@@ -265725,7 +262813,6 @@ docfiles size=49
runfiles size=17
RELOC/tex/latex/srdp-mathematik/srdp-mathematik.sty
catalogue-ctan /macros/latex/contrib/srdp-mathematik
-catalogue-date 2019-07-10 10:59:51 +0200
catalogue-license lppl1.3c
catalogue-topics exam maths
catalogue-version 1.3
@@ -265756,7 +262843,6 @@ srcfiles size=17
runfiles size=10
RELOC/tex/latex/sseq/sseq.sty
catalogue-ctan /macros/latex/contrib/sseq
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics maths
catalogue-version 2.01
@@ -265781,7 +262867,6 @@ docfiles size=12
runfiles size=1
RELOC/tex/latex/sslides/sslides.cls
catalogue-ctan /macros/latex/contrib/sslides
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics presentation
@@ -265806,7 +262891,6 @@ runfiles size=2
RELOC/tex/latex/stack/relinput.sty
RELOC/tex/latex/stack/stack.sty
catalogue-ctan /macros/latex/contrib/stack
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics macro-supp
catalogue-version 1.00
@@ -265831,7 +262915,6 @@ docfiles size=102
runfiles size=4
RELOC/tex/latex/stackengine/stackengine.sty
catalogue-ctan /macros/latex/contrib/stackengine
-catalogue-date 2017-02-13 14:03:10 +0100
catalogue-license lppl1.3
catalogue-topics macro-supp
catalogue-version 4.01
@@ -265858,7 +262941,6 @@ catalogue-contact-development https://github.com/rrthomas/stage
catalogue-contact-home https://github.com/rrthomas/stage
catalogue-contact-repository https://github.com/rrthomas/stage
catalogue-ctan /macros/latex/contrib/stage
-catalogue-date 2017-04-27 23:31:51 +0200
catalogue-license lppl1.3
catalogue-topics drama-script
catalogue-version 1.00
@@ -265900,7 +262982,6 @@ catalogue-contact-bugs https://bitbucket.org/martin_scharrer/standalone/issues
catalogue-contact-home https://bitbucket.org/martin_scharrer/standalone/
catalogue-contact-repository https://bitbucket.org/martin_scharrer/standalone/src
catalogue-ctan /macros/latex/contrib/standalone
-catalogue-date 2018-03-26 21:22:24 +0200
catalogue-license lppl1.3
catalogue-topics subdocs class
catalogue-version 1.3a
@@ -265927,7 +263008,6 @@ docfiles size=153
runfiles size=20
RELOC/tex/latex/stanli/stanli.sty
catalogue-ctan /graphics/pgf/contrib/stanli
-catalogue-date 2016-12-29 05:38:19 +0100
catalogue-license gpllppl1.3
catalogue-topics pgf-tikz engineering
catalogue-version 3.0
@@ -265966,7 +263046,6 @@ runfiles size=57
RELOC/fonts/type1/public/starfont/strfnser.pfb
RELOC/tex/latex/starfont/starfont.sty
catalogue-ctan /fonts/ps-type1/starfont
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics font astrology font-specialist font-ttf
catalogue-version 1.2
@@ -266007,7 +263086,6 @@ runfiles size=17
RELOC/tex/startex/startex.lan
RELOC/tex/startex/startex.tex
catalogue-ctan /macros/startex
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics format
catalogue-version 1.04
@@ -266030,7 +263108,6 @@ docfiles size=45
runfiles size=4
RELOC/tex/latex/statex/statex.sty
catalogue-ctan /macros/latex/contrib/statex
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics statistics
catalogue-version 1.6
@@ -266053,7 +263130,6 @@ docfiles size=45
runfiles size=5
RELOC/tex/latex/statex2/statex2.sty
catalogue-ctan /macros/latex/contrib/statex2
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics statistics
catalogue-version 2.1
@@ -266096,7 +263172,6 @@ catalogue-contact-home https://gitlab.com/frnchfrgg-latex/statistics
catalogue-contact-repository https://gitlab.com/frnchfrgg-latex/statistics
catalogue-contact-support https://gitlab.com/frnchfrgg-latex/statistics/issues
catalogue-ctan /macros/latex/contrib/statistics
-catalogue-date 2019-09-29 19:55:40 +0200
catalogue-license gpl3+
catalogue-topics maths statistics
catalogue-version 2.2
@@ -266128,7 +263203,6 @@ srcfiles size=5
runfiles size=2
RELOC/tex/latex/statistik/statistik.sty
catalogue-ctan /macros/latex/contrib/statistik
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics doc-mgmt
catalogue-version 0.03
@@ -266161,7 +263235,6 @@ runfiles size=2
catalogue-contact-bugs https://github.com/ankargren/statmath/issues
catalogue-contact-home https://github.com/ankargren/statmath
catalogue-ctan /macros/latex/contrib/statmath
-catalogue-date 2018-04-29 07:15:59 +0200
catalogue-license lppl1.3
catalogue-topics statistics
catalogue-version 0.1
@@ -266195,7 +263268,6 @@ runfiles size=34
RELOC/fonts/type1/public/staves/icelandic.pfb
RELOC/tex/latex/staves/staves.sty
catalogue-ctan /language/staves
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics font font-type1 font-rune icelandic
@@ -266223,7 +263295,6 @@ srcfiles size=5
runfiles size=1
RELOC/tex/latex/stdclsdv/stdclsdv.sty
catalogue-ctan /macros/latex/contrib/stdclsdv
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics macro-supp
catalogue-version 1.1a
@@ -266255,7 +263326,6 @@ srcfiles size=6
runfiles size=2
RELOC/tex/latex/stdpage/stdpage.sty
catalogue-ctan /macros/latex/contrib/stdpage
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.2
catalogue-topics geometry
catalogue-version 0.6
@@ -266297,7 +263367,6 @@ catalogue-contact-bugs https://github.com/giannotr/stealcaps/issues
catalogue-contact-home https://github.com/giannotr/stealcaps
catalogue-contact-repository https://github.com/giannotr/stealcaps.git
catalogue-ctan /macros/latex/contrib/stealcaps
-catalogue-date 2018-01-26 07:47:53 +0100
catalogue-license lppl1.3c
catalogue-topics font-supp font-use
catalogue-version 1.0
@@ -266327,7 +263396,6 @@ srcfiles size=4
runfiles size=1
RELOC/tex/latex/steinmetz/steinmetz.sty
catalogue-ctan /macros/latex/contrib/steinmetz
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics engineering maths
catalogue-version 1.0
@@ -266434,7 +263502,6 @@ runfiles size=384
RELOC/tex/latex/stellenbosch/usthesis.sty
RELOC/tex/latex/stellenbosch/ustitle.sty
catalogue-ctan /macros/latex/contrib/stellenbosch
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics dissertation
catalogue-version 11a
@@ -266825,7 +263892,6 @@ catalogue-also xits
catalogue-contact-bugs https://github.com/dbenjaminmiller/step/issues
catalogue-contact-repository https://github.com/dbenjaminmiller/step
catalogue-ctan /fonts/step
-catalogue-date 2019-10-24 13:36:59 +0200
catalogue-license ofl
catalogue-topics font-greek font-cyrillic font font-body font-serif font-proportional font-maths font-symbol-maths font-otf font-type1 font-supp
catalogue-version 2.0.1a
@@ -267014,7 +264080,6 @@ catalogue-contact-development https://lists.informatik.uni-erlangen.de/mailman/l
catalogue-contact-home https://github.com/KWARC/sTeX
catalogue-contact-repository https://github.com/KWARC/sTeX
catalogue-ctan /macros/latex/contrib/stex
-catalogue-date 2019-03-20 21:11:08 +0100
catalogue-license lppl
catalogue-topics struc-mkup format
@@ -267607,7 +264672,6 @@ runfiles size=6094
RELOC/tex/latex/stickstoo/TS1SticksTooText-TOsF.fd
RELOC/tex/latex/stickstoo/stickstootext.sty
catalogue-ctan /fonts/stickstoo
-catalogue-date 2019-10-11 08:24:37 +0200
catalogue-license ofllppl1.3
catalogue-topics font font-body font-serif font-proportional font-maths font-type1 font-supp font-t1enc
catalogue-version 1.033
@@ -267749,7 +264813,6 @@ runfiles size=1021
catalogue-also xits stix2-otf stix2-type1
catalogue-contact-home http://www.stixfonts.org/
catalogue-ctan /fonts/stix
-catalogue-date 2018-04-18 21:20:16 +0200
catalogue-license ofllppl1.3
catalogue-topics font font-serif font-otf font-type1 font-maths font-symbol-maths font-bbd
catalogue-version 1.1.3
@@ -267790,7 +264853,6 @@ catalogue-contact-bugs https://github.com/stipub/stixfonts/issues
catalogue-contact-home http://www.stixfonts.org/
catalogue-contact-repository https://github.com/stipub/stixfonts
catalogue-ctan /fonts/stix2-otf
-catalogue-date 2019-04-24 15:45:30 +0200
catalogue-license ofl
catalogue-topics font font-otf font-maths font-symbol font-symbol-maths font-body font-collection font-nonroman font-serif
catalogue-version 2.0.1
@@ -267955,7 +265017,6 @@ catalogue-contact-bugs https://github.com/stipub/stixfonts/issues
catalogue-contact-development https://github.com/stipub/stixfonts
catalogue-contact-home http://www.stixfonts.org/
catalogue-ctan /fonts/stix2-type1
-catalogue-date 2019-04-23 21:47:35 +0200
catalogue-license ofllppl1.3
catalogue-topics font font-type1 font-maths font-symbol-maths font-bbd font-body font-collection font-nonroman font-otf font-serif font-symbol font-supp font-supp-maths font-supp-symbol
catalogue-version 2.0.0a
@@ -268025,7 +265086,6 @@ runfiles size=98
RELOC/tex/latex/stmaryrd/Ustmry.fd
RELOC/tex/latex/stmaryrd/stmaryrd.sty
catalogue-ctan /fonts/stmaryrd
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics comp-theory font font-symbol-maths font-mf font-type1
@@ -268057,7 +265117,6 @@ runfiles size=4
RELOC/tex/latex/storebox/storebox.sty
catalogue-contact-repository https://bitbucket.org/martin_scharrer/storebox
catalogue-ctan /macros/latex/contrib/storebox
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl1.3
catalogue-topics pdf-feat macro-supp
catalogue-version 1.3a
@@ -268083,7 +265142,6 @@ docfiles size=71
runfiles size=3
RELOC/tex/latex/storecmd/storecmd.sty
catalogue-ctan /macros/latex/contrib/storecmd
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics macro-supp
catalogue-version 0.0.2
@@ -268152,7 +265210,6 @@ runfiles size=108
catalogue-contact-bugs https://github.com/ho-tex/stringenc/issues
catalogue-contact-repository https://github.com/ho-tex/stringenc
catalogue-ctan /macros/latex/contrib/stringenc
-catalogue-date 2019-11-30 12:49:50 +0100
catalogue-license lppl1.3
catalogue-topics enc-juggle
catalogue-version 1.12
@@ -268188,7 +265245,6 @@ runfiles size=15
RELOC/tex/latex/stringstrings/stringstrings.sty
catalogue-also getargs
catalogue-ctan /macros/latex/contrib/stringstrings
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics text-manip
catalogue-version 1.23
@@ -268215,7 +265271,6 @@ docfiles size=52
catalogue-contact-bugs https://github.com/TLCFEM/structmech/issues
catalogue-contact-home https://github.com/TLCFEM/structmech
catalogue-ctan /graphics/pgf/contrib/structmech
-catalogue-date 2018-05-28 20:53:43 +0200
catalogue-license gpl3+
catalogue-topics pgf-tikz physics
catalogue-version 1.0
@@ -268262,7 +265317,6 @@ runfiles size=14
RELOC/tex/latex/struktex/struktxp.sty
catalogue-also pict2e
catalogue-ctan /macros/latex/contrib/struktex
-catalogue-date 2018-06-04 21:54:41 +0200
catalogue-license lppl1.2
catalogue-topics diagram-flow
catalogue-version 2.3c-0-g7d3fc5b
@@ -268312,7 +265366,6 @@ runfiles size=28
RELOC/tex/latex/sttools/stfloats.sty
RELOC/tex/latex/sttools/texsort.sty
catalogue-ctan /macros/latex/contrib/sttools
-catalogue-date 2017-04-03 11:28:06 +0200
catalogue-license lppl1.3
catalogue-topics collection
catalogue-version 2.0
@@ -268339,7 +265392,6 @@ docfiles size=14
runfiles size=1
RELOC/tex/latex/stubs/stubs.sty
catalogue-ctan /macros/latex/contrib/stubs
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics advert
catalogue-version 0.1.1
@@ -268378,7 +265430,6 @@ docfiles size=91
runfiles size=3
RELOC/tex/latex/studenthandouts/studenthandouts.sty
catalogue-ctan /macros/latex/contrib/studenthandouts
-catalogue-date 2017-03-16 20:27:26 +0100
catalogue-license lppl1.3
catalogue-topics presentation
catalogue-version 1.0
@@ -268414,7 +265465,6 @@ runfiles size=8
texmf-dist/scripts/sty2dtx/sty2dtx.pl
catalogue-also makedtx
catalogue-ctan /support/sty2dtx
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl3
catalogue-topics package-devel
catalogue-version 2.3
@@ -268582,7 +265632,6 @@ runfiles size=5
RELOC/metapost/suanpan/abacus.mp
RELOC/metapost/suanpan/suanpan.mp
catalogue-ctan /graphics/metapost/contrib/macros/suanpan
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics games mp-use
@@ -268611,7 +265660,6 @@ srcfiles size=4
runfiles size=1
RELOC/tex/latex/subdepth/subdepth.sty
catalogue-ctan /macros/latex/contrib/subdepth
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics subsup-pos maths
catalogue-version 0.1
@@ -268640,7 +265688,6 @@ catalogue-also newclude includex combine
catalogue-contact-home http://www.texnia.com/
catalogue-contact-repository https://github.com/jbezos
catalogue-ctan /macros/latex/contrib/subdocs
-catalogue-date 2019-06-26 19:06:30 +0200
catalogue-license mit
catalogue-topics subdocs
catalogue-version 0.1
@@ -268676,7 +265723,6 @@ runfiles size=1
RELOC/tex/latex/subeqn/subeqn.sty
catalogue-also subeqnarray
catalogue-ctan /macros/latex/contrib/subeqn
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics maths
catalogue-version 2.0b
@@ -268710,7 +265756,6 @@ runfiles size=2
RELOC/tex/latex/subeqnarray/subeqnarray.sty
catalogue-also subeqn
catalogue-ctan /macros/latex/contrib/subeqnarray
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics maths-syseqn
catalogue-version 2.1c
@@ -268765,7 +265810,6 @@ catalogue-also subfloat
catalogue-contact-bugs https://github.com/bidi-tex/subfig/issues
catalogue-contact-repository https://github.com/bidi-tex/subfig
catalogue-ctan /macros/latex/contrib/subfig
-catalogue-date 2018-11-28 21:07:40 +0100
catalogue-license lppl
catalogue-topics caption subfloat
catalogue-version 1.3
@@ -268789,7 +265833,6 @@ docfiles size=72
runfiles size=2
RELOC/tex/latex/subfigmat/subfigmat.sty
catalogue-ctan /macros/latex/contrib/subfigmat
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics matrix float
catalogue-version 1.0
@@ -268833,7 +265876,6 @@ runfiles size=5
RELOC/tex/latex/subfigure/subfigure.sty
catalogue-also subfloat
catalogue-ctan /obsolete/macros/latex/contrib/subfigure
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics caption subfloat obsolete
catalogue-version 2.1.5
@@ -268867,7 +265909,6 @@ catalogue-contact-bugs https://github.com/gsalzer/subfiles/issues
catalogue-contact-repository https://github.com/gsalzer/subfiles
catalogue-contact-support https://tex.stackexchange.com/
catalogue-ctan /macros/latex/contrib/subfiles
-catalogue-date 2019-10-30 21:50:03 +0100
catalogue-license lppl1.3
catalogue-topics subdocs class
catalogue-version 1.5
@@ -268901,7 +265942,6 @@ srcfiles size=10
runfiles size=2
RELOC/tex/latex/subfloat/subfloat.sty
catalogue-ctan /macros/latex/contrib/subfloat
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics subfloat
catalogue-version 2.14
@@ -268928,7 +265968,6 @@ runfiles size=6
RELOC/tex/latex/substances/substances-default.def
RELOC/tex/latex/substances/substances.sty
catalogue-ctan /macros/latex/contrib/substances
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics chemistry expl3
catalogue-version 0.2a
@@ -268964,7 +266003,6 @@ docfiles size=374
runfiles size=1
RELOC/tex/latex/substitutefont/substitutefont.sty
catalogue-ctan /macros/latex/contrib/substitutefont
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics font-supp
catalogue-version 0.1.4
@@ -268991,7 +266029,6 @@ docfiles size=8
runfiles size=2
RELOC/tex/latex/substr/substr.sty
catalogue-ctan /macros/latex/contrib/substr
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license lppl1
catalogue-topics macro-supp
catalogue-version 1.2
@@ -269015,7 +266052,6 @@ docfiles size=31
runfiles size=1
RELOC/tex/latex/subsupscripts/subsupscripts.sty
catalogue-ctan /macros/latex/contrib/subsupscripts
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics subsup-pos maths physics
catalogue-version 1.0
@@ -269041,7 +266077,6 @@ docfiles size=21
runfiles size=1
RELOC/tex/latex/subtext/subtext.sty
catalogue-ctan /macros/latex/contrib/subtext
-catalogue-date 2019-05-30 18:27:29 +0200
catalogue-license gpl3
catalogue-topics maths
catalogue-version 1.1
@@ -269076,7 +266111,6 @@ srcfiles size=4
runfiles size=1
RELOC/tex/latex/sudoku/sudoku.sty
catalogue-ctan /macros/latex/contrib/sudoku
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics games
catalogue-version 1.0
@@ -269113,7 +266147,6 @@ runfiles size=14
RELOC/tex/latex/sudokubundle/solvesudoku.sty
catalogue-also sudoku
catalogue-ctan /macros/latex/contrib/sudokubundle
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics games
catalogue-version 1.0a
@@ -269139,7 +266172,6 @@ srcfiles size=43
runfiles size=21
RELOC/tex/latex/suftesi/suftesi.cls
catalogue-ctan /macros/latex/contrib/suftesi
-catalogue-date 2019-10-26 17:08:54 +0200
catalogue-license lppl1.3
catalogue-topics book-pub class dissertation
catalogue-version 2.9.2
@@ -269169,7 +266201,6 @@ docfiles size=33
runfiles size=2
RELOC/tex/latex/sugconf/sugconf.cls
catalogue-ctan /macros/latex/contrib/conferences/sugconf
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics journalpub
@@ -269203,7 +266234,6 @@ runfiles size=7
RELOC/fonts/type1/public/superiors/libertinesups.pfb
RELOC/tex/latex/superiors/superiors.sty
catalogue-ctan /fonts/superiors
-catalogue-date 2019-08-19 15:57:06 +0200
catalogue-license lppl
catalogue-topics font font-symbol font-type1 font-supp
catalogue-version 1.06
@@ -269236,7 +266266,6 @@ runfiles size=4
RELOC/tex/latex/supertabular/supertabular.sty
catalogue-also xtab
catalogue-ctan /macros/latex/contrib/supertabular
-catalogue-date 2017-08-05 18:49:19 +0200
catalogue-license lppl1.3
catalogue-topics table table-long
catalogue-version 4.1e
@@ -269257,7 +266286,6 @@ docfiles size=2
runfiles size=1
RELOC/tex/latex/susy/susy.sty
catalogue-ctan /macros/latex/contrib/susy
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics shortcut physics
@@ -269301,7 +266329,6 @@ catalogue-also svg-inkscape
catalogue-contact-bugs https://github.com/mrpiggi/svg/issues
catalogue-contact-repository https://github.com/mrpiggi/svg
catalogue-ctan /graphics/svg
-catalogue-date 2019-10-23 19:16:38 +0200
catalogue-license lppl1.3c
catalogue-topics graphics-incl graphics-import
catalogue-version 2.02d
@@ -269334,7 +266361,6 @@ docfiles size=90
RELOC/doc/latex/svg-inkscape/image.svg
catalogue-also svg
catalogue-ctan /info/svg-inkscape
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics graphics-prep
@@ -269354,7 +266380,6 @@ docfiles size=1
runfiles size=4
RELOC/tex/latex/svgcolor/svgcolor.sty
catalogue-ctan /macros/latex/contrib/svgcolor
-catalogue-date 2018-09-15 14:10:32 +0200
catalogue-license lppl
catalogue-topics colour
catalogue-version 1.0
@@ -269386,7 +266411,6 @@ runfiles size=1
RELOC/tex/latex/svn/svn.sty
catalogue-also svninfo svn-multi
catalogue-ctan /macros/latex/contrib/svn
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics version-control doc-mgmt
catalogue-version 43
@@ -269427,7 +266451,6 @@ runfiles size=15
catalogue-also svn svninfo
catalogue-contact-repository https://bitbucket.org/martin_scharrer/svn-multi
catalogue-ctan /macros/latex/contrib/svn-multi
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl
catalogue-topics version-control doc-mgmt
catalogue-version 2.4d
@@ -269601,7 +266624,6 @@ srcfiles size=10
runfiles size=2
RELOC/tex/latex/svn-prov/svn-prov.sty
catalogue-ctan /macros/latex/contrib/svn-prov
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics version-control doc-mgmt
catalogue-version 3.1862
@@ -269634,7 +266656,6 @@ runfiles size=5
RELOC/tex/latex/svninfo/svninfo.sty
catalogue-also svn svn-multi svn-prov
catalogue-ctan /macros/latex/contrib/svninfo
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1
catalogue-topics version-control doc-mgmt
catalogue-version 0.7.4
@@ -269670,7 +266691,6 @@ runfiles size=26
RELOC/fonts/type1/public/svrsymbols/SVRsymbols.pfb
RELOC/tex/latex/svrsymbols/svrsymbols.sty
catalogue-ctan /fonts/svrsymbols
-catalogue-date 2019-02-12 22:24:22 +0100
catalogue-license lppl1.3c
catalogue-topics font font-maths font-symbol-maths physics
catalogue-version 2.0b
@@ -269698,7 +266718,6 @@ runfiles size=27
RELOC/bibtex/bst/swebib/sweplnat.bst
RELOC/bibtex/bst/swebib/sweunsrt.bst
catalogue-ctan /biblio/bibtex/contrib/swebib
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.2
catalogue-topics bibtex-sty swedish
@@ -269762,7 +266781,6 @@ runfiles size=13
RELOC/tex/latex/swimgraf/swimgraf.cfg
RELOC/tex/latex/swimgraf/swimgraf.sty
catalogue-ctan /macros/latex/contrib/swimgraf
-catalogue-date 2018-09-15 14:13:15 +0200
catalogue-license lppl
catalogue-topics data-disp
@@ -269787,7 +266805,6 @@ docfiles size=95
runfiles size=3
RELOC/tex/latex/syllogism/syllogism.sty
catalogue-ctan /macros/latex/contrib/syllogism
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics logic
catalogue-version 1.2
@@ -269825,7 +266842,6 @@ runfiles size=25
RELOC/tex/latex/symbol/uusy.fd
catalogue-also tex-gyre
catalogue-ctan /fonts/urw/base35
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics font font-type1 font-collection
@@ -269855,7 +266871,6 @@ runfiles size=4
RELOC/tex/latex/sympytexpackage/sympytex.sty
catalogue-contact-home http://elec.otago.ac.nz/w/index.php/SympyTeX
catalogue-ctan /macros/latex/contrib/sympytexpackage
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license gpl2
catalogue-topics callback
catalogue-version 0.3
@@ -270044,7 +267059,6 @@ docfiles size=21
runfiles size=2
RELOC/tex/latex/synproof/synproof.sty
catalogue-ctan /macros/latex/contrib/synproof
-catalogue-date 2018-09-15 14:15:12 +0200
catalogue-license lppl
catalogue-topics logic linguistic
catalogue-version 1.0
@@ -270071,7 +267085,6 @@ runfiles size=3
RELOC/tex/latex/syntax/syntax.tex
catalogue-also syntax-mdw
catalogue-ctan /macros/latex/contrib/syntax
-catalogue-date 2016-07-19 09:53:55 +0200
catalogue-license gpl
catalogue-topics syntax diagram
@@ -270099,7 +267112,6 @@ srcfiles size=3
runfiles size=1
RELOC/tex/latex/syntrace/syntrace.sty
catalogue-ctan /macros/latex/contrib/syntrace
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics tree
catalogue-version 1.1
@@ -270127,7 +267139,6 @@ srcfiles size=10
runfiles size=4
RELOC/tex/latex/synttree/synttree.sty
catalogue-ctan /macros/latex/contrib/synttree
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license lppl
catalogue-topics tree linguistic
catalogue-version 1.4.2
@@ -270158,7 +267169,6 @@ runfiles size=8
catalogue-contact-bugs https://framagit.org/unbonpetit/systeme/issues
catalogue-contact-repository https://framagit.org/unbonpetit/systeme/tree/master
catalogue-ctan /macros/generic/systeme
-catalogue-date 2019-01-13 21:13:02 +0100
catalogue-license lppl1.3c
catalogue-topics maths maths-syseqn simplified
catalogue-version 0.32
@@ -270186,7 +267196,6 @@ runfiles size=6
RELOC/tex/latex/t-angles/t-angles.sty
catalogue-contact-home http://www.math.ksu.edu/~lub/
catalogue-ctan /macros/latex/contrib/t-angles
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license gpl
catalogue-topics maths graphics-in-tex
@@ -270222,7 +267231,6 @@ docfiles size=38
texmf-dist/doc/man/man1/t1unmac.man1.pdf
catalogue-contact-home http://www.lcdf.org/~eddietwo/type/#t1utils
catalogue-ctan /fonts/utilities/t1utils
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license pd
catalogue-topics ps-manip
@@ -270573,7 +267581,6 @@ runfiles size=109
RELOC/tex/latex/t2/mathtext.sty
RELOC/tex/latex/t2/misccorr.sty
catalogue-ctan /macros/latex/contrib/t2
-catalogue-date 2018-05-08 17:14:58 +0200
catalogue-license lppl
catalogue-topics fontenc cyrillic
@@ -270604,7 +267611,6 @@ srcfiles size=5
runfiles size=2
RELOC/tex/latex/tabfigures/tabfigures.sty
catalogue-ctan /macros/latex/contrib/tabfigures
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics font-use typesetting
catalogue-version 1.1
@@ -270628,7 +267634,6 @@ docfiles size=2
runfiles size=4
RELOC/tex/latex/table-fct/table-fct.sty
catalogue-ctan /graphics/table-fct
-catalogue-date 2018-01-07 14:49:11 +0100
catalogue-license lppl1.3
catalogue-topics graphics
catalogue-version 1.1
@@ -270656,7 +267661,6 @@ runfiles size=3
RELOC/tex/latex/tableaux/tableau.sty
catalogue-also tablor tkz-tab tableauvariations tabvar
catalogue-ctan /macros/latex/contrib/tableaux
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics maths-tabvar
@@ -270687,7 +267691,6 @@ srcfiles size=20
runfiles size=5
RELOC/tex/latex/tablefootnote/tablefootnote.sty
catalogue-ctan /macros/latex/contrib/tablefootnote
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics table footnote
catalogue-version 1.1c
@@ -270721,7 +267724,6 @@ srcfiles size=10
runfiles size=2
RELOC/tex/latex/tableof/tableof.sty
catalogue-ctan /macros/latex/contrib/tableof
-catalogue-date 2018-10-02 13:25:15 +0200
catalogue-license lppl1.3
catalogue-topics toc-etc
catalogue-version 1.4b
@@ -270751,7 +267753,6 @@ srcfiles size=12
runfiles size=2
RELOC/tex/latex/tablestyles/tablestyles.sty
catalogue-ctan /macros/latex/contrib/tablestyles
-catalogue-date 2017-11-18 19:32:57 +0100
catalogue-license lppl1.3
catalogue-topics table
catalogue-version 0.1
@@ -270781,7 +267782,6 @@ srcfiles size=8
runfiles size=2
RELOC/tex/latex/tablists/tablists.sty
catalogue-ctan /macros/latex/contrib/tablists
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics list-enum
catalogue-version 0.0e
@@ -270876,7 +267876,6 @@ runfiles size=48
RELOC/tex/latex/tablor/tablor.sty
catalogue-also tabvar tkz-tab tableaux tableauvariations
catalogue-ctan /macros/latex/contrib/tablor
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics maths-tabvar
catalogue-version 4.07-g
@@ -270903,7 +267902,6 @@ runfiles size=3
RELOC/tex/latex/tabls/tabls.sty
catalogue-also cellspace
catalogue-ctan /macros/latex/contrib/tabls
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license other-free
catalogue-topics table
catalogue-version 3.5
@@ -270937,7 +267935,6 @@ srcfiles size=17
runfiles size=3
RELOC/tex/latex/tablvar/tablvar.sty
catalogue-ctan /macros/latex/contrib/tablvar
-catalogue-date 2019-07-02 22:29:19 +0200
catalogue-license lppl1.3
catalogue-topics maths-tabvar maths french
catalogue-version 1.2
@@ -270985,7 +267982,6 @@ runfiles size=6
RELOC/tex/latex/tabriz-thesis/tabriz-thesis.cls
RELOC/tex/xelatex/tabriz-thesis/tabriz-thesis.cls
catalogue-ctan /macros/xetex/latex/tabriz-thesis
-catalogue-date 2019-07-25 16:05:27 +0200
catalogue-license lppl1.3
catalogue-topics class dissertation persian xetex
catalogue-version 1.1
@@ -271013,7 +268009,6 @@ docfiles size=157
runfiles size=6
RELOC/tex/latex/tabstackengine/tabstackengine.sty
catalogue-ctan /macros/latex/contrib/tabstackengine
-catalogue-date 2018-03-05 20:20:38 +0100
catalogue-license lppl1.3
catalogue-topics macro-supp
catalogue-version 2.10
@@ -271032,7 +268027,6 @@ runfiles size=1
RELOC/tex/generic/tabto-generic/tabto.tex
catalogue-also tabto-ltx
catalogue-ctan /macros/generic/misc/tabto.tex
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics layout
@@ -271061,7 +268055,6 @@ runfiles size=2
RELOC/tex/latex/tabto-ltx/tabto.sty
catalogue-also tabto-generic
catalogue-ctan /macros/latex/contrib/tabto
-catalogue-date 2019-03-01 08:38:06 +0100
catalogue-license lppl1.3
catalogue-topics layout
catalogue-version 1.4
@@ -271107,7 +268100,6 @@ runfiles size=29
catalogue-contact-bugs https://github.com/tabu-fixed/tabu/issues
catalogue-contact-repository https://github.com/tabu-fixed/tabu
catalogue-ctan /macros/latex/contrib/tabu
-catalogue-date 2019-01-14 20:48:52 +0100
catalogue-license lppl1.3
catalogue-topics table table-long
catalogue-version 2.9
@@ -271134,7 +268126,6 @@ srcfiles size=5
runfiles size=1
RELOC/tex/latex/tabularborder/tabularborder.sty
catalogue-ctan /macros/latex/contrib/tabularborder
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.2
catalogue-topics table
catalogue-version 1.0a
@@ -271165,7 +268156,6 @@ docfiles size=261
runfiles size=5
RELOC/tex/latex/tabularcalc/tabularcalc.sty
catalogue-ctan /macros/latex/contrib/tabularcalc
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics table
catalogue-version 0.2
@@ -271193,7 +268183,6 @@ srcfiles size=7
runfiles size=2
RELOC/tex/latex/tabularew/tabularew.sty
catalogue-ctan /macros/latex/contrib/tabularew
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics table
catalogue-version 0.1
@@ -271560,7 +268549,6 @@ docfiles size=350
RELOC/doc/latex/tabulars-e/README details="Readme"
RELOC/doc/latex/tabulars-e/din8.eps
catalogue-ctan /info/examples/tabulars-e
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics book-ex
catalogue-version 1.0
@@ -271592,7 +268580,6 @@ srcfiles size=9
runfiles size=4
RELOC/tex/latex/tabulary/tabulary.sty
catalogue-ctan /macros/latex/contrib/tabulary
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license lppl
catalogue-topics table
catalogue-version 0.10
@@ -271632,7 +268619,6 @@ runfiles size=13
RELOC/tex/latex/tabvar/tabvar.sty
catalogue-also tablor tableaux tableauvariations tkz-tab
catalogue-ctan /macros/latex/contrib/tabvar
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics maths-tabvar
catalogue-version 1.7
@@ -271658,7 +268644,6 @@ runfiles size=1
catalogue-contact-bugs https://github.com/Hightor/tagging/issues
catalogue-contact-repository https://github.com/Hightor/tagging
catalogue-ctan /macros/latex/contrib/tagging
-catalogue-date 2019-09-09 19:04:08 +0200
catalogue-license lppl1.3
catalogue-topics cond-comp
catalogue-version 1.1.0.1
@@ -271689,7 +268674,6 @@ docfiles size=26
runfiles size=1
RELOC/tex/latex/tagpair/tagpair.sty
catalogue-ctan /macros/latex/contrib/tagpair
-catalogue-date 2016-09-23 21:04:55 +0200
catalogue-license lppl1.3
catalogue-topics text-layout
catalogue-version 1.1
@@ -271761,7 +268745,6 @@ catalogue-contact-bugs https://github.com/u-fischer/tagpdf/issues
catalogue-contact-repository https://github.com/u-fischer/tagpdf
catalogue-contact-support https://github.com/u-fischer/tagpdf/issues
catalogue-ctan /macros/latex/contrib/tagpdf
-catalogue-date 2019-07-02 14:34:15 +0200
catalogue-license lppl1.3c
catalogue-topics tagged-pdf accessible
catalogue-version 0.61
@@ -271807,7 +268790,6 @@ runfiles size=5
RELOC/tex/latex/talk/talk.cls
catalogue-also seminar foiltex
catalogue-ctan /macros/latex/contrib/talk
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics presentation
catalogue-version 1.1
@@ -271838,7 +268820,6 @@ runfiles size=3
RELOC/tex/latex/tamefloats/tameflts.sty
catalogue-contact-support http://www.webdesign-bu.de/uwe_lueck/contact.html
catalogue-ctan /macros/latex/contrib/tamefloats
-catalogue-date 2017-05-06 09:30:28 +0200
catalogue-license lppl1.3
catalogue-topics experimental float
catalogue-version 0.42
@@ -271869,7 +268850,6 @@ docfiles size=264
RELOC/doc/bibtex/tamethebeast/ttb_en.tex
RELOC/doc/bibtex/tamethebeast/ttb_style.sty
catalogue-ctan /info/bibtex/tamethebeast
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics bibtex-doc
catalogue-version 1.4
@@ -271918,7 +268898,6 @@ docfiles size=46
runfiles size=9
RELOC/tex/generic/tap/tap.tex
catalogue-ctan /macros/generic/tables/tap077.zip
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics table
catalogue-version 0.77
@@ -271947,7 +268926,6 @@ runfiles size=49
RELOC/fonts/type1/public/tapir/tap.pfb
catalogue-contact-home http://mitek.webpark.cz/
catalogue-ctan /fonts/tapir
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license gpl
catalogue-topics font-mf font-type1 font czech polish slovak
catalogue-version 0.2
@@ -271975,7 +268953,6 @@ runfiles size=9
RELOC/tex/latex/tasks/tasks.sty
catalogue-contact-repository https://github.com/cgnieder/tasks/
catalogue-ctan /macros/latex/contrib/tasks
-catalogue-date 2019-11-03 19:20:43 +0100
catalogue-license lppl1.3
catalogue-topics list list-enum expl3
catalogue-version 1.1
@@ -272020,7 +268997,6 @@ runfiles size=9
RELOC/tex/latex/tcldoc/tclldoc.cls
RELOC/tex/latex/tcldoc/tclldoc.sty
catalogue-ctan /macros/latex/contrib/tclldoc
-catalogue-date 2016-07-19 10:38:58 +0200
catalogue-license lppl
catalogue-topics listing doc-supp class
catalogue-version 2.40
@@ -272114,7 +269090,6 @@ runfiles size=141
RELOC/tex/latex/tcolorbox/tcolorbox.sty
catalogue-contact-bugs https://github.com/T-F-S/tcolorbox/issues
catalogue-ctan /macros/latex/contrib/tcolorbox
-catalogue-date 2019-11-15 14:22:02 +0100
catalogue-license lppl1.3
catalogue-topics boxing colour verbatim listing
catalogue-version 4.22
@@ -272141,7 +269116,6 @@ runfiles size=5
RELOC/tex/latex/tdclock/tdclock.sty
catalogue-also analogclock
catalogue-ctan /macros/latex/contrib/tdclock
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl2
catalogue-topics date-time
catalogue-version 2.5
@@ -272172,7 +269146,6 @@ docfiles size=129
RELOC/doc/generic/tds/tdsguide.cls
catalogue-contact-home http://tug.org/tds/
catalogue-ctan /tds
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license other-free
catalogue-topics std-spec
catalogue-version 1.1
@@ -272205,7 +269178,6 @@ runfiles size=7
RELOC/tex/latex/tdsfrmath/taupe.sto
RELOC/tex/latex/tdsfrmath/tdsfrmath.sty
catalogue-ctan /macros/latex/contrib/tdsfrmath
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics maths
catalogue-version 1.3
@@ -272234,7 +269206,6 @@ docfiles size=31
runfiles size=1
RELOC/tex/latex/technics/technics.sty
catalogue-ctan /macros/latex/contrib/technics
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics doc-templ
catalogue-version 1.0
@@ -272270,7 +269241,6 @@ runfiles size=6
RELOC/tex/xelatex/technion-thesis-template/technionThesis.cls
RELOC/tex/xelatex/technion-thesis-template/technionThesisSetup.sty
catalogue-ctan /macros/xetex/latex/technion-thesis-template
-catalogue-date 2019-02-04 05:16:17 +0100
catalogue-license cc-by-4
catalogue-topics dissertation class
catalogue-version 1.0
@@ -272307,7 +269277,6 @@ runfiles size=3
RELOC/tex/latex/ted/ted.sty
catalogue-also patch
catalogue-ctan /macros/latex/contrib/ted
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics debug-supp
catalogue-version 1.06
@@ -272342,7 +269311,6 @@ docfiles size=10
RELOC/doc/latex/templates-fenn/vermerk.tex
catalogue-contact-home http://www.juergenfenn.de/tex.html
catalogue-ctan /info/templates/fenn
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl
catalogue-topics doc-templ
@@ -272367,7 +269335,6 @@ docfiles size=14
RELOC/doc/latex/templates-sommer/Psycho-Dipl.tex
RELOC/doc/latex/templates-sommer/README.de details="README" language="de"
catalogue-ctan /info/templates/sommer
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics doc-templ
@@ -272395,7 +269362,6 @@ srcfiles size=8
runfiles size=2
RELOC/tex/latex/templatetools/templatetools.sty
catalogue-ctan /macros/latex/contrib/templatetools
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics doc-templ
@@ -272602,7 +269568,6 @@ runfiles size=1163
RELOC/tex/latex/tempora/tempora.sty
catalogue-also txfonts newtx
catalogue-ctan /fonts/tempora
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl2
catalogue-topics font font-cyrillic font-greek font-otf font-type1 font-serif
catalogue-version 1.05
@@ -272712,7 +269677,6 @@ runfiles size=125
RELOC/tex/latex/tengwarscript/tengwarscript.sty
RELOC/tex/latex/tengwarscript/unicodeparmaite.cfg
catalogue-ctan /macros/latex/contrib/tengwarscript
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics font-invented font-supp
catalogue-version 1.3.1
@@ -272737,7 +269701,6 @@ runfiles size=2
catalogue-contact-home http://www.texnia.com/
catalogue-contact-repository https://github.com/jbezos
catalogue-ctan /macros/latex/contrib/tensind
-catalogue-date 2019-06-26 19:06:30 +0200
catalogue-license mit
catalogue-topics maths subsup-pos
catalogue-version 1.1
@@ -272769,7 +269732,6 @@ runfiles size=2
RELOC/tex/latex/tensor/tensor.sty
catalogue-also tensind
catalogue-ctan /macros/latex/contrib/tensor
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics subsup-pos maths
catalogue-version 2.1
@@ -272804,7 +269766,6 @@ runfiles size=2
RELOC/tex/latex/termcal/termcal.sty
catalogue-also calendar kalender plcalendar
catalogue-ctan /macros/latex/contrib/termcal
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1
catalogue-topics calendar
catalogue-version 1.8
@@ -272839,7 +269800,6 @@ runfiles size=2
catalogue-contact-bugs https://github.com/SFr682k/termcal-de/issues
catalogue-contact-repository https://github.com/SFr682k/termcal-de
catalogue-ctan /macros/latex/contrib/termcal-de
-catalogue-date 2018-03-24 09:28:30 +0100
catalogue-license lppl1.3c
catalogue-topics calendar german
catalogue-version 2.0
@@ -272866,7 +269826,6 @@ srcfiles size=4
runfiles size=1
RELOC/tex/latex/termlist/termlist.sty
catalogue-ctan /macros/latex/contrib/termlist
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license lppl
catalogue-topics label-ref
catalogue-version 1.1
@@ -272897,7 +269856,6 @@ srcfiles size=7
runfiles size=2
RELOC/tex/generic/termmenu/termmenu.tex
catalogue-ctan /macros/generic/termmenu
-catalogue-date 2017-11-12 11:01:59 +0100
catalogue-license lppl1.3
catalogue-topics comp-mgmt expl3
@@ -272928,7 +269886,6 @@ srcfiles size=6
runfiles size=1
RELOC/tex/latex/testhyphens/testhyphens.sty
catalogue-ctan /macros/latex/contrib/testhyphens
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics hyphenation
catalogue-version 0.7
@@ -273019,7 +269976,6 @@ runfiles size=48
RELOC/tex/latex/testidx/testidx.sty
catalogue-also blindtext
catalogue-ctan /macros/latex/contrib/testidx
-catalogue-date 2019-09-29 17:34:08 +0200
catalogue-license lppl1.3
catalogue-topics index dummy-gen
catalogue-version 1.2
@@ -273142,7 +270098,6 @@ runfiles size=128
texmf-dist/web2c/updmap.cfg
catalogue-contact-home http://tug.org/teTeX/
catalogue-ctan /obsolete/systems/unix/teTeX
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license other-free
catalogue-topics distribution obsolete
catalogue-version 3.0
@@ -273604,7 +270559,6 @@ runfiles size=376
catalogue-contact-bugs https://github.com/Mikumikunisiteageru/tetragonos/issues
catalogue-contact-home https://github.com/Mikumikunisiteageru/tetragonos
catalogue-ctan /macros/xetex/latex/tetragonos
-catalogue-date 2019-01-17 05:07:30 +0100
catalogue-license lppl1.3c
catalogue-topics chinese
catalogue-version 1
@@ -273639,7 +270593,6 @@ runfiles size=15
RELOC/tex/latex/teubner/teubner.sty
RELOC/tex/latex/teubner/teubnertx.sty
catalogue-ctan /macros/latex/contrib/teubner
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics greek multilingual-addon
catalogue-version 4.8
@@ -273680,7 +270633,6 @@ catalogue-contact-bugs http://lists.tug.org/tex-k
catalogue-contact-repository http://tug.org/svn/texlive/trunk/Build/source/texk/web2c/
catalogue-contact-support http://lists.tug.org/tex-k
catalogue-ctan /systems/knuth/dist/tex
-catalogue-date 2018-12-31 06:12:45 +0100
catalogue-license knuth
catalogue-topics engine
catalogue-version 3.14159265
@@ -273706,7 +270658,6 @@ docfiles size=8
runfiles size=2
RELOC/tex/generic/tex-ewd/dotnot.tex
catalogue-ctan /macros/generic/tex-ewd
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license bsd
catalogue-topics maths
@@ -273729,7 +270680,6 @@ docfiles size=62
RELOC/doc/latex/tex-font-errors-cheatsheet/tex-font-cheatsheet.tex
catalogue-contact-home https://github.com/nschloe/tex-font-errors-cheatsheet
catalogue-ctan /info/tex-font-errors-cheatsheet
-catalogue-date 2019-02-13 06:40:43 +0100
catalogue-license lppl
catalogue-topics tut-cheat
catalogue-version 0.1
@@ -274684,7 +271634,6 @@ runfiles size=6656
RELOC/tex/latex/tex-gyre/ts1qzc.fd
catalogue-contact-home http://www.gust.org.pl/projects/e-foundry/tex-gyre
catalogue-ctan /fonts/tex-gyre
-catalogue-date 2018-06-16 09:34:11 +0200
catalogue-license gfl
catalogue-topics font font-otf font-type1 font-collection
catalogue-version 2.501
@@ -274774,7 +271723,6 @@ runfiles size=681
RELOC/fonts/opentype/public/tex-gyre-math/texgyreschola-math.otf
RELOC/fonts/opentype/public/tex-gyre-math/texgyretermes-math.otf
catalogue-ctan /fonts/tex-gyre-math
-catalogue-date 2018-06-15 14:16:16 +0200
catalogue-license gfl
catalogue-topics font font-collection font-maths font-otf
@@ -274805,7 +271753,6 @@ runfiles size=8
RELOC/tex/generic/tex-ini-files/xelatex.ini
RELOC/tex/generic/tex-ini-files/xetex.ini
catalogue-ctan /macros/generic/tex-ini-files
-catalogue-date 2016-11-05 08:51:03 +0100
catalogue-license pd
catalogue-topics latex3
@@ -274833,7 +271780,6 @@ srcfiles size=1
runfiles size=1
RELOC/tex/latex/tex-label/tex-label.sty
catalogue-ctan /macros/latex/contrib/tex-label
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics security
@@ -274883,7 +271829,6 @@ runfiles size=23
RELOC/tex/latex/tex-locale/tex-locale-support.def
RELOC/tex/latex/tex-locale/tex-locale.sty
catalogue-ctan /macros/generic/tex-locale
-catalogue-date 2018-08-28 05:08:56 +0200
catalogue-license lppl1.3
catalogue-topics env-query sys-supp
catalogue-version 1.0
@@ -274905,7 +271850,6 @@ docfiles size=79
RELOC/doc/latex/tex-overview/tex-overview.pdf details="The document itself"
RELOC/doc/latex/tex-overview/tex-overview.tex
catalogue-ctan /info/tex-overview
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics documentation
catalogue-version 0.2
@@ -274948,7 +271892,6 @@ runfiles size=24
RELOC/tex/generic/tex-ps/trans.tex
catalogue-also epsfx cmyk-hax trans mirr poligraf
catalogue-ctan /macros/generic/TeX-PS
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics ps-manip
@@ -274975,7 +271918,6 @@ docfiles size=314
RELOC/doc/generic/tex-refs/tex-refs.txt
catalogue-contact-home http://www.miwie.org/tex-refs
catalogue-ctan /info/tex-references
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license other-free
catalogue-topics documentation
catalogue-version 0.4.8
@@ -275441,7 +272383,6 @@ docfiles size=837
RELOC/doc/generic/tex-virtual-academy-pl/tex/tryby.html
catalogue-contact-home http://www.gust.org.pl/projects/wirtualna-akademia-texowa
catalogue-ctan /info/tex-virtual-academy-pl
-catalogue-date 2017-11-18 20:45:08 +0100
catalogue-license fdl
catalogue-topics documentation polish-doc
@@ -275636,7 +272577,6 @@ runfiles size=17
catalogue-contact-bugs https://github.com/michal-h21/tex4ebook/issues
catalogue-contact-repository https://github.com/michal-h21/tex4ebook
catalogue-ctan /support/tex4ebook
-catalogue-date 2019-11-02 09:49:59 +0100
catalogue-license lppl1.3
catalogue-topics ebook
catalogue-version 0.3a
@@ -282133,7 +279073,6 @@ catalogue-contact-home http://tug.org/tex4ht
catalogue-contact-repository https://puszcza.gnu.org.ua/projects/tex4ht/
catalogue-contact-support http://lists.tug.org/tex4ht
catalogue-ctan /support/TeX4ht
-catalogue-date 2017-11-12 01:24:26 +0100
catalogue-license lppl
catalogue-topics cvt-html
@@ -282490,7 +279429,6 @@ docfiles size=48
runfiles size=8
RELOC/tex/generic/texapi/texapi.tex
catalogue-ctan /macros/generic/texapi
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics macro-supp
catalogue-version 1.04
@@ -282522,7 +279460,6 @@ docfiles size=559
RELOC/doc/plain/texbytopic/tex.bib
catalogue-contact-home http://www.eijkhout.net/texbytopic/texbytopic.html
catalogue-ctan /info/texbytopic
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license fdl
catalogue-topics book-src tut-plaintex ref-latex
@@ -282559,7 +279496,6 @@ catalogue-also latexcount wordcount
catalogue-contact-announce http://app.uio.no/ifi/texcount/news.php
catalogue-contact-home http://app.uio.no/ifi/texcount/
catalogue-ctan /support/texcount
-catalogue-date 2018-10-28 16:11:54 +0100
catalogue-license lppl
catalogue-topics word-count
catalogue-version 3.1.1
@@ -282739,7 +279675,6 @@ srcfiles size=13
runfiles size=6
RELOC/tex/generic/texdate/texdate.sty
catalogue-ctan /macros/generic/texdate
-catalogue-date 2018-12-09 09:53:38 +0100
catalogue-license lppl1.3c
catalogue-topics date-time
catalogue-version 2.0
@@ -282784,7 +279719,6 @@ catalogue-contact-bugs https://bitbucket.org/martin_scharrer/texdef/issues
catalogue-contact-home https://bitbucket.org/martin_scharrer/texdef/
catalogue-contact-repository https://bitbucket.org/martin_scharrer/texdef/src
catalogue-ctan /support/texdef
-catalogue-date 2018-03-29 08:55:43 +0200
catalogue-license gpl3
catalogue-topics debug-supp
catalogue-version 1.8a
@@ -282972,7 +279906,6 @@ runfiles size=5
catalogue-also ltxdiff
catalogue-contact-home http://www.markdoll.de/texdiff/
catalogue-ctan /support/texdiff
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license artistic
catalogue-topics editorial
catalogue-version 0.4
@@ -283148,7 +280081,6 @@ catalogue-contact-home https://github.com/cengique/texdirflatten
catalogue-contact-repository https://github.com/cengique/texdirflatten
catalogue-contact-support https://github.com/cengique/texdirflatten
catalogue-ctan /support/texdirflatten
-catalogue-date 2017-07-03 23:22:32 +0200
catalogue-license artistic
catalogue-topics file-mgmt
catalogue-version 1.3
@@ -283339,7 +280271,6 @@ catalogue-contact-home http://tug.org/texdoc/
catalogue-contact-repository https://github.com/TeX-Live/texdoc
catalogue-contact-support http://lists.tug.org/texdoc
catalogue-ctan /support/texdoc
-catalogue-date 2019-03-28 14:31:59 +0100
catalogue-license gpl
catalogue-topics view-doc
catalogue-version 3.1
@@ -283518,7 +280449,6 @@ runfiles size=27
texmf-dist/texdoctk/texdocrc.defaults
texmf-dist/texdoctk/texdoctk.dat
catalogue-also texdoc
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics view-doc
catalogue-version 0.6.0
@@ -283702,7 +280632,6 @@ runfiles size=19
RELOC/tex/generic/texdraw/txdps.tex
RELOC/tex/generic/texdraw/txdtools.tex
catalogue-ctan /graphics/texdraw
-catalogue-date 2019-05-06 20:46:20 +0200
catalogue-license cc-by-4
catalogue-topics graphics-in-tex
catalogue-version v2r3
@@ -283727,7 +280656,6 @@ docfiles size=13
runfiles size=4
texmf-dist/scripts/texfot/texfot.pl
catalogue-ctan /support/texfot
-catalogue-date 2019-07-01 06:28:56 +0200
catalogue-license pd
catalogue-topics comp-mgmt
catalogue-version 1.38
@@ -283890,7 +280818,6 @@ containerchecksum b65e737c138a176e6674612dda6b066a9953d8b737fe2e947eb10c058d6b67
runfiles size=1
RELOC/tex/latex/texilikechaps/texilikechaps.sty
catalogue-ctan /macros/latex/contrib/misc/texilikechaps.sty
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics headings
catalogue-version 1.0a
@@ -283907,7 +280834,6 @@ containerchecksum fc73ce5601a10d638ea78fe815978d395001a73be75084539498644ac7f3fe
runfiles size=1
RELOC/tex/latex/texilikecover/texilikecover.sty
catalogue-ctan /macros/latex/contrib/misc/texilikecover.sty
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics covers
catalogue-version 0.1
@@ -283947,7 +280873,6 @@ runfiles size=109
RELOC/tex/texinfo/txi-uk.tex
catalogue-contact-home http://www.gnu.org/software/texinfo/
catalogue-ctan /macros/texinfo/texinfo
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license gpl
catalogue-topics doc-supp format
catalogue-version 5.1
@@ -284259,17 +281184,17 @@ docfiles size=503
name texlive-scripts
category TLCore
-revision 53093
+revision 53102
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.
depend texlive.infra
depend texlive-scripts.ARCH
postaction shortcut type=menu name="TeX Live command-line" cmd=TEXDIR/tlpkg/installer/tl-cmd.bat
-containersize 85360
-containerchecksum 9c8680805956203974889b7a770708d31a90666d505b730e3513550bf7ca05b2057409b42a2030f8410f36b102bf20a0c86064ce9744ea854b123231fdf3729c
+containersize 85352
+containerchecksum 4f330d0432721536db1f734a7d1615bf85b8cd56f696b1ced093c085622761058eb52a401d5520d2e25e0839cfde625e0a2481b098cc3d751aff3cb3b2d53a61
doccontainersize 51204
-doccontainerchecksum 29fb54e49022c4f0fd70424d3d87bdb064c6c884d41629b252864b195e1762cfce3113a57cbb71e2235761ae9d334c6ecf7754076990b94bb329da4e410386ee
+doccontainerchecksum f54582b4980e6a477dd776f9ff42ac382484b35631c444d4ec511dfa334e0b4a59c795783549b149bc44cea5e8c7bbe5cc4ff5083b516415bcd9cd0e905b2647
docfiles size=20
texmf-dist/doc/man/man1/install-tl.1
texmf-dist/doc/man/man1/install-tl.man1.pdf
@@ -284777,7 +281702,6 @@ docfiles size=1
runfiles size=5
texmf-dist/scripts/texliveonfly/texliveonfly.py
catalogue-ctan /support/texliveonfly
-catalogue-date 2018-11-12 17:15:52 +0100
catalogue-license gpl3
catalogue-topics distribution
@@ -284941,7 +281865,6 @@ docfiles size=1
runfiles size=3
texmf-dist/scripts/texloganalyser/texloganalyser
catalogue-ctan /support/texloganalyser
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license bsd
catalogue-topics log-manip
catalogue-version 0.9
@@ -285109,7 +282032,6 @@ runfiles size=2
RELOC/tex/latex/texlogos/texlogos.sty
catalogue-also hologo
catalogue-ctan /macros/latex/contrib/texlogos/texlogos.sty
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics logo
catalogue-version 1.3.1
@@ -285145,7 +282067,6 @@ srcfiles size=9
runfiles size=7
RELOC/tex/latex/texmate/texmate.sty
catalogue-ctan /macros/latex/contrib/texmate
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license lppl
catalogue-topics games
catalogue-version 2
@@ -285174,7 +282095,6 @@ runfiles size=1
RELOC/tex/latex/texments/texments.sty
catalogue-also minted verbments
catalogue-ctan /macros/latex/contrib/texments
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics listing
catalogue-version 0.2.0
@@ -285196,7 +282116,6 @@ docfiles size=22
RELOC/doc/plain/texonly/texonly2.tex
catalogue-also gentle
catalogue-ctan /info/texonly
-catalogue-date 2019-04-18 06:11:21 +0200
catalogue-license lppl1.3c
catalogue-topics tut-plaintex
catalogue-version 2
@@ -285269,7 +282188,6 @@ runfiles size=72
texmf-dist/tex/latex/texosquery/texosquery.tex
catalogue-contact-repository https://github.com/nlct/texosquery
catalogue-ctan /support/texosquery
-catalogue-date 2017-06-20 18:22:33 +0200
catalogue-license lppl1.3
catalogue-topics sys-supp
catalogue-version 1.6
@@ -285543,7 +282461,6 @@ runfiles size=67
catalogue-also prosper beamer
catalogue-contact-repository http://texpower.sourceforge.net/
catalogue-ctan /macros/latex/contrib/texpower
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license gpl
catalogue-topics presentation
catalogue-version 0.2
@@ -285598,7 +282515,6 @@ docfiles size=785
RELOC/doc/latex/texproposal/texproposal.tex
catalogue-contact-repository https://github.com/CQUtug/TeXProposal
catalogue-ctan /info/texproposal
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license other-free
catalogue-topics chinese-doc
catalogue-version 1.4
@@ -285646,7 +282562,6 @@ runfiles size=157
RELOC/tex/latex/texshade/texshade.def
RELOC/tex/latex/texshade/texshade.sty
catalogue-ctan /macros/latex/contrib/texshade
-catalogue-date 2018-02-06 20:31:32 +0100
catalogue-license gpl2
catalogue-topics chemistry molbio
catalogue-version 1.25
@@ -285769,7 +282684,6 @@ runfiles size=142
texmf-dist/tex/texsis/base/twin.txs
texmf-dist/tex/texsis/config/texsis.ini
catalogue-ctan /macros/texsis
-catalogue-date 2016-10-16 19:36:27 +0200
catalogue-license lppl
catalogue-topics physics format
catalogue-version 2.18
@@ -285950,7 +282864,6 @@ runfiles size=1
catalogue-contact-bugs https://github.com/davidcarlisle/dpctex/issues
catalogue-contact-repository https://github.com/davidcarlisle/dpctex
catalogue-ctan /macros/latex/contrib/textcase
-catalogue-date 2019-09-14 18:41:18 +0200
catalogue-license lppl
catalogue-topics macro-supp
catalogue-version 1.00
@@ -285983,7 +282896,6 @@ srcfiles size=4
runfiles size=2
RELOC/tex/latex/textfit/textfit.sty
catalogue-ctan /macros/latex/contrib/textfit
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics fit-to-size
catalogue-version 5
@@ -286014,7 +282926,6 @@ srcfiles size=6
runfiles size=1
RELOC/tex/latex/textglos/textglos.sty
catalogue-ctan /macros/latex/contrib/textglos
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics linguistic
catalogue-version 1.0
@@ -286041,7 +282952,6 @@ srcfiles size=8
runfiles size=3
RELOC/tex/latex/textgreek/textgreek.sty
catalogue-ctan /macros/latex/contrib/textgreek
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license lppl
catalogue-topics text-symbol
catalogue-version 0.7
@@ -286077,7 +282987,6 @@ runfiles size=2
catalogue-contact-repository https://github.com/rf-latex/textmerg
catalogue-contact-support https://github.com/rf-latex/textmerg/issues
catalogue-ctan /macros/latex/contrib/textmerg
-catalogue-date 2018-09-15 15:55:01 +0200
catalogue-license pd
catalogue-topics doc-gen
catalogue-version 2.01
@@ -286114,7 +283023,6 @@ runfiles size=67
RELOC/tex/latex/textopo/textopo.def
RELOC/tex/latex/textopo/textopo.sty
catalogue-ctan /macros/latex/contrib/textopo
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics molbio chemistry
catalogue-version 1.5
@@ -286143,7 +283051,6 @@ runfiles size=5
RELOC/tex/latex/textpath/textpathmp.sty
catalogue-also pst-text
catalogue-ctan /graphics/metapost/contrib/macros/textpath
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics graphics-text
catalogue-version 1.6
@@ -286194,7 +283101,6 @@ catalogue-contact-bugs https://bitbucket.org/nxg/textpos/issues/
catalogue-contact-home http://purl.org/nxg/dist/textpos
catalogue-contact-repository https://bitbucket.org/nxg/textpos/
catalogue-ctan /macros/latex/contrib/textpos
-catalogue-date 2019-04-16 15:36:26 +0200
catalogue-license lppl1.3
catalogue-topics layout
catalogue-version 1.9.1
@@ -286228,7 +283134,6 @@ catalogue-also icomma
catalogue-contact-bugs https://gitlab.com/SFr682k/textualicomma/issues
catalogue-contact-repository https://gitlab.com/SFr682k/textualicomma
catalogue-ctan /macros/latex/contrib/textualicomma
-catalogue-date 2018-08-23 23:17:44 +0200
catalogue-license lppl1.3c
catalogue-topics typesetting maths
catalogue-version 1.1
@@ -286257,7 +283162,6 @@ runfiles size=1
RELOC/tex/latex/texvc/texvc.sty
catalogue-contact-repository https://github.com/ag-gipp/texvc-latex
catalogue-ctan /macros/latex/contrib/texvc
-catalogue-date 2018-03-05 12:45:06 +0100
catalogue-license lppl1.3
catalogue-topics foreign-import
catalogue-version 1.1
@@ -286286,7 +283190,6 @@ catalogue-contact-bugs http://lists.tug.org/tex-k
catalogue-contact-repository http://tug.org/svn/texlive/trunk/Build/source/texk/web2c/
catalogue-contact-support http://lists.tug.org/tex-k
catalogue-ctan /systems/knuth/dist/texware
-catalogue-date 2018-12-31 06:12:45 +0100
catalogue-license knuth
catalogue-topics debug-supp
@@ -286946,7 +283849,6 @@ runfiles size=191
RELOC/fonts/type1/public/tfrupee/tfrupee.pfb
RELOC/tex/latex/tfrupee/tfrupee.sty
catalogue-ctan /fonts/tfrupee
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl3
catalogue-topics font font-type1 font-specialist
catalogue-version 1.02
@@ -286976,7 +283878,6 @@ runfiles size=1
catalogue-contact-bugs https://github.com/abhabongse/latex-thaienum/issues
catalogue-contact-repository https://github.com/abhabongse/latex-thaienum/
catalogue-ctan /macros/latex/contrib/thaienum
-catalogue-date 2017-06-06 19:56:03 +0200
catalogue-license lppl1.3
catalogue-topics thai list-enum numbers
catalogue-version 0.2
@@ -287008,7 +283909,6 @@ runfiles size=3
RELOC/tex/latex/thaispec/thaispec.sty
catalogue-contact-home https://github.com/epsilonxe/LaTeX/tree/master/Packages/thaispec
catalogue-ctan /language/thai/thaispec
-catalogue-date 2019-07-10 16:26:41 +0200
catalogue-license lppl1.3
catalogue-topics thai xetex
catalogue-version 0.4
@@ -287048,7 +283948,6 @@ catalogue-contact-development https://framagit.org/spalax/thalie
catalogue-contact-home https://framagit.org/spalax/thalie
catalogue-contact-repository https://framagit.org/spalax/thalie
catalogue-ctan /macros/latex/contrib/thalie
-catalogue-date 2019-07-31 20:47:03 +0200
catalogue-license lppl1.3
catalogue-topics drama-script
catalogue-version 0.10b
@@ -287149,7 +284048,6 @@ runfiles size=210
RELOC/tex/latex/theanodidot/TheanoDidot.sty
catalogue-contact-development https://github.com/akryukov/theano
catalogue-ctan /fonts/theanodidot
-catalogue-date 2019-07-21 05:53:03 +0200
catalogue-license lpplofl
catalogue-topics font font-body font-serif font-proportional font-greek font-multilingual font-type1 font-ttf font-supp font-t1enc
@@ -287239,7 +284137,6 @@ runfiles size=218
RELOC/tex/latex/theanomodern/TS1TheanoModern-TOsF.fd
RELOC/tex/latex/theanomodern/TheanoModern.sty
catalogue-ctan /fonts/theanomodern
-catalogue-date 2019-07-27 16:27:38 +0200
catalogue-license ofllppl
catalogue-topics font font-body font-serif font-proportional font-ttf font-type1 font-supp font-t1enc
@@ -287329,7 +284226,6 @@ runfiles size=251
RELOC/tex/latex/theanooldstyle/TS1TheanoOldStyle-TOsF.fd
RELOC/tex/latex/theanooldstyle/TheanoOldStyle.sty
catalogue-ctan /fonts/theanooldstyle
-catalogue-date 2019-07-28 07:53:13 +0200
catalogue-license ofllppl
catalogue-topics font font-body font-greek font-multilingual font-serif font-proportional font-ttf font-type1 font-supp font-t1enc
@@ -287363,7 +284259,6 @@ docfiles size=56
RELOC/doc/latex/theatre/tex/theatre.sty
catalogue-contact-home https://christian.hinque.fr/wp/latex/
catalogue-ctan /macros/latex/contrib/theatre
-catalogue-date 2017-09-22 05:04:31 +0200
catalogue-license lppl1.2
catalogue-topics drama-script
catalogue-version 0.1
@@ -287391,7 +284286,6 @@ docfiles size=94
runfiles size=3
RELOC/tex/latex/theoremref/theoremref.sty
catalogue-ctan /macros/latex/contrib/theoremref
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license lpplgpl2
catalogue-topics label-ref maths-theorem
@@ -287424,7 +284318,6 @@ runfiles size=42
RELOC/tex/latex/thesis-ekf/eszterhazy-logo-hu.pdf
RELOC/tex/latex/thesis-ekf/thesis-ekf.cls
catalogue-ctan /macros/latex/contrib/thesis-ekf
-catalogue-date 2019-05-06 15:29:08 +0200
catalogue-license lppl1.2
catalogue-topics dissertation class hungarian
catalogue-version 3.1
@@ -287465,7 +284358,6 @@ catalogue-contact-bugs https://github.com/skulumani/thesis-gwu/issues
catalogue-contact-home https://github.com/skulumani/thesis-gwu
catalogue-contact-repository https://github.com/skulumani/thesis-gwu
catalogue-ctan /macros/latex/contrib/thesis-gwu
-catalogue-date 2018-08-31 23:05:31 +0200
catalogue-license gpl3
catalogue-topics dissertation class
catalogue-version 1.6.1
@@ -287521,7 +284413,6 @@ runfiles size=15
RELOC/tex/xelatex/thesis-qom/thesis-qom.cls
catalogue-contact-repository https://github.com/javadr/thesis-qom
catalogue-ctan /macros/xetex/latex/thesis-qom
-catalogue-date 2018-11-10 11:03:25 +0100
catalogue-license lppl1.3c
catalogue-topics dissertation class xetex
catalogue-version 0.42
@@ -287562,7 +284453,6 @@ runfiles size=5
RELOC/tex/latex/thesis-titlepage-fhac/figbib_add.sty
RELOC/tex/latex/thesis-titlepage-fhac/gloss_add.sty
catalogue-ctan /macros/latex/contrib/thesis-titlepage-fhAC
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics dissertation
catalogue-version 0.1
@@ -287585,7 +284475,6 @@ docfiles size=82
runfiles size=1
RELOC/tex/latex/thinsp/thinsp.sty
catalogue-ctan /macros/latex/contrib/thinsp
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics typesetting
catalogue-version 0.2
@@ -287615,7 +284504,6 @@ runfiles size=2
RELOC/tex/latex/thmbox/thmbox.sty
catalogue-also shadethm
catalogue-ctan /macros/latex/contrib/thmbox
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics maths-theorem decoration
@@ -287680,7 +284568,6 @@ runfiles size=23
RELOC/tex/latex/thmtools/thmtools.sty
RELOC/tex/latex/thmtools/unique.sty
catalogue-ctan /macros/latex/exptl/thmtools
-catalogue-date 2019-07-31 20:13:01 +0200
catalogue-license lppl1.3c
catalogue-topics maths maths-theorem
catalogue-version 67
@@ -287715,7 +284602,6 @@ srcfiles size=28
runfiles size=1
RELOC/tex/latex/threadcol/threadcol.sty
catalogue-ctan /macros/latex/contrib/threadcol
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics pdf-feat
catalogue-version 1.0
@@ -287741,7 +284627,6 @@ runfiles size=2
RELOC/metapost/threeddice/threeddice.mp
catalogue-also dice epsdice
catalogue-ctan /graphics/metapost/contrib/macros/threeddice
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics graphics-use
catalogue-version 1.0
@@ -287769,7 +284654,6 @@ runfiles size=5
RELOC/tex/latex/threeparttable/3parttable.sty
RELOC/tex/latex/threeparttable/threeparttable.sty
catalogue-ctan /macros/latex/contrib/threeparttable
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license other-free
catalogue-topics table notes
@@ -287791,7 +284675,6 @@ docfiles size=19
runfiles size=2
RELOC/tex/latex/threeparttablex/threeparttablex.sty
catalogue-ctan /macros/latex/contrib/threeparttablex
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics table notes
catalogue-version 0.3
@@ -287818,7 +284701,6 @@ runfiles size=180
RELOC/tex/latex/thuaslogos/thuaslogos.sty
catalogue-contact-repository https://bitbucket.org/jesseopdenbrouw/thuaslogos
catalogue-ctan /macros/latex/contrib/thuaslogos
-catalogue-date 2019-06-08 13:51:15 +0200
catalogue-license lppl1.3
catalogue-topics logo pgf-tikz
catalogue-version 1.2
@@ -287859,7 +284741,6 @@ catalogue-contact-bugs https://github.com/zhaofeng-shu33/THU-coursework-template
catalogue-contact-development https://github.com/zhaofeng-shu33
catalogue-contact-repository https://github.com/zhaofeng-shu33/THU-coursework-template
catalogue-ctan /macros/latex/contrib/thucoursework
-catalogue-date 2018-05-20 08:52:27 +0200
catalogue-license lppl1.3
catalogue-topics doc-templ chinese
catalogue-version 2.5
@@ -287886,7 +284767,6 @@ runfiles size=4
RELOC/tex/latex/thumb/thumb.sty
catalogue-also fancyhdr
catalogue-ctan /macros/latex/contrib/thumb
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics layout-page
catalogue-version 1.0
@@ -287917,7 +284797,6 @@ runfiles size=19
catalogue-contact-bugs https://github.com/ho-tex/thumbpdf/issues
catalogue-contact-repository https://github.com/ho-tex/thumbpdf
catalogue-ctan /support/thumbpdf
-catalogue-date 2018-09-08 21:16:49 +0200
catalogue-license lppl1.3
catalogue-topics pdf-feat
catalogue-version 3.17
@@ -288098,7 +284977,6 @@ srcfiles size=41
runfiles size=14
RELOC/tex/latex/thumbs/thumbs.sty
catalogue-ctan /macros/latex/contrib/thumbs
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics layout-page
catalogue-version 1.0q
@@ -288129,7 +285007,6 @@ docfiles size=52
runfiles size=3
RELOC/tex/latex/thumby/thumby.sty
catalogue-ctan /macros/latex/contrib/thumby
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl3
catalogue-topics layout-page
catalogue-version 0.1
@@ -288190,7 +285067,6 @@ catalogue-contact-home https://github.com/xueruini/thuthesis
catalogue-contact-repository https://github.com/xueruini/thuthesis
catalogue-contact-support https://github.com/xueruini/thuthesis/issues
catalogue-ctan /macros/latex/contrib/thuthesis
-catalogue-date 2019-04-27 09:31:18 +0200
catalogue-license lppl1.3
catalogue-topics dissertation class chinese
catalogue-version 5.5.2
@@ -288247,7 +285123,6 @@ runfiles size=18
RELOC/tex/latex/ticket/zw3424.tdf
RELOC/tex/latex/ticket/zw4752.tdf
catalogue-ctan /macros/latex/contrib/ticket
-catalogue-date 2016-10-11 17:37:14 +0200
catalogue-license lppl1.3
catalogue-topics labels
catalogue-version 0.4d
@@ -288272,7 +285147,6 @@ docfiles size=100
runfiles size=6
RELOC/tex/latex/ticollege/ticollege.sty
catalogue-ctan /graphics/pgf/contrib/ticollege
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics pgf-tikz doc-supp
catalogue-version 1.0
@@ -288295,7 +285169,6 @@ docfiles size=6
texmf-dist/doc/man/man1/tie.1
texmf-dist/doc/man/man1/tie.man1.pdf
catalogue-ctan /web/tie
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license other-free
catalogue-topics litprog-tools
catalogue-version 2.4
@@ -288473,7 +285346,6 @@ docfiles size=139
runfiles size=8
RELOC/tex/latex/tikz-3dplot/tikz-3dplot.sty
catalogue-ctan /graphics/pgf/contrib/tikz-3dplot
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics graphics-use graphics-3d pgf-tikz
@@ -288501,7 +285373,6 @@ docfiles size=20
runfiles size=1
RELOC/tex/latex/tikz-bayesnet/tikzlibrarybayesnet.code.tex
catalogue-ctan /graphics/pgf/contrib/tikz-bayesnet
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics statistics pgf-tikz
catalogue-version 0.1
@@ -288532,7 +285403,6 @@ runfiles size=7
RELOC/tex/latex/tikz-cd/tikz-cd.sty
catalogue-contact-repository https://github.com/astoff/tikz-cd/
catalogue-ctan /graphics/pgf/contrib/tikz-cd
-catalogue-date 2018-11-19 23:14:49 +0100
catalogue-license gpl3
catalogue-topics diagram-comm graphics-in-tex pgf-tikz
catalogue-version 0.9f
@@ -288565,7 +285435,6 @@ runfiles size=20
RELOC/tex/latex/tikz-dependency/pgfmanual.prettyprinter.code.tex
RELOC/tex/latex/tikz-dependency/tikz-dependency.sty
catalogue-ctan /graphics/pgf/contrib/tikz-dependency
-catalogue-date 2018-02-07 16:05:00 +0100
catalogue-license lpplgpl2
catalogue-topics linguistic tree pgf-tikz
catalogue-version 1.2
@@ -288593,7 +285462,6 @@ runfiles size=2
RELOC/tex/latex/tikz-dimline/tikz-dimline.sty
catalogue-contact-repository https://github.com/renard/tikz-dimline
catalogue-ctan /graphics/pgf/contrib/tikz-dimline
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license other-free
catalogue-topics pgf-tikz
catalogue-version 1.0
@@ -288631,7 +285499,6 @@ runfiles size=13
RELOC/tex/latex/tikz-feynhand/tikzlibraryfeynhand.code.tex
catalogue-also tikz-feynman
catalogue-ctan /graphics/pgf/contrib/tikz-feynhand
-catalogue-date 2019-08-19 22:08:01 +0200
catalogue-license gpl3+
catalogue-topics physics pgf-tikz
catalogue-version 1.1.0
@@ -288667,7 +285534,6 @@ runfiles size=28
catalogue-also tikz-feynhand
catalogue-contact-home http://www.jpellis.me/projects/tikz-feynman
catalogue-ctan /graphics/pgf/contrib/tikz-feynman
-catalogue-date 2018-01-31 19:51:33 +0100
catalogue-license lppl1.3
catalogue-topics physics pgf-tikz use-luatex
catalogue-version 1.1.0
@@ -288699,7 +285565,6 @@ runfiles size=2
catalogue-contact-bugs https://github.com/tcpluess/tikz-imagelabels/issues
catalogue-contact-repository https://github.com/tcpluess/tikz-imagelabels
catalogue-ctan /graphics/pgf/contrib/tikz-imagelabels
-catalogue-date 2019-06-27 14:24:00 +0200
catalogue-license lppl1.3
catalogue-topics graphics pgf-tikz graphics-incl graphics-text
catalogue-version 0.2
@@ -288721,7 +285586,6 @@ docfiles size=38
runfiles size=4
RELOC/tex/latex/tikz-inet/tikz-inet.sty
catalogue-ctan /graphics/pgf/contrib/tikz-inet
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics logic
catalogue-version 0.1
@@ -288759,7 +285623,6 @@ catalogue-also calendar
catalogue-contact-bugs https://github.com/rolfn/kalenderRN/issues
catalogue-contact-repository https://github.com/rolfn/kalenderRN
catalogue-ctan /graphics/pgf/contrib/tikz-kalender
-catalogue-date 2019-11-22 11:08:49 +0100
catalogue-license cc-by-sa-1
catalogue-topics calendar class pgf-tikz
catalogue-version 0.4f
@@ -288793,7 +285656,6 @@ runfiles size=5
RELOC/tex/latex/tikz-karnaugh/tikzlibrarykarnaugh.code.tex
catalogue-also karnaugh karnaugh-map karnaughmap
catalogue-ctan /graphics/pgf/contrib/tikz-karnaugh
-catalogue-date 2018-03-19 17:04:32 +0100
catalogue-license lppl1
catalogue-topics maths engineering pgf-tikz
catalogue-version 1.2
@@ -288822,7 +285684,6 @@ runfiles size=6
RELOC/tex/latex/tikz-ladder/tikzlibrarycircuits.plc.ladder.code.tex
catalogue-also ladder
catalogue-ctan /graphics/pgf/contrib/tikz-ladder
-catalogue-date 2018-02-06 19:35:43 +0100
catalogue-license lppl1
catalogue-topics pgf-tikz diagram diagram-circ engineering
catalogue-version 1.1
@@ -288848,7 +285709,6 @@ docfiles size=3
runfiles size=1
RELOC/tex/latex/tikz-layers/tikz-layers.sty
catalogue-ctan /graphics/pgf/contrib/tikz-layers
-catalogue-date 2018-02-19 05:24:39 +0100
catalogue-license lppl1.3
catalogue-topics pgf-tikz graphics
catalogue-version 0.9
@@ -288882,7 +285742,6 @@ catalogue-contact-bugs https://github.com/jgosmann/tikz-nef/issues
catalogue-contact-home https://github.com/jgosmann/tikz-nef
catalogue-contact-repository https://github.com/jgosmann/tikz-nef
catalogue-ctan /graphics/pgf/contrib/tikz-nef
-catalogue-date 2018-07-23 05:30:43 +0200
catalogue-license mit
catalogue-topics pgf-tikz diagram
catalogue-version 0.1
@@ -288918,7 +285777,6 @@ runfiles size=14
catalogue-contact-bugs https://github.com/hackl/tikz-network/issues
catalogue-contact-repository https://github.com/hackl/tikz-network
catalogue-ctan /graphics/pgf/contrib/tikz-network
-catalogue-date 2019-08-15 18:40:01 +0200
catalogue-license gpl3+
catalogue-topics graphics pgf-tikz diagram
catalogue-version 1.1
@@ -288940,7 +285798,6 @@ docfiles size=20
runfiles size=2
RELOC/tex/latex/tikz-opm/tikz-opm.sty
catalogue-ctan /graphics/pgf/contrib/tikz-opm
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics diagram pgf-tikz
catalogue-version 0.1.1
@@ -288966,7 +285823,6 @@ runfiles size=22
RELOC/tex/latex/tikz-optics/tikzlibraryoptics.code.tex
catalogue-contact-repository https://github.com/fruchart/tikz-optics
catalogue-ctan /graphics/pgf/contrib/tikz-optics
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl1.3
catalogue-topics physics pgf-tikz graphics-in-tex
catalogue-version 0.2.3
@@ -288996,7 +285852,6 @@ runfiles size=4
RELOC/tex/latex/tikz-page/tikz-page.sty
catalogue-contact-repository https://github.com/renard/tikz-page/
catalogue-ctan /graphics/pgf/contrib/tikz-page
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl1.3
catalogue-topics pgf-tikz
catalogue-version 1.0
@@ -289034,7 +285889,6 @@ docfiles size=146
runfiles size=6
RELOC/tex/latex/tikz-palattice/tikz-palattice.sty
catalogue-ctan /graphics/pgf/contrib/tikz-palattice
-catalogue-date 2017-03-09 14:14:05 +0100
catalogue-license lppl1.3
catalogue-topics pgf-tikz
catalogue-version 2.3
@@ -289068,7 +285922,6 @@ runfiles size=11
RELOC/tex/latex/tikz-qtree/tikz-qtree.sty
RELOC/tex/latex/tikz-qtree/tikz-qtree.tex
catalogue-ctan /graphics/pgf/contrib/tikz-qtree
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license gpl
catalogue-topics tree
catalogue-version 1.2
@@ -289099,7 +285952,6 @@ docfiles size=209
runfiles size=14
RELOC/tex/latex/tikz-relay/tikzlibrarycircuits.ee.IEC.relay.code.tex
catalogue-ctan /graphics/pgf/contrib/tikz-relay
-catalogue-date 2018-06-15 09:29:54 +0200
catalogue-license lppl1
catalogue-topics pgf-tikz diagram diagram-circ engineering physics
catalogue-version 1.2
@@ -289130,7 +285982,6 @@ runfiles size=3
RELOC/tex/latex/tikz-sfc/tikzlibrarycircuits.plc.sfc.code.tex
catalogue-also grafcet
catalogue-ctan /graphics/pgf/contrib/tikz-sfc
-catalogue-date 2018-12-15 21:28:58 +0100
catalogue-license lppl1
catalogue-topics pgf-tikz diagram diagram-circ diagram-flow engineering
catalogue-version 1.0.1
@@ -289177,7 +286028,6 @@ catalogue-contact-bugs https://bitbucket.org/martin_scharrer/tikz-timing/issues
catalogue-contact-home https://bitbucket.org/martin_scharrer/tikz-timing
catalogue-contact-repository https://bitbucket.org/martin_scharrer/tikz-timing/src
catalogue-ctan /graphics/pgf/contrib/tikz-timing
-catalogue-date 2017-12-21 18:51:58 +0100
catalogue-license lppl
catalogue-topics electronic diagram-tmg
catalogue-version 0.7f
@@ -289208,7 +286058,6 @@ catalogue-also truchet
catalogue-contact-bugs https://github.com/mscroggs/truchet/issues
catalogue-contact-home https://github.com/mscroggs/truchet
catalogue-ctan /graphics/pgf/contrib/tikz-truchet
-catalogue-date 2019-02-17 05:29:19 +0100
catalogue-license mit
catalogue-topics pgf-tikz
@@ -289241,7 +286090,6 @@ runfiles size=7
RELOC/tex/latex/tikzcodeblocks/tikzcodeblocks.sty
catalogue-also scratch
catalogue-ctan /graphics/pgf/contrib/tikzcodeblocks
-catalogue-date 2018-04-03 13:13:53 +0200
catalogue-license lppl1.3c
catalogue-topics pgf-tikz
catalogue-version 0.12
@@ -289270,7 +286118,6 @@ catalogue-contact-bugs https://github.com/samcarter/tikzducks/issues
catalogue-contact-repository https://github.com/samcarter/tikzducks
catalogue-contact-support https://github.com/samcarter/tikzducks/issues
catalogue-ctan /graphics/pgf/contrib/tikzducks
-catalogue-date 2019-04-07 09:38:44 +0200
catalogue-license lppl1.3c
catalogue-topics pgf-tikz
catalogue-version 1.1
@@ -289297,7 +286144,6 @@ srcfiles size=3
runfiles size=1
RELOC/tex/latex/tikzinclude/tikzinclude.sty
catalogue-ctan /graphics/pgf/contrib/tikzinclude
-catalogue-date 2019-02-21 05:13:12 +0100
catalogue-license lppl1.3
catalogue-topics graphics-supp
catalogue-version 1.0
@@ -289343,7 +286189,6 @@ catalogue-contact-bugs https://github.com/samcarter/tikzlings/issues
catalogue-contact-repository https://github.com/samcarter/tikzlings
catalogue-contact-support https://github.com/samcarter/tikzlings/issues
catalogue-ctan /graphics/pgf/contrib/tikzlings
-catalogue-date 2019-04-07 10:07:47 +0200
catalogue-license lppl1.3c
catalogue-topics graphics pgf-tikz
catalogue-version 0.2
@@ -289376,7 +286221,6 @@ catalogue-contact-bugs https://github.com/loopspace/tikzmark/issues
catalogue-contact-home https://github.com/loopspace/tikzmark
catalogue-contact-repository https://github.com/loopspace/tikzmark
catalogue-ctan /graphics/pgf/contrib/tikzmark
-catalogue-date 2019-10-04 23:28:37 +0200
catalogue-license lppl1.3c
catalogue-topics pgf-tikz graphics-supp
catalogue-version 1.8
@@ -289407,7 +286251,6 @@ catalogue-contact-bugs https://github.com/samcarter/tikzmarmots/issues
catalogue-contact-repository https://github.com/samcarter/tikzmarmots
catalogue-contact-support https://github.com/samcarter/tikzmarmots/issues
catalogue-ctan /graphics/pgf/contrib/tikzmarmots
-catalogue-date 2018-11-09 18:39:11 +0100
catalogue-license lppl1.3c
catalogue-topics pgf-tikz
catalogue-version 1.0
@@ -289431,7 +286274,6 @@ runfiles size=5
RELOC/tex/latex/tikzorbital/tikzorbital.sty
catalogue-also modiagram
catalogue-ctan /graphics/pgf/contrib/tikzorbital
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics chemistry diagram
@@ -289458,7 +286300,6 @@ srcfiles size=5
runfiles size=2
RELOC/tex/latex/tikzpagenodes/tikzpagenodes.sty
catalogue-ctan /graphics/pgf/contrib/tikzpagenodes
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics graphics macro-supp pgf-tikz
catalogue-version 1.1
@@ -289515,7 +286356,6 @@ runfiles size=54
RELOC/tex/latex/tikzpeople/tikzpeople.shape.surgeon.sty
RELOC/tex/latex/tikzpeople/tikzpeople.sty
catalogue-ctan /graphics/pgf/contrib/tikzpeople
-catalogue-date 2017-04-22 20:32:41 +0200
catalogue-license lppl1.3
catalogue-topics pgf-tikz
catalogue-version 0.4
@@ -289545,7 +286385,6 @@ srcfiles size=4
runfiles size=2
RELOC/tex/latex/tikzpfeile/tikzpfeile.sty
catalogue-ctan /graphics/pgf/contrib/tikzpfeile
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics graphics-symb
catalogue-version 1.0
@@ -289584,7 +286423,6 @@ runfiles size=25
RELOC/tex/latex/tikzposter/tikzposterNotestyles.tex
RELOC/tex/latex/tikzposter/tikzposterTitlestyles.tex
catalogue-ctan /graphics/pgf/contrib/tikzposter
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.2
catalogue-topics poster class
catalogue-version 2.0
@@ -289631,7 +286469,6 @@ srcfiles size=22
runfiles size=5
RELOC/tex/latex/tikzscale/tikzscale.sty
catalogue-ctan /graphics/pgf/contrib/tikzscale
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics graphics-supp
catalogue-version 0.2.6
@@ -289659,7 +286496,6 @@ runfiles size=31
RELOC/tex/latex/tikzsymbols/tikzsymbols.sty
catalogue-contact-repository https://github.com/Vidabe/tikzsymbols
catalogue-ctan /graphics/pgf/contrib/tikzsymbols
-catalogue-date 2019-02-08 11:35:20 +0100
catalogue-license lppl1.3c
catalogue-topics graphics-symb pgf-tikz
catalogue-version 4.10c
@@ -289689,7 +286525,6 @@ runfiles size=16
RELOC/tex/latex/timbreicmc/timbreicmc.sty
catalogue-also watermark
catalogue-ctan /macros/latex/contrib/timbreicmc
-catalogue-date 2019-01-17 19:44:57 +0100
catalogue-license lppl1.3c
catalogue-topics watermark
catalogue-version 2.0
@@ -289879,7 +286714,6 @@ runfiles size=335
RELOC/tex/latex/times/ts1utm.fd
catalogue-also tex-gyre
catalogue-ctan /fonts/urw/base35
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics font font-type1 font-collection
@@ -289896,7 +286730,6 @@ containerchecksum caee17cfe1a4bae7bae4479066e2f869e6ccee34d28a8952bed7a1409bd9ec
runfiles size=10
RELOC/tex/plain/timetable/timetable.tex
catalogue-ctan /macros/plain/contrib/timetable
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics timetable
@@ -289923,7 +286756,6 @@ runfiles size=2
catalogue-also tikz-timing timing
catalogue-contact-repository https://gitlab.com/tikz-goodies/tikz-goodies
catalogue-ctan /graphics/pgf/contrib/timing-diagrams
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl1.3
catalogue-topics diagram-tmg
@@ -289997,7 +286829,6 @@ runfiles size=1119
RELOC/tex/latex/tinos/TS1Tinos-TLF.fd
RELOC/tex/latex/tinos/tinos.sty
catalogue-ctan /fonts/tinos
-catalogue-date 2017-01-10 05:17:21 +0100
catalogue-license apache2
catalogue-topics font font-type1 font-virtual font-otf
@@ -290291,7 +287122,6 @@ runfiles size=1096
RELOC/tex/latex/tipa/vowel.sty
catalogue-also wsuipa2tipa
catalogue-ctan /fonts/tipa/tipa
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics font font-mf font-type1 font-specialist phonetic
catalogue-version 1.3
@@ -290318,7 +287148,6 @@ docfiles size=986
RELOC/doc/latex/tipa-de/tipaman3-de.tex
RELOC/doc/latex/tipa-de/tipaman4-de.tex
catalogue-ctan /info/translations/tipa/de
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics translation german-doc font-doc
catalogue-version 1.3
@@ -290343,7 +287172,6 @@ docfiles size=104
runfiles size=8
RELOC/tex/latex/tipfr/tipfr.sty
catalogue-ctan /graphics/pgf/contrib/tipfr
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics pgf-tikz
catalogue-version 1.5
@@ -290372,7 +287200,6 @@ docfiles size=74
runfiles size=4
RELOC/tex/latex/titlecaps/titlecaps.sty
catalogue-ctan /macros/latex/contrib/titlecaps
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics typesetting
catalogue-version 1.2
@@ -290392,7 +287219,6 @@ containerchecksum aee68d15213c20d9ba0ef6e3a95f111804e4438d2c80a6cd83ae67725c3174
runfiles size=3
RELOC/tex/latex/titlefoot/titlefoot.sty
catalogue-ctan /macros/latex/contrib/titlefoot
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics titlepage page-hf
@@ -290413,7 +287239,6 @@ docfiles size=270
RELOC/doc/latex/titlepages/titlepages.pdf details="The document itself"
RELOC/doc/latex/titlepages/titlepages.tex
catalogue-ctan /info/latex-samples/TitlePages
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license lppl
catalogue-topics titlepage use-sample
@@ -290439,7 +287264,6 @@ docfiles size=32
runfiles size=1
RELOC/tex/latex/titlepic/titlepic.sty
catalogue-ctan /macros/latex/contrib/titlepic
-catalogue-date 2017-03-14 12:42:38 +0100
catalogue-license pd
catalogue-topics titlepage graphics-use
catalogue-version 1.2
@@ -290465,7 +287289,6 @@ runfiles size=2
RELOC/tex/latex/titleref/titleref.sty
catalogue-also nameref
catalogue-ctan /macros/latex/contrib/titleref
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics label-ref
catalogue-version 3.1
@@ -290500,7 +287323,6 @@ catalogue-also fancyhdr titleps sectsty titletoc tocloft
catalogue-contact-bugs https://github.com/jbezos/titlesec/issues
catalogue-contact-repository https://github.com/jbezos/titlesec
catalogue-ctan /macros/latex/contrib/titlesec
-catalogue-date 2019-10-16 19:57:35 +0200
catalogue-license mit
catalogue-topics headings page-hf
catalogue-version 2.13
@@ -290531,7 +287353,6 @@ srcfiles size=14
runfiles size=2
RELOC/tex/latex/titling/titling.sty
catalogue-ctan /macros/latex/contrib/titling
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics titlepage
catalogue-version 2.1d
@@ -290571,7 +287392,6 @@ runfiles size=36
catalogue-also pgf
catalogue-contact-repository https://github.com/tkz-sty
catalogue-ctan /macros/latex/contrib/tkz/tkz-base
-catalogue-date 2018-09-19 23:00:28 +0200
catalogue-license lppl
catalogue-topics pgf-tikz
catalogue-version 1.16d
@@ -290764,7 +287584,6 @@ runfiles size=24
RELOC/tex/latex/tkz-berge/tkz-berge.sty
catalogue-also tkz-graph
catalogue-ctan /macros/latex/contrib/tkz/tkz-berge
-catalogue-date 2018-09-19 18:43:21 +0200
catalogue-license lppl
catalogue-topics maths pgf-tikz
catalogue-version 1.00c
@@ -290788,7 +287607,6 @@ runfiles size=9
RELOC/tex/latex/tkz-doc/tkzexample.sty
catalogue-contact-repository https://github.com/tkz-sty
catalogue-ctan /macros/latex/contrib/tkz-doc
-catalogue-date 2018-09-19 23:07:30 +0200
catalogue-license lppl
catalogue-topics doc-supp class
catalogue-version 1.1d
@@ -290855,7 +287673,6 @@ runfiles size=38
RELOC/tex/latex/tkz-euclide/tkz-tools-transformations.tex
catalogue-also eukleides pst-eucl
catalogue-ctan /macros/latex/contrib/tkz/tkz-euclide
-catalogue-date 2018-09-19 18:55:04 +0200
catalogue-license lppl
catalogue-topics maths graphics-use
catalogue-version 1.16c
@@ -290983,7 +287800,6 @@ runfiles size=7
RELOC/tex/latex/tkz-fct/tkz-fct.sty
catalogue-also pgf
catalogue-ctan /macros/latex/contrib/tkz/tkz-fct
-catalogue-date 2018-09-19 19:07:11 +0200
catalogue-license lppl
catalogue-topics graphics-plot
catalogue-version 1.16c
@@ -291020,7 +287836,6 @@ runfiles size=12
RELOC/tex/latex/tkz-graph/tkz-graph.sty
catalogue-also tkz-berge
catalogue-ctan /macros/latex/contrib/tkz/tkz-graph
-catalogue-date 2018-09-19 23:16:57 +0200
catalogue-license lppl
catalogue-topics maths pgf-tikz
catalogue-version 1.00 d
@@ -291053,7 +287868,6 @@ runfiles size=3
RELOC/tex/latex/tkz-kiviat/tkz-kiviat.sty
catalogue-contact-repository https://github.com/tkz-sty
catalogue-ctan /macros/latex/contrib/tkz/tkz-kiviat
-catalogue-date 2018-09-19 23:58:18 +0200
catalogue-license lppl
catalogue-topics graphics-plot
catalogue-version 0.1b
@@ -291087,7 +287901,6 @@ runfiles size=3
RELOC/tex/latex/tkz-linknodes/tkz-linknodes.sty
catalogue-contact-repository https://github.com/tkz-sty
catalogue-ctan /macros/latex/contrib/tkz/tkz-linknodes
-catalogue-date 2018-09-19 23:44:41 +0200
catalogue-license lppl
catalogue-topics graphics-use pgf-tikz
catalogue-version 1.1d
@@ -291115,7 +287928,6 @@ runfiles size=10
RELOC/tex/latex/tkz-orm/tkz-orm.sty
catalogue-contact-home http://purl.org/net/tkz-orm
catalogue-ctan /graphics/pgf/contrib/tkz-orm
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license gpl2lppl1.3
catalogue-topics diagram pgf-tikz
catalogue-version 0.1.4
@@ -291157,7 +287969,6 @@ runfiles size=12
catalogue-also tableaux tableauvariations tablor tabvar
catalogue-contact-repository https://github.com/tkz-sty
catalogue-ctan /macros/latex/contrib/tkz/tkz-tab
-catalogue-date 2019-01-20 08:40:22 +0100
catalogue-license lppl1.3gpl
catalogue-topics maths-tabvar pgf-tikz
catalogue-version 1.4e
@@ -291196,7 +288007,6 @@ runfiles size=3
catalogue-contact-bugs https://github.com/Traap/tlc-article/issues
catalogue-contact-home https://github.com/Traap/tlc-article
catalogue-ctan /macros/latex/contrib/tlc-article
-catalogue-date 2019-06-23 09:56:44 +0200
catalogue-license bsd3
catalogue-topics class article-like
catalogue-version 1.0.17
@@ -292085,7 +288895,6 @@ docfiles size=890
RELOC/doc/latex/tlc2/w.eps
RELOC/doc/latex/tlc2/w.ps
catalogue-ctan /info/examples/tlc2
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics book-ex
@@ -292156,7 +288965,6 @@ runfiles size=17522
catalogue-contact-bugs https://github.com/TeX-Live/tlcockpit/issues
catalogue-contact-repository https://github.com/TeX-Live/tlcockpit
catalogue-ctan /support/tlcockpit
-catalogue-date 2019-07-11 11:41:08 +0200
catalogue-license gpl3+
catalogue-topics install-mgmt
catalogue-version 1.1
@@ -292787,7 +289595,6 @@ binfiles arch=win32 size=6254
tlpkg/tlgs/lib/winmaps.ps
tlpkg/tlgs/lib/zeroline.ps
catalogue-contact-home http://www.ghostscript.com/
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license collection
catalogue-topics graphics-prep
@@ -294695,7 +291502,6 @@ srcfiles size=12
runfiles size=3
RELOC/tex/latex/tocbibind/tocbibind.sty
catalogue-ctan /macros/latex/contrib/tocbibind
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics toc-etc
catalogue-version 1.5k
@@ -294734,7 +291540,6 @@ srcfiles size=15
runfiles size=4
RELOC/tex/latex/tocdata/tocdata.sty
catalogue-ctan /macros/latex/contrib/tocdata
-catalogue-date 2019-07-16 13:23:38 +0200
catalogue-license lppl1.3
catalogue-topics toc-etc
catalogue-version 2.03
@@ -294765,7 +291570,6 @@ catalogue-also tocbasic
catalogue-contact-bugs https://github.com/wspr/herries-press/issues
catalogue-contact-repository https://github.com/wspr/herries-press
catalogue-ctan /macros/latex/contrib/tocloft
-catalogue-date 2017-08-31 05:31:06 +0200
catalogue-license lppl1.3c
catalogue-topics toc-etc
catalogue-version 2.3i
@@ -294794,7 +291598,6 @@ srcfiles size=8
runfiles size=2
RELOC/tex/latex/tocvsec2/tocvsec2.sty
catalogue-ctan /macros/latex/contrib/tocvsec2
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics headings toc-etc
catalogue-version 1.3a
@@ -294824,7 +291627,6 @@ srcfiles size=7
runfiles size=2
RELOC/tex/latex/todo/todo.sty
catalogue-ctan /macros/latex/contrib/todo
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1
catalogue-topics notes editorial
catalogue-version 2.142
@@ -294865,7 +291667,6 @@ catalogue-also todo
catalogue-contact-bugs https://github.com/henrikmidtiby/todonotes/issues
catalogue-contact-repository https://github.com/henrikmidtiby/todonotes
catalogue-ctan /macros/latex/contrib/todonotes
-catalogue-date 2019-01-24 13:58:07 +0100
catalogue-license lppl1.3
catalogue-topics notes editorial
catalogue-version 1.1.2
@@ -294901,7 +291702,6 @@ runfiles size=4
RELOC/tex/generic/tokcycle/tokcycle.sty
RELOC/tex/generic/tokcycle/tokcycle.tex
catalogue-ctan /macros/generic/tokcycle
-catalogue-date 2019-09-27 16:27:01 +0200
catalogue-license lppl1.3c
catalogue-topics macro-supp parser macro-iterate misc-support
catalogue-version 1.1
@@ -294930,7 +291730,6 @@ runfiles size=2
RELOC/tex/latex/tokenizer/tokenizer.sty
catalogue-also csvtools
catalogue-ctan /macros/latex/contrib/tokenizer
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics data-import data-disp csv-support
catalogue-version 1.1.0
@@ -294963,7 +291762,6 @@ srcfiles size=29
runfiles size=3
RELOC/tex/latex/toolbox/toolbox.sty
catalogue-ctan /macros/latex/contrib/toolbox
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics macro-supp
catalogue-version 5.1
@@ -295097,7 +291895,6 @@ runfiles size=99
RELOC/tex/latex/tools/xr.sty
RELOC/tex/latex/tools/xspace.sty
catalogue-ctan /macros/latex/required/tools
-catalogue-date 2019-11-10 23:50:37 +0100
catalogue-license lppl1.3c
catalogue-topics collection
catalogue-version 2019-11-10 PL3
@@ -295117,7 +291914,6 @@ docfiles size=15
runfiles size=1
RELOC/tex/latex/topfloat/topfloat.sty
catalogue-ctan /macros/latex/contrib/topfloat
-catalogue-date 2016-06-18 16:48:54 +0200
catalogue-license gpl
catalogue-topics float
@@ -295148,7 +291944,6 @@ runfiles size=4
catalogue-contact-bugs https://github.com/paolobrasolin/topiclongtable/issues
catalogue-contact-repository https://github.com/paolobrasolin/topiclongtable
catalogue-ctan /macros/latex/contrib/topiclongtable
-catalogue-date 2019-07-10 10:05:26 +0200
catalogue-license mit
catalogue-topics table-long table expl3
catalogue-version 1.3.1
@@ -295186,7 +291981,6 @@ runfiles size=2
catalogue-contact-bugs https://github.com/mtorchiano/TOPLetter/issues
catalogue-contact-repository https://github.com/mtorchiano/TOPLetter
catalogue-ctan /macros/latex/contrib/topletter
-catalogue-date 2018-07-12 05:30:29 +0200
catalogue-license apache2
catalogue-topics letter class italian
catalogue-version 0.3.0
@@ -295275,7 +292069,6 @@ runfiles size=39
RELOC/tex/latex/toptesi/toptesi.cls
RELOC/tex/latex/toptesi/toptesi.sty
catalogue-ctan /macros/latex/contrib/toptesi
-catalogue-date 2019-07-26 15:59:19 +0200
catalogue-license lppl1.3c
catalogue-topics dissertation class multilingual
catalogue-version 6.3.06
@@ -295307,7 +292100,6 @@ runfiles size=2
RELOC/tex/latex/totcount/totcount.sty
catalogue-also lastpage totpages
catalogue-ctan /macros/latex/contrib/totcount
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics macro-supp counter-mgmt
catalogue-version 1.2
@@ -295339,7 +292131,6 @@ runfiles size=2
RELOC/tex/latex/totpages/totpages.sty
catalogue-also count1to
catalogue-ctan /macros/latex/contrib/totpages
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics label-ref typesetting
catalogue-version 2.00
@@ -295364,7 +292155,6 @@ docfiles size=26
texmf-dist/doc/tpic2pdftex/example.pdf
texmf-dist/doc/tpic2pdftex/example.pic
catalogue-ctan /graphics/tpic2pdftex
-catalogue-date 2017-06-27 04:58:12 +0200
catalogue-license gpl
catalogue-topics graphics-prep
@@ -295539,7 +292329,6 @@ srcfiles size=14
runfiles size=8
RELOC/tex/latex/tpslifonts/tpslifonts.sty
catalogue-ctan /macros/latex/contrib/texpower/tpslifonts
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics presentation font-use
catalogue-version 0.6
@@ -295573,7 +292362,6 @@ runfiles size=14
catalogue-contact-home https://github.com/loopspace/TQFT
catalogue-contact-repository https://github.com/loopspace/TQFT
catalogue-ctan /macros/latex/contrib/tqft
-catalogue-date 2017-06-01 14:43:33 +0200
catalogue-license lppl1.3
catalogue-topics diagram graphics-use
catalogue-version 2.1
@@ -295682,7 +292470,6 @@ runfiles size=47
catalogue-contact-bugs https://www.dickimaw-books.com/bugtracker.php?search_category=tracklang
catalogue-contact-support https://www.dickimaw-books.com/faq.php?action=view&category=tracklang
catalogue-ctan /macros/generic/tracklang
-catalogue-date 2019-12-01 19:28:36 +0100
catalogue-license lppl1.3
catalogue-topics package-devel class-supp multilingual
catalogue-version 1.4
@@ -295724,7 +292511,6 @@ runfiles size=25
RELOC/tex/latex/trajan/t1trjn.fd
RELOC/tex/latex/trajan/trajan.sty
catalogue-ctan /fonts/trajan
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics font font-archaic font-type1 font-mf
catalogue-version 1.1
@@ -295752,7 +292538,6 @@ runfiles size=2
catalogue-contact-bugs https://github.com/bidi-tex/tram/issues
catalogue-contact-repository https://github.com/bidi-tex/tram
catalogue-ctan /macros/latex/contrib/tram
-catalogue-date 2018-11-28 21:10:31 +0100
catalogue-license lppl
catalogue-topics boxing decoration editorial
catalogue-version 0.2
@@ -295774,7 +292559,6 @@ docfiles size=188
RELOC/doc/latex/translation-array-fr/f-array.pdf details="The translation"
RELOC/doc/latex/translation-array-fr/ltxdoc.cfg
catalogue-ctan /info/translations/array/fr
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics table matrix french-doc translation
@@ -295792,7 +292576,6 @@ docfiles size=98
RELOC/doc/latex/translation-arsclassica-de/ArsClassica-de.pdf details="Package documentation" language="de"
RELOC/doc/latex/translation-arsclassica-de/ArsClassica-de.tex
catalogue-ctan /info/translations/arsclassica/de
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics dissertation german-doc translation
@@ -295811,7 +292594,6 @@ docfiles size=275
RELOC/doc/latex/translation-biblatex-de/biblatex-de-Benutzerhandbuch.pdf details="The translation"
RELOC/doc/latex/translation-biblatex-de/biblatex-de-Benutzerhandbuch.tex
catalogue-ctan /info/translations/biblatex/de
-catalogue-date 2017-10-24 11:14:04 +0200
catalogue-license lppl
catalogue-topics german-doc biblatex documentation
catalogue-version 3.0
@@ -295831,7 +292613,6 @@ docfiles size=49
RELOC/doc/latex/translation-chemsym-de/chemsym-de.dtx
RELOC/doc/latex/translation-chemsym-de/chemsym-de.pdf details="The document itself" language="de"
catalogue-ctan /info/translations/chemsym/de
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics chemistry german-doc translation
@@ -295851,7 +292632,6 @@ docfiles size=88
RELOC/doc/latex/translation-dcolumn-fr/f-dcolumn.dtx
RELOC/doc/latex/translation-dcolumn-fr/f-dcolumn.pdf details="The translation"
catalogue-ctan /info/translations/dcolumn/fr
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics french-doc documentation table typesetting
@@ -295869,7 +292649,6 @@ docfiles size=108
RELOC/doc/latex/translation-ecv-de/ecvde.dtx.pdf details="Package documentation" language="de"
RELOC/doc/latex/translation-ecv-de/ecvde.dtx.tex
catalogue-ctan /info/translations/ecv/de
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics cv german-doc translation
@@ -295887,7 +292666,6 @@ docfiles size=160
RELOC/doc/latex/translation-enumitem-de/enumitem-de.pdf details="The translation itself" language="de"
RELOC/doc/latex/translation-enumitem-de/enumitem-de.tex
catalogue-ctan /info/translations/enumitem/de
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics list german-doc translation
@@ -295923,7 +292701,6 @@ docfiles size=253
RELOC/doc/latex/translation-europecv-de/templates/cv_template_pl.tex
RELOC/doc/latex/translation-europecv-de/templates/publications.bib
catalogue-ctan /info/translations/europecv/de
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics cv german-doc translation
@@ -295942,7 +292719,6 @@ docfiles size=56
RELOC/doc/latex/translation-filecontents-de/filecontents-de.ins
RELOC/doc/latex/translation-filecontents-de/filecontents-de.pdf details="Package documentation" language="de"
catalogue-ctan /info/translations/filecontents/de
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics file-mgmt german-doc translation
@@ -295961,7 +292737,6 @@ docfiles size=33
RELOC/doc/latex/translation-moreverb-de/moreverb-de.dtx.pdf details="Package documentation" language="de"
RELOC/doc/latex/translation-moreverb-de/moreverb-de.dtx.tex
catalogue-ctan /info/translations/moreverb/de
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics german-doc verbatim translation
@@ -295979,7 +292754,6 @@ docfiles size=207
RELOC/doc/latex/translation-natbib-fr/f-natbib.dtx
RELOC/doc/latex/translation-natbib-fr/f-natbib.pdf details="Translated documentation"
catalogue-ctan /info/translations/natbib/fr
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics french-doc bibtex-supp translation
@@ -295999,7 +292773,6 @@ docfiles size=89
RELOC/doc/latex/translation-tabbing-fr/f-Tabbing.pdf details="The document itself" language="fr"
RELOC/doc/latex/translation-tabbing-fr/ltxdoc.cfg
catalogue-ctan /info/translations/Tabbing/fr
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1
catalogue-topics french-doc translation
@@ -296037,7 +292810,6 @@ catalogue-also translator
catalogue-contact-bugs https://github.com/cgnieder/translations/issues
catalogue-contact-repository https://github.com/cgnieder/translations/
catalogue-ctan /macros/latex/contrib/translations
-catalogue-date 2017-11-30 18:19:07 +0100
catalogue-license lppl1.3
catalogue-topics multilingual package-supp
catalogue-version 1.7a
@@ -296173,7 +292945,6 @@ catalogue-also translations
catalogue-contact-bugs https://github.com/josephwright/translator/issues
catalogue-contact-repository https://github.com/josephwright/translator
catalogue-ctan /macros/latex/contrib/translator
-catalogue-date 2019-05-31 14:50:55 +0200
catalogue-license lpplgpl
catalogue-topics multilingual package-supp
catalogue-version 1.12a
@@ -296203,7 +292974,6 @@ runfiles size=2
catalogue-contact-bugs https://github.com/ho-tex/transparent/issues
catalogue-contact-repository https://github.com/ho-tex/transparent
catalogue-ctan /macros/latex/contrib/transparent
-catalogue-date 2019-11-30 11:10:53 +0100
catalogue-license lppl1.3
catalogue-topics typesetting
catalogue-version 1.4
@@ -296238,7 +293008,6 @@ runfiles size=9
RELOC/tex/latex/tree-dvips/lingmacros.sty
RELOC/tex/latex/tree-dvips/tree-dvips.sty
catalogue-ctan /macros/latex209/contrib/trees/tree-dvips
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1
catalogue-topics tree
catalogue-version .91
@@ -296265,7 +293034,6 @@ runfiles size=41
RELOC/tex/plain/treetex/l_pic.tex
RELOC/tex/plain/treetex/treetex.tex
catalogue-ctan /macros/plain/contrib/treetex
-catalogue-date 2016-07-19 10:27:54 +0200
catalogue-license pd
catalogue-topics tree
@@ -296294,7 +293062,6 @@ srcfiles size=6
runfiles size=2
RELOC/tex/latex/trfsigns/trfsigns.sty
catalogue-ctan /macros/latex/contrib/trfsigns
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics maths-symbol
catalogue-version 1.01
@@ -296317,7 +293084,6 @@ docfiles size=1
runfiles size=2
RELOC/tex/generic/trigonometry/trigonometry.tex
catalogue-ctan /macros/generic/trigonometry
-catalogue-date 2017-01-24 05:45:54 +0100
catalogue-license knuth
catalogue-topics calculation
@@ -296346,7 +293112,6 @@ srcfiles size=3
runfiles size=1
RELOC/tex/latex/trimspaces/trimspaces.sty
catalogue-ctan /macros/latex/contrib/trimspaces
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics macro-supp
catalogue-version 1.1
@@ -296376,7 +293141,6 @@ srcfiles size=7
runfiles size=2
RELOC/tex/latex/trivfloat/trivfloat.sty
catalogue-ctan /macros/latex/contrib/trivfloat
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics float
catalogue-version 1.3b
@@ -296412,7 +293176,6 @@ runfiles size=7
RELOC/tex/latex/trsym/trsym.sty
RELOC/tex/latex/trsym/utrsy.fd
catalogue-ctan /fonts/trsym
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.2
catalogue-topics font font-symbol font-mf
catalogue-version 1.0
@@ -296435,7 +293198,6 @@ docfiles size=42
runfiles size=2
RELOC/tex/latex/truncate/truncate.sty
catalogue-ctan /macros/latex/contrib/truncate
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics layout
catalogue-version 3.6
@@ -296455,7 +293217,6 @@ containerchecksum d4b6a929a403ed7fea409aa618e7ca021c2c7138a6b11c980430ba18f952ff
runfiles size=1
RELOC/tex/latex/tsemlines/tsemlines.sty
catalogue-ctan /macros/latex/contrib/tsemlines
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics graphics-prep
catalogue-version 1.0
@@ -296724,7 +293485,6 @@ srcfiles size=5
runfiles size=1
RELOC/tex/latex/tucv/tucv.sty
catalogue-ctan /macros/latex/contrib/tucv
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license other-free
catalogue-topics cv
catalogue-version 1.0
@@ -296798,7 +293558,6 @@ catalogue-contact-bugs https://github.com/tudace/tuda_latex_templates/issues
catalogue-contact-home https://www.ce.tu-darmstadt.de/ce/latex_tuda/index.de.jsp
catalogue-contact-repository https://github.com/tudace/tuda_latex_templates
catalogue-ctan /macros/latex/contrib/tuda-ci
-catalogue-date 2019-11-29 18:06:11 +0100
catalogue-license lppl1.3c
catalogue-topics class letter dissertation presentation poster
catalogue-version 2.03a
@@ -296965,7 +293724,6 @@ catalogue-contact-bugs https://github.com/tud-cd/tudscr/issues
catalogue-contact-repository https://github.com/tud-cd/tudscr
catalogue-contact-support https://latex.wcms-file3.tu-dresden.de/phpBB3/index.php
catalogue-ctan /macros/latex/contrib/tudscr
-catalogue-date 2019-10-23 17:07:58 +0200
catalogue-license lppl1.3c
catalogue-topics dissertation class
catalogue-version 2.06e
@@ -297018,7 +293776,6 @@ runfiles size=27
RELOC/tex/latex/tufte-latex/tufte-handout.cls
catalogue-contact-repository https://tufte-latex.github.io/tufte-latex/
catalogue-ctan /macros/latex/contrib/tufte-latex
-catalogue-date 2018-04-05 06:13:24 +0200
catalogue-license apache2
catalogue-topics book-pub class
catalogue-version 3.5.2
@@ -297057,7 +293814,6 @@ runfiles size=40
catalogue-also tugboat-plain
catalogue-contact-home https://tug.org/TUGboat
catalogue-ctan /macros/latex/contrib/tugboat
-catalogue-date 2019-11-10 08:36:08 +0100
catalogue-license lppl1.3
catalogue-topics journalpub class
catalogue-version 2.22
@@ -297084,7 +293840,6 @@ runfiles size=31
RELOC/tex/plain/tugboat-plain/tugproc.sty
catalogue-also tugboat
catalogue-ctan /macros/plain/contrib/tugboat
-catalogue-date 2019-06-13 05:27:39 +0200
catalogue-license other-free
catalogue-topics journalpub
catalogue-version 1.25
@@ -297143,7 +293898,6 @@ docfiles size=104
runfiles size=3
RELOC/tex/latex/tui/tui.cls
catalogue-ctan /macros/latex/contrib/tui
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics dissertation class
catalogue-version 1.9
@@ -297168,7 +293922,6 @@ runfiles size=1
RELOC/tex/latex/turabian/turabian.cls
catalogue-also turabian-formatting
catalogue-ctan /macros/latex/contrib/turabian
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics gen-paper class
catalogue-version 0.1.0
@@ -297196,7 +293949,6 @@ runfiles size=11
RELOC/tex/latex/turabian-formatting/turabian-thesis.cls
catalogue-also turabian biblatex-chicago
catalogue-ctan /macros/latex/contrib/turabian-formatting
-catalogue-date 2018-08-01 18:15:02 +0200
catalogue-license lppl1.3
catalogue-topics dissertation class
@@ -297222,7 +293974,6 @@ srcfiles size=4
runfiles size=1
RELOC/tex/latex/turkmen/turkmen.ldf
catalogue-ctan /language/turkmen
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics turkmen multilingual-addon
catalogue-version 0.2
@@ -297259,7 +294010,6 @@ srcfiles size=14
runfiles size=3
RELOC/tex/latex/turnstile/turnstile.sty
catalogue-ctan /macros/latex/contrib/turnstile
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics class maths-symbol
catalogue-version 1.0
@@ -297288,7 +294038,6 @@ runfiles size=3
RELOC/tex/latex/turnthepage/turnpagewoetex.sty
RELOC/tex/latex/turnthepage/turnthepage.sty
catalogue-ctan /macros/latex/contrib/turnthepage
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics layout exam
catalogue-version 1.3a
@@ -297312,7 +294061,6 @@ runfiles size=1
RELOC/tex/latex/twoinone/2in1.sty
catalogue-also twoupltx
catalogue-ctan /macros/latex/contrib/twoinone
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics compact-print plain-ext
@@ -297345,7 +294093,6 @@ runfiles size=2
RELOC/tex/latex/twoup/twoup.sty
catalogue-also twoinone
catalogue-ctan /macros/latex/contrib/twoup
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics compact-print
catalogue-version 1.3
@@ -297689,7 +294436,6 @@ runfiles size=558
RELOC/tex/latex/txfonts/utxtt.fd
catalogue-also newtx
catalogue-ctan /fonts/txfonts
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics font font-maths font-type1
@@ -297792,7 +294538,6 @@ runfiles size=2083
RELOC/tex/latex/txfontsb/txfontsb.sty
catalogue-also newtx
catalogue-ctan /fonts/txfontsb
-catalogue-date 2019-11-12 10:37:43 +0100
catalogue-license gpllppl1
catalogue-topics font font-maths font-greek font-type1
catalogue-version 1.1.1
@@ -297824,7 +294569,6 @@ srcfiles size=4
runfiles size=2
RELOC/tex/latex/txgreeks/txgreeks.sty
catalogue-ctan /macros/latex/contrib/txgreeks
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics font-supp
catalogue-version 1.0
@@ -297857,7 +294601,6 @@ runfiles size=19
RELOC/tex/latex/txuprcal/utxuprcal.fd
catalogue-also txfonts
catalogue-ctan /fonts/txuprcal
-catalogue-date 2017-03-09 05:20:00 +0100
catalogue-license gpl3
catalogue-topics font-maths font-type1
catalogue-version 1.00
@@ -297896,7 +294639,6 @@ runfiles size=2
RELOC/tex/latex/type1cm/type1cm.sty
catalogue-also type1ec fix-cm
catalogue-ctan /macros/latex/contrib/type1cm
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics font-supp
@@ -297930,7 +294672,6 @@ runfiles size=5
RELOC/tex/latex/typed-checklist/typed-checklist.sty
catalogue-contact-repository https://github.com/Ri-Ga/typed-checklist
catalogue-ctan /macros/latex/contrib/typed-checklist
-catalogue-date 2019-01-16 09:01:57 +0100
catalogue-license lppl1.2
catalogue-topics list
catalogue-version 2.0
@@ -297970,7 +294711,6 @@ runfiles size=57
RELOC/tex/latex/typeface/typeface.cfg
RELOC/tex/latex/typeface/typeface.sty
catalogue-ctan /macros/latex/contrib/typeface
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics font-sel
catalogue-version 0.1
@@ -297997,7 +294737,6 @@ srcfiles size=17
runfiles size=7
RELOC/tex/latex/typehtml/typehtml.sty
catalogue-ctan /macros/latex/contrib/typehtml
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics foreign-import
@@ -298021,7 +294760,6 @@ runfiles size=1
texmf-dist/scripts/typeoutfileinfo/typeoutfileinfo.sh
catalogue-contact-support http://www.webdesign-bu.de/uwe_lueck/contact.html
catalogue-ctan /support/typeoutfileinfo
-catalogue-date 2017-05-06 09:34:02 +0200
catalogue-license lppl1.3
catalogue-topics file-mgmt
catalogue-version 0.31
@@ -298187,7 +294925,6 @@ catalogue-contact-home https://github.com/davidcarlisle/dpctex/
catalogue-contact-repository https://github.com/davidcarlisle/dpctex/
catalogue-contact-support https://github.com/davidcarlisle/dpctex/issues
catalogue-ctan /macros/luatex/latex/typewriter
-catalogue-date 2018-02-14 13:01:28 +0100
catalogue-license lppl
catalogue-topics typesetting
catalogue-version 1.1
@@ -298220,7 +294957,6 @@ runfiles size=39
RELOC/fonts/truetype/public/typicons/typicons.ttf
RELOC/tex/latex/typicons/typicons.sty
catalogue-ctan /fonts/typicons
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics font font-supp-symbol font-symbol font-ttf
catalogue-version 2.0.7
@@ -298252,7 +294988,6 @@ runfiles size=7
RELOC/tex/latex/typoaid/typoaid.sty
catalogue-contact-repository https://github.com/ilFuria/typoaid
catalogue-ctan /macros/latex/contrib/typoaid
-catalogue-date 2017-06-06 19:56:03 +0200
catalogue-license lppl1.3c
catalogue-topics font-devel typeset-tool
catalogue-version 0.4.7
@@ -298284,7 +295019,6 @@ srcfiles size=4
runfiles size=2
RELOC/tex/latex/typogrid/typogrid.sty
catalogue-ctan /macros/latex/contrib/typogrid
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics layout-show
catalogue-version 0.21
@@ -298321,7 +295055,6 @@ runfiles size=7
RELOC/tex/latex/uaclasses/ua-thesis.cls
RELOC/tex/latex/uaclasses/ua-title.sty
catalogue-ctan /macros/latex/contrib/uaclasses
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics dissertation
@@ -298358,7 +295091,6 @@ runfiles size=8
RELOC/tex/latex/uafthesis/uafthesis.cls
catalogue-contact-repository https://github.com/jesusabdullah/uafthesis
catalogue-ctan /macros/latex/contrib/uafthesis
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl
catalogue-topics dissertation
catalogue-version 12.12
@@ -298426,7 +295158,6 @@ runfiles size=779
RELOC/tex/latex/uantwerpendocs/uantwerpenmasterthesis.cls
RELOC/tex/latex/uantwerpendocs/uantwerpenphdthesis.cls
catalogue-ctan /macros/latex/contrib/uantwerpendocs
-catalogue-date 2019-04-10 20:30:42 +0200
catalogue-license lppl1.3
catalogue-topics class dissertation essay letter exam
catalogue-version 2.4
@@ -298450,7 +295181,6 @@ docfiles size=31
runfiles size=2
RELOC/tex/latex/uassign/uassign.sty
catalogue-ctan /macros/latex/contrib/uassign
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics class
catalogue-version 1.01
@@ -298493,7 +295223,6 @@ runfiles size=2
catalogue-contact-bugs https://github.com/rzach/ucalgmthesis/issues
catalogue-contact-repository https://github.com/rzach/ucalgmthesis
catalogue-ctan /macros/latex/contrib/ucalgmthesis
-catalogue-date 2019-10-24 21:00:42 +0200
catalogue-license mit
catalogue-topics class dissertation
@@ -298522,7 +295251,6 @@ docfiles size=51
runfiles size=6
RELOC/tex/latex/ucbthesis/ucbthesis.cls
catalogue-ctan /macros/latex/contrib/ucbthesis
-catalogue-date 2019-07-20 07:42:59 +0200
catalogue-license lppl1.3
catalogue-topics dissertation
catalogue-version 3.6
@@ -298562,7 +295290,6 @@ runfiles size=17
RELOC/tex/latex/ucdavisthesis/ucdthesis12.clo
RELOC/tex/latex/ucdavisthesis/ucdthesis13.clo
catalogue-ctan /macros/latex/contrib/ucdavisthesis
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license lppl1.2
catalogue-topics dissertation
catalogue-version 1.3
@@ -298592,7 +295319,6 @@ srcfiles size=3
runfiles size=1
RELOC/tex/latex/ucharcat/ucharcat.sty
catalogue-ctan /macros/latex/contrib/ucharcat
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics lua-supp luatex
catalogue-version 0.03
@@ -298623,7 +295349,6 @@ catalogue-contact-home https://github.com/Pomax/ucharclasses
catalogue-contact-repository https://github.com/Pomax/ucharclasses
catalogue-contact-support https://github.com/Pomax/ucharclasses/issues
catalogue-ctan /macros/xetex/latex/ucharclasses
-catalogue-date 2017-08-11 05:34:18 +0200
catalogue-license pd
catalogue-topics xetex font-supp
catalogue-version 2.3.0
@@ -298928,7 +295653,6 @@ runfiles size=704
RELOC/tex/latex/ucs/utils/xscmr.fd
RELOC/tex/latex/ucs/utils/xsenc.def
catalogue-ctan /macros/latex/contrib/ucs
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license lppl1.3
catalogue-topics inputenc unicode
catalogue-version 2.2
@@ -298961,7 +295685,6 @@ catalogue-contact-bugs https://github.com/HenriqueBaron/ucsmonograph/issues
catalogue-contact-repository https://github.com/HenriqueBaron/ucsmonograph
catalogue-contact-support https://tex.stackexchange.com/users/153467/henrique-baron
catalogue-ctan /macros/latex/contrib/ucsmonograph
-catalogue-date 2019-11-08 11:06:51 +0100
catalogue-license lppl1.3c
catalogue-topics class dissertation portuguese-br
catalogue-version 1.3.0
@@ -298989,7 +295712,6 @@ runfiles size=27
RELOC/tex/latex/ucthesis/uct12.clo
RELOC/tex/latex/ucthesis/ucthesis.cls
catalogue-ctan /macros/latex/contrib/ucthesis
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics dissertation
catalogue-version 3.2
@@ -299031,7 +295753,6 @@ runfiles size=74
RELOC/tex/latex/udesoftec/udesoftec.cls
catalogue-contact-bugs https://github.com/jpmschuler/SOFTEC-Templates/issues
catalogue-ctan /macros/latex/contrib/udesoftec
-catalogue-date 2018-03-28 12:21:25 +0200
catalogue-license lppl1.3
catalogue-topics dissertation bus-study class
catalogue-version 1.6.2
@@ -299062,7 +295783,6 @@ runfiles size=4
RELOC/tex/latex/uebungsblatt/uebungsblatt.cls
RELOC/tex/latex/uebungsblatt/uebungsblatt.sty
catalogue-ctan /macros/latex/contrib/uebungsblatt
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics exercise
catalogue-version 1.5.0
@@ -299122,7 +295842,6 @@ runfiles size=31
RELOC/tex/latex/uestcthesis/uestcthesis.cls
catalogue-contact-repository https://github.com/shifujun/UESTCthesis
catalogue-ctan /macros/latex/contrib/uestcthesis
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl1.3
catalogue-topics dissertation chinese
catalogue-version 1.1.0
@@ -302340,7 +299059,6 @@ runfiles size=4177
RELOC/fonts/vf/uhc/wmj/wmjxo9.vf
catalogue-also hlatex
catalogue-ctan /fonts/korean/HLaTeX
-catalogue-date 2017-06-19 06:38:53 +0200
catalogue-license lppl
catalogue-topics korean font-supp
@@ -302367,7 +299085,6 @@ srcfiles size=7
runfiles size=3
RELOC/tex/latex/uhhassignment/uhhassignment.cls
catalogue-ctan /macros/latex/contrib/uhhassignment
-catalogue-date 2018-01-07 12:14:32 +0100
catalogue-license lppl1.3c
catalogue-topics essay
catalogue-version 1.0
@@ -302391,7 +299108,6 @@ docfiles size=53
runfiles size=2
RELOC/tex/latex/uhrzeit/uhrzeit.sty
catalogue-ctan /macros/latex/contrib/uhrzeit
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics german date-time
catalogue-version 0.2c
@@ -302419,7 +299135,6 @@ runfiles size=1
RELOC/tex/latex/uiucredborder/uiucredborder.cls
catalogue-also uiucthesis
catalogue-ctan /macros/latex/contrib/uiucredborder
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.2
catalogue-topics dissertation
catalogue-version 1.00
@@ -302451,7 +299166,6 @@ runfiles size=10
RELOC/tex/latex/uiucthesis/uiucthesis.sty
catalogue-also uiucredborder
catalogue-ctan /macros/latex/contrib/uiucthesis
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics dissertation
catalogue-version 2.25
@@ -302496,7 +299210,6 @@ runfiles size=45
RELOC/tex/generic/ukrhyph/ukrhypsm.tex
RELOC/tex/generic/ukrhyph/ukrhypst.tex
catalogue-ctan /language/hyphenation/ukrhyph
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics hyphenation ukrainian
@@ -302524,7 +299237,6 @@ runfiles size=6
RELOC/tex/generic/ulem/ulem.sty
catalogue-also underlin-gen soul
catalogue-ctan /macros/latex/contrib/ulem
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license other-free
catalogue-topics underline emphasis
@@ -302556,7 +299268,6 @@ runfiles size=5
texmf-dist/scripts/ulqda/ulqda.pl
texmf-dist/tex/latex/ulqda/ulqda.sty
catalogue-ctan /macros/latex/contrib/ulqda
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics humanities
catalogue-version 1.1
@@ -302754,7 +299465,6 @@ runfiles size=47
catalogue-also memoir babel
catalogue-contact-repository https://gitlab.com/vigou3/ulthese
catalogue-ctan /macros/latex/contrib/ulthese
-catalogue-date 2019-11-29 19:04:58 +0100
catalogue-license lppl1.3c
catalogue-topics dissertation class french
catalogue-version 5.3
@@ -302779,7 +299489,6 @@ docfiles size=13
runfiles size=2
RELOC/tex/latex/umbclegislation/legislation.cls
catalogue-ctan /macros/latex/contrib/umbclegislation
-catalogue-date 2018-01-07 12:14:32 +0100
catalogue-license gpl3
catalogue-topics legal
catalogue-version 2016-6-8
@@ -302800,7 +299509,6 @@ docfiles size=1
runfiles size=5
RELOC/tex/latex/umich-thesis/umich-thesis.cls
catalogue-ctan /macros/latex/contrib/umich-thesis
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license lppl
catalogue-topics dissertation
catalogue-version 1.20
@@ -302833,7 +299541,6 @@ runfiles size=8
RELOC/tex/latex/uml/uml.sty
catalogue-also pst-uml
catalogue-ctan /graphics/pstricks/contrib/uml
-catalogue-date 2018-09-15 14:18:12 +0200
catalogue-license lppl
catalogue-topics uml pstricks
catalogue-version 0.11
@@ -302868,7 +299575,6 @@ runfiles size=8
RELOC/tex/latex/umlaute/roman8.def
RELOC/tex/latex/umlaute/umlaute.sty
catalogue-ctan /macros/latex/contrib/umlaute
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license lppl
catalogue-topics inputenc
catalogue-version 2.1
@@ -302896,7 +299602,6 @@ srcfiles size=13
runfiles size=2
RELOC/tex/latex/umoline/umoline.sty
catalogue-ctan /macros/latex/contrib/umoline
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license lppl
catalogue-topics underline
@@ -302928,7 +299633,6 @@ docfiles size=61
runfiles size=6
RELOC/tex/latex/umthesis/umthesis.cls
catalogue-ctan /macros/latex/contrib/umthesis
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics dissertation
catalogue-version 0.2
@@ -302952,7 +299656,6 @@ runfiles size=197
RELOC/fonts/opentype/public/umtypewriter/UMTypewriter-Oblique.otf
RELOC/fonts/opentype/public/umtypewriter/UMTypewriter-Regular.otf
catalogue-ctan /fonts/umtypewriter
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license ofl
catalogue-topics font font-mono font-otf font-greek font-cyrillic font-cm
catalogue-version 001.002
@@ -302979,7 +299682,6 @@ catalogue-contact-development https://github.com/camachojua/unam/pulls
catalogue-contact-home https://github.com/camachojua/unam
catalogue-contact-repository https://github.com/camachojua/unam.git
catalogue-ctan /macros/latex/contrib/unam-thesis
-catalogue-date 2019-05-23 08:39:49 +0200
catalogue-license gpl3+
catalogue-topics class dissertation
catalogue-version 0.5
@@ -303033,7 +299735,6 @@ docfiles size=1563
RELOC/doc/latex/unamth-template/tesis.pdf details="Filled out sample (Mexican Spanis)" language="es"
RELOC/doc/latex/unamth-template/tesis.tex
catalogue-ctan /macros/latex/contrib/unamth-template
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl3
catalogue-topics doc-templ dissertation
catalogue-version 2.0
@@ -303073,7 +299774,6 @@ runfiles size=11
RELOC/bibtex/bst/unamthesis/UNAMThesis.bst
RELOC/tex/latex/unamthesis/UNAMThesis.sty
catalogue-ctan /macros/latex/contrib/unamthesis
-catalogue-date 2017-03-29 05:27:26 +0200
catalogue-license lppl1.3
catalogue-topics dissertation
catalogue-version 2.1
@@ -303098,7 +299798,6 @@ docfiles size=398
RELOC/doc/latex/undergradmath/undergradmath_0.png
RELOC/doc/latex/undergradmath/undergradmath_1.png
catalogue-ctan /info/undergradmath
-catalogue-date 2017-01-12 05:19:00 +0100
catalogue-license other-free
catalogue-topics maths maths-doc maths-symbol
@@ -303123,7 +299822,6 @@ srcfiles size=2
runfiles size=1
RELOC/tex/latex/underlin/underlin.sty
catalogue-ctan /macros/latex/contrib/underlin
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics underline page-hf
catalogue-version 1.01
@@ -303151,7 +299849,6 @@ runfiles size=4
RELOC/tex/latex/underoverlap/underoverlap.sty
catalogue-contact-repository https://github.com/mhelvens/latex-underoverlap
catalogue-ctan /macros/latex/contrib/underoverlap
-catalogue-date 2017-06-28 04:59:58 +0200
catalogue-license lppl1.3
catalogue-topics maths
catalogue-version 0.0.1-r1
@@ -303179,7 +299876,6 @@ docfiles size=65
runfiles size=3
RELOC/tex/latex/underscore/underscore.sty
catalogue-ctan /macros/latex/contrib/underscore
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license lppl
catalogue-topics typesetting
@@ -303208,7 +299904,6 @@ srcfiles size=13
runfiles size=2
RELOC/tex/latex/undolabl/undolabl.sty
catalogue-ctan /macros/latex/contrib/undolabl
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics label-ref
catalogue-version 1.0l
@@ -303251,7 +299946,6 @@ runfiles size=8361
catalogue-also unfonts-extra
catalogue-contact-home http://kldp.net/unfonts/
catalogue-ctan /fonts/unfonts-core
-catalogue-date 2018-12-19 15:10:28 +0100
catalogue-license gpl2
catalogue-topics font-ttf korean
@@ -303292,7 +299986,6 @@ runfiles size=4977
catalogue-also unfonts-core
catalogue-contact-home http://kldp.net/unfonts/
catalogue-ctan /fonts/unfonts-extra
-catalogue-date 2017-06-04 06:02:46 +0200
catalogue-license gpl2
catalogue-topics font-ttf korean
@@ -303320,7 +300013,6 @@ runfiles size=2
RELOC/tex/latex/uni-wtal-ger/uni-wtal-ger.bbx
RELOC/tex/latex/uni-wtal-ger/uni-wtal-ger.cbx
catalogue-ctan /macros/latex/contrib/biblatex-contrib/uni-wtal-ger
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics humanities biblatex
catalogue-version 0.2
@@ -303349,7 +300041,6 @@ runfiles size=4
RELOC/tex/latex/uni-wtal-lin/uni-wtal-lin.bbx
RELOC/tex/latex/uni-wtal-lin/uni-wtal-lin.cbx
catalogue-ctan /macros/latex/contrib/biblatex-contrib/uni-wtal-lin
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics humanities linguistic biblatex
catalogue-version 0.2
@@ -303394,7 +300085,6 @@ runfiles size=150
catalogue-contact-bugs https://github.com/mikkelee/latex-pua/issues
catalogue-contact-repository https://github.com/mikkelee/latex-pua
catalogue-ctan /macros/latex/contrib/unicode-alphabets
-catalogue-date 2019-07-23 10:10:39 +0200
catalogue-license cc-by-sa-4
catalogue-topics unicode
@@ -303417,7 +300107,6 @@ catalogue-also bidi
catalogue-contact-bugs https://github.com/bidi-tex/unicode-bidi/issues
catalogue-contact-repository https://github.com/bidi-tex/unicode-bidi
catalogue-ctan /macros/xetex/latex/unicode-bidi
-catalogue-date 2018-11-28 21:13:17 +0100
catalogue-license lppl1.3
catalogue-topics bidi
catalogue-version 0.01
@@ -303465,7 +300154,6 @@ runfiles size=670
RELOC/tex/generic/unicode-data/load-unicode-xetex-classes.tex
catalogue-contact-repository https://github.com/latex3/unicode-data
catalogue-ctan /macros/generic/unicode-data
-catalogue-date 2019-11-28 09:03:33 +0100
catalogue-license lppl1.3c
catalogue-topics latex3 unicode
catalogue-version 1.11
@@ -303554,7 +300242,6 @@ catalogue-contact-bugs http://github.com/wspr/unicode-math/issues
catalogue-contact-home http://wspr.io/unicode-math/
catalogue-contact-repository https://github.com/wspr/unicode-math/
catalogue-ctan /macros/latex/contrib/unicode-math
-catalogue-date 2019-09-25 20:43:18 +0200
catalogue-license lppl1.3c
catalogue-topics maths font-use luatex xetex unicode
catalogue-version 0.8p
@@ -303583,7 +300270,6 @@ runfiles size=16
RELOC/bibtex/bst/unifith/unifith.bst
RELOC/tex/latex/unifith/unifith.cls
catalogue-ctan /macros/latex/contrib/unifith
-catalogue-date 2019-08-27 15:49:42 +0200
catalogue-license lppl1.3c
catalogue-topics dissertation class
catalogue-version 1.2
@@ -303614,7 +300300,6 @@ docfiles size=133
runfiles size=2
RELOC/tex/xelatex/unisugar/unisugar.sty
catalogue-ctan /macros/xetex/latex/unisugar
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics shortcut
catalogue-version 0.92
@@ -303654,7 +300339,6 @@ catalogue-contact-development https://github.com/MatteoRagni/unitn-bimrep
catalogue-contact-home https://github.com/MatteoRagni/unitn-bimrep
catalogue-contact-repository https://github.com/MatteoRagni/unitn-bimrep.git
catalogue-ctan /macros/latex/contrib/unitn-bimrep
-catalogue-date 2018-01-07 12:14:32 +0100
catalogue-license mit
catalogue-topics report-like
@@ -303684,7 +300368,6 @@ runfiles size=2
RELOC/tex/latex/units/units.sty
catalogue-also siunitx
catalogue-ctan /macros/latex/contrib/units
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics units scientific-docs
catalogue-version 0.9b
@@ -303728,7 +300411,6 @@ runfiles size=14
RELOC/tex/latex/unitsdef/weigabbr.cfg
catalogue-also siunits sistyle units
catalogue-ctan /macros/latex/contrib/unitsdef
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics units scientific-docs
catalogue-version 0.2
@@ -303853,7 +300535,6 @@ runfiles size=104
RELOC/tex/latex/universa/uni.sty
RELOC/tex/latex/universa/uuni.fd
catalogue-ctan /fonts/universa
-catalogue-date 2019-08-29 19:08:05 +0200
catalogue-license gpl
catalogue-topics font font-proportional font-sans font-mf
catalogue-version 2.1
@@ -304035,7 +300716,6 @@ runfiles size=326
RELOC/tex/latex/universalis/UniversalisADFStd.sty
RELOC/tex/latex/universalis/universalis.sty
catalogue-ctan /fonts/universalis
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl2
catalogue-topics font font-otf font-type1 font-sans
@@ -304096,7 +300776,6 @@ runfiles size=61
catalogue-contact-bugs https://github.com/jspitz/univie-ling/issues
catalogue-contact-repository https://github.com/jspitz/univie-ling
catalogue-ctan /macros/latex/contrib/univie-ling
-catalogue-date 2019-01-21 18:42:51 +0100
catalogue-license lppl1.3
catalogue-topics linguistic class dissertation article-like misc-paper
catalogue-version 1.9
@@ -304123,7 +300802,6 @@ docfiles size=11
runfiles size=1
RELOC/tex/latex/unizgklasa/unizgklasa.cls
catalogue-ctan /macros/latex/contrib/unizgklasa
-catalogue-date 2019-07-15 10:08:00 +0200
catalogue-license lppl1.3
catalogue-topics class dissertation croatian
catalogue-version 1.0
@@ -304157,7 +300835,6 @@ runfiles size=58
RELOC/tex/latex/unravel/unravel.sty
catalogue-contact-repository https://github.com/blefloch/latex-unravel
catalogue-ctan /macros/latex/contrib/unravel
-catalogue-date 2019-11-16 09:25:23 +0100
catalogue-license lppl1.3c
catalogue-topics macro-supp
catalogue-version 0.2h
@@ -304187,7 +300864,6 @@ runfiles size=2
RELOC/tex/latex/unswcover/unswcover.sty
catalogue-contact-repository https://scm.narf.ssji.net/git/unswcover
catalogue-ctan /macros/latex/contrib/unswcover
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl1.3
catalogue-topics dissertation
catalogue-version 1.0
@@ -304219,7 +300895,6 @@ srcfiles size=25
runfiles size=8
RELOC/tex/latex/uothesis/uothesis.cls
catalogue-ctan /macros/latex/contrib/uothesis
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics dissertation
catalogue-version 2.5.6
@@ -304248,7 +300923,6 @@ runfiles size=865
RELOC/tex/latex/uowthesis/UoWlogo.png
RELOC/tex/latex/uowthesis/UoWthesis.cls
catalogue-ctan /macros/latex/contrib/uowthesis
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics dissertation
catalogue-version 1.0a
@@ -304277,7 +300951,6 @@ runfiles size=5
RELOC/tex/latex/uowthesistitlepage/uowthesistitlepage.sty
catalogue-also uowthesis
catalogue-ctan /macros/latex/contrib/uowthesistitlepage
-catalogue-date 2017-08-11 08:56:36 +0200
catalogue-license lppl1.3ccc-by-sa-4
catalogue-topics dissertation
catalogue-version 3.0.1
@@ -304299,7 +300972,6 @@ docfiles size=2
runfiles size=2
RELOC/tex/generic/upca/upca.tex
catalogue-ctan /macros/generic/upca
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics barcode
@@ -304402,7 +301074,6 @@ runfiles size=94
texmf-dist/tex/uplatex/config/uplatex.ini
catalogue-contact-repository https://github.com/texjporg/uplatex
catalogue-ctan /language/japanese/uplatex
-catalogue-date 2019-10-21 15:45:41 +0200
catalogue-license bsd3
catalogue-topics format class japanese
@@ -304623,7 +301294,6 @@ catalogue-contact-bugs https://github.com/gallandarakhneorg/tex-upmethodology/is
catalogue-contact-home http://www.arakhne.org/tex-upmethodology
catalogue-contact-repository https://github.com/gallandarakhneorg/tex-upmethodology
catalogue-ctan /macros/latex/contrib/upmethodology
-catalogue-date 2019-09-28 15:41:42 +0200
catalogue-license lgpl3
catalogue-topics doc-mgmt
catalogue-version 20190928
@@ -304661,7 +301331,6 @@ runfiles size=32
RELOC/tex/latex/uppunctlm/t1uplmr.fd
RELOC/tex/latex/uppunctlm/uppunctlm.sty
catalogue-ctan /fonts/uppunctlm
-catalogue-date 2017-04-03 17:41:54 +0200
catalogue-license gfsl
catalogue-topics font font-virtual
catalogue-version 0.1
@@ -304697,7 +301366,6 @@ srcfiles size=3
runfiles size=1
RELOC/tex/latex/upquote/upquote.sty
catalogue-ctan /macros/latex/contrib/upquote
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.2
catalogue-topics verbatim
catalogue-version 1.3
@@ -304791,7 +301459,6 @@ catalogue-contact-bugs http://lists.tug.org/tex-k
catalogue-contact-home http://www.t-lab.opal.ne.jp/tex/uptex_en.html
catalogue-contact-repository https://tug.org/svn/texlive/trunk/Build/source/texk/web2c/uptexdir
catalogue-contact-support http://lists.tug.org/tex-k
-catalogue-date 2018-12-31 06:11:12 +0100
catalogue-license other-free
catalogue-topics engine japanese chinese korean multilingual
catalogue-version 1.20
@@ -304900,7 +301567,6 @@ runfiles size=13
RELOC/tex/uptex/uptex-base/uptex.tex
catalogue-contact-repository https://github.com/texjporg/uptex-base
catalogue-ctan /language/japanese/uptex-base
-catalogue-date 2019-09-22 08:20:21 +0200
catalogue-license bsd3
catalogue-topics format japanese
@@ -305020,7 +301686,6 @@ runfiles size=6663
RELOC/fonts/vf/uptex-fonts/min/utmin10.vf
catalogue-contact-repository https://github.com/texjporg/uptex-fonts
catalogue-ctan /fonts/uptex-fonts
-catalogue-date 2019-02-09 15:26:10 +0100
catalogue-license bsd3
catalogue-topics font-cjk
@@ -305352,7 +302017,6 @@ runfiles size=2
RELOC/tex/generic/upzhkinsoku/upzhkinsoku.sty
catalogue-contact-repository https://github.com/Man-Ting-Fang/upzhkinsoku
catalogue-ctan /macros/generic/upzhkinsoku
-catalogue-date 2018-04-07 17:55:54 +0200
catalogue-license knuth
catalogue-topics chinese
catalogue-version 0.5
@@ -305395,7 +302059,6 @@ runfiles size=21
RELOC/tex/latex/urcls/beamerouterthemeUR.sty
RELOC/tex/latex/urcls/beamerthemeUR.sty
catalogue-ctan /macros/latex/contrib/urcls
-catalogue-date 2019-02-01 07:00:41 +0100
catalogue-license lppl
catalogue-topics letter presentation class
catalogue-version 2.1
@@ -305428,7 +302091,6 @@ runfiles size=3
RELOC/tex/latex/uri/uri.sty
catalogue-also url hyperref doipubmed
catalogue-ctan /macros/latex/contrib/uri
-catalogue-date 2018-09-06 20:14:50 +0200
catalogue-license lppl1.3c
catalogue-topics hyper
catalogue-version 2.0b
@@ -305461,7 +302123,6 @@ runfiles size=4
RELOC/tex/latex/url/url.sty
catalogue-also path
catalogue-ctan /macros/latex/contrib/url
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics verbatim
catalogue-version 3.4
@@ -305506,7 +302167,6 @@ catalogue-contact-bugs https://bitbucket.org/nxg/urlbst/issues
catalogue-contact-home http://purl.org/nxg/dist/urlbst
catalogue-contact-repository https://bitbucket.org/nxg/urlbst/
catalogue-ctan /biblio/bibtex/contrib/urlbst
-catalogue-date 2019-07-01 21:35:47 +0200
catalogue-license gpl2lppl
catalogue-topics bibtex-sty
catalogue-version 0.8
@@ -305680,7 +302340,6 @@ runfiles size=4
RELOC/tex/latex/urwchancal/urwchancal.sty
RELOC/tex/latex/urwchancal/uurwchancal.fd
catalogue-ctan /fonts/urwchancal
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics font-supp-maths
catalogue-version 1
@@ -305711,7 +302370,6 @@ srcfiles size=5
runfiles size=1
RELOC/tex/latex/usebib/usebib.sty
catalogue-ctan /macros/latex/contrib/usebib
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics biblio
catalogue-version 1.0a
@@ -305742,7 +302400,6 @@ srcfiles size=10
runfiles size=1
RELOC/tex/latex/ushort/ushort.sty
catalogue-ctan /macros/latex/contrib/ushort
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics underline
catalogue-version 2.2
@@ -305771,7 +302428,6 @@ docfiles size=107
runfiles size=1
RELOC/tex/latex/uspace/uspace.sty
catalogue-ctan /macros/latex/contrib/uspace
-catalogue-date 2016-11-06 22:37:53 +0100
catalogue-license other-free
catalogue-topics enc-juggle inputenc hyphenation unicode
catalogue-version 0.04
@@ -305820,7 +302476,6 @@ docfiles size=776
runfiles size=5
RELOC/tex/latex/uspatent/uspatent.cls
catalogue-ctan /macros/latex/contrib/uspatent
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics patent legal class
catalogue-version 1.0
@@ -305844,7 +302499,6 @@ runfiles size=5
RELOC/tex/latex/ut-thesis/ut-thesis.cls
catalogue-also utorontothesis
catalogue-ctan /macros/latex/contrib/ut-thesis
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics dissertation
catalogue-version 2.1
@@ -305871,7 +302525,6 @@ catalogue-contact-development https://github.com/linguistics/utexas-latex/pulls
catalogue-contact-home https://github.com/linguistics/utexas-latex
catalogue-contact-repository https://github.com/linguistics/utexas-latex.git
catalogue-ctan /macros/latex/contrib/utexasthesis
-catalogue-date 2018-09-14 05:26:10 +0200
catalogue-license cc0
catalogue-topics dissertation
catalogue-version 1.0
@@ -305903,7 +302556,6 @@ runfiles size=3
RELOC/tex/mex/utf8mex/utf8mex.ini
RELOC/tex/mex/utf8mex/utf8plsq.tex
catalogue-ctan /language/polish/utf8mex
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics format
@@ -305984,7 +302636,6 @@ runfiles size=168
RELOC/fonts/vf/adobe/utopia/putro8c.vf
RELOC/fonts/vf/adobe/utopia/putro8t.vf
catalogue-ctan /fonts/utopia
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license other-free
catalogue-topics font font-type1
@@ -306015,7 +302666,6 @@ docfiles size=12
runfiles size=4
RELOC/tex/latex/uwmslide/uwmslide.cls
catalogue-ctan /macros/latex/contrib/uwmslide
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license artistic
catalogue-topics presentation
@@ -306037,7 +302687,6 @@ docfiles size=51
runfiles size=8
RELOC/tex/latex/uwthesis/uwthesis.cls
catalogue-ctan /macros/latex/contrib/uwthesis
-catalogue-date 2016-06-18 16:48:54 +0200
catalogue-license apache2
catalogue-topics dissertation
catalogue-version 6.13
@@ -306066,7 +302715,6 @@ docfiles size=24
runfiles size=8
RELOC/bibtex/bst/vak/vak.bst
catalogue-ctan /biblio/bibtex/contrib/vak
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics dissertation
@@ -306094,7 +302742,6 @@ docfiles size=32
runfiles size=10
RELOC/bibtex/bst/vancouver/vancouver.bst
catalogue-ctan /biblio/bibtex/contrib/vancouver
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics biomedical journalpub bibtex-sty
@@ -306133,7 +302780,6 @@ runfiles size=14
catalogue-also lm
catalogue-contact-repository https://github.com/yuw/texmf-variablelm
catalogue-ctan /fonts/variablelm
-catalogue-date 2018-02-13 21:32:25 +0100
catalogue-license gfl
catalogue-topics font-cm font-virtual font-t1enc
catalogue-version 1.1.2
@@ -306160,7 +302806,6 @@ runfiles size=2
RELOC/tex/generic/variations/variations.sty
RELOC/tex/generic/variations/variations.tex
catalogue-ctan /macros/generic/variations
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics maths-tabvar
catalogue-version 0.3
@@ -306192,7 +302837,6 @@ srcfiles size=51
runfiles size=8
RELOC/tex/latex/varindex/varindex.sty
catalogue-ctan /macros/latex/contrib/varindex
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics index
catalogue-version 2.3
@@ -306224,7 +302868,6 @@ runfiles size=10
RELOC/tex/plain/varisize/9point.tex
catalogue-also plnfss ofs font-selection
catalogue-ctan /macros/plain/contrib/varisize
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics font-sel
@@ -306250,7 +302893,6 @@ runfiles size=2
catalogue-contact-home https://github.com/UweZiegenhagen/VarsFromJobname
catalogue-contact-repository https://github.com/UweZiegenhagen/VarsFromJobname
catalogue-ctan /macros/latex/contrib/varsfromjobname
-catalogue-date 2017-05-01 23:30:57 +0200
catalogue-license lppl
catalogue-topics doc-mgmt
catalogue-version 1.0
@@ -306275,7 +302917,6 @@ runfiles size=3
RELOC/tex/latex/varwidth/varwidth.sty
catalogue-also pbox tabbingbox
catalogue-ctan /macros/latex/contrib/varwidth
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license lppl
catalogue-topics boxing fit-to-size
catalogue-version 0.92
@@ -306308,7 +302949,6 @@ runfiles size=19
RELOC/tex/generic/vaucanson-g/vaucanson-g.sty
RELOC/tex/generic/vaucanson-g/vaucanson.sty
catalogue-ctan /graphics/pstricks/contrib/vaucanson-g
-catalogue-date 2018-09-15 14:20:37 +0200
catalogue-license lppl
catalogue-topics automata graphics-use
catalogue-version 0.4
@@ -306337,7 +302977,6 @@ runfiles size=2
RELOC/tex/latex/vdmlisting/vdmlisting.sty
catalogue-also listing vdm
catalogue-ctan /macros/latex/contrib/vdmlisting
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics formal-spec listing
catalogue-version 1.0
@@ -306647,7 +303286,6 @@ runfiles size=1540
texmf-dist/tex/plain/velthuis/dnmacs.tex
texmf-dist/tex/xelatex/velthuis/hindicaptions.sty
catalogue-ctan /language/devanagari/velthuis
-catalogue-date 2019-03-07 09:56:33 +0100
catalogue-license gpl
catalogue-topics indic font-indic font-mf font-type1
catalogue-version 2.17.1
@@ -306812,7 +303450,6 @@ runfiles size=2
RELOC/metapost/venn/venn.mp
catalogue-also venndiagram
catalogue-ctan /graphics/metapost/contrib/macros/venn
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics diagram-maths
@@ -306844,7 +303481,6 @@ runfiles size=11
catalogue-also venn
catalogue-contact-home http://www.dickimaw-books.com/
catalogue-ctan /macros/latex/contrib/venndiagram
-catalogue-date 2018-06-07 18:52:53 +0200
catalogue-license lppl
catalogue-topics diagram-maths pgf-tikz
catalogue-version 1.2
@@ -307691,7 +304327,6 @@ runfiles size=2660
RELOC/tex/latex/venturissans2/ts1yv3.fd
catalogue-contact-home http://arkandis.tuxfamily.org/tugfonts.htm
catalogue-ctan /fonts/venturisadf
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license other-free
catalogue-topics font font-type1 font-otf
catalogue-version 1.005
@@ -307719,7 +304354,6 @@ docfiles size=84
runfiles size=4
RELOC/tex/latex/verbasef/verbasef.sty
catalogue-ctan /macros/latex/contrib/verbasef
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics verbatim listing
catalogue-version 1.1
@@ -307751,7 +304385,6 @@ runfiles size=3
RELOC/tex/latex/verbatimbox/verbatimbox.sty
catalogue-also fancyvrb
catalogue-ctan /macros/latex/contrib/verbatimbox
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics verbatim boxing
catalogue-version 3.13
@@ -307777,7 +304410,6 @@ docfiles size=46
runfiles size=2
RELOC/tex/latex/verbatimcopy/verbatimcopy.sty
catalogue-ctan /macros/latex/contrib/verbatimcopy
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics verbatim
catalogue-version 0.06
@@ -307807,7 +304439,6 @@ catalogue-also newverbs
catalogue-contact-repository https://github.com/rf-latex/verbdef
catalogue-contact-support https://github.com/rf-latex/verbdef/issues
catalogue-ctan /macros/latex/contrib/verbdef
-catalogue-date 2018-09-15 16:02:02 +0200
catalogue-license lppl
catalogue-topics verbatim
catalogue-version 0.2
@@ -307833,7 +304464,6 @@ runfiles size=2
RELOC/tex/latex/verbments/verbments.sty
catalogue-also minted texments
catalogue-ctan /macros/latex/contrib/verbments
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.2
catalogue-topics listing
catalogue-version 1.2
@@ -307861,7 +304491,6 @@ srcfiles size=16
runfiles size=3
RELOC/tex/latex/verse/verse.sty
catalogue-ctan /macros/latex/contrib/verse
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics verse
catalogue-version 2.4b
@@ -307888,7 +304517,6 @@ runfiles size=2
RELOC/tex/latex/version/version.sty
catalogue-also verbatim versions optional comment
catalogue-ctan /macros/latex/contrib/version
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license other-free
catalogue-topics cond-comp
catalogue-version 2.0
@@ -307914,7 +304542,6 @@ runfiles size=4
catalogue-also version optional verbatim comment
catalogue-contact-support http://www.webdesign-bu.de/uwe_lueck/contact.html
catalogue-ctan /macros/latex/contrib/versions
-catalogue-date 2017-05-06 09:36:54 +0200
catalogue-license lppl1.3
catalogue-topics cond-comp
catalogue-version 0.55
@@ -307951,7 +304578,6 @@ catalogue-contact-bugs https://bitbucket.org/nxg/versonotes/issues
catalogue-contact-home https://nxg.me.uk/dist/versonotes/
catalogue-contact-repository https://bitbucket.org/nxg/versonotes
catalogue-ctan /macros/latex/contrib/versonotes
-catalogue-date 2019-07-06 20:49:47 +0200
catalogue-license lppl1.3
catalogue-topics notes
catalogue-version 0.4
@@ -307977,7 +304603,6 @@ runfiles size=1
catalogue-also changebar
catalogue-contact-repository https://github.com/wspr/herries-press/
catalogue-ctan /macros/latex/contrib/vertbars
-catalogue-date 2018-12-16 14:58:39 +0100
catalogue-license lppl1.3c
catalogue-topics editorial
catalogue-version 1.0c
@@ -308004,7 +304629,6 @@ srcfiles size=3
runfiles size=1
RELOC/tex/latex/vgrid/vgrid.sty
catalogue-ctan /macros/latex/contrib/vgrid
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics layout-supp
catalogue-version 0.1
@@ -308048,7 +304672,6 @@ runfiles size=9
RELOC/tex/latex/vhistory/sets.sty
RELOC/tex/latex/vhistory/vhistory.sty
catalogue-ctan /macros/latex/contrib/vhistory
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.2
catalogue-topics version-control
catalogue-version 1.6.1
@@ -308087,7 +304710,6 @@ docfiles size=1533
RELOC/doc/latex/visualfaq/troubleshoot-vlf.pdf details="Dealing with visual FAQ problems:"
RELOC/doc/latex/visualfaq/visualFAQ.pdf details="The visual FAQ itself"
catalogue-ctan /info/visualFAQ
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics faq
@@ -308184,7 +304806,6 @@ docfiles size=12585
RELOC/doc/latex/visualpstricks/VisualPSTricks.pdf details="Package documentation"
RELOC/doc/latex/visualpstricks/VisuelPSTricks.pdf details="Package documentation (French)" language="fr"
catalogue-ctan /info/visualpstricks
-catalogue-date 2016-10-27 20:26:18 +0200
catalogue-license gpl
catalogue-topics pstricks graphics-in-tex graphics-doc french-doc
catalogue-version 2.3
@@ -308276,7 +304897,6 @@ docfiles size=1737
RELOC/doc/latex/visualtikz/VisualTikZ.pdf details="The document itself"
catalogue-contact-home http://gte.univ-littoral.fr/sections/stage-latex/visual-tikz
catalogue-ctan /info/visualtikz
-catalogue-date 2018-01-18 22:26:20 +0100
catalogue-license lppl1.3
catalogue-topics pgf-tikz graphics-in-tex graphics-doc french-doc
catalogue-version 0.65
@@ -308472,7 +305092,6 @@ runfiles size=2
RELOC/tex/latex/vmargin/vmargin.sty
catalogue-also geometry typearea
catalogue-ctan /macros/latex/contrib/vmargin
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license lppl
catalogue-topics geometry
catalogue-version 2.5
@@ -309097,7 +305716,6 @@ runfiles size=2501
RELOC/tex/plain/vntex/vntexinfo.tex
catalogue-contact-home http://vntex.sf.net
catalogue-ctan /language/vietnamese/vntex
-catalogue-date 2017-10-29 15:10:12 +0100
catalogue-license other-free
catalogue-topics vietnamese font font-mf font-type1
catalogue-version 3.2
@@ -309132,7 +305750,6 @@ docfiles size=13
runfiles size=11
RELOC/tex/latex/vocaltract/VocalTract.sty
catalogue-ctan /graphics/pstricks/contrib/vocaltract
-catalogue-date 2018-09-15 14:22:21 +0200
catalogue-license lppl
catalogue-topics graphics-use pstricks
catalogue-version 1
@@ -309164,7 +305781,6 @@ runfiles size=3
RELOC/tex/latex/volumes/nowtoaux.sty
RELOC/tex/latex/volumes/volumes.sty
catalogue-ctan /macros/latex/contrib/volumes
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics book-pub
catalogue-version 1.0
@@ -309191,7 +305807,6 @@ docfiles size=71
RELOC/doc/latex/voss-mathcol/mathCol.tex
RELOC/doc/latex/voss-mathcol/run.doc
catalogue-ctan /info/math/voss/mathCol
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics tutorial maths-doc
catalogue-version 0.1
@@ -309219,7 +305834,6 @@ runfiles size=8
texmf-dist/scripts/vpe/vpe.pl
texmf-dist/tex/latex/vpe/vpe.sty
catalogue-ctan /macros/latex/contrib/vpe
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics doc-debug
catalogue-version 0.2
@@ -309390,7 +306004,6 @@ runfiles size=5
RELOC/tex/latex/vruler/vruler.sty
catalogue-also lineno numline
catalogue-ctan /macros/latex/contrib/vruler
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1
catalogue-topics layout
catalogue-version 2.3
@@ -309418,7 +306031,6 @@ runfiles size=3
catalogue-contact-bugs https://bitbucket.org/OpCode-eu-org/latex-libs/issues
catalogue-contact-repository https://bitbucket.org/OpCode-eu-org/LaTeX-libs/
catalogue-ctan /macros/latex/contrib/vtable
-catalogue-date 2019-05-14 07:02:18 +0200
catalogue-license mit
catalogue-topics table
catalogue-version 1.0
@@ -309446,7 +306058,6 @@ srcfiles size=12
runfiles size=3
RELOC/tex/latex/vwcol/vwcol.sty
catalogue-ctan /macros/latex/contrib/vwcol
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license lppl1.3
catalogue-topics multicol
catalogue-version 0.2
@@ -310781,7 +307392,6 @@ runfiles size=6262
RELOC/fonts/vf/wadalab/umrj/umrjff.vf
catalogue-also cjk-fonts
catalogue-ctan /fonts/wadalab
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license other-free
catalogue-topics font font-type1 font-cjk
@@ -310895,7 +307505,6 @@ runfiles size=44
RELOC/tex/lualatex/wallcalendar/wallcalendar.cls
catalogue-contact-repository https://github.com/profound-labs/wallcalendar
catalogue-ctan /macros/luatex/latex/wallcalendar
-catalogue-date 2017-10-22 08:00:15 +0200
catalogue-license lppl
catalogue-topics class calendar luatex use-lua
catalogue-version 1.3.1
@@ -310923,7 +307532,6 @@ docfiles size=317
runfiles size=2
RELOC/tex/latex/wallpaper/wallpaper.sty
catalogue-ctan /macros/latex/contrib/wallpaper
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics layout-page
catalogue-version 1.10
@@ -310947,7 +307555,6 @@ docfiles size=64
runfiles size=1
RELOC/tex/latex/warning/warning.sty
catalogue-ctan /macros/latex/contrib/warning
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics comp-supp
catalogue-version 0.01
@@ -310980,7 +307587,6 @@ srcfiles size=4
runfiles size=1
RELOC/tex/latex/warpcol/warpcol.sty
catalogue-ctan /macros/latex/contrib/warpcol
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics table
catalogue-version 1.0c
@@ -311022,7 +307628,6 @@ runfiles size=6
RELOC/tex/latex/was/icomma.sty
RELOC/tex/latex/was/upgreek.sty
catalogue-ctan /macros/latex/contrib/was
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license collection
catalogue-topics collection
@@ -311065,7 +307670,6 @@ runfiles size=46
RELOC/fonts/tfm/public/wasy/wasyb10.tfm
RELOC/tex/plain/wasy/wasyfont.tex
catalogue-ctan /fonts/wasy2
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics font font-mf font-symbol
@@ -311107,7 +307711,6 @@ runfiles size=83
RELOC/fonts/type1/public/wasy2-ps/wasyb10.pfb
RELOC/fonts/type1/public/wasy2-ps/wasyb10.pfm
catalogue-ctan /fonts/wasy2/ps-type1/hoekwater
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics font font-type1 font-symbol
@@ -311139,7 +307742,6 @@ runfiles size=5
RELOC/tex/latex/wasysym/uwasyvar.fd
RELOC/tex/latex/wasysym/wasysym.sty
catalogue-ctan /macros/latex/contrib/wasysym
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics font-supp
catalogue-version 2.0
@@ -311164,7 +307766,6 @@ docfiles size=16
texmf-dist/doc/man/man1/weave.1
texmf-dist/doc/man/man1/weave.man1.pdf
catalogue-ctan /systems/knuth/dist/web
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license knuth
catalogue-topics litprog
catalogue-version 4.5
@@ -311350,7 +307951,6 @@ docfiles size=70
RELOC/doc/latex/webguide/webguide.tex
RELOC/doc/latex/webguide/webguide0x.gif
catalogue-ctan /info/webguide
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license other-free
catalogue-topics latex-doc
@@ -311508,7 +308108,6 @@ catalogue-also tex4ht
catalogue-contact-bugs https://github.com/AndrewAtLarge/WebQuiz/issues
catalogue-contact-repository https://github.com/AndrewAtLarge/WebQuiz
catalogue-ctan /macros/latex/contrib/webquiz
-catalogue-date 2019-04-01 11:02:04 +0200
catalogue-license gpl3+
catalogue-topics exam cvt-html
catalogue-version 5.2
@@ -311683,7 +308282,6 @@ srcfiles size=7
runfiles size=1
RELOC/tex/latex/widetable/widetable.sty
catalogue-ctan /macros/latex/contrib/widetable
-catalogue-date 2019-06-27 22:58:40 +0200
catalogue-license lppl1.3
catalogue-topics table-long
catalogue-version 2.0
@@ -311722,7 +308320,6 @@ catalogue-also nowidow
catalogue-contact-bugs https://github.com/FrankMittelbach/fmitex/issues
catalogue-contact-repository https://github.com/FrankMittelbach/fmitex
catalogue-ctan /macros/latex/contrib/widows-and-orphans
-catalogue-date 2018-11-18 22:31:10 +0100
catalogue-license lppl1.3c
catalogue-topics layout
catalogue-version 1.0b
@@ -311746,7 +308343,6 @@ runfiles size=3
RELOC/tex/latex/williams/antree.sty
RELOC/tex/latex/williams/toklist.sty
catalogue-ctan /macros/latex/contrib/williams
-catalogue-date 2018-12-23 11:59:20 +0100
catalogue-license lppl
catalogue-topics tree macro-supp
@@ -311779,7 +308375,6 @@ catalogue-also biblatex-chicago
catalogue-contact-bugs https://github.com/brianchase/windycity/issues
catalogue-contact-repository https://github.com/brianchase/windycity
catalogue-ctan /macros/latex/contrib/biblatex-contrib/windycity
-catalogue-date 2019-07-17 19:42:22 +0200
catalogue-license lppl1.3
catalogue-topics biblatex
@@ -311903,7 +308498,6 @@ runfiles size=7
RELOC/tex/latex/withargs/withargs.sty
catalogue-contact-repository https://github.com/mhelvens/latex-withargs
catalogue-ctan /macros/latex/contrib/withargs
-catalogue-date 2019-11-04 20:42:23 +0100
catalogue-license lppl1.3
catalogue-topics macro-supp expl3
catalogue-version 0.3.1
@@ -311938,7 +308532,6 @@ srcfiles size=63
runfiles size=19
RELOC/tex/generic/witharrows/witharrows.sty
catalogue-ctan /macros/generic/witharrows
-catalogue-date 2019-12-10 12:01:20 +0100
catalogue-license lppl1.3
catalogue-topics maths maths-syseqn pgf-tikz expl3
catalogue-version 2.2
@@ -312042,7 +308635,6 @@ runfiles size=132
RELOC/fonts/tfm/public/wnri/wnrit10.tfm
RELOC/fonts/tfm/public/wnri/wnrit8.tfm
catalogue-ctan /fonts/wnri
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics font font-mf font-specialist
@@ -312072,7 +308664,6 @@ runfiles size=7
RELOC/tex/latex/wnri-latex/wnri.def
RELOC/tex/latex/wnri-latex/wnri.sty
catalogue-ctan /macros/latex/contrib/wnri-latex
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license gpl2
catalogue-topics font-supp
catalogue-version 1.0b
@@ -312099,7 +308690,6 @@ runfiles size=3
texmf-dist/scripts/wordcount/wordcount.sh
texmf-dist/tex/latex/wordcount/wordcount.tex
catalogue-ctan /macros/latex/contrib/wordcount
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics word-count
catalogue-version 1.7
@@ -312268,7 +308858,6 @@ srcfiles size=5
runfiles size=1
RELOC/tex/latex/wordlike/wordlike.sty
catalogue-ctan /macros/latex/contrib/wordlike
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics layout
catalogue-version 1.2b
@@ -312297,7 +308886,6 @@ docfiles size=30
runfiles size=4
RELOC/tex/latex/worksheet/worksheet.sty
catalogue-ctan /macros/latex/contrib/worksheet
-catalogue-date 2018-08-18 05:31:14 +0200
catalogue-license lppl1.3c
catalogue-topics exercise exam
catalogue-version 1.1
@@ -312323,7 +308911,6 @@ runfiles size=7
RELOC/tex/latex/wrapfig/wrapfig.sty
catalogue-also floatflt
catalogue-ctan /macros/latex/contrib/wrapfig
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics text-flow
catalogue-version 3.6
@@ -312360,7 +308947,6 @@ runfiles size=3
RELOC/tex/latex/wsemclassic/wsemclassic.cls
catalogue-contact-repository https://github.com/jorsn/wsemclassic/
catalogue-ctan /macros/latex/contrib/wsemclassic
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license bsd
catalogue-topics dissertation
catalogue-version 1.0.1
@@ -312440,7 +309026,6 @@ runfiles size=102
RELOC/tex/latex/wsuipa/uipa.fd
catalogue-also wsuipa2tipa
catalogue-ctan /fonts/wsuipa
-catalogue-date 2017-10-29 15:25:02 +0100
catalogue-license other-free
catalogue-topics font font-mf phonetic
@@ -312467,7 +309052,6 @@ docfiles size=90
runfiles size=2
RELOC/tex/latex/wtref/wtref.sty
catalogue-ctan /macros/latex/contrib/wtref
-catalogue-date 2017-01-17 12:28:26 +0100
catalogue-license mit
catalogue-topics label-ref
catalogue-version 0.3.2
@@ -312496,7 +309080,6 @@ srcfiles size=15
runfiles size=4
RELOC/tex/latex/xargs/xargs.sty
catalogue-ctan /macros/latex/contrib/xargs
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics latex3 macro-supp
catalogue-version 1.1
@@ -312556,7 +309139,6 @@ runfiles size=31
catalogue-also assoccnt
catalogue-contact-home http://www.ich-rede-mich-um-kopf-und-kragen.de
catalogue-ctan /macros/latex/contrib/xassoccnt
-catalogue-date 2018-12-28 09:34:58 +0100
catalogue-license lppl1.3
catalogue-topics counter-mgmt macro-supp
catalogue-version 1.7
@@ -312601,7 +309183,6 @@ runfiles size=5
RELOC/tex/latex/xbmks/xbmks-xetex.def
RELOC/tex/latex/xbmks/xbmks.sty
catalogue-ctan /macros/latex/contrib/xbmks
-catalogue-date 2018-07-04 18:39:06 +0200
catalogue-license lppl1.2
catalogue-topics pdfprocess adobe-distiller
@@ -313517,7 +310098,6 @@ runfiles size=2339
RELOC/tex/latex/xcharter/t2asrbcmr.fd
RELOC/tex/latex/xcharter/t2asrbenc.def
catalogue-ctan /fonts/xcharter
-catalogue-date 2019-11-22 09:12:18 +0100
catalogue-license other-freelppl1.3
catalogue-topics font font-body font-serif font-proportional font-multilingual font-cyrillic font-type1 font-otf font-supp font-t1enc
catalogue-version 1.203
@@ -313544,7 +310124,6 @@ srcfiles size=3
runfiles size=1
RELOC/tex/latex/xcite/xcite.sty
catalogue-ctan /macros/latex/contrib/xcite
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics cite-supp
catalogue-version 1.0
@@ -313932,7 +310511,6 @@ runfiles size=602
RELOC/tex/latex/xcjk2uni/xCJK2uni-UKS.def
RELOC/tex/latex/xcjk2uni/xCJK2uni.sty
catalogue-ctan /macros/latex/contrib/xcjk2uni
-catalogue-date 2019-04-07 18:00:27 +0200
catalogue-license lppl1.3c
catalogue-topics pdf-feat unicode
catalogue-version 0.8
@@ -313963,7 +310541,6 @@ runfiles size=3
catalogue-also cntperchap
catalogue-contact-home http://www.ich-rede-mich-um-kopf-und-kragen.de
catalogue-ctan /macros/latex/contrib/xcntperchap
-catalogue-date 2018-01-05 22:19:02 +0100
catalogue-license lppl1.3
catalogue-topics counter-mgmt macro-supp
catalogue-version 0.5
@@ -314008,7 +310585,6 @@ runfiles size=20
RELOC/tex/latex/xcolor/xcolor.sty
catalogue-contact-home http://www.ukern.de/tex/xcolor.html
catalogue-ctan /macros/latex/contrib/xcolor
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl1.2
catalogue-topics colour
catalogue-version 2.12
@@ -314037,7 +310613,6 @@ srcfiles size=13
runfiles size=5
RELOC/tex/latex/xcolor-material/xcolor-material.sty
catalogue-ctan /macros/latex/contrib/xcolor-material
-catalogue-date 2016-11-16 08:03:52 +0100
catalogue-license lppl1.3
catalogue-topics colour
catalogue-version 0.1
@@ -314065,7 +310640,6 @@ srcfiles size=4
runfiles size=1
RELOC/tex/latex/xcolor-solarized/xcolor-solarized.sty
catalogue-ctan /macros/latex/contrib/xcolor-solarized
-catalogue-date 2016-11-16 08:10:30 +0100
catalogue-license lppl1.3
catalogue-topics colour
catalogue-version 0.4
@@ -314098,7 +310672,6 @@ runfiles size=3
RELOC/tex/generic/xcomment/xcomment.sty
RELOC/tex/generic/xcomment/xcomment.tex
catalogue-ctan /macros/generic/xcomment
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics cond-comp
catalogue-version 1.3
@@ -314140,7 +310713,6 @@ runfiles size=8
catalogue-also cookybooky
catalogue-contact-repository http://svenharder.github.io/xcookybooky/
catalogue-ctan /macros/latex/contrib/xcookybooky
-catalogue-date 2018-04-05 06:13:24 +0200
catalogue-license lppl1.3
catalogue-topics cooking
catalogue-version 1.5
@@ -314170,7 +310742,6 @@ runfiles size=2
catalogue-contact-repository https://github.com/mekeetsa/xcpdftips
catalogue-contact-support https://github.com/mekeetsa/xcpdftips/issues
catalogue-ctan /macros/latex/contrib/xcpdftips
-catalogue-date 2019-03-18 09:44:11 +0100
catalogue-license gpl3+
catalogue-topics bibtex-supp cite-supp pdf-feat
catalogue-version 1.1
@@ -314229,7 +310800,6 @@ runfiles size=17
RELOC/tex/latex/xdoc/docindex.sty
RELOC/tex/latex/xdoc/xdoc2.sty
catalogue-ctan /macros/latex/contrib/xdoc
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics doc-supp
catalogue-version prot2.5
@@ -314285,7 +310855,6 @@ runfiles size=257
RELOC/tex/latex/xduthesis/xduthesis.cfg
RELOC/tex/latex/xduthesis/xduthesis.cls
catalogue-ctan /macros/latex/contrib/xduthesis
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics proposal
catalogue-version 1.00
@@ -314313,7 +310882,6 @@ runfiles size=9
texmf-dist/xdvi/pixmap/toolbar2.xpm
catalogue-contact-repository http://xdvi.sourceforge.net/
catalogue-ctan /dviware/xdvi
-catalogue-date 2018-08-16 21:33:21 +0200
catalogue-license other-free
catalogue-topics previewer
catalogue-version 22.87
@@ -314502,7 +311070,6 @@ docfiles size=163
runfiles size=14
RELOC/tex/latex/xebaposter/xebaposter.cls
catalogue-ctan /graphics/pgf/contrib/xebaposter
-catalogue-date 2016-09-12 19:55:23 +0200
catalogue-license lppl1.3
catalogue-topics poster class pgf-tikz
catalogue-version 2.51
@@ -314527,7 +311094,6 @@ runfiles size=9
RELOC/tex/xelatex/xechangebar/xechangebar.sty
catalogue-also changebar
catalogue-ctan /macros/xetex/latex/xechangebar
-catalogue-date 2017-08-06 05:28:53 +0200
catalogue-license lppl1.3
catalogue-topics editorial
catalogue-version 1.0
@@ -314587,7 +311153,6 @@ catalogue-contact-home http://www.ctex.org/
catalogue-contact-repository https://github.com/CTeX-org/ctex-kit
catalogue-contact-support https://github.com/CTeX-org/ctex-kit/issues
catalogue-ctan /macros/xetex/latex/xecjk
-catalogue-date 2019-06-02 18:10:35 +0200
catalogue-license lppl1.3c
catalogue-topics chinese japanese korean xetex expl3
catalogue-version 3.7.4
@@ -314611,7 +311176,6 @@ runfiles size=2
catalogue-contact-bugs https://github.com/bidi-tex/xecolor/issues
catalogue-contact-repository https://github.com/bidi-tex/xecolor
catalogue-ctan /macros/xetex/latex/xecolor
-catalogue-date 2018-11-28 21:16:05 +0100
catalogue-license lppl1.3
catalogue-topics colour xetex
catalogue-version 0.1
@@ -314701,7 +311265,6 @@ docfiles size=240
runfiles size=4
texmf-dist/tex/xelatex/xecyr/xecyr.sty
catalogue-ctan /macros/xetex/latex/xecyr
-catalogue-date 2019-10-07 16:12:19 +0200
catalogue-license lppl1.3
catalogue-topics cyrillic xetex
catalogue-version 1.2
@@ -314740,7 +311303,6 @@ docfiles size=24
runfiles size=2
RELOC/tex/xelatex/xeindex/xeindex.sty
catalogue-ctan /macros/xetex/latex/xeindex
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics index xetex
catalogue-version 0.3
@@ -314936,7 +311498,6 @@ srcfiles size=6
runfiles size=1
RELOC/tex/latex/xellipsis/xellipsis.sty
catalogue-ctan /macros/latex/contrib/xellipsis
-catalogue-date 2018-04-16 09:00:25 +0200
catalogue-license lppl1.3
catalogue-topics typesetting
catalogue-version 2.0
@@ -315054,7 +311615,6 @@ runfiles size=113
catalogue-contact-bugs https://github.com/bidi-tex/xepersian/issues
catalogue-contact-repository https://github.com/bidi-tex/xepersian
catalogue-ctan /macros/xetex/latex/xepersian
-catalogue-date 2019-04-30 10:28:31 +0200
catalogue-license lppl1.3c
catalogue-topics persian xetex class
catalogue-version 22.7
@@ -315085,7 +311645,6 @@ runfiles size=9
RELOC/tex/xetex/xesearch/xesearch.sty
catalogue-also toolbox etoolbox etextools
catalogue-ctan /macros/xetex/generic/xesearch
-catalogue-date 2019-08-17 18:03:17 +0200
catalogue-license lppl
catalogue-topics string xetex
catalogue-version 0.2
@@ -315118,7 +311677,6 @@ srcfiles size=6
runfiles size=2
RELOC/tex/xelatex/xespotcolor/xespotcolor.sty
catalogue-ctan /macros/xetex/latex/xespotcolor
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics colour
catalogue-version 2.0a
@@ -315179,7 +311737,6 @@ catalogue-contact-announce http://lists.tug.org/xetex-announce
catalogue-contact-home http://tug.org/xetex
catalogue-contact-repository https://tug.org/svn/texlive/trunk/Build/source/texk/web2c/xetexdir
catalogue-contact-support http://lists.tug.org/xetex
-catalogue-date 2018-12-26 09:45:23 +0100
catalogue-license other-free
catalogue-topics engine
@@ -315210,7 +311767,6 @@ runfiles size=14
RELOC/fonts/misc/xetex/fontmapping/xetex-devanagari/velthuis.map
RELOC/fonts/misc/xetex/fontmapping/xetex-devanagari/velthuis.tec
catalogue-ctan /macros/xetex/generic/devanagari
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics inputenc xetex
catalogue-version 0.5
@@ -315251,7 +311807,6 @@ runfiles size=29
RELOC/fonts/misc/xetex/fontmapping/xetex-itrans/itrans-tel.map
RELOC/fonts/misc/xetex/fontmapping/xetex-itrans/itrans-tel.tec
catalogue-ctan /macros/xetex/generic/itrans
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license lppl1.3
catalogue-topics markup indic font-supp
catalogue-version 4.2
@@ -315277,7 +311832,6 @@ runfiles size=2
RELOC/tex/xelatex/xetex-pstricks/pstricks.con
RELOC/tex/xetex/xetex-pstricks/pstricks.con
catalogue-ctan /graphics/xetex/pstricks
-catalogue-date 2018-09-15 14:24:32 +0200
catalogue-license pd
catalogue-topics graphics-in-tex xetex
@@ -315301,7 +311855,6 @@ runfiles size=6
RELOC/fonts/misc/xetex/fontmapping/xetex-tibetan/wylie.map
RELOC/fonts/misc/xetex/fontmapping/xetex-tibetan/wylie.tec
catalogue-ctan /macros/xetex/generic/tibetan
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics inputenc xetex
catalogue-version 0.1
@@ -315524,7 +312077,6 @@ runfiles size=2
RELOC/tex/xetex/xetexfontinfo/aat-info.tex
RELOC/tex/xetex/xetexfontinfo/opentype-info.tex
catalogue-ctan /macros/xetex/plain/xetexfontinfo
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license apache2
catalogue-topics font-supp xetex
@@ -315559,7 +312111,6 @@ runfiles size=78
RELOC/tex/xetex/xetexko/xetexko.sty
catalogue-contact-repository https://github.com/dohyunkim/xetexko
catalogue-ctan /macros/xetex/generic/xetexko
-catalogue-date 2019-12-02 18:50:13 +0100
catalogue-license lppl1.3c
catalogue-topics korean xetex
catalogue-version 2.22
@@ -315583,7 +312134,6 @@ catalogue-contact-bugs https://github.com/wspr/xetexref/issues
catalogue-contact-repository https://github.com/wspr/xetexref/
catalogue-contact-support http://lists.tug.org/xetex
catalogue-ctan /info/xetexref
-catalogue-date 2019-12-09 08:45:23 +0100
catalogue-license lppl1.3c
catalogue-topics documentation xetex
@@ -315614,7 +312164,6 @@ runfiles size=1
RELOC/tex/xelatex/xevlna/xevlna.sty
catalogue-also encxvlna luavlna
catalogue-ctan /macros/xetex/generic/xevlna
-catalogue-date 2018-05-30 19:48:21 +0200
catalogue-license lppl1.3
catalogue-topics typesetting czech
catalogue-version 1.1
@@ -315642,7 +312191,6 @@ docfiles size=24
runfiles size=1
RELOC/tex/latex/xfakebold/xfakebold.sty
catalogue-ctan /macros/latex/contrib/xfakebold
-catalogue-date 2019-09-21 17:11:01 +0200
catalogue-license lppl1.3c
catalogue-topics font-supp-misc font-util pdf-feat
catalogue-version 0.05
@@ -315673,7 +312221,6 @@ srcfiles size=5
runfiles size=1
RELOC/tex/latex/xfor/xfor.sty
catalogue-ctan /macros/latex/contrib/xfor
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics macro-supp
catalogue-version 1.05
@@ -315710,7 +312257,6 @@ srcfiles size=12
runfiles size=7
RELOC/tex/xelatex/xgreek/xgreek.sty
catalogue-ctan /macros/xetex/latex/xgreek
-catalogue-date 2018-02-16 22:27:20 +0100
catalogue-license lppl1.3
catalogue-topics greek xetex
catalogue-version 3.0.1
@@ -315735,7 +312281,6 @@ docfiles size=13
runfiles size=1
RELOC/tex/latex/xhfill/xhfill.sty
catalogue-ctan /macros/latex/contrib/xhfill
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics rule
catalogue-version 1.01
@@ -315764,7 +312309,6 @@ runfiles size=2
RELOC/tex/latex/xifthen/xifthen.sty
catalogue-also ifthen ifthenx
catalogue-ctan /macros/latex/contrib/xifthen
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics macro-supp cond-comp
catalogue-version 1.4.0
@@ -315786,7 +312330,6 @@ docfiles size=2
catalogue-also xii-lat inscrutable
catalogue-contact-home https://github.com/davidcarlisle/dpctex
catalogue-ctan /macros/plain/contrib/xii
-catalogue-date 2017-11-14 12:04:34 +0100
catalogue-license lppl
catalogue-topics frivolous
@@ -315808,7 +312351,6 @@ docfiles size=2
catalogue-also xii inscrutable
catalogue-contact-home https://github.com/davidcarlisle/dpctex
catalogue-ctan /macros/plain/contrib/xii-lat
-catalogue-date 2017-11-20 05:46:57 +0100
catalogue-license lppl
catalogue-topics frivolous
@@ -315880,7 +312422,6 @@ runfiles size=51
catalogue-contact-bugs https://gitlab.com/hvoss49/xindex/issues
catalogue-contact-repository https://gitlab.com/hvoss49/xindex
catalogue-ctan /indexing/xindex
-catalogue-date 2019-11-22 19:39:46 +0100
catalogue-license lppl1.3
catalogue-topics index use-lua
catalogue-version 0.20
@@ -316530,7 +313071,6 @@ runfiles size=914
texmf-dist/xindy/modules/tex/inputenc/utf8.xdy
catalogue-contact-home http://www.xindy.org
catalogue-ctan /indexing/xindy/base
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license gpl
catalogue-topics index
catalogue-version 2.5.1
@@ -316762,7 +313302,6 @@ runfiles size=138
RELOC/tex/generic/xint/xinttools.sty
RELOC/tex/generic/xint/xinttrig.sty
catalogue-ctan /macros/generic/xint
-catalogue-date 2019-09-11 09:32:34 +0200
catalogue-license lppl1.3c
catalogue-topics arithmetic calculation
catalogue-version 1.3f
@@ -316797,7 +313336,6 @@ catalogue-contact-announce https://github.com/alif-type/xits/releases
catalogue-contact-repository https://github.com/alif-type/xits
catalogue-contact-support https://github.com/alif-type/xits/issues
catalogue-ctan /fonts/xits
-catalogue-date 2019-09-07 18:36:14 +0200
catalogue-license ofl
catalogue-topics font font-serif font-maths font-symbol-maths font-otf
catalogue-version 1.301
@@ -316829,7 +313367,6 @@ catalogue-contact-bugs https://github.com/Rmano/xkcdcolors/issues
catalogue-contact-home http://rlog.rgtti.com/2015/10/23/xkcd-color-list-for-latex-users/
catalogue-contact-repository https://github.com/Rmano/xkcdcolors
catalogue-ctan /macros/latex/contrib/xkcdcolors
-catalogue-date 2019-10-22 05:17:02 +0200
catalogue-license lppl1.3ccc0
catalogue-topics amusements
catalogue-version 1.0.1
@@ -316880,7 +313417,6 @@ runfiles size=28
RELOC/tex/latex/xkeyval/xkvview.sty
catalogue-also pst-xkey
catalogue-ctan /macros/latex/contrib/xkeyval
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics keyval
catalogue-version 2.7a
@@ -316918,7 +313454,6 @@ runfiles size=32
RELOC/tex/generic/xlop/xlop.tex
catalogue-also longdiv
catalogue-ctan /macros/generic/xlop
-catalogue-date 2017-01-08 10:27:32 +0100
catalogue-license lppl
catalogue-topics arithmetic
catalogue-version 0.26
@@ -316951,7 +313486,6 @@ catalogue-also longtable tabularx ltablex
catalogue-contact-bugs https://github.com/rolfn/xltabular/issues
catalogue-contact-home https://github.com/rolfn/xltabular
catalogue-ctan /macros/latex/contrib/xltabular
-catalogue-date 2019-02-04 10:22:01 +0100
catalogue-license lppl1.3
catalogue-topics table table-long
catalogue-version 0.2b
@@ -316986,7 +313520,6 @@ runfiles size=2
RELOC/tex/xelatex/xltxtra/xltxtra.sty
catalogue-contact-repository https://github.com/wspr/will2e/
catalogue-ctan /macros/latex/contrib/xltxtra
-catalogue-date 2018-12-31 10:09:56 +0100
catalogue-license lppl1.3c
catalogue-topics xetex
catalogue-version 0.7
@@ -317051,7 +313584,6 @@ runfiles size=24
texmf-dist/tex/xmltex/base/xmltex.tex
catalogue-contact-repository https://github.com/davidcarlisle/dpctex
catalogue-ctan /macros/xmltex/base
-catalogue-date 2018-04-05 06:13:24 +0200
catalogue-license lppl
catalogue-topics foreign-import
catalogue-version 0.8
@@ -317258,7 +313790,6 @@ srcfiles size=5
runfiles size=1
RELOC/tex/latex/xmpincl/xmpincl.sty
catalogue-ctan /macros/latex/contrib/xmpincl
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics metadata pdf-feat
catalogue-version 2.2
@@ -317282,7 +313813,6 @@ docfiles size=70
runfiles size=1
RELOC/tex/latex/xnewcommand/xnewcommand.sty
catalogue-ctan /macros/latex/contrib/xnewcommand
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics macro-def
catalogue-version 1.2
@@ -317306,7 +313836,6 @@ docfiles size=97
runfiles size=2
RELOC/tex/latex/xoptarg/xoptarg.sty
catalogue-ctan /macros/latex/contrib/xoptarg
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics macro-def
catalogue-version 1.0
@@ -317333,7 +313862,6 @@ srcfiles size=9
runfiles size=3
RELOC/tex/latex/xpatch/xpatch.sty
catalogue-ctan /macros/latex/contrib/xpatch
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics macro-supp
catalogue-version 0.2
@@ -317359,7 +313887,6 @@ docfiles size=19
texmf-dist/doc/man/man1/pdfopen.1
texmf-dist/doc/man/man1/pdfopen.man1.pdf
catalogue-ctan /support/xpdfopen
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics previewer
catalogue-version 0.86
@@ -317549,7 +314076,6 @@ runfiles size=1
catalogue-also xspace xpunctuate
catalogue-contact-repository http://github.com/jcsalomon/xpeek
catalogue-ctan /macros/latex/contrib/xpeek
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl1.3
catalogue-topics macro-supp
catalogue-version 0.2
@@ -317586,7 +314112,6 @@ runfiles size=3
RELOC/tex/latex/xpiano/xpiano.sty
catalogue-also piano
catalogue-ctan /macros/latex/contrib/xpiano
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics music
catalogue-version 1.0
@@ -317617,7 +314142,6 @@ srcfiles size=32
runfiles size=12
RELOC/tex/latex/xpicture/xpicture.sty
catalogue-ctan /macros/latex/contrib/xpicture
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license lppl1.3
catalogue-topics graphics-in-tex graphics-curve
catalogue-version 1.2a
@@ -317650,7 +314174,6 @@ catalogue-contact-home http://www.ctex.org/HomePage
catalogue-contact-repository https://github.com/CTeX-org/ctex-kit
catalogue-contact-support https://github.com/CTeX-org/ctex-kit/issues
catalogue-ctan /macros/latex/contrib/xpinyin
-catalogue-date 2019-04-07 18:07:42 +0200
catalogue-license lppl1.3c
catalogue-topics chinese
catalogue-version 2.7
@@ -317678,7 +314201,6 @@ runfiles size=1
RELOC/tex/latex/xprintlen/xprintlen.sty
catalogue-contact-repository https://github.com/Liam0205/xprintlen
catalogue-ctan /macros/latex/contrib/xprintlen
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl1.3
catalogue-topics debug-supp doc-debug
catalogue-version 1.0
@@ -317709,7 +314231,6 @@ srcfiles size=4
runfiles size=1
RELOC/tex/latex/xpunctuate/xpunctuate.sty
catalogue-ctan /macros/latex/contrib/xpunctuate
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.2
catalogue-topics macro-supp
catalogue-version 1.0
@@ -317749,7 +314270,6 @@ runfiles size=311
RELOC/fonts/tfm/public/xq/xqnormal.tfm
RELOC/tex/latex/xq/xq.sty
catalogue-ctan /fonts/xq
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics games
catalogue-version 0.4
@@ -317785,7 +314305,6 @@ runfiles size=3
RELOC/tex/latex/xsavebox/xsavebox.sty
catalogue-contact-repository https://gitlab.com/agrahn/xsavebox
catalogue-ctan /macros/latex/contrib/xsavebox
-catalogue-date 2019-11-12 22:12:05 +0100
catalogue-license lppl1.3
catalogue-topics boxing pdf-feat adobe-distiller
catalogue-version 0.15
@@ -317908,7 +314427,6 @@ runfiles size=65
catalogue-contact-bugs https://github.com/cgnieder/xsim/issues
catalogue-contact-repository https://github.com/cgnieder/xsim/
catalogue-ctan /macros/latex/contrib/xsim
-catalogue-date 2019-11-10 17:56:38 +0100
catalogue-license lppl1.3
catalogue-topics exercise exam expl3
catalogue-version 0.16
@@ -317951,7 +314469,6 @@ runfiles size=23
catalogue-contact-repository https://github.com/u-fischer/xskak
catalogue-contact-support https://github.com/u-fischer/xskak/issues
catalogue-ctan /macros/latex/contrib/xskak
-catalogue-date 2019-06-23 18:43:18 +0200
catalogue-license lppl
catalogue-topics games etex
catalogue-version 1.5
@@ -317988,7 +314505,6 @@ runfiles size=13
catalogue-contact-bugs https://framagit.org/unbonpetit/xstring/issues
catalogue-contact-repository https://framagit.org/unbonpetit/xstring/tree/master
catalogue-ctan /macros/generic/xstring
-catalogue-date 2019-02-05 20:56:57 +0100
catalogue-license lppl1.3c
catalogue-topics string
catalogue-version 1.83
@@ -318017,7 +314533,6 @@ runfiles size=5
RELOC/tex/latex/xtab/xtab.sty
catalogue-also longtable
catalogue-ctan /macros/latex/contrib/xtab
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics table table-long
catalogue-version 2.3f
@@ -318061,7 +314576,6 @@ catalogue-contact-bugs https://github.com/MrDongdongLin/xtuthesis/pulls
catalogue-contact-home https://github.com/MrDongdongLin/xtuthesis
catalogue-contact-repository https://github.com/MrDongdongLin/xtuthesis
catalogue-ctan /macros/latex/contrib/xtuthesis
-catalogue-date 2018-04-29 07:15:59 +0200
catalogue-license lppl1.3
catalogue-topics chinese dissertation
catalogue-version 1.0
@@ -318088,7 +314602,6 @@ runfiles size=51
RELOC/tex/xelatex/xunicode/xunicode.sty
catalogue-also euenc
catalogue-ctan /macros/xetex/latex/xunicode
-catalogue-date 2016-10-08 12:19:27 +0200
catalogue-license lppl1.3
catalogue-topics preprocessor unicode
catalogue-version 0.981
@@ -318115,7 +314628,6 @@ docfiles size=14
runfiles size=2
RELOC/tex/latex/xurl/xurl.sty
catalogue-ctan /macros/latex/contrib/xurl
-catalogue-date 2018-12-23 12:25:27 +0100
catalogue-license lppl1.3
catalogue-topics verbatim
catalogue-version 0.07
@@ -318141,7 +314653,6 @@ docfiles size=187
runfiles size=19
RELOC/tex/latex/xwatermark/xwatermark.sty
catalogue-ctan /macros/latex/contrib/xwatermark
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics background
catalogue-version 1.5.2d
@@ -318169,7 +314680,6 @@ docfiles size=52
runfiles size=9
RELOC/tex/latex/xyling/xyling.sty
catalogue-ctan /macros/latex/contrib/xyling
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics linguistic tree
catalogue-version 1.1
@@ -318313,7 +314823,6 @@ runfiles size=290
RELOC/tex/latex/xymtex/xymtxps/chmst-ps.sty
RELOC/tex/latex/xymtex/xymtxps/xymtx-ps.sty
catalogue-ctan /macros/latex/contrib/xymtex
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license lppl1.3
catalogue-topics chemistry diagram
catalogue-version 5.06
@@ -318557,7 +315066,6 @@ runfiles size=575
catalogue-also xypic-tut-pt
catalogue-contact-home http://tug.org/applications/Xy-pic/Xy-pic.html
catalogue-ctan /macros/generic/diagrams/xypic
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license gpl
catalogue-topics diagram
catalogue-version 3.8.9
@@ -318577,7 +315085,6 @@ docfiles size=77
RELOC/doc/generic/xypic-tut-pt/xypic-tutorial.pdf details="The document itself" language="pt"
RELOC/doc/generic/xypic-tut-pt/xypictutorial.tex
catalogue-ctan /info/portuguese/xypic-tutorial
-catalogue-date 2016-06-18 16:48:54 +0200
catalogue-license gpl
catalogue-topics portuguese-doc
@@ -318601,7 +315108,6 @@ docfiles size=80
runfiles size=3
RELOC/tex/latex/xytree/xytree.sty
catalogue-ctan /macros/latex/contrib/xytree
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics tree linguistic
catalogue-version 1.5
@@ -318632,7 +315138,6 @@ runfiles size=5
RELOC/tex/latex/yafoot/fnpos.sty
RELOC/tex/latex/yafoot/pfnote.sty
catalogue-ctan /macros/latex/contrib/yafoot
-catalogue-date 2018-09-03 08:40:26 +0200
catalogue-license lppl
catalogue-topics footnote
catalogue-version 1.1
@@ -318668,7 +315173,6 @@ runfiles size=7
RELOC/tex/latex/yagusylo/yagusylo.cfg
RELOC/tex/latex/yagusylo/yagusylo.sty
catalogue-ctan /macros/latex/contrib/yagusylo
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics font-supp-symbol
catalogue-version 1.2
@@ -318702,7 +315206,6 @@ srcfiles size=18
runfiles size=5
RELOC/tex/latex/yaletter/yaletter.cls
catalogue-ctan /macros/latex/contrib/yaletter
-catalogue-date 2017-01-03 05:00:21 +0100
catalogue-license lppl1.3
catalogue-topics letter
catalogue-version 1.1
@@ -318773,7 +315276,6 @@ runfiles size=75
RELOC/fonts/tfm/public/yannisgr/rgrsl10.tfm
RELOC/fonts/tfm/public/yannisgr/rgrti10.tfm
catalogue-ctan /fonts/greek/yannis
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl2
catalogue-topics font font-mf font-greek greek
@@ -318881,7 +315383,6 @@ runfiles size=34
RELOC/tex/latex/yathesis/yathesis.cls
catalogue-contact-repository https://github.com/dbitouze/yathesis
catalogue-ctan /macros/latex/contrib/yathesis
-catalogue-date 2019-03-28 19:39:05 +0100
catalogue-license lppl1.3
catalogue-topics class dissertation french
catalogue-version 0.99u
@@ -318913,7 +315414,6 @@ runfiles size=8
RELOC/tex/generic/yax/yax.sty
RELOC/tex/generic/yax/yax.tex
catalogue-ctan /macros/generic/yax
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics keyval
catalogue-version 1.03
@@ -318988,7 +315488,6 @@ runfiles size=6
RELOC/tex/xelatex/yazd-thesis/yazd-thesis.cls
catalogue-contact-home http://yazd-thesis.blog.ir/
catalogue-ctan /macros/xetex/latex/yazd-thesis
-catalogue-date 2019-07-25 16:36:51 +0200
catalogue-license lppl1.3c
catalogue-topics class dissertation persian xetex
catalogue-version 0.3
@@ -319017,7 +315516,6 @@ runfiles size=5
RELOC/tex/latex/ycbook/ycbook.cls
catalogue-also mwcls
catalogue-ctan /macros/latex/contrib/ycbook
-catalogue-date 2018-01-02 23:40:15 +0100
catalogue-license lppl1.3c
catalogue-topics book-pub class
@@ -319057,7 +315555,6 @@ runfiles size=14
RELOC/tex/latex/ydoc/ydoc.sty
catalogue-also ltxdoc doc xdoc gmdoc codedoc nicetext showexpl
catalogue-ctan /macros/latex/contrib/ydoc
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics doc-supp class
catalogue-version 0.6alpha
@@ -319091,7 +315588,6 @@ catalogue-contact-bugs https://github.com/TeX-Live/yfonts/issues
catalogue-contact-repository https://github.com/TeX-Live/yfonts.git
catalogue-contact-support https://github.com/TeX-Live/yfonts/issues
catalogue-ctan /macros/latex/contrib/yfonts
-catalogue-date 2019-04-04 10:11:42 +0200
catalogue-license lppl
catalogue-topics font-supp
catalogue-version 1.4
@@ -319122,7 +315618,6 @@ runfiles size=50
RELOC/fonts/type1/public/yfonts-t1/yswab.pfb
catalogue-also mfnfss yfonts
catalogue-ctan /fonts/ps-type1/yfonts
-catalogue-date 2017-11-24 06:13:30 +0100
catalogue-license other-free
catalogue-topics font font-type1 font-gothic
catalogue-version 1.0
@@ -319168,7 +315663,6 @@ catalogue-contact-bugs https://github.com/TeX-Live/yhmath/issues
catalogue-contact-home https://github.com/TeX-Live/yhmath
catalogue-contact-repository https://github.com/TeX-Live/yhmath.git
catalogue-ctan /fonts/yhmath
-catalogue-date 2019-02-24 08:57:29 +0100
catalogue-license lppl1.3c
catalogue-topics font font-mf font-type1 font-symbol-maths
catalogue-version 1.5
@@ -319190,7 +315684,6 @@ runfiles size=171
RELOC/fonts/opentype/public/yinit-otf/Yinit.otf
catalogue-also yfonts
catalogue-ctan /fonts/gothic/yinit-otf
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license pd
catalogue-topics font-otf font-decor font-gothic
catalogue-version 1.0
@@ -319220,7 +315713,6 @@ srcfiles size=12
runfiles size=4
RELOC/tex/latex/york-thesis/york-thesis.cls
catalogue-ctan /macros/latex/contrib/york-thesis
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics dissertation class
catalogue-version 3.6
@@ -319253,7 +315745,6 @@ runfiles size=2
RELOC/tex/latex/youngtab/youngtab.sty
catalogue-also young ytableau
catalogue-ctan /macros/latex/contrib/youngtab
-catalogue-date 2018-01-06 12:14:59 +0100
catalogue-license lppl1
catalogue-topics maths
catalogue-version 1.1
@@ -319284,7 +315775,6 @@ runfiles size=5
texmf-dist/scripts/yplan/yplan
texmf-dist/tex/latex/yplan/yplan.sty
catalogue-ctan /macros/latex/contrib/yplan
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics calendar
@@ -319458,7 +315948,6 @@ runfiles size=3
RELOC/tex/latex/ytableau/ytableau.sty
catalogue-also youngtab young
catalogue-ctan /macros/latex/contrib/ytableau
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.2
catalogue-topics maths
catalogue-version 1.3
@@ -319513,7 +316002,6 @@ runfiles size=59
RELOC/tex/latex/zapfchan/ts1uzc.fd
catalogue-also tex-gyre
catalogue-ctan /fonts/urw/base35
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics font font-type1 font-collection
@@ -319548,7 +316036,6 @@ runfiles size=24
RELOC/tex/latex/zapfding/uuzd.fd
catalogue-also tex-gyre
catalogue-ctan /fonts/urw/base35
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license gpl
catalogue-topics font font-type1 font-collection
@@ -319585,7 +316072,6 @@ catalogue-contact-bugs https://github.com/xueruini/zebra-goodies/issues
catalogue-contact-repository https://github.com/xueruini/zebra-goodies
catalogue-contact-support https://github.com/xueruini/zebra-goodies/issues
catalogue-ctan /macros/latex/contrib/zebra-goodies
-catalogue-date 2019-07-04 05:23:10 +0200
catalogue-license lppl1.3c
catalogue-topics notes editorial marginal
catalogue-version 0.8.0
@@ -319611,7 +316097,6 @@ runfiles size=8
RELOC/tex/latex/zed-csp/zed-csp.sty
catalogue-also objectz
catalogue-ctan /macros/latex/contrib/zed-csp
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license other-free
catalogue-topics formal-spec
@@ -319646,7 +316131,6 @@ catalogue-contact-home http://www.ctex.org/
catalogue-contact-repository https://github.com/CTeX-org/ctex-kit
catalogue-contact-support https://github.com/CTeX-org/ctex-kit/issues
catalogue-ctan /language/chinese/zhlineskip
-catalogue-date 2019-05-16 09:07:56 +0200
catalogue-license lppl1.3c
catalogue-topics chinese
catalogue-version 1.0e
@@ -319683,7 +316167,6 @@ catalogue-also lipsum
catalogue-contact-bugs https://github.com/Stone-Zeng/zhlipsum/issues
catalogue-contact-repository https://github.com/Stone-Zeng/zhlipsum
catalogue-ctan /macros/latex/contrib/zhlipsum
-catalogue-date 2018-09-08 18:58:53 +0200
catalogue-license lppl1.3c
catalogue-topics dummy-gen chinese latex3 macro-supp
catalogue-version 1.1.1
@@ -324650,7 +321133,6 @@ runfiles size=4937
RELOC/tex/latex/zhmetrics/c70zhsong.fd
RELOC/tex/latex/zhmetrics/c70zhyou.fd
catalogue-ctan /fonts/psfonts/zhmetrics
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics font-use font-cjk chinese
catalogue-version r206
@@ -324714,7 +321196,6 @@ runfiles size=1920
RELOC/fonts/vf/public/zhmetrics-uptex/upzhserifit-h.vf
RELOC/fonts/vf/public/zhmetrics-uptex/upzhserifit-v.vf
catalogue-ctan /fonts/zhmetrics-uptex
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl1.3
catalogue-topics font-supp-misc font-cjk chinese
catalogue-version 1.0
@@ -324750,7 +321231,6 @@ catalogue-contact-home http://www.ctex.org/HomePage
catalogue-contact-repository https://github.com/CTeX-org/ctex-kit
catalogue-contact-support https://github.com/CTeX-org/ctex-kit/issues
catalogue-ctan /macros/latex/contrib/zhnumber
-catalogue-date 2019-04-07 19:35:03 +0200
catalogue-license lppl1.3c
catalogue-topics chinese numbers
catalogue-version 2.7
@@ -324784,7 +321264,6 @@ runfiles size=18
RELOC/tex/xelatex/zhspacing/zhulem.sty
catalogue-contact-repository https://github.com/ctex-org/ctex-kit
catalogue-ctan /macros/xetex/generic/zhspacing
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl1.3
catalogue-topics multilingual-addon chinese
@@ -324809,7 +321288,6 @@ runfiles size=1
RELOC/tex/latex/ziffer/ziffer.sty
catalogue-also icomma
catalogue-ctan /macros/latex/contrib/ziffer
-catalogue-date 2016-06-24 19:18:15 +0200
catalogue-license lppl
catalogue-topics numbers
catalogue-version 2.1
@@ -324851,7 +321329,6 @@ runfiles size=19
RELOC/tex/latex/zlmtt/ts1zlmvtt.fd
RELOC/tex/latex/zlmtt/zlmtt.sty
catalogue-ctan /fonts/zlmtt
-catalogue-date 2019-06-12 05:18:42 +0200
catalogue-license lppl1.3
catalogue-topics font-supp
catalogue-version 1.02
@@ -324883,7 +321360,6 @@ runfiles size=6
RELOC/bibtex/bst/zootaxa-bst/zootaxa.bst
catalogue-contact-repository https://github.com/gaballench/zootaxa-bst
catalogue-ctan /biblio/bibtex/contrib/zootaxa-bst
-catalogue-date 2019-03-27 19:05:22 +0100
catalogue-license lppl1.3c
catalogue-topics bibtex-sty journalpub biology
catalogue-version 1.0
@@ -324951,7 +321427,6 @@ runfiles size=37
catalogue-contact-bugs https://github.com/ho-tex/zref/issues
catalogue-contact-repository https://github.com/ho-tex/zref
catalogue-ctan /macros/latex/contrib/zref
-catalogue-date 2019-11-30 11:10:53 +0100
catalogue-license lppl1.3
catalogue-topics label-ref
catalogue-version 2.28
@@ -324979,7 +321454,6 @@ runfiles size=1
RELOC/tex/latex/zwgetfdate/zwgetfdate.sty
catalogue-contact-home http://icebearsoft.euweb.cz/tex/
catalogue-ctan /macros/latex/contrib/zwgetfdate
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl1.3
catalogue-topics file-mgmt
@@ -325015,7 +321489,6 @@ runfiles size=9
catalogue-also geometry crop
catalogue-contact-home http://icebearsoft.euweb.cz/tex/
catalogue-ctan /macros/latex/contrib/zwpagelayout
-catalogue-date 2017-04-18 05:31:40 +0200
catalogue-license lppl
catalogue-topics geometry production
catalogue-version 1.4d
@@ -325035,7 +321508,6 @@ docfiles size=2
runfiles size=1
RELOC/tex/latex/zxjafbfont/zxjafbfont.sty
catalogue-ctan /language/japanese/zxjafbfont
-catalogue-date 2016-12-18 08:34:28 +0100
catalogue-license mit
catalogue-topics font-supp chinese japanese korean xetex
catalogue-version 0.2
@@ -325058,7 +321530,6 @@ docfiles size=41
runfiles size=4
RELOC/tex/latex/zxjafont/zxjafont.sty
catalogue-ctan /language/japanese/zxjafont
-catalogue-date 2019-07-01 22:59:47 +0200
catalogue-license mit
catalogue-topics japanese font-supp xetex
catalogue-version 0.5
@@ -325082,7 +321553,6 @@ docfiles size=48
runfiles size=8
RELOC/tex/latex/zxjatype/zxjatype.sty
catalogue-ctan /language/japanese/zxjatype
-catalogue-date 2018-05-03 14:56:59 +0200
catalogue-license mit
catalogue-topics std-conform japanese xetex
catalogue-version 0.6c
diff --git a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.md5 b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.md5
index a597e71c8c..93f22e3acc 100644
--- a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.md5
+++ b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.md5
@@ -1 +1 @@
-f0dbb2159a6415fb51666ae4485cf984 texlive.tlpdb
+99b29047b7ba3d153ea8f605c6ab8520 texlive.tlpdb
diff --git a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512 b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512
index 84aa91153f..b2c191ee61 100644
--- a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512
+++ b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512
@@ -1 +1 @@
-3f45c42b5c0e2b4f07214a6e3ca618d9338236e7cfa0c40c26830536d267389396dc891e9d094ed486cd80c2af7a5bf63bf162a814bb4ba96778b2464503471c texlive.tlpdb
+e02f6131336c10ffd8e037db8c36911553f4fd638fa7b878b7e9ec86e5b7c85e81d2c8ff626ec026aab6f940c6bbe57f7756d25c73b5e51b0ea11627d19d0974 texlive.tlpdb
diff --git a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512.asc b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512.asc
index 4eed0815bf..9dc914d496 100644
--- a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512.asc
+++ b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512.asc
@@ -1,10 +1,10 @@
-----BEGIN PGP SIGNATURE-----
-iQEcBAEBCgAGBQJd8Y/BAAoJEEzhh34ZQ4xwZ60H/RpFnNoakH5c69EfmZEK3Tuz
-poMfO2vZcD0zWNvYHFS0EA2JgHnxX9o3xZZ0JOXlVmkfy7srDpwLT0NO4HNLWjmP
-8IDmXf1K3mxIwRxCEGn57ZJNacFk+UM1QdVhkGE067bZijKUo/eLvysSpgGs7uvK
-2Eq72yclARqBj7aL+sY6fWZkQgpagupUxOIgLlXwF4cKuTbLfC8TTLPuPOoqDm5c
-1u+9yCnm87Ox5NnMIWY5h4OQwEfmnnXXhdPmD159D6F5XN1lLqT22Fet6CxxLuTF
-cZz5pbu9qmiFrMwTvMn0LI9P3WtZXhxHiwb9anMnZjnNBUczTt9/jVtGEBcrrro=
-=LGHo
+iQEcBAEBCgAGBQJd8uHRAAoJEEzhh34ZQ4xwO6YIAJ0VvtuyjpG8FRvtqvV0BgLX
+EQtCsVNYzDw08Q6gsPWLEAS9hgFKzeAFSZTeDuOuHWelVUMlpiJTydz6Q6vP+fr3
+BC3TDPNCHglk1zIHAQ8NMKtUbwwMdi4ZXn9gnGYxkXWD0zTsF+GIySlOgKERu8Y2
+K398gUF2pdiupzVUKRCNWUrXqcoTMUtOI3QCelC/O5cnEvbGw2bUnnuaNnY5FrlO
+W7VFvZ7fJy+zgKUC4HfC6YHYEfXn23aFgJ875AoPWC2tp+VIEl8s66o+Ar6UKoCl
+0CfpVYcGgp03EfqC2Hlp/ILrX5O3KUsaDQpfwQ05vUjf4D2F5rBhutLxLemtRds=
+=WFFV
-----END PGP SIGNATURE-----
diff --git a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.xz b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.xz
index 1c00898637..fa96b755f8 100644
--- a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.xz
+++ b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.xz
Binary files differ
diff --git a/systems/win32/miktex/tm/packages/files.csv.lzma b/systems/win32/miktex/tm/packages/files.csv.lzma
index 21730f87b0..5eeda81d7f 100644
--- a/systems/win32/miktex/tm/packages/files.csv.lzma
+++ b/systems/win32/miktex/tm/packages/files.csv.lzma
Binary files differ
diff --git a/systems/win32/miktex/tm/packages/next/files.csv.lzma b/systems/win32/miktex/tm/packages/next/files.csv.lzma
index 1d206c22cf..43ef56dd71 100644
--- a/systems/win32/miktex/tm/packages/next/files.csv.lzma
+++ b/systems/win32/miktex/tm/packages/next/files.csv.lzma
Binary files differ
diff --git a/systems/win32/miktex/tm/packages/next/pr.ini b/systems/win32/miktex/tm/packages/next/pr.ini
index c5f9899241..de408acf12 100644
--- a/systems/win32/miktex/tm/packages/next/pr.ini
+++ b/systems/win32/miktex/tm/packages/next/pr.ini
@@ -2,9 +2,9 @@
[repository]
-date=1576185378
+date=1576272052
lastupd=miktex-arctrl-bin-2.9 miktex-arctrl-bin-x64-2.9 miktex-asymptote-bin-2.9 miktex-asymptote-bin-x64-2.9 miktex-autosp-bin-2.9 miktex-autosp-bin-x64-2.9 miktex-axohelp-bin-2.9 miktex-axohelp-bin-x64-2.9 miktex-bibarts-bin-2.9 miktex-bibarts-bin-x64-2.9 miktex-bibtex-bin-2.9 miktex-bibtex-bin-x64-2.9 miktex-bibtex8bit-bin-2.9 miktex-bibtex8bit-bin-x64-2.9 miktex-bzip2-bin-2.9 miktex-bzip2-bin-x64-2.9 miktex-cairo-bin-2.9 miktex-cairo-bin-x64-2.9 miktex-chktex-bin-2.9 miktex-chktex-bin-x64-2.9
-lstdigest=6923436b33dcfe91699938e9b86f24ac
-numpkg=3802
+lstdigest=442ff3c73f1ca762484332744e6708af
+numpkg=3810
relstate=next
-version=7285
+version=7286
diff --git a/systems/win32/miktex/tm/packages/pr.ini b/systems/win32/miktex/tm/packages/pr.ini
index 0b6c7d797d..dd91893c8e 100644
--- a/systems/win32/miktex/tm/packages/pr.ini
+++ b/systems/win32/miktex/tm/packages/pr.ini
@@ -2,9 +2,9 @@
[repository]
-date=1576185090
-lastupd=atenddvi biber-darwin-x86_64 biber-doc biber-linux-x86_64 biber-windows-x64 biber-windows-x86 biblatex cormorantgaramond csquotes curve2e economic elegantnote glossaries hologo mathcommand mcf2graph oberdiek pdflscape plex pmboxdraw
-lstdigest=3f0745a9a04d461e2d60a2fbac468583
-numpkg=3802
+date=1576271475
+lastupd=alphalph askinclude atenddvi atveryend babel beilstein bibleref bitset catchfile cormorantgaramond domitian epstopdf-pkg latexpand listingsutf8 luamplib noto oberdiek pdfescape picture reledmac
+lstdigest=11fe30d4d7c5f4ad9c0b99a9c2e4c5e0
+numpkg=3810
relstate=stable
-version=7285
+version=7286
diff --git a/systems/win32/w32tex/ChangeLog b/systems/win32/w32tex/ChangeLog
index 035302785e..4c4f9dd829 100644
--- a/systems/win32/w32tex/ChangeLog
+++ b/systems/win32/w32tex/ChangeLog
@@ -1,12 +1,16 @@
W32TeX (x86 & x64) ChangeLog
[2019/12/12]
-(01) luatex-dev-w32.tar.xz
+(01) context.tar.xz
+ ConTeXt version: 2019.12.12 00:57.
+(02) luatex-dev-w32.tar.xz
Update luamplib.
-(02) luatex-exp-w32.tar.xz
+(03) luatex-exp-w32.tar.xz
Update luamplib.
-(03) luatex-w32.tar.xz
+(04) luatex-w32.tar.xz
Update luamplib.
+(05) win64/context-w64.tar.xz
+ Update mtxrun.lua.
[2019/12/11]
(01) context.tar.xz